From b8c21d3721851a4484940c927264878ef72d0db1 Mon Sep 17 00:00:00 2001 From: Mario Scrocca Date: Fri, 18 Oct 2024 15:28:31 +0200 Subject: [PATCH] Update to the latest rapid-triples version --- .env | 3 - Dockerfile-build | 2 +- README.md | 7 +- dist/css/app.c2644c6c.css | 1 + dist/css/chunk-vendors.5c922c6b.css | 5 + dist/favicon-32x32.png | Bin 0 -> 1349 bytes dist/favicon.ico | Bin 0 -> 1150 bytes dist/index.html | 2 +- dist/js/109.350c7c05.js | 2 + dist/js/109.350c7c05.js.map | 1 + dist/js/13.06cd2e07.js | 26 ++ dist/js/13.06cd2e07.js.map | 1 + dist/js/148.2b6347d2.js | 2 + dist/js/148.2b6347d2.js.map | 1 + dist/js/200.4dc78eed.js | 2 + dist/js/200.4dc78eed.js.map | 1 + dist/js/208.65de7a32.js | 2 + dist/js/208.65de7a32.js.map | 1 + dist/js/236.207c840f.js | 2 + dist/js/236.207c840f.js.map | 1 + dist/js/420.fb240bdb.js | 2 + dist/js/420.fb240bdb.js.map | 1 + dist/js/43.fb5b896b.js | 2 + dist/js/43.fb5b896b.js.map | 1 + dist/js/49.f2c20221.js | 2 + dist/js/49.f2c20221.js.map | 1 + dist/js/55.d111b5d7.js | 2 + dist/js/55.d111b5d7.js.map | 1 + dist/js/590.387eb152.js | 73 ++++++ dist/js/590.387eb152.js.map | 1 + dist/js/595.96320e8c.js | 2 + dist/js/595.96320e8c.js.map | 1 + dist/js/611.77fb901c.js | 3 + dist/js/611.77fb901c.js.map | 1 + dist/js/675.a10f8029.js | 2 + dist/js/675.a10f8029.js.map | 1 + dist/js/699.15a1d044.js | 2 + dist/js/699.15a1d044.js.map | 1 + dist/js/731.a686c60c.js | 4 + dist/js/731.a686c60c.js.map | 1 + dist/js/733.320f4a50.js | 2 + dist/js/733.320f4a50.js.map | 1 + dist/js/818.44b91e54.js | 2 + dist/js/818.44b91e54.js.map | 1 + dist/js/954.898da33a.js | 2 + dist/js/954.898da33a.js.map | 1 + dist/js/978.44af7ef6.js | 2 + dist/js/978.44af7ef6.js.map | 1 + dist/js/app.9a74e5bb.js | 2 + dist/js/app.9a74e5bb.js.map | 1 + dist/js/chunk-vendors.1bff00ef.js | 94 +++++++ dist/js/chunk-vendors.1bff00ef.js.map | 1 + package.json | 16 +- public/favicon-32x32.png | Bin 0 -> 1349 bytes public/favicon.ico | Bin 0 -> 1150 bytes publish.sh | 8 + src/components/AssetCreate.vue | 351 ++++++++++++++------------ src/components/JsonForm.vue | 60 +++-- src/main.js | 2 + vue.config.js | 26 +- 60 files changed, 528 insertions(+), 211 deletions(-) create mode 100644 dist/css/app.c2644c6c.css create mode 100644 dist/css/chunk-vendors.5c922c6b.css create mode 100644 dist/favicon-32x32.png create mode 100644 dist/favicon.ico create mode 100644 dist/js/109.350c7c05.js create mode 100644 dist/js/109.350c7c05.js.map create mode 100644 dist/js/13.06cd2e07.js create mode 100644 dist/js/13.06cd2e07.js.map create mode 100644 dist/js/148.2b6347d2.js create mode 100644 dist/js/148.2b6347d2.js.map create mode 100644 dist/js/200.4dc78eed.js create mode 100644 dist/js/200.4dc78eed.js.map create mode 100644 dist/js/208.65de7a32.js create mode 100644 dist/js/208.65de7a32.js.map create mode 100644 dist/js/236.207c840f.js create mode 100644 dist/js/236.207c840f.js.map create mode 100644 dist/js/420.fb240bdb.js create mode 100644 dist/js/420.fb240bdb.js.map create mode 100644 dist/js/43.fb5b896b.js create mode 100644 dist/js/43.fb5b896b.js.map create mode 100644 dist/js/49.f2c20221.js create mode 100644 dist/js/49.f2c20221.js.map create mode 100644 dist/js/55.d111b5d7.js create mode 100644 dist/js/55.d111b5d7.js.map create mode 100644 dist/js/590.387eb152.js create mode 100644 dist/js/590.387eb152.js.map create mode 100644 dist/js/595.96320e8c.js create mode 100644 dist/js/595.96320e8c.js.map create mode 100644 dist/js/611.77fb901c.js create mode 100644 dist/js/611.77fb901c.js.map create mode 100644 dist/js/675.a10f8029.js create mode 100644 dist/js/675.a10f8029.js.map create mode 100644 dist/js/699.15a1d044.js create mode 100644 dist/js/699.15a1d044.js.map create mode 100644 dist/js/731.a686c60c.js create mode 100644 dist/js/731.a686c60c.js.map create mode 100644 dist/js/733.320f4a50.js create mode 100644 dist/js/733.320f4a50.js.map create mode 100644 dist/js/818.44b91e54.js create mode 100644 dist/js/818.44b91e54.js.map create mode 100644 dist/js/954.898da33a.js create mode 100644 dist/js/954.898da33a.js.map create mode 100644 dist/js/978.44af7ef6.js create mode 100644 dist/js/978.44af7ef6.js.map create mode 100644 dist/js/app.9a74e5bb.js create mode 100644 dist/js/app.9a74e5bb.js.map create mode 100644 dist/js/chunk-vendors.1bff00ef.js create mode 100644 dist/js/chunk-vendors.1bff00ef.js.map create mode 100644 public/favicon-32x32.png create mode 100644 public/favicon.ico create mode 100644 publish.sh diff --git a/.env b/.env index 8d1cccb..8b681e5 100644 --- a/.env +++ b/.env @@ -1,6 +1,3 @@ NODE_ENV=development VUE_APP_BACKEND_PORT=8000 VUE_APP_BASE_URL=http://localhost -OPENID_CLIENTID=NonConfidential -OPENID_SERVER_URL=http://localhost:8080/keycloak -OPENID_REALM=kcong diff --git a/Dockerfile-build b/Dockerfile-build index 2c92105..74848fd 100644 --- a/Dockerfile-build +++ b/Dockerfile-build @@ -1,5 +1,5 @@ # BUILD -FROM node:12.22 as build +FROM node:20 as build # set working directory WORKDIR /app diff --git a/README.md b/README.md index 4ca3f31..c629f6a 100644 --- a/README.md +++ b/README.md @@ -22,9 +22,6 @@ Visit http://localhost:8080. ### Update online -Build the image locally and push the updated files in the `dist` folder. +Build the image locally and push the updated files in the `dist` folder using the `publish.sh` script. -If you built the interface using the Docker container, you can get the required files by obtaining the CONTAINER_ID via `docker ps` and running the following command: -```sh -docker cp :/usr/share/nginx/html/mobilitydcatap-ui/. ./dist/ -``` +The scripts builds the interface using the Docker container, and copies the required files in the `dist` folder running an instance of the container. diff --git a/dist/css/app.c2644c6c.css b/dist/css/app.c2644c6c.css new file mode 100644 index 0000000..fc1e6e5 --- /dev/null +++ b/dist/css/app.c2644c6c.css @@ -0,0 +1 @@ +@import url(https://fonts.googleapis.com/css2?family=Lato&display=swap);.nav-item{color:#000!important;border-right:10px}.nav-item-selected{border-bottom:4px solid #ffdd0d}.v-application{font-family:Lato,sans-serif!important}.card-content{height:100%;width:100%;bottom:0;text-shadow:4px 0 4px #000,-4px 0 4px #000,0 -4px 4px #000,0 4px 4px #000,0 4px 4px #000;color:#fff!important;justify-content:center;text-align:center;align-items:center;position:absolute;border-style:solid;border-radius:5px;border-color:#f5f5f5;border-width:2px;background-color:hsla(0,0%,98%,.8)!important;background-position:50%;background-repeat:no-repeat;background-size:cover;word-break:normal}.fade-enter-active,.fade-leave-active{transition-timing-function:ease;transition-duration:2s;transition-delay:1s;transition:.5s}.v-card--reveal{align-items:center;bottom:0;justify-content:center;text-align:center;position:absolute;width:100%;height:100%;background-color:#7ca5c3!important;border-radius:4px}.v-card__text,.v-card__title{word-break:normal}.theme--light.v-input--is-disabled .v-select__selection--disabled,.theme--light.v-input--is-disabled input,.theme--light.v-input--is-disabled textarea{color:#000!important}.page-top[data-v-46f3abe2]{background-color:#f5f5f5} \ No newline at end of file diff --git a/dist/css/chunk-vendors.5c922c6b.css b/dist/css/chunk-vendors.5c922c6b.css new file mode 100644 index 0000000..593fe3c --- /dev/null +++ b/dist/css/chunk-vendors.5c922c6b.css @@ -0,0 +1,5 @@ +.theme--light.v-card{background-color:#fff;color:rgba(0,0,0,.87)}.theme--light.v-card>.v-card__subtitle,.theme--light.v-card>.v-card__text{color:rgba(0,0,0,.6)}.theme--dark.v-card{background-color:#1e1e1e;color:#fff}.theme--dark.v-card>.v-card__subtitle,.theme--dark.v-card>.v-card__text{color:hsla(0,0%,100%,.7)}.v-sheet.v-card{border-radius:4px}.v-sheet.v-card:not(.v-sheet--outlined){box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.v-sheet.v-card.v-sheet--shaped{border-radius:16px 4px}.v-card{border-width:thin;display:block;max-width:100%;outline:none;text-decoration:none;transition-property:box-shadow,opacity;overflow-wrap:break-word;position:relative;white-space:normal}.v-card>.v-card__progress+:not(.v-btn):not(.v-chip):not(.v-avatar),.v-card>:first-child:not(.v-btn):not(.v-chip):not(.v-avatar){border-top-left-radius:inherit;border-top-right-radius:inherit}.v-card>:last-child:not(.v-btn):not(.v-chip):not(.v-avatar){border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.v-card__progress{top:0;left:0;right:0;overflow:hidden}.v-card__subtitle+.v-card__text{padding-top:0}.v-card__subtitle,.v-card__text{font-size:.875rem;font-weight:400;line-height:1.375rem;letter-spacing:.0071428571em}.v-card__subtitle,.v-card__text,.v-card__title{padding:16px}.v-card__title{align-items:center;display:flex;flex-wrap:wrap;font-size:1.25rem;font-weight:500;letter-spacing:.0125em;line-height:2rem;word-break:break-all}.v-card__title+.v-card__subtitle,.v-card__title+.v-card__text{padding-top:0}.v-card__title+.v-card__subtitle{margin-top:-16px}.v-card__text{width:100%}.v-card__actions{align-items:center;display:flex;padding:8px}.v-card__actions>.v-btn.v-btn{padding:0 8px}.v-application--is-ltr .v-card__actions>.v-btn.v-btn+.v-btn{margin-left:8px}.v-application--is-ltr .v-card__actions>.v-btn.v-btn .v-icon--left{margin-left:4px}.v-application--is-ltr .v-card__actions>.v-btn.v-btn .v-icon--right{margin-right:4px}.v-application--is-rtl .v-card__actions>.v-btn.v-btn+.v-btn{margin-right:8px}.v-application--is-rtl .v-card__actions>.v-btn.v-btn .v-icon--left{margin-right:4px}.v-application--is-rtl .v-card__actions>.v-btn.v-btn .v-icon--right{margin-left:4px}.v-card--flat{box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)!important}.v-sheet.v-card--hover{cursor:pointer;transition:box-shadow .4s cubic-bezier(.25,.8,.25,1)}.v-sheet.v-card--hover:focus,.v-sheet.v-card--hover:hover{box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}.v-card--link,.v-card--link .v-chip{cursor:pointer}.v-card--link:focus:before{opacity:.08}.v-card--link:before{background:currentColor;bottom:0;content:"";left:0;opacity:0;pointer-events:none;position:absolute;right:0;top:0;transition:opacity .2s}.v-card--disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.v-card--disabled>:not(.v-card__progress){opacity:.6;transition:inherit}.v-card--loading{overflow:hidden}.v-card--raised{box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}.theme--light.v-sheet{background-color:#fff;border-color:#fff;color:rgba(0,0,0,.87)}.theme--light.v-sheet--outlined{border:thin solid rgba(0,0,0,.12)}.theme--dark.v-sheet{background-color:#1e1e1e;border-color:#1e1e1e;color:#fff}.theme--dark.v-sheet--outlined{border:thin solid hsla(0,0%,100%,.12)}.v-sheet{border-radius:0}.v-sheet:not(.v-sheet--outlined){box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.v-sheet.v-sheet--shaped{border-radius:16px 0}@keyframes v-shake{59%{margin-left:0}60%,80%{margin-left:2px}70%,90%{margin-left:-2px}}.v-application .black{background-color:#000!important;border-color:#000!important}.v-application .black--text{color:#000!important;caret-color:#000!important}.v-application .white{background-color:#fff!important;border-color:#fff!important}.v-application .white--text{color:#fff!important;caret-color:#fff!important}.v-application .transparent{background-color:transparent!important;border-color:transparent!important}.v-application .transparent--text{color:transparent!important;caret-color:transparent!important}.v-application .red{background-color:#f44336!important;border-color:#f44336!important}.v-application .red--text{color:#f44336!important;caret-color:#f44336!important}.v-application .red.lighten-5{background-color:#ffebee!important;border-color:#ffebee!important}.v-application .red--text.text--lighten-5{color:#ffebee!important;caret-color:#ffebee!important}.v-application .red.lighten-4{background-color:#ffcdd2!important;border-color:#ffcdd2!important}.v-application .red--text.text--lighten-4{color:#ffcdd2!important;caret-color:#ffcdd2!important}.v-application .red.lighten-3{background-color:#ef9a9a!important;border-color:#ef9a9a!important}.v-application .red--text.text--lighten-3{color:#ef9a9a!important;caret-color:#ef9a9a!important}.v-application .red.lighten-2{background-color:#e57373!important;border-color:#e57373!important}.v-application .red--text.text--lighten-2{color:#e57373!important;caret-color:#e57373!important}.v-application .red.lighten-1{background-color:#ef5350!important;border-color:#ef5350!important}.v-application .red--text.text--lighten-1{color:#ef5350!important;caret-color:#ef5350!important}.v-application .red.darken-1{background-color:#e53935!important;border-color:#e53935!important}.v-application .red--text.text--darken-1{color:#e53935!important;caret-color:#e53935!important}.v-application .red.darken-2{background-color:#d32f2f!important;border-color:#d32f2f!important}.v-application .red--text.text--darken-2{color:#d32f2f!important;caret-color:#d32f2f!important}.v-application .red.darken-3{background-color:#c62828!important;border-color:#c62828!important}.v-application .red--text.text--darken-3{color:#c62828!important;caret-color:#c62828!important}.v-application .red.darken-4{background-color:#b71c1c!important;border-color:#b71c1c!important}.v-application .red--text.text--darken-4{color:#b71c1c!important;caret-color:#b71c1c!important}.v-application .red.accent-1{background-color:#ff8a80!important;border-color:#ff8a80!important}.v-application .red--text.text--accent-1{color:#ff8a80!important;caret-color:#ff8a80!important}.v-application .red.accent-2{background-color:#ff5252!important;border-color:#ff5252!important}.v-application .red--text.text--accent-2{color:#ff5252!important;caret-color:#ff5252!important}.v-application .red.accent-3{background-color:#ff1744!important;border-color:#ff1744!important}.v-application .red--text.text--accent-3{color:#ff1744!important;caret-color:#ff1744!important}.v-application .red.accent-4{background-color:#d50000!important;border-color:#d50000!important}.v-application .red--text.text--accent-4{color:#d50000!important;caret-color:#d50000!important}.v-application .pink{background-color:#e91e63!important;border-color:#e91e63!important}.v-application .pink--text{color:#e91e63!important;caret-color:#e91e63!important}.v-application .pink.lighten-5{background-color:#fce4ec!important;border-color:#fce4ec!important}.v-application .pink--text.text--lighten-5{color:#fce4ec!important;caret-color:#fce4ec!important}.v-application .pink.lighten-4{background-color:#f8bbd0!important;border-color:#f8bbd0!important}.v-application .pink--text.text--lighten-4{color:#f8bbd0!important;caret-color:#f8bbd0!important}.v-application .pink.lighten-3{background-color:#f48fb1!important;border-color:#f48fb1!important}.v-application .pink--text.text--lighten-3{color:#f48fb1!important;caret-color:#f48fb1!important}.v-application .pink.lighten-2{background-color:#f06292!important;border-color:#f06292!important}.v-application .pink--text.text--lighten-2{color:#f06292!important;caret-color:#f06292!important}.v-application .pink.lighten-1{background-color:#ec407a!important;border-color:#ec407a!important}.v-application .pink--text.text--lighten-1{color:#ec407a!important;caret-color:#ec407a!important}.v-application .pink.darken-1{background-color:#d81b60!important;border-color:#d81b60!important}.v-application .pink--text.text--darken-1{color:#d81b60!important;caret-color:#d81b60!important}.v-application .pink.darken-2{background-color:#c2185b!important;border-color:#c2185b!important}.v-application .pink--text.text--darken-2{color:#c2185b!important;caret-color:#c2185b!important}.v-application .pink.darken-3{background-color:#ad1457!important;border-color:#ad1457!important}.v-application .pink--text.text--darken-3{color:#ad1457!important;caret-color:#ad1457!important}.v-application .pink.darken-4{background-color:#880e4f!important;border-color:#880e4f!important}.v-application .pink--text.text--darken-4{color:#880e4f!important;caret-color:#880e4f!important}.v-application .pink.accent-1{background-color:#ff80ab!important;border-color:#ff80ab!important}.v-application .pink--text.text--accent-1{color:#ff80ab!important;caret-color:#ff80ab!important}.v-application .pink.accent-2{background-color:#ff4081!important;border-color:#ff4081!important}.v-application .pink--text.text--accent-2{color:#ff4081!important;caret-color:#ff4081!important}.v-application .pink.accent-3{background-color:#f50057!important;border-color:#f50057!important}.v-application .pink--text.text--accent-3{color:#f50057!important;caret-color:#f50057!important}.v-application .pink.accent-4{background-color:#c51162!important;border-color:#c51162!important}.v-application .pink--text.text--accent-4{color:#c51162!important;caret-color:#c51162!important}.v-application .purple{background-color:#9c27b0!important;border-color:#9c27b0!important}.v-application .purple--text{color:#9c27b0!important;caret-color:#9c27b0!important}.v-application .purple.lighten-5{background-color:#f3e5f5!important;border-color:#f3e5f5!important}.v-application .purple--text.text--lighten-5{color:#f3e5f5!important;caret-color:#f3e5f5!important}.v-application .purple.lighten-4{background-color:#e1bee7!important;border-color:#e1bee7!important}.v-application .purple--text.text--lighten-4{color:#e1bee7!important;caret-color:#e1bee7!important}.v-application .purple.lighten-3{background-color:#ce93d8!important;border-color:#ce93d8!important}.v-application .purple--text.text--lighten-3{color:#ce93d8!important;caret-color:#ce93d8!important}.v-application .purple.lighten-2{background-color:#ba68c8!important;border-color:#ba68c8!important}.v-application .purple--text.text--lighten-2{color:#ba68c8!important;caret-color:#ba68c8!important}.v-application .purple.lighten-1{background-color:#ab47bc!important;border-color:#ab47bc!important}.v-application .purple--text.text--lighten-1{color:#ab47bc!important;caret-color:#ab47bc!important}.v-application .purple.darken-1{background-color:#8e24aa!important;border-color:#8e24aa!important}.v-application .purple--text.text--darken-1{color:#8e24aa!important;caret-color:#8e24aa!important}.v-application .purple.darken-2{background-color:#7b1fa2!important;border-color:#7b1fa2!important}.v-application .purple--text.text--darken-2{color:#7b1fa2!important;caret-color:#7b1fa2!important}.v-application .purple.darken-3{background-color:#6a1b9a!important;border-color:#6a1b9a!important}.v-application .purple--text.text--darken-3{color:#6a1b9a!important;caret-color:#6a1b9a!important}.v-application .purple.darken-4{background-color:#4a148c!important;border-color:#4a148c!important}.v-application .purple--text.text--darken-4{color:#4a148c!important;caret-color:#4a148c!important}.v-application .purple.accent-1{background-color:#ea80fc!important;border-color:#ea80fc!important}.v-application .purple--text.text--accent-1{color:#ea80fc!important;caret-color:#ea80fc!important}.v-application .purple.accent-2{background-color:#e040fb!important;border-color:#e040fb!important}.v-application .purple--text.text--accent-2{color:#e040fb!important;caret-color:#e040fb!important}.v-application .purple.accent-3{background-color:#d500f9!important;border-color:#d500f9!important}.v-application .purple--text.text--accent-3{color:#d500f9!important;caret-color:#d500f9!important}.v-application .purple.accent-4{background-color:#a0f!important;border-color:#a0f!important}.v-application .purple--text.text--accent-4{color:#a0f!important;caret-color:#a0f!important}.v-application .deep-purple{background-color:#673ab7!important;border-color:#673ab7!important}.v-application .deep-purple--text{color:#673ab7!important;caret-color:#673ab7!important}.v-application .deep-purple.lighten-5{background-color:#ede7f6!important;border-color:#ede7f6!important}.v-application .deep-purple--text.text--lighten-5{color:#ede7f6!important;caret-color:#ede7f6!important}.v-application .deep-purple.lighten-4{background-color:#d1c4e9!important;border-color:#d1c4e9!important}.v-application .deep-purple--text.text--lighten-4{color:#d1c4e9!important;caret-color:#d1c4e9!important}.v-application .deep-purple.lighten-3{background-color:#b39ddb!important;border-color:#b39ddb!important}.v-application .deep-purple--text.text--lighten-3{color:#b39ddb!important;caret-color:#b39ddb!important}.v-application .deep-purple.lighten-2{background-color:#9575cd!important;border-color:#9575cd!important}.v-application .deep-purple--text.text--lighten-2{color:#9575cd!important;caret-color:#9575cd!important}.v-application .deep-purple.lighten-1{background-color:#7e57c2!important;border-color:#7e57c2!important}.v-application .deep-purple--text.text--lighten-1{color:#7e57c2!important;caret-color:#7e57c2!important}.v-application .deep-purple.darken-1{background-color:#5e35b1!important;border-color:#5e35b1!important}.v-application .deep-purple--text.text--darken-1{color:#5e35b1!important;caret-color:#5e35b1!important}.v-application .deep-purple.darken-2{background-color:#512da8!important;border-color:#512da8!important}.v-application .deep-purple--text.text--darken-2{color:#512da8!important;caret-color:#512da8!important}.v-application .deep-purple.darken-3{background-color:#4527a0!important;border-color:#4527a0!important}.v-application .deep-purple--text.text--darken-3{color:#4527a0!important;caret-color:#4527a0!important}.v-application .deep-purple.darken-4{background-color:#311b92!important;border-color:#311b92!important}.v-application .deep-purple--text.text--darken-4{color:#311b92!important;caret-color:#311b92!important}.v-application .deep-purple.accent-1{background-color:#b388ff!important;border-color:#b388ff!important}.v-application .deep-purple--text.text--accent-1{color:#b388ff!important;caret-color:#b388ff!important}.v-application .deep-purple.accent-2{background-color:#7c4dff!important;border-color:#7c4dff!important}.v-application .deep-purple--text.text--accent-2{color:#7c4dff!important;caret-color:#7c4dff!important}.v-application .deep-purple.accent-3{background-color:#651fff!important;border-color:#651fff!important}.v-application .deep-purple--text.text--accent-3{color:#651fff!important;caret-color:#651fff!important}.v-application .deep-purple.accent-4{background-color:#6200ea!important;border-color:#6200ea!important}.v-application .deep-purple--text.text--accent-4{color:#6200ea!important;caret-color:#6200ea!important}.v-application .indigo{background-color:#3f51b5!important;border-color:#3f51b5!important}.v-application .indigo--text{color:#3f51b5!important;caret-color:#3f51b5!important}.v-application .indigo.lighten-5{background-color:#e8eaf6!important;border-color:#e8eaf6!important}.v-application .indigo--text.text--lighten-5{color:#e8eaf6!important;caret-color:#e8eaf6!important}.v-application .indigo.lighten-4{background-color:#c5cae9!important;border-color:#c5cae9!important}.v-application .indigo--text.text--lighten-4{color:#c5cae9!important;caret-color:#c5cae9!important}.v-application .indigo.lighten-3{background-color:#9fa8da!important;border-color:#9fa8da!important}.v-application .indigo--text.text--lighten-3{color:#9fa8da!important;caret-color:#9fa8da!important}.v-application .indigo.lighten-2{background-color:#7986cb!important;border-color:#7986cb!important}.v-application .indigo--text.text--lighten-2{color:#7986cb!important;caret-color:#7986cb!important}.v-application .indigo.lighten-1{background-color:#5c6bc0!important;border-color:#5c6bc0!important}.v-application .indigo--text.text--lighten-1{color:#5c6bc0!important;caret-color:#5c6bc0!important}.v-application .indigo.darken-1{background-color:#3949ab!important;border-color:#3949ab!important}.v-application .indigo--text.text--darken-1{color:#3949ab!important;caret-color:#3949ab!important}.v-application .indigo.darken-2{background-color:#303f9f!important;border-color:#303f9f!important}.v-application .indigo--text.text--darken-2{color:#303f9f!important;caret-color:#303f9f!important}.v-application .indigo.darken-3{background-color:#283593!important;border-color:#283593!important}.v-application .indigo--text.text--darken-3{color:#283593!important;caret-color:#283593!important}.v-application .indigo.darken-4{background-color:#1a237e!important;border-color:#1a237e!important}.v-application .indigo--text.text--darken-4{color:#1a237e!important;caret-color:#1a237e!important}.v-application .indigo.accent-1{background-color:#8c9eff!important;border-color:#8c9eff!important}.v-application .indigo--text.text--accent-1{color:#8c9eff!important;caret-color:#8c9eff!important}.v-application .indigo.accent-2{background-color:#536dfe!important;border-color:#536dfe!important}.v-application .indigo--text.text--accent-2{color:#536dfe!important;caret-color:#536dfe!important}.v-application .indigo.accent-3{background-color:#3d5afe!important;border-color:#3d5afe!important}.v-application .indigo--text.text--accent-3{color:#3d5afe!important;caret-color:#3d5afe!important}.v-application .indigo.accent-4{background-color:#304ffe!important;border-color:#304ffe!important}.v-application .indigo--text.text--accent-4{color:#304ffe!important;caret-color:#304ffe!important}.v-application .blue{background-color:#2196f3!important;border-color:#2196f3!important}.v-application .blue--text{color:#2196f3!important;caret-color:#2196f3!important}.v-application .blue.lighten-5{background-color:#e3f2fd!important;border-color:#e3f2fd!important}.v-application .blue--text.text--lighten-5{color:#e3f2fd!important;caret-color:#e3f2fd!important}.v-application .blue.lighten-4{background-color:#bbdefb!important;border-color:#bbdefb!important}.v-application .blue--text.text--lighten-4{color:#bbdefb!important;caret-color:#bbdefb!important}.v-application .blue.lighten-3{background-color:#90caf9!important;border-color:#90caf9!important}.v-application .blue--text.text--lighten-3{color:#90caf9!important;caret-color:#90caf9!important}.v-application .blue.lighten-2{background-color:#64b5f6!important;border-color:#64b5f6!important}.v-application .blue--text.text--lighten-2{color:#64b5f6!important;caret-color:#64b5f6!important}.v-application .blue.lighten-1{background-color:#42a5f5!important;border-color:#42a5f5!important}.v-application .blue--text.text--lighten-1{color:#42a5f5!important;caret-color:#42a5f5!important}.v-application .blue.darken-1{background-color:#1e88e5!important;border-color:#1e88e5!important}.v-application .blue--text.text--darken-1{color:#1e88e5!important;caret-color:#1e88e5!important}.v-application .blue.darken-2{background-color:#1976d2!important;border-color:#1976d2!important}.v-application .blue--text.text--darken-2{color:#1976d2!important;caret-color:#1976d2!important}.v-application .blue.darken-3{background-color:#1565c0!important;border-color:#1565c0!important}.v-application .blue--text.text--darken-3{color:#1565c0!important;caret-color:#1565c0!important}.v-application .blue.darken-4{background-color:#0d47a1!important;border-color:#0d47a1!important}.v-application .blue--text.text--darken-4{color:#0d47a1!important;caret-color:#0d47a1!important}.v-application .blue.accent-1{background-color:#82b1ff!important;border-color:#82b1ff!important}.v-application .blue--text.text--accent-1{color:#82b1ff!important;caret-color:#82b1ff!important}.v-application .blue.accent-2{background-color:#448aff!important;border-color:#448aff!important}.v-application .blue--text.text--accent-2{color:#448aff!important;caret-color:#448aff!important}.v-application .blue.accent-3{background-color:#2979ff!important;border-color:#2979ff!important}.v-application .blue--text.text--accent-3{color:#2979ff!important;caret-color:#2979ff!important}.v-application .blue.accent-4{background-color:#2962ff!important;border-color:#2962ff!important}.v-application .blue--text.text--accent-4{color:#2962ff!important;caret-color:#2962ff!important}.v-application .light-blue{background-color:#03a9f4!important;border-color:#03a9f4!important}.v-application .light-blue--text{color:#03a9f4!important;caret-color:#03a9f4!important}.v-application .light-blue.lighten-5{background-color:#e1f5fe!important;border-color:#e1f5fe!important}.v-application .light-blue--text.text--lighten-5{color:#e1f5fe!important;caret-color:#e1f5fe!important}.v-application .light-blue.lighten-4{background-color:#b3e5fc!important;border-color:#b3e5fc!important}.v-application .light-blue--text.text--lighten-4{color:#b3e5fc!important;caret-color:#b3e5fc!important}.v-application .light-blue.lighten-3{background-color:#81d4fa!important;border-color:#81d4fa!important}.v-application .light-blue--text.text--lighten-3{color:#81d4fa!important;caret-color:#81d4fa!important}.v-application .light-blue.lighten-2{background-color:#4fc3f7!important;border-color:#4fc3f7!important}.v-application .light-blue--text.text--lighten-2{color:#4fc3f7!important;caret-color:#4fc3f7!important}.v-application .light-blue.lighten-1{background-color:#29b6f6!important;border-color:#29b6f6!important}.v-application .light-blue--text.text--lighten-1{color:#29b6f6!important;caret-color:#29b6f6!important}.v-application .light-blue.darken-1{background-color:#039be5!important;border-color:#039be5!important}.v-application .light-blue--text.text--darken-1{color:#039be5!important;caret-color:#039be5!important}.v-application .light-blue.darken-2{background-color:#0288d1!important;border-color:#0288d1!important}.v-application .light-blue--text.text--darken-2{color:#0288d1!important;caret-color:#0288d1!important}.v-application .light-blue.darken-3{background-color:#0277bd!important;border-color:#0277bd!important}.v-application .light-blue--text.text--darken-3{color:#0277bd!important;caret-color:#0277bd!important}.v-application .light-blue.darken-4{background-color:#01579b!important;border-color:#01579b!important}.v-application .light-blue--text.text--darken-4{color:#01579b!important;caret-color:#01579b!important}.v-application .light-blue.accent-1{background-color:#80d8ff!important;border-color:#80d8ff!important}.v-application .light-blue--text.text--accent-1{color:#80d8ff!important;caret-color:#80d8ff!important}.v-application .light-blue.accent-2{background-color:#40c4ff!important;border-color:#40c4ff!important}.v-application .light-blue--text.text--accent-2{color:#40c4ff!important;caret-color:#40c4ff!important}.v-application .light-blue.accent-3{background-color:#00b0ff!important;border-color:#00b0ff!important}.v-application .light-blue--text.text--accent-3{color:#00b0ff!important;caret-color:#00b0ff!important}.v-application .light-blue.accent-4{background-color:#0091ea!important;border-color:#0091ea!important}.v-application .light-blue--text.text--accent-4{color:#0091ea!important;caret-color:#0091ea!important}.v-application .cyan{background-color:#00bcd4!important;border-color:#00bcd4!important}.v-application .cyan--text{color:#00bcd4!important;caret-color:#00bcd4!important}.v-application .cyan.lighten-5{background-color:#e0f7fa!important;border-color:#e0f7fa!important}.v-application .cyan--text.text--lighten-5{color:#e0f7fa!important;caret-color:#e0f7fa!important}.v-application .cyan.lighten-4{background-color:#b2ebf2!important;border-color:#b2ebf2!important}.v-application .cyan--text.text--lighten-4{color:#b2ebf2!important;caret-color:#b2ebf2!important}.v-application .cyan.lighten-3{background-color:#80deea!important;border-color:#80deea!important}.v-application .cyan--text.text--lighten-3{color:#80deea!important;caret-color:#80deea!important}.v-application .cyan.lighten-2{background-color:#4dd0e1!important;border-color:#4dd0e1!important}.v-application .cyan--text.text--lighten-2{color:#4dd0e1!important;caret-color:#4dd0e1!important}.v-application .cyan.lighten-1{background-color:#26c6da!important;border-color:#26c6da!important}.v-application .cyan--text.text--lighten-1{color:#26c6da!important;caret-color:#26c6da!important}.v-application .cyan.darken-1{background-color:#00acc1!important;border-color:#00acc1!important}.v-application .cyan--text.text--darken-1{color:#00acc1!important;caret-color:#00acc1!important}.v-application .cyan.darken-2{background-color:#0097a7!important;border-color:#0097a7!important}.v-application .cyan--text.text--darken-2{color:#0097a7!important;caret-color:#0097a7!important}.v-application .cyan.darken-3{background-color:#00838f!important;border-color:#00838f!important}.v-application .cyan--text.text--darken-3{color:#00838f!important;caret-color:#00838f!important}.v-application .cyan.darken-4{background-color:#006064!important;border-color:#006064!important}.v-application .cyan--text.text--darken-4{color:#006064!important;caret-color:#006064!important}.v-application .cyan.accent-1{background-color:#84ffff!important;border-color:#84ffff!important}.v-application .cyan--text.text--accent-1{color:#84ffff!important;caret-color:#84ffff!important}.v-application .cyan.accent-2{background-color:#18ffff!important;border-color:#18ffff!important}.v-application .cyan--text.text--accent-2{color:#18ffff!important;caret-color:#18ffff!important}.v-application .cyan.accent-3{background-color:#00e5ff!important;border-color:#00e5ff!important}.v-application .cyan--text.text--accent-3{color:#00e5ff!important;caret-color:#00e5ff!important}.v-application .cyan.accent-4{background-color:#00b8d4!important;border-color:#00b8d4!important}.v-application .cyan--text.text--accent-4{color:#00b8d4!important;caret-color:#00b8d4!important}.v-application .teal{background-color:#009688!important;border-color:#009688!important}.v-application .teal--text{color:#009688!important;caret-color:#009688!important}.v-application .teal.lighten-5{background-color:#e0f2f1!important;border-color:#e0f2f1!important}.v-application .teal--text.text--lighten-5{color:#e0f2f1!important;caret-color:#e0f2f1!important}.v-application .teal.lighten-4{background-color:#b2dfdb!important;border-color:#b2dfdb!important}.v-application .teal--text.text--lighten-4{color:#b2dfdb!important;caret-color:#b2dfdb!important}.v-application .teal.lighten-3{background-color:#80cbc4!important;border-color:#80cbc4!important}.v-application .teal--text.text--lighten-3{color:#80cbc4!important;caret-color:#80cbc4!important}.v-application .teal.lighten-2{background-color:#4db6ac!important;border-color:#4db6ac!important}.v-application .teal--text.text--lighten-2{color:#4db6ac!important;caret-color:#4db6ac!important}.v-application .teal.lighten-1{background-color:#26a69a!important;border-color:#26a69a!important}.v-application .teal--text.text--lighten-1{color:#26a69a!important;caret-color:#26a69a!important}.v-application .teal.darken-1{background-color:#00897b!important;border-color:#00897b!important}.v-application .teal--text.text--darken-1{color:#00897b!important;caret-color:#00897b!important}.v-application .teal.darken-2{background-color:#00796b!important;border-color:#00796b!important}.v-application .teal--text.text--darken-2{color:#00796b!important;caret-color:#00796b!important}.v-application .teal.darken-3{background-color:#00695c!important;border-color:#00695c!important}.v-application .teal--text.text--darken-3{color:#00695c!important;caret-color:#00695c!important}.v-application .teal.darken-4{background-color:#004d40!important;border-color:#004d40!important}.v-application .teal--text.text--darken-4{color:#004d40!important;caret-color:#004d40!important}.v-application .teal.accent-1{background-color:#a7ffeb!important;border-color:#a7ffeb!important}.v-application .teal--text.text--accent-1{color:#a7ffeb!important;caret-color:#a7ffeb!important}.v-application .teal.accent-2{background-color:#64ffda!important;border-color:#64ffda!important}.v-application .teal--text.text--accent-2{color:#64ffda!important;caret-color:#64ffda!important}.v-application .teal.accent-3{background-color:#1de9b6!important;border-color:#1de9b6!important}.v-application .teal--text.text--accent-3{color:#1de9b6!important;caret-color:#1de9b6!important}.v-application .teal.accent-4{background-color:#00bfa5!important;border-color:#00bfa5!important}.v-application .teal--text.text--accent-4{color:#00bfa5!important;caret-color:#00bfa5!important}.v-application .green{background-color:#4caf50!important;border-color:#4caf50!important}.v-application .green--text{color:#4caf50!important;caret-color:#4caf50!important}.v-application .green.lighten-5{background-color:#e8f5e9!important;border-color:#e8f5e9!important}.v-application .green--text.text--lighten-5{color:#e8f5e9!important;caret-color:#e8f5e9!important}.v-application .green.lighten-4{background-color:#c8e6c9!important;border-color:#c8e6c9!important}.v-application .green--text.text--lighten-4{color:#c8e6c9!important;caret-color:#c8e6c9!important}.v-application .green.lighten-3{background-color:#a5d6a7!important;border-color:#a5d6a7!important}.v-application .green--text.text--lighten-3{color:#a5d6a7!important;caret-color:#a5d6a7!important}.v-application .green.lighten-2{background-color:#81c784!important;border-color:#81c784!important}.v-application .green--text.text--lighten-2{color:#81c784!important;caret-color:#81c784!important}.v-application .green.lighten-1{background-color:#66bb6a!important;border-color:#66bb6a!important}.v-application .green--text.text--lighten-1{color:#66bb6a!important;caret-color:#66bb6a!important}.v-application .green.darken-1{background-color:#43a047!important;border-color:#43a047!important}.v-application .green--text.text--darken-1{color:#43a047!important;caret-color:#43a047!important}.v-application .green.darken-2{background-color:#388e3c!important;border-color:#388e3c!important}.v-application .green--text.text--darken-2{color:#388e3c!important;caret-color:#388e3c!important}.v-application .green.darken-3{background-color:#2e7d32!important;border-color:#2e7d32!important}.v-application .green--text.text--darken-3{color:#2e7d32!important;caret-color:#2e7d32!important}.v-application .green.darken-4{background-color:#1b5e20!important;border-color:#1b5e20!important}.v-application .green--text.text--darken-4{color:#1b5e20!important;caret-color:#1b5e20!important}.v-application .green.accent-1{background-color:#b9f6ca!important;border-color:#b9f6ca!important}.v-application .green--text.text--accent-1{color:#b9f6ca!important;caret-color:#b9f6ca!important}.v-application .green.accent-2{background-color:#69f0ae!important;border-color:#69f0ae!important}.v-application .green--text.text--accent-2{color:#69f0ae!important;caret-color:#69f0ae!important}.v-application .green.accent-3{background-color:#00e676!important;border-color:#00e676!important}.v-application .green--text.text--accent-3{color:#00e676!important;caret-color:#00e676!important}.v-application .green.accent-4{background-color:#00c853!important;border-color:#00c853!important}.v-application .green--text.text--accent-4{color:#00c853!important;caret-color:#00c853!important}.v-application .light-green{background-color:#8bc34a!important;border-color:#8bc34a!important}.v-application .light-green--text{color:#8bc34a!important;caret-color:#8bc34a!important}.v-application .light-green.lighten-5{background-color:#f1f8e9!important;border-color:#f1f8e9!important}.v-application .light-green--text.text--lighten-5{color:#f1f8e9!important;caret-color:#f1f8e9!important}.v-application .light-green.lighten-4{background-color:#dcedc8!important;border-color:#dcedc8!important}.v-application .light-green--text.text--lighten-4{color:#dcedc8!important;caret-color:#dcedc8!important}.v-application .light-green.lighten-3{background-color:#c5e1a5!important;border-color:#c5e1a5!important}.v-application .light-green--text.text--lighten-3{color:#c5e1a5!important;caret-color:#c5e1a5!important}.v-application .light-green.lighten-2{background-color:#aed581!important;border-color:#aed581!important}.v-application .light-green--text.text--lighten-2{color:#aed581!important;caret-color:#aed581!important}.v-application .light-green.lighten-1{background-color:#9ccc65!important;border-color:#9ccc65!important}.v-application .light-green--text.text--lighten-1{color:#9ccc65!important;caret-color:#9ccc65!important}.v-application .light-green.darken-1{background-color:#7cb342!important;border-color:#7cb342!important}.v-application .light-green--text.text--darken-1{color:#7cb342!important;caret-color:#7cb342!important}.v-application .light-green.darken-2{background-color:#689f38!important;border-color:#689f38!important}.v-application .light-green--text.text--darken-2{color:#689f38!important;caret-color:#689f38!important}.v-application .light-green.darken-3{background-color:#558b2f!important;border-color:#558b2f!important}.v-application .light-green--text.text--darken-3{color:#558b2f!important;caret-color:#558b2f!important}.v-application .light-green.darken-4{background-color:#33691e!important;border-color:#33691e!important}.v-application .light-green--text.text--darken-4{color:#33691e!important;caret-color:#33691e!important}.v-application .light-green.accent-1{background-color:#ccff90!important;border-color:#ccff90!important}.v-application .light-green--text.text--accent-1{color:#ccff90!important;caret-color:#ccff90!important}.v-application .light-green.accent-2{background-color:#b2ff59!important;border-color:#b2ff59!important}.v-application .light-green--text.text--accent-2{color:#b2ff59!important;caret-color:#b2ff59!important}.v-application .light-green.accent-3{background-color:#76ff03!important;border-color:#76ff03!important}.v-application .light-green--text.text--accent-3{color:#76ff03!important;caret-color:#76ff03!important}.v-application .light-green.accent-4{background-color:#64dd17!important;border-color:#64dd17!important}.v-application .light-green--text.text--accent-4{color:#64dd17!important;caret-color:#64dd17!important}.v-application .lime{background-color:#cddc39!important;border-color:#cddc39!important}.v-application .lime--text{color:#cddc39!important;caret-color:#cddc39!important}.v-application .lime.lighten-5{background-color:#f9fbe7!important;border-color:#f9fbe7!important}.v-application .lime--text.text--lighten-5{color:#f9fbe7!important;caret-color:#f9fbe7!important}.v-application .lime.lighten-4{background-color:#f0f4c3!important;border-color:#f0f4c3!important}.v-application .lime--text.text--lighten-4{color:#f0f4c3!important;caret-color:#f0f4c3!important}.v-application .lime.lighten-3{background-color:#e6ee9c!important;border-color:#e6ee9c!important}.v-application .lime--text.text--lighten-3{color:#e6ee9c!important;caret-color:#e6ee9c!important}.v-application .lime.lighten-2{background-color:#dce775!important;border-color:#dce775!important}.v-application .lime--text.text--lighten-2{color:#dce775!important;caret-color:#dce775!important}.v-application .lime.lighten-1{background-color:#d4e157!important;border-color:#d4e157!important}.v-application .lime--text.text--lighten-1{color:#d4e157!important;caret-color:#d4e157!important}.v-application .lime.darken-1{background-color:#c0ca33!important;border-color:#c0ca33!important}.v-application .lime--text.text--darken-1{color:#c0ca33!important;caret-color:#c0ca33!important}.v-application .lime.darken-2{background-color:#afb42b!important;border-color:#afb42b!important}.v-application .lime--text.text--darken-2{color:#afb42b!important;caret-color:#afb42b!important}.v-application .lime.darken-3{background-color:#9e9d24!important;border-color:#9e9d24!important}.v-application .lime--text.text--darken-3{color:#9e9d24!important;caret-color:#9e9d24!important}.v-application .lime.darken-4{background-color:#827717!important;border-color:#827717!important}.v-application .lime--text.text--darken-4{color:#827717!important;caret-color:#827717!important}.v-application .lime.accent-1{background-color:#f4ff81!important;border-color:#f4ff81!important}.v-application .lime--text.text--accent-1{color:#f4ff81!important;caret-color:#f4ff81!important}.v-application .lime.accent-2{background-color:#eeff41!important;border-color:#eeff41!important}.v-application .lime--text.text--accent-2{color:#eeff41!important;caret-color:#eeff41!important}.v-application .lime.accent-3{background-color:#c6ff00!important;border-color:#c6ff00!important}.v-application .lime--text.text--accent-3{color:#c6ff00!important;caret-color:#c6ff00!important}.v-application .lime.accent-4{background-color:#aeea00!important;border-color:#aeea00!important}.v-application .lime--text.text--accent-4{color:#aeea00!important;caret-color:#aeea00!important}.v-application .yellow{background-color:#ffeb3b!important;border-color:#ffeb3b!important}.v-application .yellow--text{color:#ffeb3b!important;caret-color:#ffeb3b!important}.v-application .yellow.lighten-5{background-color:#fffde7!important;border-color:#fffde7!important}.v-application .yellow--text.text--lighten-5{color:#fffde7!important;caret-color:#fffde7!important}.v-application .yellow.lighten-4{background-color:#fff9c4!important;border-color:#fff9c4!important}.v-application .yellow--text.text--lighten-4{color:#fff9c4!important;caret-color:#fff9c4!important}.v-application .yellow.lighten-3{background-color:#fff59d!important;border-color:#fff59d!important}.v-application .yellow--text.text--lighten-3{color:#fff59d!important;caret-color:#fff59d!important}.v-application .yellow.lighten-2{background-color:#fff176!important;border-color:#fff176!important}.v-application .yellow--text.text--lighten-2{color:#fff176!important;caret-color:#fff176!important}.v-application .yellow.lighten-1{background-color:#ffee58!important;border-color:#ffee58!important}.v-application .yellow--text.text--lighten-1{color:#ffee58!important;caret-color:#ffee58!important}.v-application .yellow.darken-1{background-color:#fdd835!important;border-color:#fdd835!important}.v-application .yellow--text.text--darken-1{color:#fdd835!important;caret-color:#fdd835!important}.v-application .yellow.darken-2{background-color:#fbc02d!important;border-color:#fbc02d!important}.v-application .yellow--text.text--darken-2{color:#fbc02d!important;caret-color:#fbc02d!important}.v-application .yellow.darken-3{background-color:#f9a825!important;border-color:#f9a825!important}.v-application .yellow--text.text--darken-3{color:#f9a825!important;caret-color:#f9a825!important}.v-application .yellow.darken-4{background-color:#f57f17!important;border-color:#f57f17!important}.v-application .yellow--text.text--darken-4{color:#f57f17!important;caret-color:#f57f17!important}.v-application .yellow.accent-1{background-color:#ffff8d!important;border-color:#ffff8d!important}.v-application .yellow--text.text--accent-1{color:#ffff8d!important;caret-color:#ffff8d!important}.v-application .yellow.accent-2{background-color:#ff0!important;border-color:#ff0!important}.v-application .yellow--text.text--accent-2{color:#ff0!important;caret-color:#ff0!important}.v-application .yellow.accent-3{background-color:#ffea00!important;border-color:#ffea00!important}.v-application .yellow--text.text--accent-3{color:#ffea00!important;caret-color:#ffea00!important}.v-application .yellow.accent-4{background-color:#ffd600!important;border-color:#ffd600!important}.v-application .yellow--text.text--accent-4{color:#ffd600!important;caret-color:#ffd600!important}.v-application .amber{background-color:#ffc107!important;border-color:#ffc107!important}.v-application .amber--text{color:#ffc107!important;caret-color:#ffc107!important}.v-application .amber.lighten-5{background-color:#fff8e1!important;border-color:#fff8e1!important}.v-application .amber--text.text--lighten-5{color:#fff8e1!important;caret-color:#fff8e1!important}.v-application .amber.lighten-4{background-color:#ffecb3!important;border-color:#ffecb3!important}.v-application .amber--text.text--lighten-4{color:#ffecb3!important;caret-color:#ffecb3!important}.v-application .amber.lighten-3{background-color:#ffe082!important;border-color:#ffe082!important}.v-application .amber--text.text--lighten-3{color:#ffe082!important;caret-color:#ffe082!important}.v-application .amber.lighten-2{background-color:#ffd54f!important;border-color:#ffd54f!important}.v-application .amber--text.text--lighten-2{color:#ffd54f!important;caret-color:#ffd54f!important}.v-application .amber.lighten-1{background-color:#ffca28!important;border-color:#ffca28!important}.v-application .amber--text.text--lighten-1{color:#ffca28!important;caret-color:#ffca28!important}.v-application .amber.darken-1{background-color:#ffb300!important;border-color:#ffb300!important}.v-application .amber--text.text--darken-1{color:#ffb300!important;caret-color:#ffb300!important}.v-application .amber.darken-2{background-color:#ffa000!important;border-color:#ffa000!important}.v-application .amber--text.text--darken-2{color:#ffa000!important;caret-color:#ffa000!important}.v-application .amber.darken-3{background-color:#ff8f00!important;border-color:#ff8f00!important}.v-application .amber--text.text--darken-3{color:#ff8f00!important;caret-color:#ff8f00!important}.v-application .amber.darken-4{background-color:#ff6f00!important;border-color:#ff6f00!important}.v-application .amber--text.text--darken-4{color:#ff6f00!important;caret-color:#ff6f00!important}.v-application .amber.accent-1{background-color:#ffe57f!important;border-color:#ffe57f!important}.v-application .amber--text.text--accent-1{color:#ffe57f!important;caret-color:#ffe57f!important}.v-application .amber.accent-2{background-color:#ffd740!important;border-color:#ffd740!important}.v-application .amber--text.text--accent-2{color:#ffd740!important;caret-color:#ffd740!important}.v-application .amber.accent-3{background-color:#ffc400!important;border-color:#ffc400!important}.v-application .amber--text.text--accent-3{color:#ffc400!important;caret-color:#ffc400!important}.v-application .amber.accent-4{background-color:#ffab00!important;border-color:#ffab00!important}.v-application .amber--text.text--accent-4{color:#ffab00!important;caret-color:#ffab00!important}.v-application .orange{background-color:#ff9800!important;border-color:#ff9800!important}.v-application .orange--text{color:#ff9800!important;caret-color:#ff9800!important}.v-application .orange.lighten-5{background-color:#fff3e0!important;border-color:#fff3e0!important}.v-application .orange--text.text--lighten-5{color:#fff3e0!important;caret-color:#fff3e0!important}.v-application .orange.lighten-4{background-color:#ffe0b2!important;border-color:#ffe0b2!important}.v-application .orange--text.text--lighten-4{color:#ffe0b2!important;caret-color:#ffe0b2!important}.v-application .orange.lighten-3{background-color:#ffcc80!important;border-color:#ffcc80!important}.v-application .orange--text.text--lighten-3{color:#ffcc80!important;caret-color:#ffcc80!important}.v-application .orange.lighten-2{background-color:#ffb74d!important;border-color:#ffb74d!important}.v-application .orange--text.text--lighten-2{color:#ffb74d!important;caret-color:#ffb74d!important}.v-application .orange.lighten-1{background-color:#ffa726!important;border-color:#ffa726!important}.v-application .orange--text.text--lighten-1{color:#ffa726!important;caret-color:#ffa726!important}.v-application .orange.darken-1{background-color:#fb8c00!important;border-color:#fb8c00!important}.v-application .orange--text.text--darken-1{color:#fb8c00!important;caret-color:#fb8c00!important}.v-application .orange.darken-2{background-color:#f57c00!important;border-color:#f57c00!important}.v-application .orange--text.text--darken-2{color:#f57c00!important;caret-color:#f57c00!important}.v-application .orange.darken-3{background-color:#ef6c00!important;border-color:#ef6c00!important}.v-application .orange--text.text--darken-3{color:#ef6c00!important;caret-color:#ef6c00!important}.v-application .orange.darken-4{background-color:#e65100!important;border-color:#e65100!important}.v-application .orange--text.text--darken-4{color:#e65100!important;caret-color:#e65100!important}.v-application .orange.accent-1{background-color:#ffd180!important;border-color:#ffd180!important}.v-application .orange--text.text--accent-1{color:#ffd180!important;caret-color:#ffd180!important}.v-application .orange.accent-2{background-color:#ffab40!important;border-color:#ffab40!important}.v-application .orange--text.text--accent-2{color:#ffab40!important;caret-color:#ffab40!important}.v-application .orange.accent-3{background-color:#ff9100!important;border-color:#ff9100!important}.v-application .orange--text.text--accent-3{color:#ff9100!important;caret-color:#ff9100!important}.v-application .orange.accent-4{background-color:#ff6d00!important;border-color:#ff6d00!important}.v-application .orange--text.text--accent-4{color:#ff6d00!important;caret-color:#ff6d00!important}.v-application .deep-orange{background-color:#ff5722!important;border-color:#ff5722!important}.v-application .deep-orange--text{color:#ff5722!important;caret-color:#ff5722!important}.v-application .deep-orange.lighten-5{background-color:#fbe9e7!important;border-color:#fbe9e7!important}.v-application .deep-orange--text.text--lighten-5{color:#fbe9e7!important;caret-color:#fbe9e7!important}.v-application .deep-orange.lighten-4{background-color:#ffccbc!important;border-color:#ffccbc!important}.v-application .deep-orange--text.text--lighten-4{color:#ffccbc!important;caret-color:#ffccbc!important}.v-application .deep-orange.lighten-3{background-color:#ffab91!important;border-color:#ffab91!important}.v-application .deep-orange--text.text--lighten-3{color:#ffab91!important;caret-color:#ffab91!important}.v-application .deep-orange.lighten-2{background-color:#ff8a65!important;border-color:#ff8a65!important}.v-application .deep-orange--text.text--lighten-2{color:#ff8a65!important;caret-color:#ff8a65!important}.v-application .deep-orange.lighten-1{background-color:#ff7043!important;border-color:#ff7043!important}.v-application .deep-orange--text.text--lighten-1{color:#ff7043!important;caret-color:#ff7043!important}.v-application .deep-orange.darken-1{background-color:#f4511e!important;border-color:#f4511e!important}.v-application .deep-orange--text.text--darken-1{color:#f4511e!important;caret-color:#f4511e!important}.v-application .deep-orange.darken-2{background-color:#e64a19!important;border-color:#e64a19!important}.v-application .deep-orange--text.text--darken-2{color:#e64a19!important;caret-color:#e64a19!important}.v-application .deep-orange.darken-3{background-color:#d84315!important;border-color:#d84315!important}.v-application .deep-orange--text.text--darken-3{color:#d84315!important;caret-color:#d84315!important}.v-application .deep-orange.darken-4{background-color:#bf360c!important;border-color:#bf360c!important}.v-application .deep-orange--text.text--darken-4{color:#bf360c!important;caret-color:#bf360c!important}.v-application .deep-orange.accent-1{background-color:#ff9e80!important;border-color:#ff9e80!important}.v-application .deep-orange--text.text--accent-1{color:#ff9e80!important;caret-color:#ff9e80!important}.v-application .deep-orange.accent-2{background-color:#ff6e40!important;border-color:#ff6e40!important}.v-application .deep-orange--text.text--accent-2{color:#ff6e40!important;caret-color:#ff6e40!important}.v-application .deep-orange.accent-3{background-color:#ff3d00!important;border-color:#ff3d00!important}.v-application .deep-orange--text.text--accent-3{color:#ff3d00!important;caret-color:#ff3d00!important}.v-application .deep-orange.accent-4{background-color:#dd2c00!important;border-color:#dd2c00!important}.v-application .deep-orange--text.text--accent-4{color:#dd2c00!important;caret-color:#dd2c00!important}.v-application .brown{background-color:#795548!important;border-color:#795548!important}.v-application .brown--text{color:#795548!important;caret-color:#795548!important}.v-application .brown.lighten-5{background-color:#efebe9!important;border-color:#efebe9!important}.v-application .brown--text.text--lighten-5{color:#efebe9!important;caret-color:#efebe9!important}.v-application .brown.lighten-4{background-color:#d7ccc8!important;border-color:#d7ccc8!important}.v-application .brown--text.text--lighten-4{color:#d7ccc8!important;caret-color:#d7ccc8!important}.v-application .brown.lighten-3{background-color:#bcaaa4!important;border-color:#bcaaa4!important}.v-application .brown--text.text--lighten-3{color:#bcaaa4!important;caret-color:#bcaaa4!important}.v-application .brown.lighten-2{background-color:#a1887f!important;border-color:#a1887f!important}.v-application .brown--text.text--lighten-2{color:#a1887f!important;caret-color:#a1887f!important}.v-application .brown.lighten-1{background-color:#8d6e63!important;border-color:#8d6e63!important}.v-application .brown--text.text--lighten-1{color:#8d6e63!important;caret-color:#8d6e63!important}.v-application .brown.darken-1{background-color:#6d4c41!important;border-color:#6d4c41!important}.v-application .brown--text.text--darken-1{color:#6d4c41!important;caret-color:#6d4c41!important}.v-application .brown.darken-2{background-color:#5d4037!important;border-color:#5d4037!important}.v-application .brown--text.text--darken-2{color:#5d4037!important;caret-color:#5d4037!important}.v-application .brown.darken-3{background-color:#4e342e!important;border-color:#4e342e!important}.v-application .brown--text.text--darken-3{color:#4e342e!important;caret-color:#4e342e!important}.v-application .brown.darken-4{background-color:#3e2723!important;border-color:#3e2723!important}.v-application .brown--text.text--darken-4{color:#3e2723!important;caret-color:#3e2723!important}.v-application .blue-grey{background-color:#607d8b!important;border-color:#607d8b!important}.v-application .blue-grey--text{color:#607d8b!important;caret-color:#607d8b!important}.v-application .blue-grey.lighten-5{background-color:#eceff1!important;border-color:#eceff1!important}.v-application .blue-grey--text.text--lighten-5{color:#eceff1!important;caret-color:#eceff1!important}.v-application .blue-grey.lighten-4{background-color:#cfd8dc!important;border-color:#cfd8dc!important}.v-application .blue-grey--text.text--lighten-4{color:#cfd8dc!important;caret-color:#cfd8dc!important}.v-application .blue-grey.lighten-3{background-color:#b0bec5!important;border-color:#b0bec5!important}.v-application .blue-grey--text.text--lighten-3{color:#b0bec5!important;caret-color:#b0bec5!important}.v-application .blue-grey.lighten-2{background-color:#90a4ae!important;border-color:#90a4ae!important}.v-application .blue-grey--text.text--lighten-2{color:#90a4ae!important;caret-color:#90a4ae!important}.v-application .blue-grey.lighten-1{background-color:#78909c!important;border-color:#78909c!important}.v-application .blue-grey--text.text--lighten-1{color:#78909c!important;caret-color:#78909c!important}.v-application .blue-grey.darken-1{background-color:#546e7a!important;border-color:#546e7a!important}.v-application .blue-grey--text.text--darken-1{color:#546e7a!important;caret-color:#546e7a!important}.v-application .blue-grey.darken-2{background-color:#455a64!important;border-color:#455a64!important}.v-application .blue-grey--text.text--darken-2{color:#455a64!important;caret-color:#455a64!important}.v-application .blue-grey.darken-3{background-color:#37474f!important;border-color:#37474f!important}.v-application .blue-grey--text.text--darken-3{color:#37474f!important;caret-color:#37474f!important}.v-application .blue-grey.darken-4{background-color:#263238!important;border-color:#263238!important}.v-application .blue-grey--text.text--darken-4{color:#263238!important;caret-color:#263238!important}.v-application .grey{background-color:#9e9e9e!important;border-color:#9e9e9e!important}.v-application .grey--text{color:#9e9e9e!important;caret-color:#9e9e9e!important}.v-application .grey.lighten-5{background-color:#fafafa!important;border-color:#fafafa!important}.v-application .grey--text.text--lighten-5{color:#fafafa!important;caret-color:#fafafa!important}.v-application .grey.lighten-4{background-color:#f5f5f5!important;border-color:#f5f5f5!important}.v-application .grey--text.text--lighten-4{color:#f5f5f5!important;caret-color:#f5f5f5!important}.v-application .grey.lighten-3{background-color:#eee!important;border-color:#eee!important}.v-application .grey--text.text--lighten-3{color:#eee!important;caret-color:#eee!important}.v-application .grey.lighten-2{background-color:#e0e0e0!important;border-color:#e0e0e0!important}.v-application .grey--text.text--lighten-2{color:#e0e0e0!important;caret-color:#e0e0e0!important}.v-application .grey.lighten-1{background-color:#bdbdbd!important;border-color:#bdbdbd!important}.v-application .grey--text.text--lighten-1{color:#bdbdbd!important;caret-color:#bdbdbd!important}.v-application .grey.darken-1{background-color:#757575!important;border-color:#757575!important}.v-application .grey--text.text--darken-1{color:#757575!important;caret-color:#757575!important}.v-application .grey.darken-2{background-color:#616161!important;border-color:#616161!important}.v-application .grey--text.text--darken-2{color:#616161!important;caret-color:#616161!important}.v-application .grey.darken-3{background-color:#424242!important;border-color:#424242!important}.v-application .grey--text.text--darken-3{color:#424242!important;caret-color:#424242!important}.v-application .grey.darken-4{background-color:#212121!important;border-color:#212121!important}.v-application .grey--text.text--darken-4{color:#212121!important;caret-color:#212121!important}.v-application .shades.black{background-color:#000!important;border-color:#000!important}.v-application .shades--text.text--black{color:#000!important;caret-color:#000!important}.v-application .shades.white{background-color:#fff!important;border-color:#fff!important}.v-application .shades--text.text--white{color:#fff!important;caret-color:#fff!important}.v-application .shades.transparent{background-color:transparent!important;border-color:transparent!important}.v-application .shades--text.text--transparent{color:transparent!important;caret-color:transparent!important}/*! + * ress.css • v2.0.4 + * MIT License + * github.com/filipelinhares/ress + */html{box-sizing:border-box;overflow-y:scroll;-webkit-text-size-adjust:100%;word-break:normal;-moz-tab-size:4;-o-tab-size:4;tab-size:4}*,:after,:before{background-repeat:no-repeat;box-sizing:inherit}:after,:before{text-decoration:inherit;vertical-align:inherit}*{padding:0;margin:0}hr{overflow:visible;height:0}details,main{display:block}summary{display:list-item}small{font-size:80%}[hidden]{display:none}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}a{background-color:transparent}a:active,a:hover{outline-width:0}code,kbd,pre,samp{font-family:monospace,monospace}pre{font-size:1em}b,strong{font-weight:bolder}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}input{border-radius:0}[disabled]{cursor:default}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}textarea{overflow:auto;resize:vertical}button,input,optgroup,select,textarea{font:inherit}optgroup{font-weight:700}button{overflow:visible}button,select{text-transform:none}[role=button],[type=button],[type=reset],[type=submit],button{cursor:pointer;color:inherit}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button:-moz-focusring{outline:1px dotted ButtonText}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}button,input,select,textarea{background-color:transparent;border-style:none}select{-moz-appearance:none;-webkit-appearance:none}select::-ms-expand{display:none}select::-ms-value{color:currentColor}legend{border:0;color:inherit;display:table;white-space:normal;max-width:100%}::-webkit-file-upload-button{-webkit-appearance:button;color:inherit;font:inherit}img{border-style:none}progress{vertical-align:baseline}@media screen{[hidden~=screen]{display:inherit}[hidden~=screen]:not(:active):not(:focus):not(:target){position:absolute!important;clip:rect(0 0 0 0)!important}}[aria-busy=true]{cursor:progress}[aria-controls]{cursor:pointer}[aria-disabled=true]{cursor:default}.v-application .elevation-24{box-shadow:0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12)!important}.v-application .elevation-23{box-shadow:0 11px 14px -7px rgba(0,0,0,.2),0 23px 36px 3px rgba(0,0,0,.14),0 9px 44px 8px rgba(0,0,0,.12)!important}.v-application .elevation-22{box-shadow:0 10px 14px -6px rgba(0,0,0,.2),0 22px 35px 3px rgba(0,0,0,.14),0 8px 42px 7px rgba(0,0,0,.12)!important}.v-application .elevation-21{box-shadow:0 10px 13px -6px rgba(0,0,0,.2),0 21px 33px 3px rgba(0,0,0,.14),0 8px 40px 7px rgba(0,0,0,.12)!important}.v-application .elevation-20{box-shadow:0 10px 13px -6px rgba(0,0,0,.2),0 20px 31px 3px rgba(0,0,0,.14),0 8px 38px 7px rgba(0,0,0,.12)!important}.v-application .elevation-19{box-shadow:0 9px 12px -6px rgba(0,0,0,.2),0 19px 29px 2px rgba(0,0,0,.14),0 7px 36px 6px rgba(0,0,0,.12)!important}.v-application .elevation-18{box-shadow:0 9px 11px -5px rgba(0,0,0,.2),0 18px 28px 2px rgba(0,0,0,.14),0 7px 34px 6px rgba(0,0,0,.12)!important}.v-application .elevation-17{box-shadow:0 8px 11px -5px rgba(0,0,0,.2),0 17px 26px 2px rgba(0,0,0,.14),0 6px 32px 5px rgba(0,0,0,.12)!important}.v-application .elevation-16{box-shadow:0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12)!important}.v-application .elevation-15{box-shadow:0 8px 9px -5px rgba(0,0,0,.2),0 15px 22px 2px rgba(0,0,0,.14),0 6px 28px 5px rgba(0,0,0,.12)!important}.v-application .elevation-14{box-shadow:0 7px 9px -4px rgba(0,0,0,.2),0 14px 21px 2px rgba(0,0,0,.14),0 5px 26px 4px rgba(0,0,0,.12)!important}.v-application .elevation-13{box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 13px 19px 2px rgba(0,0,0,.14),0 5px 24px 4px rgba(0,0,0,.12)!important}.v-application .elevation-12{box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12)!important}.v-application .elevation-11{box-shadow:0 6px 7px -4px rgba(0,0,0,.2),0 11px 15px 1px rgba(0,0,0,.14),0 4px 20px 3px rgba(0,0,0,.12)!important}.v-application .elevation-10{box-shadow:0 6px 6px -3px rgba(0,0,0,.2),0 10px 14px 1px rgba(0,0,0,.14),0 4px 18px 3px rgba(0,0,0,.12)!important}.v-application .elevation-9{box-shadow:0 5px 6px -3px rgba(0,0,0,.2),0 9px 12px 1px rgba(0,0,0,.14),0 3px 16px 2px rgba(0,0,0,.12)!important}.v-application .elevation-8{box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)!important}.v-application .elevation-7{box-shadow:0 4px 5px -2px rgba(0,0,0,.2),0 7px 10px 1px rgba(0,0,0,.14),0 2px 16px 1px rgba(0,0,0,.12)!important}.v-application .elevation-6{box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12)!important}.v-application .elevation-5{box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 5px 8px 0 rgba(0,0,0,.14),0 1px 14px 0 rgba(0,0,0,.12)!important}.v-application .elevation-4{box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)!important}.v-application .elevation-3{box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12)!important}.v-application .elevation-2{box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)!important}.v-application .elevation-1{box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12)!important}.v-application .elevation-0{box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)!important}.carousel-transition-enter{transform:translate(100%)}.carousel-transition-leave,.carousel-transition-leave-to{position:absolute;top:0;transform:translate(-100%)}.carousel-reverse-transition-enter{transform:translate(-100%)}.carousel-reverse-transition-leave,.carousel-reverse-transition-leave-to{position:absolute;top:0;transform:translate(100%)}.dialog-transition-enter-active,.dialog-transition-leave-active{pointer-events:none!important}.dialog-transition-enter,.dialog-transition-leave-to{transform:scale(.5);opacity:0}.dialog-transition-enter-to,.dialog-transition-leave{opacity:1}.dialog-bottom-transition-enter,.dialog-bottom-transition-leave-to{transform:translateY(100%)}.dialog-top-transition-enter,.dialog-top-transition-leave-to{transform:translateY(-100%)}.picker-reverse-transition-enter-active,.picker-reverse-transition-leave-active,.picker-transition-enter-active,.picker-transition-leave-active{transition:.3s cubic-bezier(0,0,.2,1)}.picker-reverse-transition-enter,.picker-reverse-transition-leave-to,.picker-transition-enter,.picker-transition-leave-to{opacity:0}.picker-reverse-transition-leave,.picker-reverse-transition-leave-active,.picker-reverse-transition-leave-to,.picker-transition-leave,.picker-transition-leave-active,.picker-transition-leave-to{position:absolute!important}.picker-transition-enter{transform:translateY(100%)}.picker-reverse-transition-enter,.picker-transition-leave-to{transform:translateY(-100%)}.picker-reverse-transition-leave-to{transform:translateY(100%)}.picker-title-transition-enter-to,.picker-title-transition-leave{transform:translate(0)}.picker-title-transition-enter{transform:translate(-100%)}.picker-title-transition-leave-to{opacity:0;transform:translate(100%)}.picker-title-transition-leave,.picker-title-transition-leave-active,.picker-title-transition-leave-to{position:absolute!important}.tab-transition-enter{transform:translate(100%)}.tab-transition-leave,.tab-transition-leave-active{position:absolute;top:0}.tab-transition-leave-to{position:absolute}.tab-reverse-transition-enter,.tab-transition-leave-to{transform:translate(-100%)}.tab-reverse-transition-leave,.tab-reverse-transition-leave-to{top:0;position:absolute;transform:translate(100%)}.expand-transition-enter-active,.expand-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)!important}.expand-transition-move{transition:transform .6s}.expand-x-transition-enter-active,.expand-x-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)!important}.expand-x-transition-move{transition:transform .6s}.scale-transition-enter-active,.scale-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)!important}.scale-transition-move{transition:transform .6s}.scale-transition-enter,.scale-transition-leave,.scale-transition-leave-to{opacity:0;transform:scale(0)}.scale-rotate-transition-enter-active,.scale-rotate-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)!important}.scale-rotate-transition-move{transition:transform .6s}.scale-rotate-transition-enter,.scale-rotate-transition-leave,.scale-rotate-transition-leave-to{opacity:0;transform:scale(0) rotate(-45deg)}.scale-rotate-reverse-transition-enter-active,.scale-rotate-reverse-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)!important}.scale-rotate-reverse-transition-move{transition:transform .6s}.scale-rotate-reverse-transition-enter,.scale-rotate-reverse-transition-leave,.scale-rotate-reverse-transition-leave-to{opacity:0;transform:scale(0) rotate(45deg)}.message-transition-enter-active,.message-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)!important}.message-transition-move{transition:transform .6s}.message-transition-enter,.message-transition-leave-to{opacity:0;transform:translateY(-15px)}.message-transition-leave,.message-transition-leave-active{position:absolute}.slide-y-transition-enter-active,.slide-y-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)!important}.slide-y-transition-move{transition:transform .6s}.slide-y-transition-enter,.slide-y-transition-leave-to{opacity:0;transform:translateY(-15px)}.slide-y-reverse-transition-enter-active,.slide-y-reverse-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)!important}.slide-y-reverse-transition-move{transition:transform .6s}.slide-y-reverse-transition-enter,.slide-y-reverse-transition-leave-to{opacity:0;transform:translateY(15px)}.scroll-y-transition-enter-active,.scroll-y-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)!important}.scroll-y-transition-move{transition:transform .6s}.scroll-y-transition-enter,.scroll-y-transition-leave-to{opacity:0}.scroll-y-transition-enter{transform:translateY(-15px)}.scroll-y-transition-leave-to{transform:translateY(15px)}.scroll-y-reverse-transition-enter-active,.scroll-y-reverse-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)!important}.scroll-y-reverse-transition-move{transition:transform .6s}.scroll-y-reverse-transition-enter,.scroll-y-reverse-transition-leave-to{opacity:0}.scroll-y-reverse-transition-enter{transform:translateY(15px)}.scroll-y-reverse-transition-leave-to{transform:translateY(-15px)}.scroll-x-transition-enter-active,.scroll-x-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)!important}.scroll-x-transition-move{transition:transform .6s}.scroll-x-transition-enter,.scroll-x-transition-leave-to{opacity:0}.scroll-x-transition-enter{transform:translateX(-15px)}.scroll-x-transition-leave-to{transform:translateX(15px)}.scroll-x-reverse-transition-enter-active,.scroll-x-reverse-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)!important}.scroll-x-reverse-transition-move{transition:transform .6s}.scroll-x-reverse-transition-enter,.scroll-x-reverse-transition-leave-to{opacity:0}.scroll-x-reverse-transition-enter{transform:translateX(15px)}.scroll-x-reverse-transition-leave-to{transform:translateX(-15px)}.slide-x-transition-enter-active,.slide-x-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)!important}.slide-x-transition-move{transition:transform .6s}.slide-x-transition-enter,.slide-x-transition-leave-to{opacity:0;transform:translateX(-15px)}.slide-x-reverse-transition-enter-active,.slide-x-reverse-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)!important}.slide-x-reverse-transition-move{transition:transform .6s}.slide-x-reverse-transition-enter,.slide-x-reverse-transition-leave-to{opacity:0;transform:translateX(15px)}.fade-transition-enter-active,.fade-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)!important}.fade-transition-move{transition:transform .6s}.fade-transition-enter,.fade-transition-leave-to{opacity:0!important}.fab-transition-enter-active,.fab-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)!important}.fab-transition-move{transition:transform .6s}.fab-transition-enter,.fab-transition-leave-to{transform:scale(0) rotate(-45deg)}.v-application .blockquote{padding:16px 0 16px 24px;font-size:18px;font-weight:300}.v-application code,.v-application kbd{border-radius:3px;font-size:85%;font-weight:400}.v-application code{padding:.2em .4em}.v-application kbd{padding:.2em .4rem;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.theme--light.v-application code{background-color:rgba(0,0,0,.05);color:currentColor}.theme--light.v-application kbd{background:#212529;color:#fff}.theme--dark.v-application code{background-color:hsla(0,0%,100%,.1);color:currentColor}.theme--dark.v-application kbd{background:#212529;color:#fff}html{font-size:16px;overflow-x:hidden;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:rgba(0,0,0,0)}html.overflow-y-hidden{overflow-y:hidden!important}.v-application{font-family:Roboto,sans-serif;line-height:1.5}.v-application ::-ms-clear,.v-application ::-ms-reveal{display:none}@supports(-webkit-touch-callout:none){body{cursor:pointer}}.v-application .theme--light.heading{color:rgba(0,0,0,.87)}.v-application .theme--dark.heading{color:#fff}.v-application ol,.v-application ul{padding-left:24px}.v-application .display-4{font-size:6rem!important;line-height:6rem;letter-spacing:-.015625em!important}.v-application .display-3,.v-application .display-4{font-weight:300;font-family:Roboto,sans-serif!important}.v-application .display-3{font-size:3.75rem!important;line-height:3.75rem;letter-spacing:-.0083333333em!important}.v-application .display-2{font-size:3rem!important;line-height:3.125rem;letter-spacing:normal!important}.v-application .display-1,.v-application .display-2{font-weight:400;font-family:Roboto,sans-serif!important}.v-application .display-1{font-size:2.125rem!important;line-height:2.5rem;letter-spacing:.0073529412em!important}.v-application .headline{font-size:1.5rem!important;font-weight:400;letter-spacing:normal!important}.v-application .headline,.v-application .title{line-height:2rem;font-family:Roboto,sans-serif!important}.v-application .title{font-size:1.25rem!important;font-weight:500;letter-spacing:.0125em!important}.v-application .subtitle-2{font-size:.875rem!important;font-weight:500;letter-spacing:.0071428571em!important;line-height:1.375rem;font-family:Roboto,sans-serif!important}.v-application .subtitle-1{font-size:1rem!important;letter-spacing:.009375em!important;line-height:1.75rem}.v-application .body-2,.v-application .subtitle-1{font-weight:400;font-family:Roboto,sans-serif!important}.v-application .body-2{font-size:.875rem!important;letter-spacing:.0178571429em!important;line-height:1.25rem}.v-application .body-1{font-size:1rem!important;letter-spacing:.03125em!important;line-height:1.5rem}.v-application .body-1,.v-application .caption{font-weight:400;font-family:Roboto,sans-serif!important}.v-application .caption{font-size:.75rem!important;letter-spacing:.0333333333em!important;line-height:1.25rem}.v-application .overline{font-size:.75rem!important;font-weight:500;letter-spacing:.1666666667em!important;line-height:2rem;text-transform:uppercase;font-family:Roboto,sans-serif!important}.v-application p{margin-bottom:16px}@media only print{.v-application .hidden-print-only{display:none!important}}@media only screen{.v-application .hidden-screen-only{display:none!important}}@media only screen and (max-width:599.98px){.v-application .hidden-xs-only{display:none!important}}@media only screen and (min-width:600px)and (max-width:959.98px){.v-application .hidden-sm-only{display:none!important}}@media only screen and (max-width:959.98px){.v-application .hidden-sm-and-down{display:none!important}}@media only screen and (min-width:600px){.v-application .hidden-sm-and-up{display:none!important}}@media only screen and (min-width:960px)and (max-width:1263.98px){.v-application .hidden-md-only{display:none!important}}@media only screen and (max-width:1263.98px){.v-application .hidden-md-and-down{display:none!important}}@media only screen and (min-width:960px){.v-application .hidden-md-and-up{display:none!important}}@media only screen and (min-width:1264px)and (max-width:1903.98px){.v-application .hidden-lg-only{display:none!important}}@media only screen and (max-width:1903.98px){.v-application .hidden-lg-and-down{display:none!important}}@media only screen and (min-width:1264px){.v-application .hidden-lg-and-up{display:none!important}}@media only screen and (min-width:1904px){.v-application .hidden-xl-only{display:none!important}}.d-sr-only,.d-sr-only-focusable:not(:focus){border:0!important;clip:rect(0,0,0,0)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.v-application .font-weight-thin{font-weight:100!important}.v-application .font-weight-light{font-weight:300!important}.v-application .font-weight-regular{font-weight:400!important}.v-application .font-weight-medium{font-weight:500!important}.v-application .font-weight-bold{font-weight:700!important}.v-application .font-weight-black{font-weight:900!important}.v-application .font-italic{font-style:italic!important}.v-application .transition-fast-out-slow-in{transition:.3s cubic-bezier(.4,0,.2,1)!important}.v-application .transition-linear-out-slow-in{transition:.3s cubic-bezier(0,0,.2,1)!important}.v-application .transition-fast-out-linear-in{transition:.3s cubic-bezier(.4,0,1,1)!important}.v-application .transition-ease-in-out{transition:.3s cubic-bezier(.4,0,.6,1)!important}.v-application .transition-fast-in-fast-out{transition:.3s cubic-bezier(.25,.8,.25,1)!important}.v-application .transition-swing{transition:.3s cubic-bezier(.25,.8,.5,1)!important}.v-application .overflow-auto{overflow:auto!important}.v-application .overflow-hidden{overflow:hidden!important}.v-application .overflow-visible{overflow:visible!important}.v-application .overflow-x-auto{overflow-x:auto!important}.v-application .overflow-x-hidden{overflow-x:hidden!important}.v-application .overflow-y-auto{overflow-y:auto!important}.v-application .overflow-y-hidden{overflow-y:hidden!important}.v-application .d-none{display:none!important}.v-application .d-inline{display:inline!important}.v-application .d-inline-block{display:inline-block!important}.v-application .d-block{display:block!important}.v-application .d-table{display:table!important}.v-application .d-table-row{display:table-row!important}.v-application .d-table-cell{display:table-cell!important}.v-application .d-flex{display:flex!important}.v-application .d-inline-flex{display:inline-flex!important}.v-application .float-none{float:none!important}.v-application .float-left{float:left!important}.v-application .float-right{float:right!important}.v-application--is-rtl .float-end{float:left!important}.v-application--is-ltr .float-end,.v-application--is-rtl .float-start{float:right!important}.v-application--is-ltr .float-start{float:left!important}.v-application .flex-fill{flex:1 1 auto!important}.v-application .flex-row{flex-direction:row!important}.v-application .flex-column{flex-direction:column!important}.v-application .flex-row-reverse{flex-direction:row-reverse!important}.v-application .flex-column-reverse{flex-direction:column-reverse!important}.v-application .flex-grow-0{flex-grow:0!important}.v-application .flex-grow-1{flex-grow:1!important}.v-application .flex-shrink-0{flex-shrink:0!important}.v-application .flex-shrink-1{flex-shrink:1!important}.v-application .flex-wrap{flex-wrap:wrap!important}.v-application .flex-nowrap{flex-wrap:nowrap!important}.v-application .flex-wrap-reverse{flex-wrap:wrap-reverse!important}.v-application .justify-start{justify-content:flex-start!important}.v-application .justify-end{justify-content:flex-end!important}.v-application .justify-center{justify-content:center!important}.v-application .justify-space-between{justify-content:space-between!important}.v-application .justify-space-around{justify-content:space-around!important}.v-application .align-start{align-items:flex-start!important}.v-application .align-end{align-items:flex-end!important}.v-application .align-center{align-items:center!important}.v-application .align-baseline{align-items:baseline!important}.v-application .align-stretch{align-items:stretch!important}.v-application .align-content-start{align-content:flex-start!important}.v-application .align-content-end{align-content:flex-end!important}.v-application .align-content-center{align-content:center!important}.v-application .align-content-space-between{align-content:space-between!important}.v-application .align-content-space-around{align-content:space-around!important}.v-application .align-content-stretch{align-content:stretch!important}.v-application .align-self-auto{align-self:auto!important}.v-application .align-self-start{align-self:flex-start!important}.v-application .align-self-end{align-self:flex-end!important}.v-application .align-self-center{align-self:center!important}.v-application .align-self-baseline{align-self:baseline!important}.v-application .align-self-stretch{align-self:stretch!important}.v-application .order-first{order:-1!important}.v-application .order-0{order:0!important}.v-application .order-1{order:1!important}.v-application .order-2{order:2!important}.v-application .order-3{order:3!important}.v-application .order-4{order:4!important}.v-application .order-5{order:5!important}.v-application .order-6{order:6!important}.v-application .order-7{order:7!important}.v-application .order-8{order:8!important}.v-application .order-9{order:9!important}.v-application .order-10{order:10!important}.v-application .order-11{order:11!important}.v-application .order-12{order:12!important}.v-application .order-last{order:13!important}.v-application .ma-0{margin:0!important}.v-application .ma-1{margin:4px!important}.v-application .ma-2{margin:8px!important}.v-application .ma-3{margin:12px!important}.v-application .ma-4{margin:16px!important}.v-application .ma-5{margin:20px!important}.v-application .ma-6{margin:24px!important}.v-application .ma-7{margin:28px!important}.v-application .ma-8{margin:32px!important}.v-application .ma-9{margin:36px!important}.v-application .ma-10{margin:40px!important}.v-application .ma-11{margin:44px!important}.v-application .ma-12{margin:48px!important}.v-application .ma-13{margin:52px!important}.v-application .ma-14{margin:56px!important}.v-application .ma-15{margin:60px!important}.v-application .ma-16{margin:64px!important}.v-application .ma-auto{margin:auto!important}.v-application .mx-0{margin-right:0!important;margin-left:0!important}.v-application .mx-1{margin-right:4px!important;margin-left:4px!important}.v-application .mx-2{margin-right:8px!important;margin-left:8px!important}.v-application .mx-3{margin-right:12px!important;margin-left:12px!important}.v-application .mx-4{margin-right:16px!important;margin-left:16px!important}.v-application .mx-5{margin-right:20px!important;margin-left:20px!important}.v-application .mx-6{margin-right:24px!important;margin-left:24px!important}.v-application .mx-7{margin-right:28px!important;margin-left:28px!important}.v-application .mx-8{margin-right:32px!important;margin-left:32px!important}.v-application .mx-9{margin-right:36px!important;margin-left:36px!important}.v-application .mx-10{margin-right:40px!important;margin-left:40px!important}.v-application .mx-11{margin-right:44px!important;margin-left:44px!important}.v-application .mx-12{margin-right:48px!important;margin-left:48px!important}.v-application .mx-13{margin-right:52px!important;margin-left:52px!important}.v-application .mx-14{margin-right:56px!important;margin-left:56px!important}.v-application .mx-15{margin-right:60px!important;margin-left:60px!important}.v-application .mx-16{margin-right:64px!important;margin-left:64px!important}.v-application .mx-auto{margin-right:auto!important;margin-left:auto!important}.v-application .my-0{margin-top:0!important;margin-bottom:0!important}.v-application .my-1{margin-top:4px!important;margin-bottom:4px!important}.v-application .my-2{margin-top:8px!important;margin-bottom:8px!important}.v-application .my-3{margin-top:12px!important;margin-bottom:12px!important}.v-application .my-4{margin-top:16px!important;margin-bottom:16px!important}.v-application .my-5{margin-top:20px!important;margin-bottom:20px!important}.v-application .my-6{margin-top:24px!important;margin-bottom:24px!important}.v-application .my-7{margin-top:28px!important;margin-bottom:28px!important}.v-application .my-8{margin-top:32px!important;margin-bottom:32px!important}.v-application .my-9{margin-top:36px!important;margin-bottom:36px!important}.v-application .my-10{margin-top:40px!important;margin-bottom:40px!important}.v-application .my-11{margin-top:44px!important;margin-bottom:44px!important}.v-application .my-12{margin-top:48px!important;margin-bottom:48px!important}.v-application .my-13{margin-top:52px!important;margin-bottom:52px!important}.v-application .my-14{margin-top:56px!important;margin-bottom:56px!important}.v-application .my-15{margin-top:60px!important;margin-bottom:60px!important}.v-application .my-16{margin-top:64px!important;margin-bottom:64px!important}.v-application .my-auto{margin-top:auto!important;margin-bottom:auto!important}.v-application .mt-0{margin-top:0!important}.v-application .mt-1{margin-top:4px!important}.v-application .mt-2{margin-top:8px!important}.v-application .mt-3{margin-top:12px!important}.v-application .mt-4{margin-top:16px!important}.v-application .mt-5{margin-top:20px!important}.v-application .mt-6{margin-top:24px!important}.v-application .mt-7{margin-top:28px!important}.v-application .mt-8{margin-top:32px!important}.v-application .mt-9{margin-top:36px!important}.v-application .mt-10{margin-top:40px!important}.v-application .mt-11{margin-top:44px!important}.v-application .mt-12{margin-top:48px!important}.v-application .mt-13{margin-top:52px!important}.v-application .mt-14{margin-top:56px!important}.v-application .mt-15{margin-top:60px!important}.v-application .mt-16{margin-top:64px!important}.v-application .mt-auto{margin-top:auto!important}.v-application .mr-0{margin-right:0!important}.v-application .mr-1{margin-right:4px!important}.v-application .mr-2{margin-right:8px!important}.v-application .mr-3{margin-right:12px!important}.v-application .mr-4{margin-right:16px!important}.v-application .mr-5{margin-right:20px!important}.v-application .mr-6{margin-right:24px!important}.v-application .mr-7{margin-right:28px!important}.v-application .mr-8{margin-right:32px!important}.v-application .mr-9{margin-right:36px!important}.v-application .mr-10{margin-right:40px!important}.v-application .mr-11{margin-right:44px!important}.v-application .mr-12{margin-right:48px!important}.v-application .mr-13{margin-right:52px!important}.v-application .mr-14{margin-right:56px!important}.v-application .mr-15{margin-right:60px!important}.v-application .mr-16{margin-right:64px!important}.v-application .mr-auto{margin-right:auto!important}.v-application .mb-0{margin-bottom:0!important}.v-application .mb-1{margin-bottom:4px!important}.v-application .mb-2{margin-bottom:8px!important}.v-application .mb-3{margin-bottom:12px!important}.v-application .mb-4{margin-bottom:16px!important}.v-application .mb-5{margin-bottom:20px!important}.v-application .mb-6{margin-bottom:24px!important}.v-application .mb-7{margin-bottom:28px!important}.v-application .mb-8{margin-bottom:32px!important}.v-application .mb-9{margin-bottom:36px!important}.v-application .mb-10{margin-bottom:40px!important}.v-application .mb-11{margin-bottom:44px!important}.v-application .mb-12{margin-bottom:48px!important}.v-application .mb-13{margin-bottom:52px!important}.v-application .mb-14{margin-bottom:56px!important}.v-application .mb-15{margin-bottom:60px!important}.v-application .mb-16{margin-bottom:64px!important}.v-application .mb-auto{margin-bottom:auto!important}.v-application .ml-0{margin-left:0!important}.v-application .ml-1{margin-left:4px!important}.v-application .ml-2{margin-left:8px!important}.v-application .ml-3{margin-left:12px!important}.v-application .ml-4{margin-left:16px!important}.v-application .ml-5{margin-left:20px!important}.v-application .ml-6{margin-left:24px!important}.v-application .ml-7{margin-left:28px!important}.v-application .ml-8{margin-left:32px!important}.v-application .ml-9{margin-left:36px!important}.v-application .ml-10{margin-left:40px!important}.v-application .ml-11{margin-left:44px!important}.v-application .ml-12{margin-left:48px!important}.v-application .ml-13{margin-left:52px!important}.v-application .ml-14{margin-left:56px!important}.v-application .ml-15{margin-left:60px!important}.v-application .ml-16{margin-left:64px!important}.v-application .ml-auto{margin-left:auto!important}.v-application--is-ltr .ms-0{margin-left:0!important}.v-application--is-rtl .ms-0{margin-right:0!important}.v-application--is-ltr .ms-1{margin-left:4px!important}.v-application--is-rtl .ms-1{margin-right:4px!important}.v-application--is-ltr .ms-2{margin-left:8px!important}.v-application--is-rtl .ms-2{margin-right:8px!important}.v-application--is-ltr .ms-3{margin-left:12px!important}.v-application--is-rtl .ms-3{margin-right:12px!important}.v-application--is-ltr .ms-4{margin-left:16px!important}.v-application--is-rtl .ms-4{margin-right:16px!important}.v-application--is-ltr .ms-5{margin-left:20px!important}.v-application--is-rtl .ms-5{margin-right:20px!important}.v-application--is-ltr .ms-6{margin-left:24px!important}.v-application--is-rtl .ms-6{margin-right:24px!important}.v-application--is-ltr .ms-7{margin-left:28px!important}.v-application--is-rtl .ms-7{margin-right:28px!important}.v-application--is-ltr .ms-8{margin-left:32px!important}.v-application--is-rtl .ms-8{margin-right:32px!important}.v-application--is-ltr .ms-9{margin-left:36px!important}.v-application--is-rtl .ms-9{margin-right:36px!important}.v-application--is-ltr .ms-10{margin-left:40px!important}.v-application--is-rtl .ms-10{margin-right:40px!important}.v-application--is-ltr .ms-11{margin-left:44px!important}.v-application--is-rtl .ms-11{margin-right:44px!important}.v-application--is-ltr .ms-12{margin-left:48px!important}.v-application--is-rtl .ms-12{margin-right:48px!important}.v-application--is-ltr .ms-13{margin-left:52px!important}.v-application--is-rtl .ms-13{margin-right:52px!important}.v-application--is-ltr .ms-14{margin-left:56px!important}.v-application--is-rtl .ms-14{margin-right:56px!important}.v-application--is-ltr .ms-15{margin-left:60px!important}.v-application--is-rtl .ms-15{margin-right:60px!important}.v-application--is-ltr .ms-16{margin-left:64px!important}.v-application--is-rtl .ms-16{margin-right:64px!important}.v-application--is-ltr .ms-auto{margin-left:auto!important}.v-application--is-rtl .ms-auto{margin-right:auto!important}.v-application--is-ltr .me-0{margin-right:0!important}.v-application--is-rtl .me-0{margin-left:0!important}.v-application--is-ltr .me-1{margin-right:4px!important}.v-application--is-rtl .me-1{margin-left:4px!important}.v-application--is-ltr .me-2{margin-right:8px!important}.v-application--is-rtl .me-2{margin-left:8px!important}.v-application--is-ltr .me-3{margin-right:12px!important}.v-application--is-rtl .me-3{margin-left:12px!important}.v-application--is-ltr .me-4{margin-right:16px!important}.v-application--is-rtl .me-4{margin-left:16px!important}.v-application--is-ltr .me-5{margin-right:20px!important}.v-application--is-rtl .me-5{margin-left:20px!important}.v-application--is-ltr .me-6{margin-right:24px!important}.v-application--is-rtl .me-6{margin-left:24px!important}.v-application--is-ltr .me-7{margin-right:28px!important}.v-application--is-rtl .me-7{margin-left:28px!important}.v-application--is-ltr .me-8{margin-right:32px!important}.v-application--is-rtl .me-8{margin-left:32px!important}.v-application--is-ltr .me-9{margin-right:36px!important}.v-application--is-rtl .me-9{margin-left:36px!important}.v-application--is-ltr .me-10{margin-right:40px!important}.v-application--is-rtl .me-10{margin-left:40px!important}.v-application--is-ltr .me-11{margin-right:44px!important}.v-application--is-rtl .me-11{margin-left:44px!important}.v-application--is-ltr .me-12{margin-right:48px!important}.v-application--is-rtl .me-12{margin-left:48px!important}.v-application--is-ltr .me-13{margin-right:52px!important}.v-application--is-rtl .me-13{margin-left:52px!important}.v-application--is-ltr .me-14{margin-right:56px!important}.v-application--is-rtl .me-14{margin-left:56px!important}.v-application--is-ltr .me-15{margin-right:60px!important}.v-application--is-rtl .me-15{margin-left:60px!important}.v-application--is-ltr .me-16{margin-right:64px!important}.v-application--is-rtl .me-16{margin-left:64px!important}.v-application--is-ltr .me-auto{margin-right:auto!important}.v-application--is-rtl .me-auto{margin-left:auto!important}.v-application .ma-n1{margin:-4px!important}.v-application .ma-n2{margin:-8px!important}.v-application .ma-n3{margin:-12px!important}.v-application .ma-n4{margin:-16px!important}.v-application .ma-n5{margin:-20px!important}.v-application .ma-n6{margin:-24px!important}.v-application .ma-n7{margin:-28px!important}.v-application .ma-n8{margin:-32px!important}.v-application .ma-n9{margin:-36px!important}.v-application .ma-n10{margin:-40px!important}.v-application .ma-n11{margin:-44px!important}.v-application .ma-n12{margin:-48px!important}.v-application .ma-n13{margin:-52px!important}.v-application .ma-n14{margin:-56px!important}.v-application .ma-n15{margin:-60px!important}.v-application .ma-n16{margin:-64px!important}.v-application .mx-n1{margin-right:-4px!important;margin-left:-4px!important}.v-application .mx-n2{margin-right:-8px!important;margin-left:-8px!important}.v-application .mx-n3{margin-right:-12px!important;margin-left:-12px!important}.v-application .mx-n4{margin-right:-16px!important;margin-left:-16px!important}.v-application .mx-n5{margin-right:-20px!important;margin-left:-20px!important}.v-application .mx-n6{margin-right:-24px!important;margin-left:-24px!important}.v-application .mx-n7{margin-right:-28px!important;margin-left:-28px!important}.v-application .mx-n8{margin-right:-32px!important;margin-left:-32px!important}.v-application .mx-n9{margin-right:-36px!important;margin-left:-36px!important}.v-application .mx-n10{margin-right:-40px!important;margin-left:-40px!important}.v-application .mx-n11{margin-right:-44px!important;margin-left:-44px!important}.v-application .mx-n12{margin-right:-48px!important;margin-left:-48px!important}.v-application .mx-n13{margin-right:-52px!important;margin-left:-52px!important}.v-application .mx-n14{margin-right:-56px!important;margin-left:-56px!important}.v-application .mx-n15{margin-right:-60px!important;margin-left:-60px!important}.v-application .mx-n16{margin-right:-64px!important;margin-left:-64px!important}.v-application .my-n1{margin-top:-4px!important;margin-bottom:-4px!important}.v-application .my-n2{margin-top:-8px!important;margin-bottom:-8px!important}.v-application .my-n3{margin-top:-12px!important;margin-bottom:-12px!important}.v-application .my-n4{margin-top:-16px!important;margin-bottom:-16px!important}.v-application .my-n5{margin-top:-20px!important;margin-bottom:-20px!important}.v-application .my-n6{margin-top:-24px!important;margin-bottom:-24px!important}.v-application .my-n7{margin-top:-28px!important;margin-bottom:-28px!important}.v-application .my-n8{margin-top:-32px!important;margin-bottom:-32px!important}.v-application .my-n9{margin-top:-36px!important;margin-bottom:-36px!important}.v-application .my-n10{margin-top:-40px!important;margin-bottom:-40px!important}.v-application .my-n11{margin-top:-44px!important;margin-bottom:-44px!important}.v-application .my-n12{margin-top:-48px!important;margin-bottom:-48px!important}.v-application .my-n13{margin-top:-52px!important;margin-bottom:-52px!important}.v-application .my-n14{margin-top:-56px!important;margin-bottom:-56px!important}.v-application .my-n15{margin-top:-60px!important;margin-bottom:-60px!important}.v-application .my-n16{margin-top:-64px!important;margin-bottom:-64px!important}.v-application .mt-n1{margin-top:-4px!important}.v-application .mt-n2{margin-top:-8px!important}.v-application .mt-n3{margin-top:-12px!important}.v-application .mt-n4{margin-top:-16px!important}.v-application .mt-n5{margin-top:-20px!important}.v-application .mt-n6{margin-top:-24px!important}.v-application .mt-n7{margin-top:-28px!important}.v-application .mt-n8{margin-top:-32px!important}.v-application .mt-n9{margin-top:-36px!important}.v-application .mt-n10{margin-top:-40px!important}.v-application .mt-n11{margin-top:-44px!important}.v-application .mt-n12{margin-top:-48px!important}.v-application .mt-n13{margin-top:-52px!important}.v-application .mt-n14{margin-top:-56px!important}.v-application .mt-n15{margin-top:-60px!important}.v-application .mt-n16{margin-top:-64px!important}.v-application .mr-n1{margin-right:-4px!important}.v-application .mr-n2{margin-right:-8px!important}.v-application .mr-n3{margin-right:-12px!important}.v-application .mr-n4{margin-right:-16px!important}.v-application .mr-n5{margin-right:-20px!important}.v-application .mr-n6{margin-right:-24px!important}.v-application .mr-n7{margin-right:-28px!important}.v-application .mr-n8{margin-right:-32px!important}.v-application .mr-n9{margin-right:-36px!important}.v-application .mr-n10{margin-right:-40px!important}.v-application .mr-n11{margin-right:-44px!important}.v-application .mr-n12{margin-right:-48px!important}.v-application .mr-n13{margin-right:-52px!important}.v-application .mr-n14{margin-right:-56px!important}.v-application .mr-n15{margin-right:-60px!important}.v-application .mr-n16{margin-right:-64px!important}.v-application .mb-n1{margin-bottom:-4px!important}.v-application .mb-n2{margin-bottom:-8px!important}.v-application .mb-n3{margin-bottom:-12px!important}.v-application .mb-n4{margin-bottom:-16px!important}.v-application .mb-n5{margin-bottom:-20px!important}.v-application .mb-n6{margin-bottom:-24px!important}.v-application .mb-n7{margin-bottom:-28px!important}.v-application .mb-n8{margin-bottom:-32px!important}.v-application .mb-n9{margin-bottom:-36px!important}.v-application .mb-n10{margin-bottom:-40px!important}.v-application .mb-n11{margin-bottom:-44px!important}.v-application .mb-n12{margin-bottom:-48px!important}.v-application .mb-n13{margin-bottom:-52px!important}.v-application .mb-n14{margin-bottom:-56px!important}.v-application .mb-n15{margin-bottom:-60px!important}.v-application .mb-n16{margin-bottom:-64px!important}.v-application .ml-n1{margin-left:-4px!important}.v-application .ml-n2{margin-left:-8px!important}.v-application .ml-n3{margin-left:-12px!important}.v-application .ml-n4{margin-left:-16px!important}.v-application .ml-n5{margin-left:-20px!important}.v-application .ml-n6{margin-left:-24px!important}.v-application .ml-n7{margin-left:-28px!important}.v-application .ml-n8{margin-left:-32px!important}.v-application .ml-n9{margin-left:-36px!important}.v-application .ml-n10{margin-left:-40px!important}.v-application .ml-n11{margin-left:-44px!important}.v-application .ml-n12{margin-left:-48px!important}.v-application .ml-n13{margin-left:-52px!important}.v-application .ml-n14{margin-left:-56px!important}.v-application .ml-n15{margin-left:-60px!important}.v-application .ml-n16{margin-left:-64px!important}.v-application--is-ltr .ms-n1{margin-left:-4px!important}.v-application--is-rtl .ms-n1{margin-right:-4px!important}.v-application--is-ltr .ms-n2{margin-left:-8px!important}.v-application--is-rtl .ms-n2{margin-right:-8px!important}.v-application--is-ltr .ms-n3{margin-left:-12px!important}.v-application--is-rtl .ms-n3{margin-right:-12px!important}.v-application--is-ltr .ms-n4{margin-left:-16px!important}.v-application--is-rtl .ms-n4{margin-right:-16px!important}.v-application--is-ltr .ms-n5{margin-left:-20px!important}.v-application--is-rtl .ms-n5{margin-right:-20px!important}.v-application--is-ltr .ms-n6{margin-left:-24px!important}.v-application--is-rtl .ms-n6{margin-right:-24px!important}.v-application--is-ltr .ms-n7{margin-left:-28px!important}.v-application--is-rtl .ms-n7{margin-right:-28px!important}.v-application--is-ltr .ms-n8{margin-left:-32px!important}.v-application--is-rtl .ms-n8{margin-right:-32px!important}.v-application--is-ltr .ms-n9{margin-left:-36px!important}.v-application--is-rtl .ms-n9{margin-right:-36px!important}.v-application--is-ltr .ms-n10{margin-left:-40px!important}.v-application--is-rtl .ms-n10{margin-right:-40px!important}.v-application--is-ltr .ms-n11{margin-left:-44px!important}.v-application--is-rtl .ms-n11{margin-right:-44px!important}.v-application--is-ltr .ms-n12{margin-left:-48px!important}.v-application--is-rtl .ms-n12{margin-right:-48px!important}.v-application--is-ltr .ms-n13{margin-left:-52px!important}.v-application--is-rtl .ms-n13{margin-right:-52px!important}.v-application--is-ltr .ms-n14{margin-left:-56px!important}.v-application--is-rtl .ms-n14{margin-right:-56px!important}.v-application--is-ltr .ms-n15{margin-left:-60px!important}.v-application--is-rtl .ms-n15{margin-right:-60px!important}.v-application--is-ltr .ms-n16{margin-left:-64px!important}.v-application--is-rtl .ms-n16{margin-right:-64px!important}.v-application--is-ltr .me-n1{margin-right:-4px!important}.v-application--is-rtl .me-n1{margin-left:-4px!important}.v-application--is-ltr .me-n2{margin-right:-8px!important}.v-application--is-rtl .me-n2{margin-left:-8px!important}.v-application--is-ltr .me-n3{margin-right:-12px!important}.v-application--is-rtl .me-n3{margin-left:-12px!important}.v-application--is-ltr .me-n4{margin-right:-16px!important}.v-application--is-rtl .me-n4{margin-left:-16px!important}.v-application--is-ltr .me-n5{margin-right:-20px!important}.v-application--is-rtl .me-n5{margin-left:-20px!important}.v-application--is-ltr .me-n6{margin-right:-24px!important}.v-application--is-rtl .me-n6{margin-left:-24px!important}.v-application--is-ltr .me-n7{margin-right:-28px!important}.v-application--is-rtl .me-n7{margin-left:-28px!important}.v-application--is-ltr .me-n8{margin-right:-32px!important}.v-application--is-rtl .me-n8{margin-left:-32px!important}.v-application--is-ltr .me-n9{margin-right:-36px!important}.v-application--is-rtl .me-n9{margin-left:-36px!important}.v-application--is-ltr .me-n10{margin-right:-40px!important}.v-application--is-rtl .me-n10{margin-left:-40px!important}.v-application--is-ltr .me-n11{margin-right:-44px!important}.v-application--is-rtl .me-n11{margin-left:-44px!important}.v-application--is-ltr .me-n12{margin-right:-48px!important}.v-application--is-rtl .me-n12{margin-left:-48px!important}.v-application--is-ltr .me-n13{margin-right:-52px!important}.v-application--is-rtl .me-n13{margin-left:-52px!important}.v-application--is-ltr .me-n14{margin-right:-56px!important}.v-application--is-rtl .me-n14{margin-left:-56px!important}.v-application--is-ltr .me-n15{margin-right:-60px!important}.v-application--is-rtl .me-n15{margin-left:-60px!important}.v-application--is-ltr .me-n16{margin-right:-64px!important}.v-application--is-rtl .me-n16{margin-left:-64px!important}.v-application .pa-0{padding:0!important}.v-application .pa-1{padding:4px!important}.v-application .pa-2{padding:8px!important}.v-application .pa-3{padding:12px!important}.v-application .pa-4{padding:16px!important}.v-application .pa-5{padding:20px!important}.v-application .pa-6{padding:24px!important}.v-application .pa-7{padding:28px!important}.v-application .pa-8{padding:32px!important}.v-application .pa-9{padding:36px!important}.v-application .pa-10{padding:40px!important}.v-application .pa-11{padding:44px!important}.v-application .pa-12{padding:48px!important}.v-application .pa-13{padding:52px!important}.v-application .pa-14{padding:56px!important}.v-application .pa-15{padding:60px!important}.v-application .pa-16{padding:64px!important}.v-application .px-0{padding-right:0!important;padding-left:0!important}.v-application .px-1{padding-right:4px!important;padding-left:4px!important}.v-application .px-2{padding-right:8px!important;padding-left:8px!important}.v-application .px-3{padding-right:12px!important;padding-left:12px!important}.v-application .px-4{padding-right:16px!important;padding-left:16px!important}.v-application .px-5{padding-right:20px!important;padding-left:20px!important}.v-application .px-6{padding-right:24px!important;padding-left:24px!important}.v-application .px-7{padding-right:28px!important;padding-left:28px!important}.v-application .px-8{padding-right:32px!important;padding-left:32px!important}.v-application .px-9{padding-right:36px!important;padding-left:36px!important}.v-application .px-10{padding-right:40px!important;padding-left:40px!important}.v-application .px-11{padding-right:44px!important;padding-left:44px!important}.v-application .px-12{padding-right:48px!important;padding-left:48px!important}.v-application .px-13{padding-right:52px!important;padding-left:52px!important}.v-application .px-14{padding-right:56px!important;padding-left:56px!important}.v-application .px-15{padding-right:60px!important;padding-left:60px!important}.v-application .px-16{padding-right:64px!important;padding-left:64px!important}.v-application .py-0{padding-top:0!important;padding-bottom:0!important}.v-application .py-1{padding-top:4px!important;padding-bottom:4px!important}.v-application .py-2{padding-top:8px!important;padding-bottom:8px!important}.v-application .py-3{padding-top:12px!important;padding-bottom:12px!important}.v-application .py-4{padding-top:16px!important;padding-bottom:16px!important}.v-application .py-5{padding-top:20px!important;padding-bottom:20px!important}.v-application .py-6{padding-top:24px!important;padding-bottom:24px!important}.v-application .py-7{padding-top:28px!important;padding-bottom:28px!important}.v-application .py-8{padding-top:32px!important;padding-bottom:32px!important}.v-application .py-9{padding-top:36px!important;padding-bottom:36px!important}.v-application .py-10{padding-top:40px!important;padding-bottom:40px!important}.v-application .py-11{padding-top:44px!important;padding-bottom:44px!important}.v-application .py-12{padding-top:48px!important;padding-bottom:48px!important}.v-application .py-13{padding-top:52px!important;padding-bottom:52px!important}.v-application .py-14{padding-top:56px!important;padding-bottom:56px!important}.v-application .py-15{padding-top:60px!important;padding-bottom:60px!important}.v-application .py-16{padding-top:64px!important;padding-bottom:64px!important}.v-application .pt-0{padding-top:0!important}.v-application .pt-1{padding-top:4px!important}.v-application .pt-2{padding-top:8px!important}.v-application .pt-3{padding-top:12px!important}.v-application .pt-4{padding-top:16px!important}.v-application .pt-5{padding-top:20px!important}.v-application .pt-6{padding-top:24px!important}.v-application .pt-7{padding-top:28px!important}.v-application .pt-8{padding-top:32px!important}.v-application .pt-9{padding-top:36px!important}.v-application .pt-10{padding-top:40px!important}.v-application .pt-11{padding-top:44px!important}.v-application .pt-12{padding-top:48px!important}.v-application .pt-13{padding-top:52px!important}.v-application .pt-14{padding-top:56px!important}.v-application .pt-15{padding-top:60px!important}.v-application .pt-16{padding-top:64px!important}.v-application .pr-0{padding-right:0!important}.v-application .pr-1{padding-right:4px!important}.v-application .pr-2{padding-right:8px!important}.v-application .pr-3{padding-right:12px!important}.v-application .pr-4{padding-right:16px!important}.v-application .pr-5{padding-right:20px!important}.v-application .pr-6{padding-right:24px!important}.v-application .pr-7{padding-right:28px!important}.v-application .pr-8{padding-right:32px!important}.v-application .pr-9{padding-right:36px!important}.v-application .pr-10{padding-right:40px!important}.v-application .pr-11{padding-right:44px!important}.v-application .pr-12{padding-right:48px!important}.v-application .pr-13{padding-right:52px!important}.v-application .pr-14{padding-right:56px!important}.v-application .pr-15{padding-right:60px!important}.v-application .pr-16{padding-right:64px!important}.v-application .pb-0{padding-bottom:0!important}.v-application .pb-1{padding-bottom:4px!important}.v-application .pb-2{padding-bottom:8px!important}.v-application .pb-3{padding-bottom:12px!important}.v-application .pb-4{padding-bottom:16px!important}.v-application .pb-5{padding-bottom:20px!important}.v-application .pb-6{padding-bottom:24px!important}.v-application .pb-7{padding-bottom:28px!important}.v-application .pb-8{padding-bottom:32px!important}.v-application .pb-9{padding-bottom:36px!important}.v-application .pb-10{padding-bottom:40px!important}.v-application .pb-11{padding-bottom:44px!important}.v-application .pb-12{padding-bottom:48px!important}.v-application .pb-13{padding-bottom:52px!important}.v-application .pb-14{padding-bottom:56px!important}.v-application .pb-15{padding-bottom:60px!important}.v-application .pb-16{padding-bottom:64px!important}.v-application .pl-0{padding-left:0!important}.v-application .pl-1{padding-left:4px!important}.v-application .pl-2{padding-left:8px!important}.v-application .pl-3{padding-left:12px!important}.v-application .pl-4{padding-left:16px!important}.v-application .pl-5{padding-left:20px!important}.v-application .pl-6{padding-left:24px!important}.v-application .pl-7{padding-left:28px!important}.v-application .pl-8{padding-left:32px!important}.v-application .pl-9{padding-left:36px!important}.v-application .pl-10{padding-left:40px!important}.v-application .pl-11{padding-left:44px!important}.v-application .pl-12{padding-left:48px!important}.v-application .pl-13{padding-left:52px!important}.v-application .pl-14{padding-left:56px!important}.v-application .pl-15{padding-left:60px!important}.v-application .pl-16{padding-left:64px!important}.v-application--is-ltr .ps-0{padding-left:0!important}.v-application--is-rtl .ps-0{padding-right:0!important}.v-application--is-ltr .ps-1{padding-left:4px!important}.v-application--is-rtl .ps-1{padding-right:4px!important}.v-application--is-ltr .ps-2{padding-left:8px!important}.v-application--is-rtl .ps-2{padding-right:8px!important}.v-application--is-ltr .ps-3{padding-left:12px!important}.v-application--is-rtl .ps-3{padding-right:12px!important}.v-application--is-ltr .ps-4{padding-left:16px!important}.v-application--is-rtl .ps-4{padding-right:16px!important}.v-application--is-ltr .ps-5{padding-left:20px!important}.v-application--is-rtl .ps-5{padding-right:20px!important}.v-application--is-ltr .ps-6{padding-left:24px!important}.v-application--is-rtl .ps-6{padding-right:24px!important}.v-application--is-ltr .ps-7{padding-left:28px!important}.v-application--is-rtl .ps-7{padding-right:28px!important}.v-application--is-ltr .ps-8{padding-left:32px!important}.v-application--is-rtl .ps-8{padding-right:32px!important}.v-application--is-ltr .ps-9{padding-left:36px!important}.v-application--is-rtl .ps-9{padding-right:36px!important}.v-application--is-ltr .ps-10{padding-left:40px!important}.v-application--is-rtl .ps-10{padding-right:40px!important}.v-application--is-ltr .ps-11{padding-left:44px!important}.v-application--is-rtl .ps-11{padding-right:44px!important}.v-application--is-ltr .ps-12{padding-left:48px!important}.v-application--is-rtl .ps-12{padding-right:48px!important}.v-application--is-ltr .ps-13{padding-left:52px!important}.v-application--is-rtl .ps-13{padding-right:52px!important}.v-application--is-ltr .ps-14{padding-left:56px!important}.v-application--is-rtl .ps-14{padding-right:56px!important}.v-application--is-ltr .ps-15{padding-left:60px!important}.v-application--is-rtl .ps-15{padding-right:60px!important}.v-application--is-ltr .ps-16{padding-left:64px!important}.v-application--is-rtl .ps-16{padding-right:64px!important}.v-application--is-ltr .pe-0{padding-right:0!important}.v-application--is-rtl .pe-0{padding-left:0!important}.v-application--is-ltr .pe-1{padding-right:4px!important}.v-application--is-rtl .pe-1{padding-left:4px!important}.v-application--is-ltr .pe-2{padding-right:8px!important}.v-application--is-rtl .pe-2{padding-left:8px!important}.v-application--is-ltr .pe-3{padding-right:12px!important}.v-application--is-rtl .pe-3{padding-left:12px!important}.v-application--is-ltr .pe-4{padding-right:16px!important}.v-application--is-rtl .pe-4{padding-left:16px!important}.v-application--is-ltr .pe-5{padding-right:20px!important}.v-application--is-rtl .pe-5{padding-left:20px!important}.v-application--is-ltr .pe-6{padding-right:24px!important}.v-application--is-rtl .pe-6{padding-left:24px!important}.v-application--is-ltr .pe-7{padding-right:28px!important}.v-application--is-rtl .pe-7{padding-left:28px!important}.v-application--is-ltr .pe-8{padding-right:32px!important}.v-application--is-rtl .pe-8{padding-left:32px!important}.v-application--is-ltr .pe-9{padding-right:36px!important}.v-application--is-rtl .pe-9{padding-left:36px!important}.v-application--is-ltr .pe-10{padding-right:40px!important}.v-application--is-rtl .pe-10{padding-left:40px!important}.v-application--is-ltr .pe-11{padding-right:44px!important}.v-application--is-rtl .pe-11{padding-left:44px!important}.v-application--is-ltr .pe-12{padding-right:48px!important}.v-application--is-rtl .pe-12{padding-left:48px!important}.v-application--is-ltr .pe-13{padding-right:52px!important}.v-application--is-rtl .pe-13{padding-left:52px!important}.v-application--is-ltr .pe-14{padding-right:56px!important}.v-application--is-rtl .pe-14{padding-left:56px!important}.v-application--is-ltr .pe-15{padding-right:60px!important}.v-application--is-rtl .pe-15{padding-left:60px!important}.v-application--is-ltr .pe-16{padding-right:64px!important}.v-application--is-rtl .pe-16{padding-left:64px!important}.v-application .rounded-0{border-radius:0!important}.v-application .rounded-sm{border-radius:2px!important}.v-application .rounded{border-radius:4px!important}.v-application .rounded-lg{border-radius:8px!important}.v-application .rounded-xl{border-radius:16px!important}.v-application .rounded-xxl{border-radius:24px!important}.v-application .rounded-pill{border-radius:9999px!important}.v-application .rounded-circle{border-radius:50%!important}.v-application .rounded-t-0{border-top-left-radius:0!important;border-top-right-radius:0!important}.v-application .rounded-t-sm{border-top-left-radius:2px!important;border-top-right-radius:2px!important}.v-application .rounded-t{border-top-left-radius:4px!important;border-top-right-radius:4px!important}.v-application .rounded-t-lg{border-top-left-radius:8px!important;border-top-right-radius:8px!important}.v-application .rounded-t-xl{border-top-left-radius:16px!important;border-top-right-radius:16px!important}.v-application .rounded-t-xxl{border-top-left-radius:24px!important;border-top-right-radius:24px!important}.v-application .rounded-t-pill{border-top-left-radius:9999px!important;border-top-right-radius:9999px!important}.v-application .rounded-t-circle{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.v-application .rounded-r-0{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.v-application .rounded-r-sm{border-top-right-radius:2px!important;border-bottom-right-radius:2px!important}.v-application .rounded-r{border-top-right-radius:4px!important;border-bottom-right-radius:4px!important}.v-application .rounded-r-lg{border-top-right-radius:8px!important;border-bottom-right-radius:8px!important}.v-application .rounded-r-xl{border-top-right-radius:16px!important;border-bottom-right-radius:16px!important}.v-application .rounded-r-xxl{border-top-right-radius:24px!important;border-bottom-right-radius:24px!important}.v-application .rounded-r-pill{border-top-right-radius:9999px!important;border-bottom-right-radius:9999px!important}.v-application .rounded-r-circle{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.v-application .rounded-b-0{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.v-application .rounded-b-sm{border-bottom-left-radius:2px!important;border-bottom-right-radius:2px!important}.v-application .rounded-b{border-bottom-left-radius:4px!important;border-bottom-right-radius:4px!important}.v-application .rounded-b-lg{border-bottom-left-radius:8px!important;border-bottom-right-radius:8px!important}.v-application .rounded-b-xl{border-bottom-left-radius:16px!important;border-bottom-right-radius:16px!important}.v-application .rounded-b-xxl{border-bottom-left-radius:24px!important;border-bottom-right-radius:24px!important}.v-application .rounded-b-pill{border-bottom-left-radius:9999px!important;border-bottom-right-radius:9999px!important}.v-application .rounded-b-circle{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}.v-application .rounded-l-0{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.v-application .rounded-l-sm{border-top-left-radius:2px!important;border-bottom-left-radius:2px!important}.v-application .rounded-l{border-top-left-radius:4px!important;border-bottom-left-radius:4px!important}.v-application .rounded-l-lg{border-top-left-radius:8px!important;border-bottom-left-radius:8px!important}.v-application .rounded-l-xl{border-top-left-radius:16px!important;border-bottom-left-radius:16px!important}.v-application .rounded-l-xxl{border-top-left-radius:24px!important;border-bottom-left-radius:24px!important}.v-application .rounded-l-pill{border-top-left-radius:9999px!important;border-bottom-left-radius:9999px!important}.v-application .rounded-l-circle{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.v-application .rounded-tl-0{border-top-left-radius:0!important}.v-application .rounded-tl-sm{border-top-left-radius:2px!important}.v-application .rounded-tl{border-top-left-radius:4px!important}.v-application .rounded-tl-lg{border-top-left-radius:8px!important}.v-application .rounded-tl-xl{border-top-left-radius:16px!important}.v-application .rounded-tl-xxl{border-top-left-radius:24px!important}.v-application .rounded-tl-pill{border-top-left-radius:9999px!important}.v-application .rounded-tl-circle{border-top-left-radius:50%!important}.v-application .rounded-tr-0{border-top-right-radius:0!important}.v-application .rounded-tr-sm{border-top-right-radius:2px!important}.v-application .rounded-tr{border-top-right-radius:4px!important}.v-application .rounded-tr-lg{border-top-right-radius:8px!important}.v-application .rounded-tr-xl{border-top-right-radius:16px!important}.v-application .rounded-tr-xxl{border-top-right-radius:24px!important}.v-application .rounded-tr-pill{border-top-right-radius:9999px!important}.v-application .rounded-tr-circle{border-top-right-radius:50%!important}.v-application .rounded-br-0{border-bottom-right-radius:0!important}.v-application .rounded-br-sm{border-bottom-right-radius:2px!important}.v-application .rounded-br{border-bottom-right-radius:4px!important}.v-application .rounded-br-lg{border-bottom-right-radius:8px!important}.v-application .rounded-br-xl{border-bottom-right-radius:16px!important}.v-application .rounded-br-xxl{border-bottom-right-radius:24px!important}.v-application .rounded-br-pill{border-bottom-right-radius:9999px!important}.v-application .rounded-br-circle{border-bottom-right-radius:50%!important}.v-application .rounded-bl-0{border-bottom-left-radius:0!important}.v-application .rounded-bl-sm{border-bottom-left-radius:2px!important}.v-application .rounded-bl{border-bottom-left-radius:4px!important}.v-application .rounded-bl-lg{border-bottom-left-radius:8px!important}.v-application .rounded-bl-xl{border-bottom-left-radius:16px!important}.v-application .rounded-bl-xxl{border-bottom-left-radius:24px!important}.v-application .rounded-bl-pill{border-bottom-left-radius:9999px!important}.v-application .rounded-bl-circle{border-bottom-left-radius:50%!important}.v-application .text-left{text-align:left!important}.v-application .text-right{text-align:right!important}.v-application .text-center{text-align:center!important}.v-application .text-justify{text-align:justify!important}.v-application .text-start{text-align:start!important}.v-application .text-end{text-align:end!important}.v-application .text-decoration-line-through{text-decoration:line-through!important}.v-application .text-decoration-none{text-decoration:none!important}.v-application .text-decoration-overline{text-decoration:overline!important}.v-application .text-decoration-underline{text-decoration:underline!important}.v-application .text-wrap{white-space:normal!important}.v-application .text-no-wrap{white-space:nowrap!important}.v-application .text-pre{white-space:pre!important}.v-application .text-pre-line{white-space:pre-line!important}.v-application .text-pre-wrap{white-space:pre-wrap!important}.v-application .text-break{overflow-wrap:break-word!important;word-break:break-word!important}.v-application .text-truncate{white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}.v-application .text-none{text-transform:none!important}.v-application .text-capitalize{text-transform:capitalize!important}.v-application .text-lowercase{text-transform:lowercase!important}.v-application .text-uppercase{text-transform:uppercase!important}.v-application .text-h1{font-size:6rem!important;line-height:6rem;letter-spacing:-.015625em!important}.v-application .text-h1,.v-application .text-h2{font-weight:300;font-family:Roboto,sans-serif!important}.v-application .text-h2{font-size:3.75rem!important;line-height:3.75rem;letter-spacing:-.0083333333em!important}.v-application .text-h3{font-size:3rem!important;line-height:3.125rem;letter-spacing:normal!important}.v-application .text-h3,.v-application .text-h4{font-weight:400;font-family:Roboto,sans-serif!important}.v-application .text-h4{font-size:2.125rem!important;line-height:2.5rem;letter-spacing:.0073529412em!important}.v-application .text-h5{font-size:1.5rem!important;font-weight:400;letter-spacing:normal!important}.v-application .text-h5,.v-application .text-h6{line-height:2rem;font-family:Roboto,sans-serif!important}.v-application .text-h6{font-size:1.25rem!important;font-weight:500;letter-spacing:.0125em!important}.v-application .text-subtitle-1{font-size:1rem!important;font-weight:400;line-height:1.75rem;letter-spacing:.009375em!important;font-family:Roboto,sans-serif!important}.v-application .text-subtitle-2{font-size:.875rem!important;font-weight:500;line-height:1.375rem;letter-spacing:.0071428571em!important;font-family:Roboto,sans-serif!important}.v-application .text-body-1{font-size:1rem!important;font-weight:400;line-height:1.5rem;letter-spacing:.03125em!important;font-family:Roboto,sans-serif!important}.v-application .text-body-2{font-weight:400;line-height:1.25rem;letter-spacing:.0178571429em!important}.v-application .text-body-2,.v-application .text-button{font-size:.875rem!important;font-family:Roboto,sans-serif!important}.v-application .text-button{font-weight:500;line-height:2.25rem;letter-spacing:.0892857143em!important;text-transform:uppercase!important}.v-application .text-caption{font-weight:400;line-height:1.25rem;letter-spacing:.0333333333em!important}.v-application .text-caption,.v-application .text-overline{font-size:.75rem!important;font-family:Roboto,sans-serif!important}.v-application .text-overline{font-weight:500;line-height:2rem;letter-spacing:.1666666667em!important;text-transform:uppercase!important}@media(min-width:600px){.v-application .d-sm-none{display:none!important}.v-application .d-sm-inline{display:inline!important}.v-application .d-sm-inline-block{display:inline-block!important}.v-application .d-sm-block{display:block!important}.v-application .d-sm-table{display:table!important}.v-application .d-sm-table-row{display:table-row!important}.v-application .d-sm-table-cell{display:table-cell!important}.v-application .d-sm-flex{display:flex!important}.v-application .d-sm-inline-flex{display:inline-flex!important}.v-application .float-sm-none{float:none!important}.v-application .float-sm-left{float:left!important}.v-application .float-sm-right{float:right!important}.v-application--is-rtl .float-sm-end{float:left!important}.v-application--is-ltr .float-sm-end,.v-application--is-rtl .float-sm-start{float:right!important}.v-application--is-ltr .float-sm-start{float:left!important}.v-application .flex-sm-fill{flex:1 1 auto!important}.v-application .flex-sm-row{flex-direction:row!important}.v-application .flex-sm-column{flex-direction:column!important}.v-application .flex-sm-row-reverse{flex-direction:row-reverse!important}.v-application .flex-sm-column-reverse{flex-direction:column-reverse!important}.v-application .flex-sm-grow-0{flex-grow:0!important}.v-application .flex-sm-grow-1{flex-grow:1!important}.v-application .flex-sm-shrink-0{flex-shrink:0!important}.v-application .flex-sm-shrink-1{flex-shrink:1!important}.v-application .flex-sm-wrap{flex-wrap:wrap!important}.v-application .flex-sm-nowrap{flex-wrap:nowrap!important}.v-application .flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.v-application .justify-sm-start{justify-content:flex-start!important}.v-application .justify-sm-end{justify-content:flex-end!important}.v-application .justify-sm-center{justify-content:center!important}.v-application .justify-sm-space-between{justify-content:space-between!important}.v-application .justify-sm-space-around{justify-content:space-around!important}.v-application .align-sm-start{align-items:flex-start!important}.v-application .align-sm-end{align-items:flex-end!important}.v-application .align-sm-center{align-items:center!important}.v-application .align-sm-baseline{align-items:baseline!important}.v-application .align-sm-stretch{align-items:stretch!important}.v-application .align-content-sm-start{align-content:flex-start!important}.v-application .align-content-sm-end{align-content:flex-end!important}.v-application .align-content-sm-center{align-content:center!important}.v-application .align-content-sm-space-between{align-content:space-between!important}.v-application .align-content-sm-space-around{align-content:space-around!important}.v-application .align-content-sm-stretch{align-content:stretch!important}.v-application .align-self-sm-auto{align-self:auto!important}.v-application .align-self-sm-start{align-self:flex-start!important}.v-application .align-self-sm-end{align-self:flex-end!important}.v-application .align-self-sm-center{align-self:center!important}.v-application .align-self-sm-baseline{align-self:baseline!important}.v-application .align-self-sm-stretch{align-self:stretch!important}.v-application .order-sm-first{order:-1!important}.v-application .order-sm-0{order:0!important}.v-application .order-sm-1{order:1!important}.v-application .order-sm-2{order:2!important}.v-application .order-sm-3{order:3!important}.v-application .order-sm-4{order:4!important}.v-application .order-sm-5{order:5!important}.v-application .order-sm-6{order:6!important}.v-application .order-sm-7{order:7!important}.v-application .order-sm-8{order:8!important}.v-application .order-sm-9{order:9!important}.v-application .order-sm-10{order:10!important}.v-application .order-sm-11{order:11!important}.v-application .order-sm-12{order:12!important}.v-application .order-sm-last{order:13!important}.v-application .ma-sm-0{margin:0!important}.v-application .ma-sm-1{margin:4px!important}.v-application .ma-sm-2{margin:8px!important}.v-application .ma-sm-3{margin:12px!important}.v-application .ma-sm-4{margin:16px!important}.v-application .ma-sm-5{margin:20px!important}.v-application .ma-sm-6{margin:24px!important}.v-application .ma-sm-7{margin:28px!important}.v-application .ma-sm-8{margin:32px!important}.v-application .ma-sm-9{margin:36px!important}.v-application .ma-sm-10{margin:40px!important}.v-application .ma-sm-11{margin:44px!important}.v-application .ma-sm-12{margin:48px!important}.v-application .ma-sm-13{margin:52px!important}.v-application .ma-sm-14{margin:56px!important}.v-application .ma-sm-15{margin:60px!important}.v-application .ma-sm-16{margin:64px!important}.v-application .ma-sm-auto{margin:auto!important}.v-application .mx-sm-0{margin-right:0!important;margin-left:0!important}.v-application .mx-sm-1{margin-right:4px!important;margin-left:4px!important}.v-application .mx-sm-2{margin-right:8px!important;margin-left:8px!important}.v-application .mx-sm-3{margin-right:12px!important;margin-left:12px!important}.v-application .mx-sm-4{margin-right:16px!important;margin-left:16px!important}.v-application .mx-sm-5{margin-right:20px!important;margin-left:20px!important}.v-application .mx-sm-6{margin-right:24px!important;margin-left:24px!important}.v-application .mx-sm-7{margin-right:28px!important;margin-left:28px!important}.v-application .mx-sm-8{margin-right:32px!important;margin-left:32px!important}.v-application .mx-sm-9{margin-right:36px!important;margin-left:36px!important}.v-application .mx-sm-10{margin-right:40px!important;margin-left:40px!important}.v-application .mx-sm-11{margin-right:44px!important;margin-left:44px!important}.v-application .mx-sm-12{margin-right:48px!important;margin-left:48px!important}.v-application .mx-sm-13{margin-right:52px!important;margin-left:52px!important}.v-application .mx-sm-14{margin-right:56px!important;margin-left:56px!important}.v-application .mx-sm-15{margin-right:60px!important;margin-left:60px!important}.v-application .mx-sm-16{margin-right:64px!important;margin-left:64px!important}.v-application .mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.v-application .my-sm-0{margin-top:0!important;margin-bottom:0!important}.v-application .my-sm-1{margin-top:4px!important;margin-bottom:4px!important}.v-application .my-sm-2{margin-top:8px!important;margin-bottom:8px!important}.v-application .my-sm-3{margin-top:12px!important;margin-bottom:12px!important}.v-application .my-sm-4{margin-top:16px!important;margin-bottom:16px!important}.v-application .my-sm-5{margin-top:20px!important;margin-bottom:20px!important}.v-application .my-sm-6{margin-top:24px!important;margin-bottom:24px!important}.v-application .my-sm-7{margin-top:28px!important;margin-bottom:28px!important}.v-application .my-sm-8{margin-top:32px!important;margin-bottom:32px!important}.v-application .my-sm-9{margin-top:36px!important;margin-bottom:36px!important}.v-application .my-sm-10{margin-top:40px!important;margin-bottom:40px!important}.v-application .my-sm-11{margin-top:44px!important;margin-bottom:44px!important}.v-application .my-sm-12{margin-top:48px!important;margin-bottom:48px!important}.v-application .my-sm-13{margin-top:52px!important;margin-bottom:52px!important}.v-application .my-sm-14{margin-top:56px!important;margin-bottom:56px!important}.v-application .my-sm-15{margin-top:60px!important;margin-bottom:60px!important}.v-application .my-sm-16{margin-top:64px!important;margin-bottom:64px!important}.v-application .my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.v-application .mt-sm-0{margin-top:0!important}.v-application .mt-sm-1{margin-top:4px!important}.v-application .mt-sm-2{margin-top:8px!important}.v-application .mt-sm-3{margin-top:12px!important}.v-application .mt-sm-4{margin-top:16px!important}.v-application .mt-sm-5{margin-top:20px!important}.v-application .mt-sm-6{margin-top:24px!important}.v-application .mt-sm-7{margin-top:28px!important}.v-application .mt-sm-8{margin-top:32px!important}.v-application .mt-sm-9{margin-top:36px!important}.v-application .mt-sm-10{margin-top:40px!important}.v-application .mt-sm-11{margin-top:44px!important}.v-application .mt-sm-12{margin-top:48px!important}.v-application .mt-sm-13{margin-top:52px!important}.v-application .mt-sm-14{margin-top:56px!important}.v-application .mt-sm-15{margin-top:60px!important}.v-application .mt-sm-16{margin-top:64px!important}.v-application .mt-sm-auto{margin-top:auto!important}.v-application .mr-sm-0{margin-right:0!important}.v-application .mr-sm-1{margin-right:4px!important}.v-application .mr-sm-2{margin-right:8px!important}.v-application .mr-sm-3{margin-right:12px!important}.v-application .mr-sm-4{margin-right:16px!important}.v-application .mr-sm-5{margin-right:20px!important}.v-application .mr-sm-6{margin-right:24px!important}.v-application .mr-sm-7{margin-right:28px!important}.v-application .mr-sm-8{margin-right:32px!important}.v-application .mr-sm-9{margin-right:36px!important}.v-application .mr-sm-10{margin-right:40px!important}.v-application .mr-sm-11{margin-right:44px!important}.v-application .mr-sm-12{margin-right:48px!important}.v-application .mr-sm-13{margin-right:52px!important}.v-application .mr-sm-14{margin-right:56px!important}.v-application .mr-sm-15{margin-right:60px!important}.v-application .mr-sm-16{margin-right:64px!important}.v-application .mr-sm-auto{margin-right:auto!important}.v-application .mb-sm-0{margin-bottom:0!important}.v-application .mb-sm-1{margin-bottom:4px!important}.v-application .mb-sm-2{margin-bottom:8px!important}.v-application .mb-sm-3{margin-bottom:12px!important}.v-application .mb-sm-4{margin-bottom:16px!important}.v-application .mb-sm-5{margin-bottom:20px!important}.v-application .mb-sm-6{margin-bottom:24px!important}.v-application .mb-sm-7{margin-bottom:28px!important}.v-application .mb-sm-8{margin-bottom:32px!important}.v-application .mb-sm-9{margin-bottom:36px!important}.v-application .mb-sm-10{margin-bottom:40px!important}.v-application .mb-sm-11{margin-bottom:44px!important}.v-application .mb-sm-12{margin-bottom:48px!important}.v-application .mb-sm-13{margin-bottom:52px!important}.v-application .mb-sm-14{margin-bottom:56px!important}.v-application .mb-sm-15{margin-bottom:60px!important}.v-application .mb-sm-16{margin-bottom:64px!important}.v-application .mb-sm-auto{margin-bottom:auto!important}.v-application .ml-sm-0{margin-left:0!important}.v-application .ml-sm-1{margin-left:4px!important}.v-application .ml-sm-2{margin-left:8px!important}.v-application .ml-sm-3{margin-left:12px!important}.v-application .ml-sm-4{margin-left:16px!important}.v-application .ml-sm-5{margin-left:20px!important}.v-application .ml-sm-6{margin-left:24px!important}.v-application .ml-sm-7{margin-left:28px!important}.v-application .ml-sm-8{margin-left:32px!important}.v-application .ml-sm-9{margin-left:36px!important}.v-application .ml-sm-10{margin-left:40px!important}.v-application .ml-sm-11{margin-left:44px!important}.v-application .ml-sm-12{margin-left:48px!important}.v-application .ml-sm-13{margin-left:52px!important}.v-application .ml-sm-14{margin-left:56px!important}.v-application .ml-sm-15{margin-left:60px!important}.v-application .ml-sm-16{margin-left:64px!important}.v-application .ml-sm-auto{margin-left:auto!important}.v-application--is-ltr .ms-sm-0{margin-left:0!important}.v-application--is-rtl .ms-sm-0{margin-right:0!important}.v-application--is-ltr .ms-sm-1{margin-left:4px!important}.v-application--is-rtl .ms-sm-1{margin-right:4px!important}.v-application--is-ltr .ms-sm-2{margin-left:8px!important}.v-application--is-rtl .ms-sm-2{margin-right:8px!important}.v-application--is-ltr .ms-sm-3{margin-left:12px!important}.v-application--is-rtl .ms-sm-3{margin-right:12px!important}.v-application--is-ltr .ms-sm-4{margin-left:16px!important}.v-application--is-rtl .ms-sm-4{margin-right:16px!important}.v-application--is-ltr .ms-sm-5{margin-left:20px!important}.v-application--is-rtl .ms-sm-5{margin-right:20px!important}.v-application--is-ltr .ms-sm-6{margin-left:24px!important}.v-application--is-rtl .ms-sm-6{margin-right:24px!important}.v-application--is-ltr .ms-sm-7{margin-left:28px!important}.v-application--is-rtl .ms-sm-7{margin-right:28px!important}.v-application--is-ltr .ms-sm-8{margin-left:32px!important}.v-application--is-rtl .ms-sm-8{margin-right:32px!important}.v-application--is-ltr .ms-sm-9{margin-left:36px!important}.v-application--is-rtl .ms-sm-9{margin-right:36px!important}.v-application--is-ltr .ms-sm-10{margin-left:40px!important}.v-application--is-rtl .ms-sm-10{margin-right:40px!important}.v-application--is-ltr .ms-sm-11{margin-left:44px!important}.v-application--is-rtl .ms-sm-11{margin-right:44px!important}.v-application--is-ltr .ms-sm-12{margin-left:48px!important}.v-application--is-rtl .ms-sm-12{margin-right:48px!important}.v-application--is-ltr .ms-sm-13{margin-left:52px!important}.v-application--is-rtl .ms-sm-13{margin-right:52px!important}.v-application--is-ltr .ms-sm-14{margin-left:56px!important}.v-application--is-rtl .ms-sm-14{margin-right:56px!important}.v-application--is-ltr .ms-sm-15{margin-left:60px!important}.v-application--is-rtl .ms-sm-15{margin-right:60px!important}.v-application--is-ltr .ms-sm-16{margin-left:64px!important}.v-application--is-rtl .ms-sm-16{margin-right:64px!important}.v-application--is-ltr .ms-sm-auto{margin-left:auto!important}.v-application--is-rtl .ms-sm-auto{margin-right:auto!important}.v-application--is-ltr .me-sm-0{margin-right:0!important}.v-application--is-rtl .me-sm-0{margin-left:0!important}.v-application--is-ltr .me-sm-1{margin-right:4px!important}.v-application--is-rtl .me-sm-1{margin-left:4px!important}.v-application--is-ltr .me-sm-2{margin-right:8px!important}.v-application--is-rtl .me-sm-2{margin-left:8px!important}.v-application--is-ltr .me-sm-3{margin-right:12px!important}.v-application--is-rtl .me-sm-3{margin-left:12px!important}.v-application--is-ltr .me-sm-4{margin-right:16px!important}.v-application--is-rtl .me-sm-4{margin-left:16px!important}.v-application--is-ltr .me-sm-5{margin-right:20px!important}.v-application--is-rtl .me-sm-5{margin-left:20px!important}.v-application--is-ltr .me-sm-6{margin-right:24px!important}.v-application--is-rtl .me-sm-6{margin-left:24px!important}.v-application--is-ltr .me-sm-7{margin-right:28px!important}.v-application--is-rtl .me-sm-7{margin-left:28px!important}.v-application--is-ltr .me-sm-8{margin-right:32px!important}.v-application--is-rtl .me-sm-8{margin-left:32px!important}.v-application--is-ltr .me-sm-9{margin-right:36px!important}.v-application--is-rtl .me-sm-9{margin-left:36px!important}.v-application--is-ltr .me-sm-10{margin-right:40px!important}.v-application--is-rtl .me-sm-10{margin-left:40px!important}.v-application--is-ltr .me-sm-11{margin-right:44px!important}.v-application--is-rtl .me-sm-11{margin-left:44px!important}.v-application--is-ltr .me-sm-12{margin-right:48px!important}.v-application--is-rtl .me-sm-12{margin-left:48px!important}.v-application--is-ltr .me-sm-13{margin-right:52px!important}.v-application--is-rtl .me-sm-13{margin-left:52px!important}.v-application--is-ltr .me-sm-14{margin-right:56px!important}.v-application--is-rtl .me-sm-14{margin-left:56px!important}.v-application--is-ltr .me-sm-15{margin-right:60px!important}.v-application--is-rtl .me-sm-15{margin-left:60px!important}.v-application--is-ltr .me-sm-16{margin-right:64px!important}.v-application--is-rtl .me-sm-16{margin-left:64px!important}.v-application--is-ltr .me-sm-auto{margin-right:auto!important}.v-application--is-rtl .me-sm-auto{margin-left:auto!important}.v-application .ma-sm-n1{margin:-4px!important}.v-application .ma-sm-n2{margin:-8px!important}.v-application .ma-sm-n3{margin:-12px!important}.v-application .ma-sm-n4{margin:-16px!important}.v-application .ma-sm-n5{margin:-20px!important}.v-application .ma-sm-n6{margin:-24px!important}.v-application .ma-sm-n7{margin:-28px!important}.v-application .ma-sm-n8{margin:-32px!important}.v-application .ma-sm-n9{margin:-36px!important}.v-application .ma-sm-n10{margin:-40px!important}.v-application .ma-sm-n11{margin:-44px!important}.v-application .ma-sm-n12{margin:-48px!important}.v-application .ma-sm-n13{margin:-52px!important}.v-application .ma-sm-n14{margin:-56px!important}.v-application .ma-sm-n15{margin:-60px!important}.v-application .ma-sm-n16{margin:-64px!important}.v-application .mx-sm-n1{margin-right:-4px!important;margin-left:-4px!important}.v-application .mx-sm-n2{margin-right:-8px!important;margin-left:-8px!important}.v-application .mx-sm-n3{margin-right:-12px!important;margin-left:-12px!important}.v-application .mx-sm-n4{margin-right:-16px!important;margin-left:-16px!important}.v-application .mx-sm-n5{margin-right:-20px!important;margin-left:-20px!important}.v-application .mx-sm-n6{margin-right:-24px!important;margin-left:-24px!important}.v-application .mx-sm-n7{margin-right:-28px!important;margin-left:-28px!important}.v-application .mx-sm-n8{margin-right:-32px!important;margin-left:-32px!important}.v-application .mx-sm-n9{margin-right:-36px!important;margin-left:-36px!important}.v-application .mx-sm-n10{margin-right:-40px!important;margin-left:-40px!important}.v-application .mx-sm-n11{margin-right:-44px!important;margin-left:-44px!important}.v-application .mx-sm-n12{margin-right:-48px!important;margin-left:-48px!important}.v-application .mx-sm-n13{margin-right:-52px!important;margin-left:-52px!important}.v-application .mx-sm-n14{margin-right:-56px!important;margin-left:-56px!important}.v-application .mx-sm-n15{margin-right:-60px!important;margin-left:-60px!important}.v-application .mx-sm-n16{margin-right:-64px!important;margin-left:-64px!important}.v-application .my-sm-n1{margin-top:-4px!important;margin-bottom:-4px!important}.v-application .my-sm-n2{margin-top:-8px!important;margin-bottom:-8px!important}.v-application .my-sm-n3{margin-top:-12px!important;margin-bottom:-12px!important}.v-application .my-sm-n4{margin-top:-16px!important;margin-bottom:-16px!important}.v-application .my-sm-n5{margin-top:-20px!important;margin-bottom:-20px!important}.v-application .my-sm-n6{margin-top:-24px!important;margin-bottom:-24px!important}.v-application .my-sm-n7{margin-top:-28px!important;margin-bottom:-28px!important}.v-application .my-sm-n8{margin-top:-32px!important;margin-bottom:-32px!important}.v-application .my-sm-n9{margin-top:-36px!important;margin-bottom:-36px!important}.v-application .my-sm-n10{margin-top:-40px!important;margin-bottom:-40px!important}.v-application .my-sm-n11{margin-top:-44px!important;margin-bottom:-44px!important}.v-application .my-sm-n12{margin-top:-48px!important;margin-bottom:-48px!important}.v-application .my-sm-n13{margin-top:-52px!important;margin-bottom:-52px!important}.v-application .my-sm-n14{margin-top:-56px!important;margin-bottom:-56px!important}.v-application .my-sm-n15{margin-top:-60px!important;margin-bottom:-60px!important}.v-application .my-sm-n16{margin-top:-64px!important;margin-bottom:-64px!important}.v-application .mt-sm-n1{margin-top:-4px!important}.v-application .mt-sm-n2{margin-top:-8px!important}.v-application .mt-sm-n3{margin-top:-12px!important}.v-application .mt-sm-n4{margin-top:-16px!important}.v-application .mt-sm-n5{margin-top:-20px!important}.v-application .mt-sm-n6{margin-top:-24px!important}.v-application .mt-sm-n7{margin-top:-28px!important}.v-application .mt-sm-n8{margin-top:-32px!important}.v-application .mt-sm-n9{margin-top:-36px!important}.v-application .mt-sm-n10{margin-top:-40px!important}.v-application .mt-sm-n11{margin-top:-44px!important}.v-application .mt-sm-n12{margin-top:-48px!important}.v-application .mt-sm-n13{margin-top:-52px!important}.v-application .mt-sm-n14{margin-top:-56px!important}.v-application .mt-sm-n15{margin-top:-60px!important}.v-application .mt-sm-n16{margin-top:-64px!important}.v-application .mr-sm-n1{margin-right:-4px!important}.v-application .mr-sm-n2{margin-right:-8px!important}.v-application .mr-sm-n3{margin-right:-12px!important}.v-application .mr-sm-n4{margin-right:-16px!important}.v-application .mr-sm-n5{margin-right:-20px!important}.v-application .mr-sm-n6{margin-right:-24px!important}.v-application .mr-sm-n7{margin-right:-28px!important}.v-application .mr-sm-n8{margin-right:-32px!important}.v-application .mr-sm-n9{margin-right:-36px!important}.v-application .mr-sm-n10{margin-right:-40px!important}.v-application .mr-sm-n11{margin-right:-44px!important}.v-application .mr-sm-n12{margin-right:-48px!important}.v-application .mr-sm-n13{margin-right:-52px!important}.v-application .mr-sm-n14{margin-right:-56px!important}.v-application .mr-sm-n15{margin-right:-60px!important}.v-application .mr-sm-n16{margin-right:-64px!important}.v-application .mb-sm-n1{margin-bottom:-4px!important}.v-application .mb-sm-n2{margin-bottom:-8px!important}.v-application .mb-sm-n3{margin-bottom:-12px!important}.v-application .mb-sm-n4{margin-bottom:-16px!important}.v-application .mb-sm-n5{margin-bottom:-20px!important}.v-application .mb-sm-n6{margin-bottom:-24px!important}.v-application .mb-sm-n7{margin-bottom:-28px!important}.v-application .mb-sm-n8{margin-bottom:-32px!important}.v-application .mb-sm-n9{margin-bottom:-36px!important}.v-application .mb-sm-n10{margin-bottom:-40px!important}.v-application .mb-sm-n11{margin-bottom:-44px!important}.v-application .mb-sm-n12{margin-bottom:-48px!important}.v-application .mb-sm-n13{margin-bottom:-52px!important}.v-application .mb-sm-n14{margin-bottom:-56px!important}.v-application .mb-sm-n15{margin-bottom:-60px!important}.v-application .mb-sm-n16{margin-bottom:-64px!important}.v-application .ml-sm-n1{margin-left:-4px!important}.v-application .ml-sm-n2{margin-left:-8px!important}.v-application .ml-sm-n3{margin-left:-12px!important}.v-application .ml-sm-n4{margin-left:-16px!important}.v-application .ml-sm-n5{margin-left:-20px!important}.v-application .ml-sm-n6{margin-left:-24px!important}.v-application .ml-sm-n7{margin-left:-28px!important}.v-application .ml-sm-n8{margin-left:-32px!important}.v-application .ml-sm-n9{margin-left:-36px!important}.v-application .ml-sm-n10{margin-left:-40px!important}.v-application .ml-sm-n11{margin-left:-44px!important}.v-application .ml-sm-n12{margin-left:-48px!important}.v-application .ml-sm-n13{margin-left:-52px!important}.v-application .ml-sm-n14{margin-left:-56px!important}.v-application .ml-sm-n15{margin-left:-60px!important}.v-application .ml-sm-n16{margin-left:-64px!important}.v-application--is-ltr .ms-sm-n1{margin-left:-4px!important}.v-application--is-rtl .ms-sm-n1{margin-right:-4px!important}.v-application--is-ltr .ms-sm-n2{margin-left:-8px!important}.v-application--is-rtl .ms-sm-n2{margin-right:-8px!important}.v-application--is-ltr .ms-sm-n3{margin-left:-12px!important}.v-application--is-rtl .ms-sm-n3{margin-right:-12px!important}.v-application--is-ltr .ms-sm-n4{margin-left:-16px!important}.v-application--is-rtl .ms-sm-n4{margin-right:-16px!important}.v-application--is-ltr .ms-sm-n5{margin-left:-20px!important}.v-application--is-rtl .ms-sm-n5{margin-right:-20px!important}.v-application--is-ltr .ms-sm-n6{margin-left:-24px!important}.v-application--is-rtl .ms-sm-n6{margin-right:-24px!important}.v-application--is-ltr .ms-sm-n7{margin-left:-28px!important}.v-application--is-rtl .ms-sm-n7{margin-right:-28px!important}.v-application--is-ltr .ms-sm-n8{margin-left:-32px!important}.v-application--is-rtl .ms-sm-n8{margin-right:-32px!important}.v-application--is-ltr .ms-sm-n9{margin-left:-36px!important}.v-application--is-rtl .ms-sm-n9{margin-right:-36px!important}.v-application--is-ltr .ms-sm-n10{margin-left:-40px!important}.v-application--is-rtl .ms-sm-n10{margin-right:-40px!important}.v-application--is-ltr .ms-sm-n11{margin-left:-44px!important}.v-application--is-rtl .ms-sm-n11{margin-right:-44px!important}.v-application--is-ltr .ms-sm-n12{margin-left:-48px!important}.v-application--is-rtl .ms-sm-n12{margin-right:-48px!important}.v-application--is-ltr .ms-sm-n13{margin-left:-52px!important}.v-application--is-rtl .ms-sm-n13{margin-right:-52px!important}.v-application--is-ltr .ms-sm-n14{margin-left:-56px!important}.v-application--is-rtl .ms-sm-n14{margin-right:-56px!important}.v-application--is-ltr .ms-sm-n15{margin-left:-60px!important}.v-application--is-rtl .ms-sm-n15{margin-right:-60px!important}.v-application--is-ltr .ms-sm-n16{margin-left:-64px!important}.v-application--is-rtl .ms-sm-n16{margin-right:-64px!important}.v-application--is-ltr .me-sm-n1{margin-right:-4px!important}.v-application--is-rtl .me-sm-n1{margin-left:-4px!important}.v-application--is-ltr .me-sm-n2{margin-right:-8px!important}.v-application--is-rtl .me-sm-n2{margin-left:-8px!important}.v-application--is-ltr .me-sm-n3{margin-right:-12px!important}.v-application--is-rtl .me-sm-n3{margin-left:-12px!important}.v-application--is-ltr .me-sm-n4{margin-right:-16px!important}.v-application--is-rtl .me-sm-n4{margin-left:-16px!important}.v-application--is-ltr .me-sm-n5{margin-right:-20px!important}.v-application--is-rtl .me-sm-n5{margin-left:-20px!important}.v-application--is-ltr .me-sm-n6{margin-right:-24px!important}.v-application--is-rtl .me-sm-n6{margin-left:-24px!important}.v-application--is-ltr .me-sm-n7{margin-right:-28px!important}.v-application--is-rtl .me-sm-n7{margin-left:-28px!important}.v-application--is-ltr .me-sm-n8{margin-right:-32px!important}.v-application--is-rtl .me-sm-n8{margin-left:-32px!important}.v-application--is-ltr .me-sm-n9{margin-right:-36px!important}.v-application--is-rtl .me-sm-n9{margin-left:-36px!important}.v-application--is-ltr .me-sm-n10{margin-right:-40px!important}.v-application--is-rtl .me-sm-n10{margin-left:-40px!important}.v-application--is-ltr .me-sm-n11{margin-right:-44px!important}.v-application--is-rtl .me-sm-n11{margin-left:-44px!important}.v-application--is-ltr .me-sm-n12{margin-right:-48px!important}.v-application--is-rtl .me-sm-n12{margin-left:-48px!important}.v-application--is-ltr .me-sm-n13{margin-right:-52px!important}.v-application--is-rtl .me-sm-n13{margin-left:-52px!important}.v-application--is-ltr .me-sm-n14{margin-right:-56px!important}.v-application--is-rtl .me-sm-n14{margin-left:-56px!important}.v-application--is-ltr .me-sm-n15{margin-right:-60px!important}.v-application--is-rtl .me-sm-n15{margin-left:-60px!important}.v-application--is-ltr .me-sm-n16{margin-right:-64px!important}.v-application--is-rtl .me-sm-n16{margin-left:-64px!important}.v-application .pa-sm-0{padding:0!important}.v-application .pa-sm-1{padding:4px!important}.v-application .pa-sm-2{padding:8px!important}.v-application .pa-sm-3{padding:12px!important}.v-application .pa-sm-4{padding:16px!important}.v-application .pa-sm-5{padding:20px!important}.v-application .pa-sm-6{padding:24px!important}.v-application .pa-sm-7{padding:28px!important}.v-application .pa-sm-8{padding:32px!important}.v-application .pa-sm-9{padding:36px!important}.v-application .pa-sm-10{padding:40px!important}.v-application .pa-sm-11{padding:44px!important}.v-application .pa-sm-12{padding:48px!important}.v-application .pa-sm-13{padding:52px!important}.v-application .pa-sm-14{padding:56px!important}.v-application .pa-sm-15{padding:60px!important}.v-application .pa-sm-16{padding:64px!important}.v-application .px-sm-0{padding-right:0!important;padding-left:0!important}.v-application .px-sm-1{padding-right:4px!important;padding-left:4px!important}.v-application .px-sm-2{padding-right:8px!important;padding-left:8px!important}.v-application .px-sm-3{padding-right:12px!important;padding-left:12px!important}.v-application .px-sm-4{padding-right:16px!important;padding-left:16px!important}.v-application .px-sm-5{padding-right:20px!important;padding-left:20px!important}.v-application .px-sm-6{padding-right:24px!important;padding-left:24px!important}.v-application .px-sm-7{padding-right:28px!important;padding-left:28px!important}.v-application .px-sm-8{padding-right:32px!important;padding-left:32px!important}.v-application .px-sm-9{padding-right:36px!important;padding-left:36px!important}.v-application .px-sm-10{padding-right:40px!important;padding-left:40px!important}.v-application .px-sm-11{padding-right:44px!important;padding-left:44px!important}.v-application .px-sm-12{padding-right:48px!important;padding-left:48px!important}.v-application .px-sm-13{padding-right:52px!important;padding-left:52px!important}.v-application .px-sm-14{padding-right:56px!important;padding-left:56px!important}.v-application .px-sm-15{padding-right:60px!important;padding-left:60px!important}.v-application .px-sm-16{padding-right:64px!important;padding-left:64px!important}.v-application .py-sm-0{padding-top:0!important;padding-bottom:0!important}.v-application .py-sm-1{padding-top:4px!important;padding-bottom:4px!important}.v-application .py-sm-2{padding-top:8px!important;padding-bottom:8px!important}.v-application .py-sm-3{padding-top:12px!important;padding-bottom:12px!important}.v-application .py-sm-4{padding-top:16px!important;padding-bottom:16px!important}.v-application .py-sm-5{padding-top:20px!important;padding-bottom:20px!important}.v-application .py-sm-6{padding-top:24px!important;padding-bottom:24px!important}.v-application .py-sm-7{padding-top:28px!important;padding-bottom:28px!important}.v-application .py-sm-8{padding-top:32px!important;padding-bottom:32px!important}.v-application .py-sm-9{padding-top:36px!important;padding-bottom:36px!important}.v-application .py-sm-10{padding-top:40px!important;padding-bottom:40px!important}.v-application .py-sm-11{padding-top:44px!important;padding-bottom:44px!important}.v-application .py-sm-12{padding-top:48px!important;padding-bottom:48px!important}.v-application .py-sm-13{padding-top:52px!important;padding-bottom:52px!important}.v-application .py-sm-14{padding-top:56px!important;padding-bottom:56px!important}.v-application .py-sm-15{padding-top:60px!important;padding-bottom:60px!important}.v-application .py-sm-16{padding-top:64px!important;padding-bottom:64px!important}.v-application .pt-sm-0{padding-top:0!important}.v-application .pt-sm-1{padding-top:4px!important}.v-application .pt-sm-2{padding-top:8px!important}.v-application .pt-sm-3{padding-top:12px!important}.v-application .pt-sm-4{padding-top:16px!important}.v-application .pt-sm-5{padding-top:20px!important}.v-application .pt-sm-6{padding-top:24px!important}.v-application .pt-sm-7{padding-top:28px!important}.v-application .pt-sm-8{padding-top:32px!important}.v-application .pt-sm-9{padding-top:36px!important}.v-application .pt-sm-10{padding-top:40px!important}.v-application .pt-sm-11{padding-top:44px!important}.v-application .pt-sm-12{padding-top:48px!important}.v-application .pt-sm-13{padding-top:52px!important}.v-application .pt-sm-14{padding-top:56px!important}.v-application .pt-sm-15{padding-top:60px!important}.v-application .pt-sm-16{padding-top:64px!important}.v-application .pr-sm-0{padding-right:0!important}.v-application .pr-sm-1{padding-right:4px!important}.v-application .pr-sm-2{padding-right:8px!important}.v-application .pr-sm-3{padding-right:12px!important}.v-application .pr-sm-4{padding-right:16px!important}.v-application .pr-sm-5{padding-right:20px!important}.v-application .pr-sm-6{padding-right:24px!important}.v-application .pr-sm-7{padding-right:28px!important}.v-application .pr-sm-8{padding-right:32px!important}.v-application .pr-sm-9{padding-right:36px!important}.v-application .pr-sm-10{padding-right:40px!important}.v-application .pr-sm-11{padding-right:44px!important}.v-application .pr-sm-12{padding-right:48px!important}.v-application .pr-sm-13{padding-right:52px!important}.v-application .pr-sm-14{padding-right:56px!important}.v-application .pr-sm-15{padding-right:60px!important}.v-application .pr-sm-16{padding-right:64px!important}.v-application .pb-sm-0{padding-bottom:0!important}.v-application .pb-sm-1{padding-bottom:4px!important}.v-application .pb-sm-2{padding-bottom:8px!important}.v-application .pb-sm-3{padding-bottom:12px!important}.v-application .pb-sm-4{padding-bottom:16px!important}.v-application .pb-sm-5{padding-bottom:20px!important}.v-application .pb-sm-6{padding-bottom:24px!important}.v-application .pb-sm-7{padding-bottom:28px!important}.v-application .pb-sm-8{padding-bottom:32px!important}.v-application .pb-sm-9{padding-bottom:36px!important}.v-application .pb-sm-10{padding-bottom:40px!important}.v-application .pb-sm-11{padding-bottom:44px!important}.v-application .pb-sm-12{padding-bottom:48px!important}.v-application .pb-sm-13{padding-bottom:52px!important}.v-application .pb-sm-14{padding-bottom:56px!important}.v-application .pb-sm-15{padding-bottom:60px!important}.v-application .pb-sm-16{padding-bottom:64px!important}.v-application .pl-sm-0{padding-left:0!important}.v-application .pl-sm-1{padding-left:4px!important}.v-application .pl-sm-2{padding-left:8px!important}.v-application .pl-sm-3{padding-left:12px!important}.v-application .pl-sm-4{padding-left:16px!important}.v-application .pl-sm-5{padding-left:20px!important}.v-application .pl-sm-6{padding-left:24px!important}.v-application .pl-sm-7{padding-left:28px!important}.v-application .pl-sm-8{padding-left:32px!important}.v-application .pl-sm-9{padding-left:36px!important}.v-application .pl-sm-10{padding-left:40px!important}.v-application .pl-sm-11{padding-left:44px!important}.v-application .pl-sm-12{padding-left:48px!important}.v-application .pl-sm-13{padding-left:52px!important}.v-application .pl-sm-14{padding-left:56px!important}.v-application .pl-sm-15{padding-left:60px!important}.v-application .pl-sm-16{padding-left:64px!important}.v-application--is-ltr .ps-sm-0{padding-left:0!important}.v-application--is-rtl .ps-sm-0{padding-right:0!important}.v-application--is-ltr .ps-sm-1{padding-left:4px!important}.v-application--is-rtl .ps-sm-1{padding-right:4px!important}.v-application--is-ltr .ps-sm-2{padding-left:8px!important}.v-application--is-rtl .ps-sm-2{padding-right:8px!important}.v-application--is-ltr .ps-sm-3{padding-left:12px!important}.v-application--is-rtl .ps-sm-3{padding-right:12px!important}.v-application--is-ltr .ps-sm-4{padding-left:16px!important}.v-application--is-rtl .ps-sm-4{padding-right:16px!important}.v-application--is-ltr .ps-sm-5{padding-left:20px!important}.v-application--is-rtl .ps-sm-5{padding-right:20px!important}.v-application--is-ltr .ps-sm-6{padding-left:24px!important}.v-application--is-rtl .ps-sm-6{padding-right:24px!important}.v-application--is-ltr .ps-sm-7{padding-left:28px!important}.v-application--is-rtl .ps-sm-7{padding-right:28px!important}.v-application--is-ltr .ps-sm-8{padding-left:32px!important}.v-application--is-rtl .ps-sm-8{padding-right:32px!important}.v-application--is-ltr .ps-sm-9{padding-left:36px!important}.v-application--is-rtl .ps-sm-9{padding-right:36px!important}.v-application--is-ltr .ps-sm-10{padding-left:40px!important}.v-application--is-rtl .ps-sm-10{padding-right:40px!important}.v-application--is-ltr .ps-sm-11{padding-left:44px!important}.v-application--is-rtl .ps-sm-11{padding-right:44px!important}.v-application--is-ltr .ps-sm-12{padding-left:48px!important}.v-application--is-rtl .ps-sm-12{padding-right:48px!important}.v-application--is-ltr .ps-sm-13{padding-left:52px!important}.v-application--is-rtl .ps-sm-13{padding-right:52px!important}.v-application--is-ltr .ps-sm-14{padding-left:56px!important}.v-application--is-rtl .ps-sm-14{padding-right:56px!important}.v-application--is-ltr .ps-sm-15{padding-left:60px!important}.v-application--is-rtl .ps-sm-15{padding-right:60px!important}.v-application--is-ltr .ps-sm-16{padding-left:64px!important}.v-application--is-rtl .ps-sm-16{padding-right:64px!important}.v-application--is-ltr .pe-sm-0{padding-right:0!important}.v-application--is-rtl .pe-sm-0{padding-left:0!important}.v-application--is-ltr .pe-sm-1{padding-right:4px!important}.v-application--is-rtl .pe-sm-1{padding-left:4px!important}.v-application--is-ltr .pe-sm-2{padding-right:8px!important}.v-application--is-rtl .pe-sm-2{padding-left:8px!important}.v-application--is-ltr .pe-sm-3{padding-right:12px!important}.v-application--is-rtl .pe-sm-3{padding-left:12px!important}.v-application--is-ltr .pe-sm-4{padding-right:16px!important}.v-application--is-rtl .pe-sm-4{padding-left:16px!important}.v-application--is-ltr .pe-sm-5{padding-right:20px!important}.v-application--is-rtl .pe-sm-5{padding-left:20px!important}.v-application--is-ltr .pe-sm-6{padding-right:24px!important}.v-application--is-rtl .pe-sm-6{padding-left:24px!important}.v-application--is-ltr .pe-sm-7{padding-right:28px!important}.v-application--is-rtl .pe-sm-7{padding-left:28px!important}.v-application--is-ltr .pe-sm-8{padding-right:32px!important}.v-application--is-rtl .pe-sm-8{padding-left:32px!important}.v-application--is-ltr .pe-sm-9{padding-right:36px!important}.v-application--is-rtl .pe-sm-9{padding-left:36px!important}.v-application--is-ltr .pe-sm-10{padding-right:40px!important}.v-application--is-rtl .pe-sm-10{padding-left:40px!important}.v-application--is-ltr .pe-sm-11{padding-right:44px!important}.v-application--is-rtl .pe-sm-11{padding-left:44px!important}.v-application--is-ltr .pe-sm-12{padding-right:48px!important}.v-application--is-rtl .pe-sm-12{padding-left:48px!important}.v-application--is-ltr .pe-sm-13{padding-right:52px!important}.v-application--is-rtl .pe-sm-13{padding-left:52px!important}.v-application--is-ltr .pe-sm-14{padding-right:56px!important}.v-application--is-rtl .pe-sm-14{padding-left:56px!important}.v-application--is-ltr .pe-sm-15{padding-right:60px!important}.v-application--is-rtl .pe-sm-15{padding-left:60px!important}.v-application--is-ltr .pe-sm-16{padding-right:64px!important}.v-application--is-rtl .pe-sm-16{padding-left:64px!important}.v-application .text-sm-left{text-align:left!important}.v-application .text-sm-right{text-align:right!important}.v-application .text-sm-center{text-align:center!important}.v-application .text-sm-justify{text-align:justify!important}.v-application .text-sm-start{text-align:start!important}.v-application .text-sm-end{text-align:end!important}.v-application .text-sm-h1{font-size:6rem!important;line-height:6rem;letter-spacing:-.015625em!important}.v-application .text-sm-h1,.v-application .text-sm-h2{font-weight:300;font-family:Roboto,sans-serif!important}.v-application .text-sm-h2{font-size:3.75rem!important;line-height:3.75rem;letter-spacing:-.0083333333em!important}.v-application .text-sm-h3{font-size:3rem!important;line-height:3.125rem;letter-spacing:normal!important}.v-application .text-sm-h3,.v-application .text-sm-h4{font-weight:400;font-family:Roboto,sans-serif!important}.v-application .text-sm-h4{font-size:2.125rem!important;line-height:2.5rem;letter-spacing:.0073529412em!important}.v-application .text-sm-h5{font-size:1.5rem!important;font-weight:400;letter-spacing:normal!important}.v-application .text-sm-h5,.v-application .text-sm-h6{line-height:2rem;font-family:Roboto,sans-serif!important}.v-application .text-sm-h6{font-size:1.25rem!important;font-weight:500;letter-spacing:.0125em!important}.v-application .text-sm-subtitle-1{font-size:1rem!important;font-weight:400;line-height:1.75rem;letter-spacing:.009375em!important;font-family:Roboto,sans-serif!important}.v-application .text-sm-subtitle-2{font-size:.875rem!important;font-weight:500;line-height:1.375rem;letter-spacing:.0071428571em!important;font-family:Roboto,sans-serif!important}.v-application .text-sm-body-1{font-size:1rem!important;font-weight:400;line-height:1.5rem;letter-spacing:.03125em!important;font-family:Roboto,sans-serif!important}.v-application .text-sm-body-2{font-weight:400;line-height:1.25rem;letter-spacing:.0178571429em!important}.v-application .text-sm-body-2,.v-application .text-sm-button{font-size:.875rem!important;font-family:Roboto,sans-serif!important}.v-application .text-sm-button{font-weight:500;line-height:2.25rem;letter-spacing:.0892857143em!important;text-transform:uppercase!important}.v-application .text-sm-caption{font-weight:400;line-height:1.25rem;letter-spacing:.0333333333em!important}.v-application .text-sm-caption,.v-application .text-sm-overline{font-size:.75rem!important;font-family:Roboto,sans-serif!important}.v-application .text-sm-overline{font-weight:500;line-height:2rem;letter-spacing:.1666666667em!important;text-transform:uppercase!important}}@media(min-width:960px){.v-application .d-md-none{display:none!important}.v-application .d-md-inline{display:inline!important}.v-application .d-md-inline-block{display:inline-block!important}.v-application .d-md-block{display:block!important}.v-application .d-md-table{display:table!important}.v-application .d-md-table-row{display:table-row!important}.v-application .d-md-table-cell{display:table-cell!important}.v-application .d-md-flex{display:flex!important}.v-application .d-md-inline-flex{display:inline-flex!important}.v-application .float-md-none{float:none!important}.v-application .float-md-left{float:left!important}.v-application .float-md-right{float:right!important}.v-application--is-rtl .float-md-end{float:left!important}.v-application--is-ltr .float-md-end,.v-application--is-rtl .float-md-start{float:right!important}.v-application--is-ltr .float-md-start{float:left!important}.v-application .flex-md-fill{flex:1 1 auto!important}.v-application .flex-md-row{flex-direction:row!important}.v-application .flex-md-column{flex-direction:column!important}.v-application .flex-md-row-reverse{flex-direction:row-reverse!important}.v-application .flex-md-column-reverse{flex-direction:column-reverse!important}.v-application .flex-md-grow-0{flex-grow:0!important}.v-application .flex-md-grow-1{flex-grow:1!important}.v-application .flex-md-shrink-0{flex-shrink:0!important}.v-application .flex-md-shrink-1{flex-shrink:1!important}.v-application .flex-md-wrap{flex-wrap:wrap!important}.v-application .flex-md-nowrap{flex-wrap:nowrap!important}.v-application .flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.v-application .justify-md-start{justify-content:flex-start!important}.v-application .justify-md-end{justify-content:flex-end!important}.v-application .justify-md-center{justify-content:center!important}.v-application .justify-md-space-between{justify-content:space-between!important}.v-application .justify-md-space-around{justify-content:space-around!important}.v-application .align-md-start{align-items:flex-start!important}.v-application .align-md-end{align-items:flex-end!important}.v-application .align-md-center{align-items:center!important}.v-application .align-md-baseline{align-items:baseline!important}.v-application .align-md-stretch{align-items:stretch!important}.v-application .align-content-md-start{align-content:flex-start!important}.v-application .align-content-md-end{align-content:flex-end!important}.v-application .align-content-md-center{align-content:center!important}.v-application .align-content-md-space-between{align-content:space-between!important}.v-application .align-content-md-space-around{align-content:space-around!important}.v-application .align-content-md-stretch{align-content:stretch!important}.v-application .align-self-md-auto{align-self:auto!important}.v-application .align-self-md-start{align-self:flex-start!important}.v-application .align-self-md-end{align-self:flex-end!important}.v-application .align-self-md-center{align-self:center!important}.v-application .align-self-md-baseline{align-self:baseline!important}.v-application .align-self-md-stretch{align-self:stretch!important}.v-application .order-md-first{order:-1!important}.v-application .order-md-0{order:0!important}.v-application .order-md-1{order:1!important}.v-application .order-md-2{order:2!important}.v-application .order-md-3{order:3!important}.v-application .order-md-4{order:4!important}.v-application .order-md-5{order:5!important}.v-application .order-md-6{order:6!important}.v-application .order-md-7{order:7!important}.v-application .order-md-8{order:8!important}.v-application .order-md-9{order:9!important}.v-application .order-md-10{order:10!important}.v-application .order-md-11{order:11!important}.v-application .order-md-12{order:12!important}.v-application .order-md-last{order:13!important}.v-application .ma-md-0{margin:0!important}.v-application .ma-md-1{margin:4px!important}.v-application .ma-md-2{margin:8px!important}.v-application .ma-md-3{margin:12px!important}.v-application .ma-md-4{margin:16px!important}.v-application .ma-md-5{margin:20px!important}.v-application .ma-md-6{margin:24px!important}.v-application .ma-md-7{margin:28px!important}.v-application .ma-md-8{margin:32px!important}.v-application .ma-md-9{margin:36px!important}.v-application .ma-md-10{margin:40px!important}.v-application .ma-md-11{margin:44px!important}.v-application .ma-md-12{margin:48px!important}.v-application .ma-md-13{margin:52px!important}.v-application .ma-md-14{margin:56px!important}.v-application .ma-md-15{margin:60px!important}.v-application .ma-md-16{margin:64px!important}.v-application .ma-md-auto{margin:auto!important}.v-application .mx-md-0{margin-right:0!important;margin-left:0!important}.v-application .mx-md-1{margin-right:4px!important;margin-left:4px!important}.v-application .mx-md-2{margin-right:8px!important;margin-left:8px!important}.v-application .mx-md-3{margin-right:12px!important;margin-left:12px!important}.v-application .mx-md-4{margin-right:16px!important;margin-left:16px!important}.v-application .mx-md-5{margin-right:20px!important;margin-left:20px!important}.v-application .mx-md-6{margin-right:24px!important;margin-left:24px!important}.v-application .mx-md-7{margin-right:28px!important;margin-left:28px!important}.v-application .mx-md-8{margin-right:32px!important;margin-left:32px!important}.v-application .mx-md-9{margin-right:36px!important;margin-left:36px!important}.v-application .mx-md-10{margin-right:40px!important;margin-left:40px!important}.v-application .mx-md-11{margin-right:44px!important;margin-left:44px!important}.v-application .mx-md-12{margin-right:48px!important;margin-left:48px!important}.v-application .mx-md-13{margin-right:52px!important;margin-left:52px!important}.v-application .mx-md-14{margin-right:56px!important;margin-left:56px!important}.v-application .mx-md-15{margin-right:60px!important;margin-left:60px!important}.v-application .mx-md-16{margin-right:64px!important;margin-left:64px!important}.v-application .mx-md-auto{margin-right:auto!important;margin-left:auto!important}.v-application .my-md-0{margin-top:0!important;margin-bottom:0!important}.v-application .my-md-1{margin-top:4px!important;margin-bottom:4px!important}.v-application .my-md-2{margin-top:8px!important;margin-bottom:8px!important}.v-application .my-md-3{margin-top:12px!important;margin-bottom:12px!important}.v-application .my-md-4{margin-top:16px!important;margin-bottom:16px!important}.v-application .my-md-5{margin-top:20px!important;margin-bottom:20px!important}.v-application .my-md-6{margin-top:24px!important;margin-bottom:24px!important}.v-application .my-md-7{margin-top:28px!important;margin-bottom:28px!important}.v-application .my-md-8{margin-top:32px!important;margin-bottom:32px!important}.v-application .my-md-9{margin-top:36px!important;margin-bottom:36px!important}.v-application .my-md-10{margin-top:40px!important;margin-bottom:40px!important}.v-application .my-md-11{margin-top:44px!important;margin-bottom:44px!important}.v-application .my-md-12{margin-top:48px!important;margin-bottom:48px!important}.v-application .my-md-13{margin-top:52px!important;margin-bottom:52px!important}.v-application .my-md-14{margin-top:56px!important;margin-bottom:56px!important}.v-application .my-md-15{margin-top:60px!important;margin-bottom:60px!important}.v-application .my-md-16{margin-top:64px!important;margin-bottom:64px!important}.v-application .my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.v-application .mt-md-0{margin-top:0!important}.v-application .mt-md-1{margin-top:4px!important}.v-application .mt-md-2{margin-top:8px!important}.v-application .mt-md-3{margin-top:12px!important}.v-application .mt-md-4{margin-top:16px!important}.v-application .mt-md-5{margin-top:20px!important}.v-application .mt-md-6{margin-top:24px!important}.v-application .mt-md-7{margin-top:28px!important}.v-application .mt-md-8{margin-top:32px!important}.v-application .mt-md-9{margin-top:36px!important}.v-application .mt-md-10{margin-top:40px!important}.v-application .mt-md-11{margin-top:44px!important}.v-application .mt-md-12{margin-top:48px!important}.v-application .mt-md-13{margin-top:52px!important}.v-application .mt-md-14{margin-top:56px!important}.v-application .mt-md-15{margin-top:60px!important}.v-application .mt-md-16{margin-top:64px!important}.v-application .mt-md-auto{margin-top:auto!important}.v-application .mr-md-0{margin-right:0!important}.v-application .mr-md-1{margin-right:4px!important}.v-application .mr-md-2{margin-right:8px!important}.v-application .mr-md-3{margin-right:12px!important}.v-application .mr-md-4{margin-right:16px!important}.v-application .mr-md-5{margin-right:20px!important}.v-application .mr-md-6{margin-right:24px!important}.v-application .mr-md-7{margin-right:28px!important}.v-application .mr-md-8{margin-right:32px!important}.v-application .mr-md-9{margin-right:36px!important}.v-application .mr-md-10{margin-right:40px!important}.v-application .mr-md-11{margin-right:44px!important}.v-application .mr-md-12{margin-right:48px!important}.v-application .mr-md-13{margin-right:52px!important}.v-application .mr-md-14{margin-right:56px!important}.v-application .mr-md-15{margin-right:60px!important}.v-application .mr-md-16{margin-right:64px!important}.v-application .mr-md-auto{margin-right:auto!important}.v-application .mb-md-0{margin-bottom:0!important}.v-application .mb-md-1{margin-bottom:4px!important}.v-application .mb-md-2{margin-bottom:8px!important}.v-application .mb-md-3{margin-bottom:12px!important}.v-application .mb-md-4{margin-bottom:16px!important}.v-application .mb-md-5{margin-bottom:20px!important}.v-application .mb-md-6{margin-bottom:24px!important}.v-application .mb-md-7{margin-bottom:28px!important}.v-application .mb-md-8{margin-bottom:32px!important}.v-application .mb-md-9{margin-bottom:36px!important}.v-application .mb-md-10{margin-bottom:40px!important}.v-application .mb-md-11{margin-bottom:44px!important}.v-application .mb-md-12{margin-bottom:48px!important}.v-application .mb-md-13{margin-bottom:52px!important}.v-application .mb-md-14{margin-bottom:56px!important}.v-application .mb-md-15{margin-bottom:60px!important}.v-application .mb-md-16{margin-bottom:64px!important}.v-application .mb-md-auto{margin-bottom:auto!important}.v-application .ml-md-0{margin-left:0!important}.v-application .ml-md-1{margin-left:4px!important}.v-application .ml-md-2{margin-left:8px!important}.v-application .ml-md-3{margin-left:12px!important}.v-application .ml-md-4{margin-left:16px!important}.v-application .ml-md-5{margin-left:20px!important}.v-application .ml-md-6{margin-left:24px!important}.v-application .ml-md-7{margin-left:28px!important}.v-application .ml-md-8{margin-left:32px!important}.v-application .ml-md-9{margin-left:36px!important}.v-application .ml-md-10{margin-left:40px!important}.v-application .ml-md-11{margin-left:44px!important}.v-application .ml-md-12{margin-left:48px!important}.v-application .ml-md-13{margin-left:52px!important}.v-application .ml-md-14{margin-left:56px!important}.v-application .ml-md-15{margin-left:60px!important}.v-application .ml-md-16{margin-left:64px!important}.v-application .ml-md-auto{margin-left:auto!important}.v-application--is-ltr .ms-md-0{margin-left:0!important}.v-application--is-rtl .ms-md-0{margin-right:0!important}.v-application--is-ltr .ms-md-1{margin-left:4px!important}.v-application--is-rtl .ms-md-1{margin-right:4px!important}.v-application--is-ltr .ms-md-2{margin-left:8px!important}.v-application--is-rtl .ms-md-2{margin-right:8px!important}.v-application--is-ltr .ms-md-3{margin-left:12px!important}.v-application--is-rtl .ms-md-3{margin-right:12px!important}.v-application--is-ltr .ms-md-4{margin-left:16px!important}.v-application--is-rtl .ms-md-4{margin-right:16px!important}.v-application--is-ltr .ms-md-5{margin-left:20px!important}.v-application--is-rtl .ms-md-5{margin-right:20px!important}.v-application--is-ltr .ms-md-6{margin-left:24px!important}.v-application--is-rtl .ms-md-6{margin-right:24px!important}.v-application--is-ltr .ms-md-7{margin-left:28px!important}.v-application--is-rtl .ms-md-7{margin-right:28px!important}.v-application--is-ltr .ms-md-8{margin-left:32px!important}.v-application--is-rtl .ms-md-8{margin-right:32px!important}.v-application--is-ltr .ms-md-9{margin-left:36px!important}.v-application--is-rtl .ms-md-9{margin-right:36px!important}.v-application--is-ltr .ms-md-10{margin-left:40px!important}.v-application--is-rtl .ms-md-10{margin-right:40px!important}.v-application--is-ltr .ms-md-11{margin-left:44px!important}.v-application--is-rtl .ms-md-11{margin-right:44px!important}.v-application--is-ltr .ms-md-12{margin-left:48px!important}.v-application--is-rtl .ms-md-12{margin-right:48px!important}.v-application--is-ltr .ms-md-13{margin-left:52px!important}.v-application--is-rtl .ms-md-13{margin-right:52px!important}.v-application--is-ltr .ms-md-14{margin-left:56px!important}.v-application--is-rtl .ms-md-14{margin-right:56px!important}.v-application--is-ltr .ms-md-15{margin-left:60px!important}.v-application--is-rtl .ms-md-15{margin-right:60px!important}.v-application--is-ltr .ms-md-16{margin-left:64px!important}.v-application--is-rtl .ms-md-16{margin-right:64px!important}.v-application--is-ltr .ms-md-auto{margin-left:auto!important}.v-application--is-rtl .ms-md-auto{margin-right:auto!important}.v-application--is-ltr .me-md-0{margin-right:0!important}.v-application--is-rtl .me-md-0{margin-left:0!important}.v-application--is-ltr .me-md-1{margin-right:4px!important}.v-application--is-rtl .me-md-1{margin-left:4px!important}.v-application--is-ltr .me-md-2{margin-right:8px!important}.v-application--is-rtl .me-md-2{margin-left:8px!important}.v-application--is-ltr .me-md-3{margin-right:12px!important}.v-application--is-rtl .me-md-3{margin-left:12px!important}.v-application--is-ltr .me-md-4{margin-right:16px!important}.v-application--is-rtl .me-md-4{margin-left:16px!important}.v-application--is-ltr .me-md-5{margin-right:20px!important}.v-application--is-rtl .me-md-5{margin-left:20px!important}.v-application--is-ltr .me-md-6{margin-right:24px!important}.v-application--is-rtl .me-md-6{margin-left:24px!important}.v-application--is-ltr .me-md-7{margin-right:28px!important}.v-application--is-rtl .me-md-7{margin-left:28px!important}.v-application--is-ltr .me-md-8{margin-right:32px!important}.v-application--is-rtl .me-md-8{margin-left:32px!important}.v-application--is-ltr .me-md-9{margin-right:36px!important}.v-application--is-rtl .me-md-9{margin-left:36px!important}.v-application--is-ltr .me-md-10{margin-right:40px!important}.v-application--is-rtl .me-md-10{margin-left:40px!important}.v-application--is-ltr .me-md-11{margin-right:44px!important}.v-application--is-rtl .me-md-11{margin-left:44px!important}.v-application--is-ltr .me-md-12{margin-right:48px!important}.v-application--is-rtl .me-md-12{margin-left:48px!important}.v-application--is-ltr .me-md-13{margin-right:52px!important}.v-application--is-rtl .me-md-13{margin-left:52px!important}.v-application--is-ltr .me-md-14{margin-right:56px!important}.v-application--is-rtl .me-md-14{margin-left:56px!important}.v-application--is-ltr .me-md-15{margin-right:60px!important}.v-application--is-rtl .me-md-15{margin-left:60px!important}.v-application--is-ltr .me-md-16{margin-right:64px!important}.v-application--is-rtl .me-md-16{margin-left:64px!important}.v-application--is-ltr .me-md-auto{margin-right:auto!important}.v-application--is-rtl .me-md-auto{margin-left:auto!important}.v-application .ma-md-n1{margin:-4px!important}.v-application .ma-md-n2{margin:-8px!important}.v-application .ma-md-n3{margin:-12px!important}.v-application .ma-md-n4{margin:-16px!important}.v-application .ma-md-n5{margin:-20px!important}.v-application .ma-md-n6{margin:-24px!important}.v-application .ma-md-n7{margin:-28px!important}.v-application .ma-md-n8{margin:-32px!important}.v-application .ma-md-n9{margin:-36px!important}.v-application .ma-md-n10{margin:-40px!important}.v-application .ma-md-n11{margin:-44px!important}.v-application .ma-md-n12{margin:-48px!important}.v-application .ma-md-n13{margin:-52px!important}.v-application .ma-md-n14{margin:-56px!important}.v-application .ma-md-n15{margin:-60px!important}.v-application .ma-md-n16{margin:-64px!important}.v-application .mx-md-n1{margin-right:-4px!important;margin-left:-4px!important}.v-application .mx-md-n2{margin-right:-8px!important;margin-left:-8px!important}.v-application .mx-md-n3{margin-right:-12px!important;margin-left:-12px!important}.v-application .mx-md-n4{margin-right:-16px!important;margin-left:-16px!important}.v-application .mx-md-n5{margin-right:-20px!important;margin-left:-20px!important}.v-application .mx-md-n6{margin-right:-24px!important;margin-left:-24px!important}.v-application .mx-md-n7{margin-right:-28px!important;margin-left:-28px!important}.v-application .mx-md-n8{margin-right:-32px!important;margin-left:-32px!important}.v-application .mx-md-n9{margin-right:-36px!important;margin-left:-36px!important}.v-application .mx-md-n10{margin-right:-40px!important;margin-left:-40px!important}.v-application .mx-md-n11{margin-right:-44px!important;margin-left:-44px!important}.v-application .mx-md-n12{margin-right:-48px!important;margin-left:-48px!important}.v-application .mx-md-n13{margin-right:-52px!important;margin-left:-52px!important}.v-application .mx-md-n14{margin-right:-56px!important;margin-left:-56px!important}.v-application .mx-md-n15{margin-right:-60px!important;margin-left:-60px!important}.v-application .mx-md-n16{margin-right:-64px!important;margin-left:-64px!important}.v-application .my-md-n1{margin-top:-4px!important;margin-bottom:-4px!important}.v-application .my-md-n2{margin-top:-8px!important;margin-bottom:-8px!important}.v-application .my-md-n3{margin-top:-12px!important;margin-bottom:-12px!important}.v-application .my-md-n4{margin-top:-16px!important;margin-bottom:-16px!important}.v-application .my-md-n5{margin-top:-20px!important;margin-bottom:-20px!important}.v-application .my-md-n6{margin-top:-24px!important;margin-bottom:-24px!important}.v-application .my-md-n7{margin-top:-28px!important;margin-bottom:-28px!important}.v-application .my-md-n8{margin-top:-32px!important;margin-bottom:-32px!important}.v-application .my-md-n9{margin-top:-36px!important;margin-bottom:-36px!important}.v-application .my-md-n10{margin-top:-40px!important;margin-bottom:-40px!important}.v-application .my-md-n11{margin-top:-44px!important;margin-bottom:-44px!important}.v-application .my-md-n12{margin-top:-48px!important;margin-bottom:-48px!important}.v-application .my-md-n13{margin-top:-52px!important;margin-bottom:-52px!important}.v-application .my-md-n14{margin-top:-56px!important;margin-bottom:-56px!important}.v-application .my-md-n15{margin-top:-60px!important;margin-bottom:-60px!important}.v-application .my-md-n16{margin-top:-64px!important;margin-bottom:-64px!important}.v-application .mt-md-n1{margin-top:-4px!important}.v-application .mt-md-n2{margin-top:-8px!important}.v-application .mt-md-n3{margin-top:-12px!important}.v-application .mt-md-n4{margin-top:-16px!important}.v-application .mt-md-n5{margin-top:-20px!important}.v-application .mt-md-n6{margin-top:-24px!important}.v-application .mt-md-n7{margin-top:-28px!important}.v-application .mt-md-n8{margin-top:-32px!important}.v-application .mt-md-n9{margin-top:-36px!important}.v-application .mt-md-n10{margin-top:-40px!important}.v-application .mt-md-n11{margin-top:-44px!important}.v-application .mt-md-n12{margin-top:-48px!important}.v-application .mt-md-n13{margin-top:-52px!important}.v-application .mt-md-n14{margin-top:-56px!important}.v-application .mt-md-n15{margin-top:-60px!important}.v-application .mt-md-n16{margin-top:-64px!important}.v-application .mr-md-n1{margin-right:-4px!important}.v-application .mr-md-n2{margin-right:-8px!important}.v-application .mr-md-n3{margin-right:-12px!important}.v-application .mr-md-n4{margin-right:-16px!important}.v-application .mr-md-n5{margin-right:-20px!important}.v-application .mr-md-n6{margin-right:-24px!important}.v-application .mr-md-n7{margin-right:-28px!important}.v-application .mr-md-n8{margin-right:-32px!important}.v-application .mr-md-n9{margin-right:-36px!important}.v-application .mr-md-n10{margin-right:-40px!important}.v-application .mr-md-n11{margin-right:-44px!important}.v-application .mr-md-n12{margin-right:-48px!important}.v-application .mr-md-n13{margin-right:-52px!important}.v-application .mr-md-n14{margin-right:-56px!important}.v-application .mr-md-n15{margin-right:-60px!important}.v-application .mr-md-n16{margin-right:-64px!important}.v-application .mb-md-n1{margin-bottom:-4px!important}.v-application .mb-md-n2{margin-bottom:-8px!important}.v-application .mb-md-n3{margin-bottom:-12px!important}.v-application .mb-md-n4{margin-bottom:-16px!important}.v-application .mb-md-n5{margin-bottom:-20px!important}.v-application .mb-md-n6{margin-bottom:-24px!important}.v-application .mb-md-n7{margin-bottom:-28px!important}.v-application .mb-md-n8{margin-bottom:-32px!important}.v-application .mb-md-n9{margin-bottom:-36px!important}.v-application .mb-md-n10{margin-bottom:-40px!important}.v-application .mb-md-n11{margin-bottom:-44px!important}.v-application .mb-md-n12{margin-bottom:-48px!important}.v-application .mb-md-n13{margin-bottom:-52px!important}.v-application .mb-md-n14{margin-bottom:-56px!important}.v-application .mb-md-n15{margin-bottom:-60px!important}.v-application .mb-md-n16{margin-bottom:-64px!important}.v-application .ml-md-n1{margin-left:-4px!important}.v-application .ml-md-n2{margin-left:-8px!important}.v-application .ml-md-n3{margin-left:-12px!important}.v-application .ml-md-n4{margin-left:-16px!important}.v-application .ml-md-n5{margin-left:-20px!important}.v-application .ml-md-n6{margin-left:-24px!important}.v-application .ml-md-n7{margin-left:-28px!important}.v-application .ml-md-n8{margin-left:-32px!important}.v-application .ml-md-n9{margin-left:-36px!important}.v-application .ml-md-n10{margin-left:-40px!important}.v-application .ml-md-n11{margin-left:-44px!important}.v-application .ml-md-n12{margin-left:-48px!important}.v-application .ml-md-n13{margin-left:-52px!important}.v-application .ml-md-n14{margin-left:-56px!important}.v-application .ml-md-n15{margin-left:-60px!important}.v-application .ml-md-n16{margin-left:-64px!important}.v-application--is-ltr .ms-md-n1{margin-left:-4px!important}.v-application--is-rtl .ms-md-n1{margin-right:-4px!important}.v-application--is-ltr .ms-md-n2{margin-left:-8px!important}.v-application--is-rtl .ms-md-n2{margin-right:-8px!important}.v-application--is-ltr .ms-md-n3{margin-left:-12px!important}.v-application--is-rtl .ms-md-n3{margin-right:-12px!important}.v-application--is-ltr .ms-md-n4{margin-left:-16px!important}.v-application--is-rtl .ms-md-n4{margin-right:-16px!important}.v-application--is-ltr .ms-md-n5{margin-left:-20px!important}.v-application--is-rtl .ms-md-n5{margin-right:-20px!important}.v-application--is-ltr .ms-md-n6{margin-left:-24px!important}.v-application--is-rtl .ms-md-n6{margin-right:-24px!important}.v-application--is-ltr .ms-md-n7{margin-left:-28px!important}.v-application--is-rtl .ms-md-n7{margin-right:-28px!important}.v-application--is-ltr .ms-md-n8{margin-left:-32px!important}.v-application--is-rtl .ms-md-n8{margin-right:-32px!important}.v-application--is-ltr .ms-md-n9{margin-left:-36px!important}.v-application--is-rtl .ms-md-n9{margin-right:-36px!important}.v-application--is-ltr .ms-md-n10{margin-left:-40px!important}.v-application--is-rtl .ms-md-n10{margin-right:-40px!important}.v-application--is-ltr .ms-md-n11{margin-left:-44px!important}.v-application--is-rtl .ms-md-n11{margin-right:-44px!important}.v-application--is-ltr .ms-md-n12{margin-left:-48px!important}.v-application--is-rtl .ms-md-n12{margin-right:-48px!important}.v-application--is-ltr .ms-md-n13{margin-left:-52px!important}.v-application--is-rtl .ms-md-n13{margin-right:-52px!important}.v-application--is-ltr .ms-md-n14{margin-left:-56px!important}.v-application--is-rtl .ms-md-n14{margin-right:-56px!important}.v-application--is-ltr .ms-md-n15{margin-left:-60px!important}.v-application--is-rtl .ms-md-n15{margin-right:-60px!important}.v-application--is-ltr .ms-md-n16{margin-left:-64px!important}.v-application--is-rtl .ms-md-n16{margin-right:-64px!important}.v-application--is-ltr .me-md-n1{margin-right:-4px!important}.v-application--is-rtl .me-md-n1{margin-left:-4px!important}.v-application--is-ltr .me-md-n2{margin-right:-8px!important}.v-application--is-rtl .me-md-n2{margin-left:-8px!important}.v-application--is-ltr .me-md-n3{margin-right:-12px!important}.v-application--is-rtl .me-md-n3{margin-left:-12px!important}.v-application--is-ltr .me-md-n4{margin-right:-16px!important}.v-application--is-rtl .me-md-n4{margin-left:-16px!important}.v-application--is-ltr .me-md-n5{margin-right:-20px!important}.v-application--is-rtl .me-md-n5{margin-left:-20px!important}.v-application--is-ltr .me-md-n6{margin-right:-24px!important}.v-application--is-rtl .me-md-n6{margin-left:-24px!important}.v-application--is-ltr .me-md-n7{margin-right:-28px!important}.v-application--is-rtl .me-md-n7{margin-left:-28px!important}.v-application--is-ltr .me-md-n8{margin-right:-32px!important}.v-application--is-rtl .me-md-n8{margin-left:-32px!important}.v-application--is-ltr .me-md-n9{margin-right:-36px!important}.v-application--is-rtl .me-md-n9{margin-left:-36px!important}.v-application--is-ltr .me-md-n10{margin-right:-40px!important}.v-application--is-rtl .me-md-n10{margin-left:-40px!important}.v-application--is-ltr .me-md-n11{margin-right:-44px!important}.v-application--is-rtl .me-md-n11{margin-left:-44px!important}.v-application--is-ltr .me-md-n12{margin-right:-48px!important}.v-application--is-rtl .me-md-n12{margin-left:-48px!important}.v-application--is-ltr .me-md-n13{margin-right:-52px!important}.v-application--is-rtl .me-md-n13{margin-left:-52px!important}.v-application--is-ltr .me-md-n14{margin-right:-56px!important}.v-application--is-rtl .me-md-n14{margin-left:-56px!important}.v-application--is-ltr .me-md-n15{margin-right:-60px!important}.v-application--is-rtl .me-md-n15{margin-left:-60px!important}.v-application--is-ltr .me-md-n16{margin-right:-64px!important}.v-application--is-rtl .me-md-n16{margin-left:-64px!important}.v-application .pa-md-0{padding:0!important}.v-application .pa-md-1{padding:4px!important}.v-application .pa-md-2{padding:8px!important}.v-application .pa-md-3{padding:12px!important}.v-application .pa-md-4{padding:16px!important}.v-application .pa-md-5{padding:20px!important}.v-application .pa-md-6{padding:24px!important}.v-application .pa-md-7{padding:28px!important}.v-application .pa-md-8{padding:32px!important}.v-application .pa-md-9{padding:36px!important}.v-application .pa-md-10{padding:40px!important}.v-application .pa-md-11{padding:44px!important}.v-application .pa-md-12{padding:48px!important}.v-application .pa-md-13{padding:52px!important}.v-application .pa-md-14{padding:56px!important}.v-application .pa-md-15{padding:60px!important}.v-application .pa-md-16{padding:64px!important}.v-application .px-md-0{padding-right:0!important;padding-left:0!important}.v-application .px-md-1{padding-right:4px!important;padding-left:4px!important}.v-application .px-md-2{padding-right:8px!important;padding-left:8px!important}.v-application .px-md-3{padding-right:12px!important;padding-left:12px!important}.v-application .px-md-4{padding-right:16px!important;padding-left:16px!important}.v-application .px-md-5{padding-right:20px!important;padding-left:20px!important}.v-application .px-md-6{padding-right:24px!important;padding-left:24px!important}.v-application .px-md-7{padding-right:28px!important;padding-left:28px!important}.v-application .px-md-8{padding-right:32px!important;padding-left:32px!important}.v-application .px-md-9{padding-right:36px!important;padding-left:36px!important}.v-application .px-md-10{padding-right:40px!important;padding-left:40px!important}.v-application .px-md-11{padding-right:44px!important;padding-left:44px!important}.v-application .px-md-12{padding-right:48px!important;padding-left:48px!important}.v-application .px-md-13{padding-right:52px!important;padding-left:52px!important}.v-application .px-md-14{padding-right:56px!important;padding-left:56px!important}.v-application .px-md-15{padding-right:60px!important;padding-left:60px!important}.v-application .px-md-16{padding-right:64px!important;padding-left:64px!important}.v-application .py-md-0{padding-top:0!important;padding-bottom:0!important}.v-application .py-md-1{padding-top:4px!important;padding-bottom:4px!important}.v-application .py-md-2{padding-top:8px!important;padding-bottom:8px!important}.v-application .py-md-3{padding-top:12px!important;padding-bottom:12px!important}.v-application .py-md-4{padding-top:16px!important;padding-bottom:16px!important}.v-application .py-md-5{padding-top:20px!important;padding-bottom:20px!important}.v-application .py-md-6{padding-top:24px!important;padding-bottom:24px!important}.v-application .py-md-7{padding-top:28px!important;padding-bottom:28px!important}.v-application .py-md-8{padding-top:32px!important;padding-bottom:32px!important}.v-application .py-md-9{padding-top:36px!important;padding-bottom:36px!important}.v-application .py-md-10{padding-top:40px!important;padding-bottom:40px!important}.v-application .py-md-11{padding-top:44px!important;padding-bottom:44px!important}.v-application .py-md-12{padding-top:48px!important;padding-bottom:48px!important}.v-application .py-md-13{padding-top:52px!important;padding-bottom:52px!important}.v-application .py-md-14{padding-top:56px!important;padding-bottom:56px!important}.v-application .py-md-15{padding-top:60px!important;padding-bottom:60px!important}.v-application .py-md-16{padding-top:64px!important;padding-bottom:64px!important}.v-application .pt-md-0{padding-top:0!important}.v-application .pt-md-1{padding-top:4px!important}.v-application .pt-md-2{padding-top:8px!important}.v-application .pt-md-3{padding-top:12px!important}.v-application .pt-md-4{padding-top:16px!important}.v-application .pt-md-5{padding-top:20px!important}.v-application .pt-md-6{padding-top:24px!important}.v-application .pt-md-7{padding-top:28px!important}.v-application .pt-md-8{padding-top:32px!important}.v-application .pt-md-9{padding-top:36px!important}.v-application .pt-md-10{padding-top:40px!important}.v-application .pt-md-11{padding-top:44px!important}.v-application .pt-md-12{padding-top:48px!important}.v-application .pt-md-13{padding-top:52px!important}.v-application .pt-md-14{padding-top:56px!important}.v-application .pt-md-15{padding-top:60px!important}.v-application .pt-md-16{padding-top:64px!important}.v-application .pr-md-0{padding-right:0!important}.v-application .pr-md-1{padding-right:4px!important}.v-application .pr-md-2{padding-right:8px!important}.v-application .pr-md-3{padding-right:12px!important}.v-application .pr-md-4{padding-right:16px!important}.v-application .pr-md-5{padding-right:20px!important}.v-application .pr-md-6{padding-right:24px!important}.v-application .pr-md-7{padding-right:28px!important}.v-application .pr-md-8{padding-right:32px!important}.v-application .pr-md-9{padding-right:36px!important}.v-application .pr-md-10{padding-right:40px!important}.v-application .pr-md-11{padding-right:44px!important}.v-application .pr-md-12{padding-right:48px!important}.v-application .pr-md-13{padding-right:52px!important}.v-application .pr-md-14{padding-right:56px!important}.v-application .pr-md-15{padding-right:60px!important}.v-application .pr-md-16{padding-right:64px!important}.v-application .pb-md-0{padding-bottom:0!important}.v-application .pb-md-1{padding-bottom:4px!important}.v-application .pb-md-2{padding-bottom:8px!important}.v-application .pb-md-3{padding-bottom:12px!important}.v-application .pb-md-4{padding-bottom:16px!important}.v-application .pb-md-5{padding-bottom:20px!important}.v-application .pb-md-6{padding-bottom:24px!important}.v-application .pb-md-7{padding-bottom:28px!important}.v-application .pb-md-8{padding-bottom:32px!important}.v-application .pb-md-9{padding-bottom:36px!important}.v-application .pb-md-10{padding-bottom:40px!important}.v-application .pb-md-11{padding-bottom:44px!important}.v-application .pb-md-12{padding-bottom:48px!important}.v-application .pb-md-13{padding-bottom:52px!important}.v-application .pb-md-14{padding-bottom:56px!important}.v-application .pb-md-15{padding-bottom:60px!important}.v-application .pb-md-16{padding-bottom:64px!important}.v-application .pl-md-0{padding-left:0!important}.v-application .pl-md-1{padding-left:4px!important}.v-application .pl-md-2{padding-left:8px!important}.v-application .pl-md-3{padding-left:12px!important}.v-application .pl-md-4{padding-left:16px!important}.v-application .pl-md-5{padding-left:20px!important}.v-application .pl-md-6{padding-left:24px!important}.v-application .pl-md-7{padding-left:28px!important}.v-application .pl-md-8{padding-left:32px!important}.v-application .pl-md-9{padding-left:36px!important}.v-application .pl-md-10{padding-left:40px!important}.v-application .pl-md-11{padding-left:44px!important}.v-application .pl-md-12{padding-left:48px!important}.v-application .pl-md-13{padding-left:52px!important}.v-application .pl-md-14{padding-left:56px!important}.v-application .pl-md-15{padding-left:60px!important}.v-application .pl-md-16{padding-left:64px!important}.v-application--is-ltr .ps-md-0{padding-left:0!important}.v-application--is-rtl .ps-md-0{padding-right:0!important}.v-application--is-ltr .ps-md-1{padding-left:4px!important}.v-application--is-rtl .ps-md-1{padding-right:4px!important}.v-application--is-ltr .ps-md-2{padding-left:8px!important}.v-application--is-rtl .ps-md-2{padding-right:8px!important}.v-application--is-ltr .ps-md-3{padding-left:12px!important}.v-application--is-rtl .ps-md-3{padding-right:12px!important}.v-application--is-ltr .ps-md-4{padding-left:16px!important}.v-application--is-rtl .ps-md-4{padding-right:16px!important}.v-application--is-ltr .ps-md-5{padding-left:20px!important}.v-application--is-rtl .ps-md-5{padding-right:20px!important}.v-application--is-ltr .ps-md-6{padding-left:24px!important}.v-application--is-rtl .ps-md-6{padding-right:24px!important}.v-application--is-ltr .ps-md-7{padding-left:28px!important}.v-application--is-rtl .ps-md-7{padding-right:28px!important}.v-application--is-ltr .ps-md-8{padding-left:32px!important}.v-application--is-rtl .ps-md-8{padding-right:32px!important}.v-application--is-ltr .ps-md-9{padding-left:36px!important}.v-application--is-rtl .ps-md-9{padding-right:36px!important}.v-application--is-ltr .ps-md-10{padding-left:40px!important}.v-application--is-rtl .ps-md-10{padding-right:40px!important}.v-application--is-ltr .ps-md-11{padding-left:44px!important}.v-application--is-rtl .ps-md-11{padding-right:44px!important}.v-application--is-ltr .ps-md-12{padding-left:48px!important}.v-application--is-rtl .ps-md-12{padding-right:48px!important}.v-application--is-ltr .ps-md-13{padding-left:52px!important}.v-application--is-rtl .ps-md-13{padding-right:52px!important}.v-application--is-ltr .ps-md-14{padding-left:56px!important}.v-application--is-rtl .ps-md-14{padding-right:56px!important}.v-application--is-ltr .ps-md-15{padding-left:60px!important}.v-application--is-rtl .ps-md-15{padding-right:60px!important}.v-application--is-ltr .ps-md-16{padding-left:64px!important}.v-application--is-rtl .ps-md-16{padding-right:64px!important}.v-application--is-ltr .pe-md-0{padding-right:0!important}.v-application--is-rtl .pe-md-0{padding-left:0!important}.v-application--is-ltr .pe-md-1{padding-right:4px!important}.v-application--is-rtl .pe-md-1{padding-left:4px!important}.v-application--is-ltr .pe-md-2{padding-right:8px!important}.v-application--is-rtl .pe-md-2{padding-left:8px!important}.v-application--is-ltr .pe-md-3{padding-right:12px!important}.v-application--is-rtl .pe-md-3{padding-left:12px!important}.v-application--is-ltr .pe-md-4{padding-right:16px!important}.v-application--is-rtl .pe-md-4{padding-left:16px!important}.v-application--is-ltr .pe-md-5{padding-right:20px!important}.v-application--is-rtl .pe-md-5{padding-left:20px!important}.v-application--is-ltr .pe-md-6{padding-right:24px!important}.v-application--is-rtl .pe-md-6{padding-left:24px!important}.v-application--is-ltr .pe-md-7{padding-right:28px!important}.v-application--is-rtl .pe-md-7{padding-left:28px!important}.v-application--is-ltr .pe-md-8{padding-right:32px!important}.v-application--is-rtl .pe-md-8{padding-left:32px!important}.v-application--is-ltr .pe-md-9{padding-right:36px!important}.v-application--is-rtl .pe-md-9{padding-left:36px!important}.v-application--is-ltr .pe-md-10{padding-right:40px!important}.v-application--is-rtl .pe-md-10{padding-left:40px!important}.v-application--is-ltr .pe-md-11{padding-right:44px!important}.v-application--is-rtl .pe-md-11{padding-left:44px!important}.v-application--is-ltr .pe-md-12{padding-right:48px!important}.v-application--is-rtl .pe-md-12{padding-left:48px!important}.v-application--is-ltr .pe-md-13{padding-right:52px!important}.v-application--is-rtl .pe-md-13{padding-left:52px!important}.v-application--is-ltr .pe-md-14{padding-right:56px!important}.v-application--is-rtl .pe-md-14{padding-left:56px!important}.v-application--is-ltr .pe-md-15{padding-right:60px!important}.v-application--is-rtl .pe-md-15{padding-left:60px!important}.v-application--is-ltr .pe-md-16{padding-right:64px!important}.v-application--is-rtl .pe-md-16{padding-left:64px!important}.v-application .text-md-left{text-align:left!important}.v-application .text-md-right{text-align:right!important}.v-application .text-md-center{text-align:center!important}.v-application .text-md-justify{text-align:justify!important}.v-application .text-md-start{text-align:start!important}.v-application .text-md-end{text-align:end!important}.v-application .text-md-h1{font-size:6rem!important;line-height:6rem;letter-spacing:-.015625em!important}.v-application .text-md-h1,.v-application .text-md-h2{font-weight:300;font-family:Roboto,sans-serif!important}.v-application .text-md-h2{font-size:3.75rem!important;line-height:3.75rem;letter-spacing:-.0083333333em!important}.v-application .text-md-h3{font-size:3rem!important;line-height:3.125rem;letter-spacing:normal!important}.v-application .text-md-h3,.v-application .text-md-h4{font-weight:400;font-family:Roboto,sans-serif!important}.v-application .text-md-h4{font-size:2.125rem!important;line-height:2.5rem;letter-spacing:.0073529412em!important}.v-application .text-md-h5{font-size:1.5rem!important;font-weight:400;letter-spacing:normal!important}.v-application .text-md-h5,.v-application .text-md-h6{line-height:2rem;font-family:Roboto,sans-serif!important}.v-application .text-md-h6{font-size:1.25rem!important;font-weight:500;letter-spacing:.0125em!important}.v-application .text-md-subtitle-1{font-size:1rem!important;font-weight:400;line-height:1.75rem;letter-spacing:.009375em!important;font-family:Roboto,sans-serif!important}.v-application .text-md-subtitle-2{font-size:.875rem!important;font-weight:500;line-height:1.375rem;letter-spacing:.0071428571em!important;font-family:Roboto,sans-serif!important}.v-application .text-md-body-1{font-size:1rem!important;font-weight:400;line-height:1.5rem;letter-spacing:.03125em!important;font-family:Roboto,sans-serif!important}.v-application .text-md-body-2{font-weight:400;line-height:1.25rem;letter-spacing:.0178571429em!important}.v-application .text-md-body-2,.v-application .text-md-button{font-size:.875rem!important;font-family:Roboto,sans-serif!important}.v-application .text-md-button{font-weight:500;line-height:2.25rem;letter-spacing:.0892857143em!important;text-transform:uppercase!important}.v-application .text-md-caption{font-weight:400;line-height:1.25rem;letter-spacing:.0333333333em!important}.v-application .text-md-caption,.v-application .text-md-overline{font-size:.75rem!important;font-family:Roboto,sans-serif!important}.v-application .text-md-overline{font-weight:500;line-height:2rem;letter-spacing:.1666666667em!important;text-transform:uppercase!important}}@media(min-width:1264px){.v-application .d-lg-none{display:none!important}.v-application .d-lg-inline{display:inline!important}.v-application .d-lg-inline-block{display:inline-block!important}.v-application .d-lg-block{display:block!important}.v-application .d-lg-table{display:table!important}.v-application .d-lg-table-row{display:table-row!important}.v-application .d-lg-table-cell{display:table-cell!important}.v-application .d-lg-flex{display:flex!important}.v-application .d-lg-inline-flex{display:inline-flex!important}.v-application .float-lg-none{float:none!important}.v-application .float-lg-left{float:left!important}.v-application .float-lg-right{float:right!important}.v-application--is-rtl .float-lg-end{float:left!important}.v-application--is-ltr .float-lg-end,.v-application--is-rtl .float-lg-start{float:right!important}.v-application--is-ltr .float-lg-start{float:left!important}.v-application .flex-lg-fill{flex:1 1 auto!important}.v-application .flex-lg-row{flex-direction:row!important}.v-application .flex-lg-column{flex-direction:column!important}.v-application .flex-lg-row-reverse{flex-direction:row-reverse!important}.v-application .flex-lg-column-reverse{flex-direction:column-reverse!important}.v-application .flex-lg-grow-0{flex-grow:0!important}.v-application .flex-lg-grow-1{flex-grow:1!important}.v-application .flex-lg-shrink-0{flex-shrink:0!important}.v-application .flex-lg-shrink-1{flex-shrink:1!important}.v-application .flex-lg-wrap{flex-wrap:wrap!important}.v-application .flex-lg-nowrap{flex-wrap:nowrap!important}.v-application .flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.v-application .justify-lg-start{justify-content:flex-start!important}.v-application .justify-lg-end{justify-content:flex-end!important}.v-application .justify-lg-center{justify-content:center!important}.v-application .justify-lg-space-between{justify-content:space-between!important}.v-application .justify-lg-space-around{justify-content:space-around!important}.v-application .align-lg-start{align-items:flex-start!important}.v-application .align-lg-end{align-items:flex-end!important}.v-application .align-lg-center{align-items:center!important}.v-application .align-lg-baseline{align-items:baseline!important}.v-application .align-lg-stretch{align-items:stretch!important}.v-application .align-content-lg-start{align-content:flex-start!important}.v-application .align-content-lg-end{align-content:flex-end!important}.v-application .align-content-lg-center{align-content:center!important}.v-application .align-content-lg-space-between{align-content:space-between!important}.v-application .align-content-lg-space-around{align-content:space-around!important}.v-application .align-content-lg-stretch{align-content:stretch!important}.v-application .align-self-lg-auto{align-self:auto!important}.v-application .align-self-lg-start{align-self:flex-start!important}.v-application .align-self-lg-end{align-self:flex-end!important}.v-application .align-self-lg-center{align-self:center!important}.v-application .align-self-lg-baseline{align-self:baseline!important}.v-application .align-self-lg-stretch{align-self:stretch!important}.v-application .order-lg-first{order:-1!important}.v-application .order-lg-0{order:0!important}.v-application .order-lg-1{order:1!important}.v-application .order-lg-2{order:2!important}.v-application .order-lg-3{order:3!important}.v-application .order-lg-4{order:4!important}.v-application .order-lg-5{order:5!important}.v-application .order-lg-6{order:6!important}.v-application .order-lg-7{order:7!important}.v-application .order-lg-8{order:8!important}.v-application .order-lg-9{order:9!important}.v-application .order-lg-10{order:10!important}.v-application .order-lg-11{order:11!important}.v-application .order-lg-12{order:12!important}.v-application .order-lg-last{order:13!important}.v-application .ma-lg-0{margin:0!important}.v-application .ma-lg-1{margin:4px!important}.v-application .ma-lg-2{margin:8px!important}.v-application .ma-lg-3{margin:12px!important}.v-application .ma-lg-4{margin:16px!important}.v-application .ma-lg-5{margin:20px!important}.v-application .ma-lg-6{margin:24px!important}.v-application .ma-lg-7{margin:28px!important}.v-application .ma-lg-8{margin:32px!important}.v-application .ma-lg-9{margin:36px!important}.v-application .ma-lg-10{margin:40px!important}.v-application .ma-lg-11{margin:44px!important}.v-application .ma-lg-12{margin:48px!important}.v-application .ma-lg-13{margin:52px!important}.v-application .ma-lg-14{margin:56px!important}.v-application .ma-lg-15{margin:60px!important}.v-application .ma-lg-16{margin:64px!important}.v-application .ma-lg-auto{margin:auto!important}.v-application .mx-lg-0{margin-right:0!important;margin-left:0!important}.v-application .mx-lg-1{margin-right:4px!important;margin-left:4px!important}.v-application .mx-lg-2{margin-right:8px!important;margin-left:8px!important}.v-application .mx-lg-3{margin-right:12px!important;margin-left:12px!important}.v-application .mx-lg-4{margin-right:16px!important;margin-left:16px!important}.v-application .mx-lg-5{margin-right:20px!important;margin-left:20px!important}.v-application .mx-lg-6{margin-right:24px!important;margin-left:24px!important}.v-application .mx-lg-7{margin-right:28px!important;margin-left:28px!important}.v-application .mx-lg-8{margin-right:32px!important;margin-left:32px!important}.v-application .mx-lg-9{margin-right:36px!important;margin-left:36px!important}.v-application .mx-lg-10{margin-right:40px!important;margin-left:40px!important}.v-application .mx-lg-11{margin-right:44px!important;margin-left:44px!important}.v-application .mx-lg-12{margin-right:48px!important;margin-left:48px!important}.v-application .mx-lg-13{margin-right:52px!important;margin-left:52px!important}.v-application .mx-lg-14{margin-right:56px!important;margin-left:56px!important}.v-application .mx-lg-15{margin-right:60px!important;margin-left:60px!important}.v-application .mx-lg-16{margin-right:64px!important;margin-left:64px!important}.v-application .mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.v-application .my-lg-0{margin-top:0!important;margin-bottom:0!important}.v-application .my-lg-1{margin-top:4px!important;margin-bottom:4px!important}.v-application .my-lg-2{margin-top:8px!important;margin-bottom:8px!important}.v-application .my-lg-3{margin-top:12px!important;margin-bottom:12px!important}.v-application .my-lg-4{margin-top:16px!important;margin-bottom:16px!important}.v-application .my-lg-5{margin-top:20px!important;margin-bottom:20px!important}.v-application .my-lg-6{margin-top:24px!important;margin-bottom:24px!important}.v-application .my-lg-7{margin-top:28px!important;margin-bottom:28px!important}.v-application .my-lg-8{margin-top:32px!important;margin-bottom:32px!important}.v-application .my-lg-9{margin-top:36px!important;margin-bottom:36px!important}.v-application .my-lg-10{margin-top:40px!important;margin-bottom:40px!important}.v-application .my-lg-11{margin-top:44px!important;margin-bottom:44px!important}.v-application .my-lg-12{margin-top:48px!important;margin-bottom:48px!important}.v-application .my-lg-13{margin-top:52px!important;margin-bottom:52px!important}.v-application .my-lg-14{margin-top:56px!important;margin-bottom:56px!important}.v-application .my-lg-15{margin-top:60px!important;margin-bottom:60px!important}.v-application .my-lg-16{margin-top:64px!important;margin-bottom:64px!important}.v-application .my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.v-application .mt-lg-0{margin-top:0!important}.v-application .mt-lg-1{margin-top:4px!important}.v-application .mt-lg-2{margin-top:8px!important}.v-application .mt-lg-3{margin-top:12px!important}.v-application .mt-lg-4{margin-top:16px!important}.v-application .mt-lg-5{margin-top:20px!important}.v-application .mt-lg-6{margin-top:24px!important}.v-application .mt-lg-7{margin-top:28px!important}.v-application .mt-lg-8{margin-top:32px!important}.v-application .mt-lg-9{margin-top:36px!important}.v-application .mt-lg-10{margin-top:40px!important}.v-application .mt-lg-11{margin-top:44px!important}.v-application .mt-lg-12{margin-top:48px!important}.v-application .mt-lg-13{margin-top:52px!important}.v-application .mt-lg-14{margin-top:56px!important}.v-application .mt-lg-15{margin-top:60px!important}.v-application .mt-lg-16{margin-top:64px!important}.v-application .mt-lg-auto{margin-top:auto!important}.v-application .mr-lg-0{margin-right:0!important}.v-application .mr-lg-1{margin-right:4px!important}.v-application .mr-lg-2{margin-right:8px!important}.v-application .mr-lg-3{margin-right:12px!important}.v-application .mr-lg-4{margin-right:16px!important}.v-application .mr-lg-5{margin-right:20px!important}.v-application .mr-lg-6{margin-right:24px!important}.v-application .mr-lg-7{margin-right:28px!important}.v-application .mr-lg-8{margin-right:32px!important}.v-application .mr-lg-9{margin-right:36px!important}.v-application .mr-lg-10{margin-right:40px!important}.v-application .mr-lg-11{margin-right:44px!important}.v-application .mr-lg-12{margin-right:48px!important}.v-application .mr-lg-13{margin-right:52px!important}.v-application .mr-lg-14{margin-right:56px!important}.v-application .mr-lg-15{margin-right:60px!important}.v-application .mr-lg-16{margin-right:64px!important}.v-application .mr-lg-auto{margin-right:auto!important}.v-application .mb-lg-0{margin-bottom:0!important}.v-application .mb-lg-1{margin-bottom:4px!important}.v-application .mb-lg-2{margin-bottom:8px!important}.v-application .mb-lg-3{margin-bottom:12px!important}.v-application .mb-lg-4{margin-bottom:16px!important}.v-application .mb-lg-5{margin-bottom:20px!important}.v-application .mb-lg-6{margin-bottom:24px!important}.v-application .mb-lg-7{margin-bottom:28px!important}.v-application .mb-lg-8{margin-bottom:32px!important}.v-application .mb-lg-9{margin-bottom:36px!important}.v-application .mb-lg-10{margin-bottom:40px!important}.v-application .mb-lg-11{margin-bottom:44px!important}.v-application .mb-lg-12{margin-bottom:48px!important}.v-application .mb-lg-13{margin-bottom:52px!important}.v-application .mb-lg-14{margin-bottom:56px!important}.v-application .mb-lg-15{margin-bottom:60px!important}.v-application .mb-lg-16{margin-bottom:64px!important}.v-application .mb-lg-auto{margin-bottom:auto!important}.v-application .ml-lg-0{margin-left:0!important}.v-application .ml-lg-1{margin-left:4px!important}.v-application .ml-lg-2{margin-left:8px!important}.v-application .ml-lg-3{margin-left:12px!important}.v-application .ml-lg-4{margin-left:16px!important}.v-application .ml-lg-5{margin-left:20px!important}.v-application .ml-lg-6{margin-left:24px!important}.v-application .ml-lg-7{margin-left:28px!important}.v-application .ml-lg-8{margin-left:32px!important}.v-application .ml-lg-9{margin-left:36px!important}.v-application .ml-lg-10{margin-left:40px!important}.v-application .ml-lg-11{margin-left:44px!important}.v-application .ml-lg-12{margin-left:48px!important}.v-application .ml-lg-13{margin-left:52px!important}.v-application .ml-lg-14{margin-left:56px!important}.v-application .ml-lg-15{margin-left:60px!important}.v-application .ml-lg-16{margin-left:64px!important}.v-application .ml-lg-auto{margin-left:auto!important}.v-application--is-ltr .ms-lg-0{margin-left:0!important}.v-application--is-rtl .ms-lg-0{margin-right:0!important}.v-application--is-ltr .ms-lg-1{margin-left:4px!important}.v-application--is-rtl .ms-lg-1{margin-right:4px!important}.v-application--is-ltr .ms-lg-2{margin-left:8px!important}.v-application--is-rtl .ms-lg-2{margin-right:8px!important}.v-application--is-ltr .ms-lg-3{margin-left:12px!important}.v-application--is-rtl .ms-lg-3{margin-right:12px!important}.v-application--is-ltr .ms-lg-4{margin-left:16px!important}.v-application--is-rtl .ms-lg-4{margin-right:16px!important}.v-application--is-ltr .ms-lg-5{margin-left:20px!important}.v-application--is-rtl .ms-lg-5{margin-right:20px!important}.v-application--is-ltr .ms-lg-6{margin-left:24px!important}.v-application--is-rtl .ms-lg-6{margin-right:24px!important}.v-application--is-ltr .ms-lg-7{margin-left:28px!important}.v-application--is-rtl .ms-lg-7{margin-right:28px!important}.v-application--is-ltr .ms-lg-8{margin-left:32px!important}.v-application--is-rtl .ms-lg-8{margin-right:32px!important}.v-application--is-ltr .ms-lg-9{margin-left:36px!important}.v-application--is-rtl .ms-lg-9{margin-right:36px!important}.v-application--is-ltr .ms-lg-10{margin-left:40px!important}.v-application--is-rtl .ms-lg-10{margin-right:40px!important}.v-application--is-ltr .ms-lg-11{margin-left:44px!important}.v-application--is-rtl .ms-lg-11{margin-right:44px!important}.v-application--is-ltr .ms-lg-12{margin-left:48px!important}.v-application--is-rtl .ms-lg-12{margin-right:48px!important}.v-application--is-ltr .ms-lg-13{margin-left:52px!important}.v-application--is-rtl .ms-lg-13{margin-right:52px!important}.v-application--is-ltr .ms-lg-14{margin-left:56px!important}.v-application--is-rtl .ms-lg-14{margin-right:56px!important}.v-application--is-ltr .ms-lg-15{margin-left:60px!important}.v-application--is-rtl .ms-lg-15{margin-right:60px!important}.v-application--is-ltr .ms-lg-16{margin-left:64px!important}.v-application--is-rtl .ms-lg-16{margin-right:64px!important}.v-application--is-ltr .ms-lg-auto{margin-left:auto!important}.v-application--is-rtl .ms-lg-auto{margin-right:auto!important}.v-application--is-ltr .me-lg-0{margin-right:0!important}.v-application--is-rtl .me-lg-0{margin-left:0!important}.v-application--is-ltr .me-lg-1{margin-right:4px!important}.v-application--is-rtl .me-lg-1{margin-left:4px!important}.v-application--is-ltr .me-lg-2{margin-right:8px!important}.v-application--is-rtl .me-lg-2{margin-left:8px!important}.v-application--is-ltr .me-lg-3{margin-right:12px!important}.v-application--is-rtl .me-lg-3{margin-left:12px!important}.v-application--is-ltr .me-lg-4{margin-right:16px!important}.v-application--is-rtl .me-lg-4{margin-left:16px!important}.v-application--is-ltr .me-lg-5{margin-right:20px!important}.v-application--is-rtl .me-lg-5{margin-left:20px!important}.v-application--is-ltr .me-lg-6{margin-right:24px!important}.v-application--is-rtl .me-lg-6{margin-left:24px!important}.v-application--is-ltr .me-lg-7{margin-right:28px!important}.v-application--is-rtl .me-lg-7{margin-left:28px!important}.v-application--is-ltr .me-lg-8{margin-right:32px!important}.v-application--is-rtl .me-lg-8{margin-left:32px!important}.v-application--is-ltr .me-lg-9{margin-right:36px!important}.v-application--is-rtl .me-lg-9{margin-left:36px!important}.v-application--is-ltr .me-lg-10{margin-right:40px!important}.v-application--is-rtl .me-lg-10{margin-left:40px!important}.v-application--is-ltr .me-lg-11{margin-right:44px!important}.v-application--is-rtl .me-lg-11{margin-left:44px!important}.v-application--is-ltr .me-lg-12{margin-right:48px!important}.v-application--is-rtl .me-lg-12{margin-left:48px!important}.v-application--is-ltr .me-lg-13{margin-right:52px!important}.v-application--is-rtl .me-lg-13{margin-left:52px!important}.v-application--is-ltr .me-lg-14{margin-right:56px!important}.v-application--is-rtl .me-lg-14{margin-left:56px!important}.v-application--is-ltr .me-lg-15{margin-right:60px!important}.v-application--is-rtl .me-lg-15{margin-left:60px!important}.v-application--is-ltr .me-lg-16{margin-right:64px!important}.v-application--is-rtl .me-lg-16{margin-left:64px!important}.v-application--is-ltr .me-lg-auto{margin-right:auto!important}.v-application--is-rtl .me-lg-auto{margin-left:auto!important}.v-application .ma-lg-n1{margin:-4px!important}.v-application .ma-lg-n2{margin:-8px!important}.v-application .ma-lg-n3{margin:-12px!important}.v-application .ma-lg-n4{margin:-16px!important}.v-application .ma-lg-n5{margin:-20px!important}.v-application .ma-lg-n6{margin:-24px!important}.v-application .ma-lg-n7{margin:-28px!important}.v-application .ma-lg-n8{margin:-32px!important}.v-application .ma-lg-n9{margin:-36px!important}.v-application .ma-lg-n10{margin:-40px!important}.v-application .ma-lg-n11{margin:-44px!important}.v-application .ma-lg-n12{margin:-48px!important}.v-application .ma-lg-n13{margin:-52px!important}.v-application .ma-lg-n14{margin:-56px!important}.v-application .ma-lg-n15{margin:-60px!important}.v-application .ma-lg-n16{margin:-64px!important}.v-application .mx-lg-n1{margin-right:-4px!important;margin-left:-4px!important}.v-application .mx-lg-n2{margin-right:-8px!important;margin-left:-8px!important}.v-application .mx-lg-n3{margin-right:-12px!important;margin-left:-12px!important}.v-application .mx-lg-n4{margin-right:-16px!important;margin-left:-16px!important}.v-application .mx-lg-n5{margin-right:-20px!important;margin-left:-20px!important}.v-application .mx-lg-n6{margin-right:-24px!important;margin-left:-24px!important}.v-application .mx-lg-n7{margin-right:-28px!important;margin-left:-28px!important}.v-application .mx-lg-n8{margin-right:-32px!important;margin-left:-32px!important}.v-application .mx-lg-n9{margin-right:-36px!important;margin-left:-36px!important}.v-application .mx-lg-n10{margin-right:-40px!important;margin-left:-40px!important}.v-application .mx-lg-n11{margin-right:-44px!important;margin-left:-44px!important}.v-application .mx-lg-n12{margin-right:-48px!important;margin-left:-48px!important}.v-application .mx-lg-n13{margin-right:-52px!important;margin-left:-52px!important}.v-application .mx-lg-n14{margin-right:-56px!important;margin-left:-56px!important}.v-application .mx-lg-n15{margin-right:-60px!important;margin-left:-60px!important}.v-application .mx-lg-n16{margin-right:-64px!important;margin-left:-64px!important}.v-application .my-lg-n1{margin-top:-4px!important;margin-bottom:-4px!important}.v-application .my-lg-n2{margin-top:-8px!important;margin-bottom:-8px!important}.v-application .my-lg-n3{margin-top:-12px!important;margin-bottom:-12px!important}.v-application .my-lg-n4{margin-top:-16px!important;margin-bottom:-16px!important}.v-application .my-lg-n5{margin-top:-20px!important;margin-bottom:-20px!important}.v-application .my-lg-n6{margin-top:-24px!important;margin-bottom:-24px!important}.v-application .my-lg-n7{margin-top:-28px!important;margin-bottom:-28px!important}.v-application .my-lg-n8{margin-top:-32px!important;margin-bottom:-32px!important}.v-application .my-lg-n9{margin-top:-36px!important;margin-bottom:-36px!important}.v-application .my-lg-n10{margin-top:-40px!important;margin-bottom:-40px!important}.v-application .my-lg-n11{margin-top:-44px!important;margin-bottom:-44px!important}.v-application .my-lg-n12{margin-top:-48px!important;margin-bottom:-48px!important}.v-application .my-lg-n13{margin-top:-52px!important;margin-bottom:-52px!important}.v-application .my-lg-n14{margin-top:-56px!important;margin-bottom:-56px!important}.v-application .my-lg-n15{margin-top:-60px!important;margin-bottom:-60px!important}.v-application .my-lg-n16{margin-top:-64px!important;margin-bottom:-64px!important}.v-application .mt-lg-n1{margin-top:-4px!important}.v-application .mt-lg-n2{margin-top:-8px!important}.v-application .mt-lg-n3{margin-top:-12px!important}.v-application .mt-lg-n4{margin-top:-16px!important}.v-application .mt-lg-n5{margin-top:-20px!important}.v-application .mt-lg-n6{margin-top:-24px!important}.v-application .mt-lg-n7{margin-top:-28px!important}.v-application .mt-lg-n8{margin-top:-32px!important}.v-application .mt-lg-n9{margin-top:-36px!important}.v-application .mt-lg-n10{margin-top:-40px!important}.v-application .mt-lg-n11{margin-top:-44px!important}.v-application .mt-lg-n12{margin-top:-48px!important}.v-application .mt-lg-n13{margin-top:-52px!important}.v-application .mt-lg-n14{margin-top:-56px!important}.v-application .mt-lg-n15{margin-top:-60px!important}.v-application .mt-lg-n16{margin-top:-64px!important}.v-application .mr-lg-n1{margin-right:-4px!important}.v-application .mr-lg-n2{margin-right:-8px!important}.v-application .mr-lg-n3{margin-right:-12px!important}.v-application .mr-lg-n4{margin-right:-16px!important}.v-application .mr-lg-n5{margin-right:-20px!important}.v-application .mr-lg-n6{margin-right:-24px!important}.v-application .mr-lg-n7{margin-right:-28px!important}.v-application .mr-lg-n8{margin-right:-32px!important}.v-application .mr-lg-n9{margin-right:-36px!important}.v-application .mr-lg-n10{margin-right:-40px!important}.v-application .mr-lg-n11{margin-right:-44px!important}.v-application .mr-lg-n12{margin-right:-48px!important}.v-application .mr-lg-n13{margin-right:-52px!important}.v-application .mr-lg-n14{margin-right:-56px!important}.v-application .mr-lg-n15{margin-right:-60px!important}.v-application .mr-lg-n16{margin-right:-64px!important}.v-application .mb-lg-n1{margin-bottom:-4px!important}.v-application .mb-lg-n2{margin-bottom:-8px!important}.v-application .mb-lg-n3{margin-bottom:-12px!important}.v-application .mb-lg-n4{margin-bottom:-16px!important}.v-application .mb-lg-n5{margin-bottom:-20px!important}.v-application .mb-lg-n6{margin-bottom:-24px!important}.v-application .mb-lg-n7{margin-bottom:-28px!important}.v-application .mb-lg-n8{margin-bottom:-32px!important}.v-application .mb-lg-n9{margin-bottom:-36px!important}.v-application .mb-lg-n10{margin-bottom:-40px!important}.v-application .mb-lg-n11{margin-bottom:-44px!important}.v-application .mb-lg-n12{margin-bottom:-48px!important}.v-application .mb-lg-n13{margin-bottom:-52px!important}.v-application .mb-lg-n14{margin-bottom:-56px!important}.v-application .mb-lg-n15{margin-bottom:-60px!important}.v-application .mb-lg-n16{margin-bottom:-64px!important}.v-application .ml-lg-n1{margin-left:-4px!important}.v-application .ml-lg-n2{margin-left:-8px!important}.v-application .ml-lg-n3{margin-left:-12px!important}.v-application .ml-lg-n4{margin-left:-16px!important}.v-application .ml-lg-n5{margin-left:-20px!important}.v-application .ml-lg-n6{margin-left:-24px!important}.v-application .ml-lg-n7{margin-left:-28px!important}.v-application .ml-lg-n8{margin-left:-32px!important}.v-application .ml-lg-n9{margin-left:-36px!important}.v-application .ml-lg-n10{margin-left:-40px!important}.v-application .ml-lg-n11{margin-left:-44px!important}.v-application .ml-lg-n12{margin-left:-48px!important}.v-application .ml-lg-n13{margin-left:-52px!important}.v-application .ml-lg-n14{margin-left:-56px!important}.v-application .ml-lg-n15{margin-left:-60px!important}.v-application .ml-lg-n16{margin-left:-64px!important}.v-application--is-ltr .ms-lg-n1{margin-left:-4px!important}.v-application--is-rtl .ms-lg-n1{margin-right:-4px!important}.v-application--is-ltr .ms-lg-n2{margin-left:-8px!important}.v-application--is-rtl .ms-lg-n2{margin-right:-8px!important}.v-application--is-ltr .ms-lg-n3{margin-left:-12px!important}.v-application--is-rtl .ms-lg-n3{margin-right:-12px!important}.v-application--is-ltr .ms-lg-n4{margin-left:-16px!important}.v-application--is-rtl .ms-lg-n4{margin-right:-16px!important}.v-application--is-ltr .ms-lg-n5{margin-left:-20px!important}.v-application--is-rtl .ms-lg-n5{margin-right:-20px!important}.v-application--is-ltr .ms-lg-n6{margin-left:-24px!important}.v-application--is-rtl .ms-lg-n6{margin-right:-24px!important}.v-application--is-ltr .ms-lg-n7{margin-left:-28px!important}.v-application--is-rtl .ms-lg-n7{margin-right:-28px!important}.v-application--is-ltr .ms-lg-n8{margin-left:-32px!important}.v-application--is-rtl .ms-lg-n8{margin-right:-32px!important}.v-application--is-ltr .ms-lg-n9{margin-left:-36px!important}.v-application--is-rtl .ms-lg-n9{margin-right:-36px!important}.v-application--is-ltr .ms-lg-n10{margin-left:-40px!important}.v-application--is-rtl .ms-lg-n10{margin-right:-40px!important}.v-application--is-ltr .ms-lg-n11{margin-left:-44px!important}.v-application--is-rtl .ms-lg-n11{margin-right:-44px!important}.v-application--is-ltr .ms-lg-n12{margin-left:-48px!important}.v-application--is-rtl .ms-lg-n12{margin-right:-48px!important}.v-application--is-ltr .ms-lg-n13{margin-left:-52px!important}.v-application--is-rtl .ms-lg-n13{margin-right:-52px!important}.v-application--is-ltr .ms-lg-n14{margin-left:-56px!important}.v-application--is-rtl .ms-lg-n14{margin-right:-56px!important}.v-application--is-ltr .ms-lg-n15{margin-left:-60px!important}.v-application--is-rtl .ms-lg-n15{margin-right:-60px!important}.v-application--is-ltr .ms-lg-n16{margin-left:-64px!important}.v-application--is-rtl .ms-lg-n16{margin-right:-64px!important}.v-application--is-ltr .me-lg-n1{margin-right:-4px!important}.v-application--is-rtl .me-lg-n1{margin-left:-4px!important}.v-application--is-ltr .me-lg-n2{margin-right:-8px!important}.v-application--is-rtl .me-lg-n2{margin-left:-8px!important}.v-application--is-ltr .me-lg-n3{margin-right:-12px!important}.v-application--is-rtl .me-lg-n3{margin-left:-12px!important}.v-application--is-ltr .me-lg-n4{margin-right:-16px!important}.v-application--is-rtl .me-lg-n4{margin-left:-16px!important}.v-application--is-ltr .me-lg-n5{margin-right:-20px!important}.v-application--is-rtl .me-lg-n5{margin-left:-20px!important}.v-application--is-ltr .me-lg-n6{margin-right:-24px!important}.v-application--is-rtl .me-lg-n6{margin-left:-24px!important}.v-application--is-ltr .me-lg-n7{margin-right:-28px!important}.v-application--is-rtl .me-lg-n7{margin-left:-28px!important}.v-application--is-ltr .me-lg-n8{margin-right:-32px!important}.v-application--is-rtl .me-lg-n8{margin-left:-32px!important}.v-application--is-ltr .me-lg-n9{margin-right:-36px!important}.v-application--is-rtl .me-lg-n9{margin-left:-36px!important}.v-application--is-ltr .me-lg-n10{margin-right:-40px!important}.v-application--is-rtl .me-lg-n10{margin-left:-40px!important}.v-application--is-ltr .me-lg-n11{margin-right:-44px!important}.v-application--is-rtl .me-lg-n11{margin-left:-44px!important}.v-application--is-ltr .me-lg-n12{margin-right:-48px!important}.v-application--is-rtl .me-lg-n12{margin-left:-48px!important}.v-application--is-ltr .me-lg-n13{margin-right:-52px!important}.v-application--is-rtl .me-lg-n13{margin-left:-52px!important}.v-application--is-ltr .me-lg-n14{margin-right:-56px!important}.v-application--is-rtl .me-lg-n14{margin-left:-56px!important}.v-application--is-ltr .me-lg-n15{margin-right:-60px!important}.v-application--is-rtl .me-lg-n15{margin-left:-60px!important}.v-application--is-ltr .me-lg-n16{margin-right:-64px!important}.v-application--is-rtl .me-lg-n16{margin-left:-64px!important}.v-application .pa-lg-0{padding:0!important}.v-application .pa-lg-1{padding:4px!important}.v-application .pa-lg-2{padding:8px!important}.v-application .pa-lg-3{padding:12px!important}.v-application .pa-lg-4{padding:16px!important}.v-application .pa-lg-5{padding:20px!important}.v-application .pa-lg-6{padding:24px!important}.v-application .pa-lg-7{padding:28px!important}.v-application .pa-lg-8{padding:32px!important}.v-application .pa-lg-9{padding:36px!important}.v-application .pa-lg-10{padding:40px!important}.v-application .pa-lg-11{padding:44px!important}.v-application .pa-lg-12{padding:48px!important}.v-application .pa-lg-13{padding:52px!important}.v-application .pa-lg-14{padding:56px!important}.v-application .pa-lg-15{padding:60px!important}.v-application .pa-lg-16{padding:64px!important}.v-application .px-lg-0{padding-right:0!important;padding-left:0!important}.v-application .px-lg-1{padding-right:4px!important;padding-left:4px!important}.v-application .px-lg-2{padding-right:8px!important;padding-left:8px!important}.v-application .px-lg-3{padding-right:12px!important;padding-left:12px!important}.v-application .px-lg-4{padding-right:16px!important;padding-left:16px!important}.v-application .px-lg-5{padding-right:20px!important;padding-left:20px!important}.v-application .px-lg-6{padding-right:24px!important;padding-left:24px!important}.v-application .px-lg-7{padding-right:28px!important;padding-left:28px!important}.v-application .px-lg-8{padding-right:32px!important;padding-left:32px!important}.v-application .px-lg-9{padding-right:36px!important;padding-left:36px!important}.v-application .px-lg-10{padding-right:40px!important;padding-left:40px!important}.v-application .px-lg-11{padding-right:44px!important;padding-left:44px!important}.v-application .px-lg-12{padding-right:48px!important;padding-left:48px!important}.v-application .px-lg-13{padding-right:52px!important;padding-left:52px!important}.v-application .px-lg-14{padding-right:56px!important;padding-left:56px!important}.v-application .px-lg-15{padding-right:60px!important;padding-left:60px!important}.v-application .px-lg-16{padding-right:64px!important;padding-left:64px!important}.v-application .py-lg-0{padding-top:0!important;padding-bottom:0!important}.v-application .py-lg-1{padding-top:4px!important;padding-bottom:4px!important}.v-application .py-lg-2{padding-top:8px!important;padding-bottom:8px!important}.v-application .py-lg-3{padding-top:12px!important;padding-bottom:12px!important}.v-application .py-lg-4{padding-top:16px!important;padding-bottom:16px!important}.v-application .py-lg-5{padding-top:20px!important;padding-bottom:20px!important}.v-application .py-lg-6{padding-top:24px!important;padding-bottom:24px!important}.v-application .py-lg-7{padding-top:28px!important;padding-bottom:28px!important}.v-application .py-lg-8{padding-top:32px!important;padding-bottom:32px!important}.v-application .py-lg-9{padding-top:36px!important;padding-bottom:36px!important}.v-application .py-lg-10{padding-top:40px!important;padding-bottom:40px!important}.v-application .py-lg-11{padding-top:44px!important;padding-bottom:44px!important}.v-application .py-lg-12{padding-top:48px!important;padding-bottom:48px!important}.v-application .py-lg-13{padding-top:52px!important;padding-bottom:52px!important}.v-application .py-lg-14{padding-top:56px!important;padding-bottom:56px!important}.v-application .py-lg-15{padding-top:60px!important;padding-bottom:60px!important}.v-application .py-lg-16{padding-top:64px!important;padding-bottom:64px!important}.v-application .pt-lg-0{padding-top:0!important}.v-application .pt-lg-1{padding-top:4px!important}.v-application .pt-lg-2{padding-top:8px!important}.v-application .pt-lg-3{padding-top:12px!important}.v-application .pt-lg-4{padding-top:16px!important}.v-application .pt-lg-5{padding-top:20px!important}.v-application .pt-lg-6{padding-top:24px!important}.v-application .pt-lg-7{padding-top:28px!important}.v-application .pt-lg-8{padding-top:32px!important}.v-application .pt-lg-9{padding-top:36px!important}.v-application .pt-lg-10{padding-top:40px!important}.v-application .pt-lg-11{padding-top:44px!important}.v-application .pt-lg-12{padding-top:48px!important}.v-application .pt-lg-13{padding-top:52px!important}.v-application .pt-lg-14{padding-top:56px!important}.v-application .pt-lg-15{padding-top:60px!important}.v-application .pt-lg-16{padding-top:64px!important}.v-application .pr-lg-0{padding-right:0!important}.v-application .pr-lg-1{padding-right:4px!important}.v-application .pr-lg-2{padding-right:8px!important}.v-application .pr-lg-3{padding-right:12px!important}.v-application .pr-lg-4{padding-right:16px!important}.v-application .pr-lg-5{padding-right:20px!important}.v-application .pr-lg-6{padding-right:24px!important}.v-application .pr-lg-7{padding-right:28px!important}.v-application .pr-lg-8{padding-right:32px!important}.v-application .pr-lg-9{padding-right:36px!important}.v-application .pr-lg-10{padding-right:40px!important}.v-application .pr-lg-11{padding-right:44px!important}.v-application .pr-lg-12{padding-right:48px!important}.v-application .pr-lg-13{padding-right:52px!important}.v-application .pr-lg-14{padding-right:56px!important}.v-application .pr-lg-15{padding-right:60px!important}.v-application .pr-lg-16{padding-right:64px!important}.v-application .pb-lg-0{padding-bottom:0!important}.v-application .pb-lg-1{padding-bottom:4px!important}.v-application .pb-lg-2{padding-bottom:8px!important}.v-application .pb-lg-3{padding-bottom:12px!important}.v-application .pb-lg-4{padding-bottom:16px!important}.v-application .pb-lg-5{padding-bottom:20px!important}.v-application .pb-lg-6{padding-bottom:24px!important}.v-application .pb-lg-7{padding-bottom:28px!important}.v-application .pb-lg-8{padding-bottom:32px!important}.v-application .pb-lg-9{padding-bottom:36px!important}.v-application .pb-lg-10{padding-bottom:40px!important}.v-application .pb-lg-11{padding-bottom:44px!important}.v-application .pb-lg-12{padding-bottom:48px!important}.v-application .pb-lg-13{padding-bottom:52px!important}.v-application .pb-lg-14{padding-bottom:56px!important}.v-application .pb-lg-15{padding-bottom:60px!important}.v-application .pb-lg-16{padding-bottom:64px!important}.v-application .pl-lg-0{padding-left:0!important}.v-application .pl-lg-1{padding-left:4px!important}.v-application .pl-lg-2{padding-left:8px!important}.v-application .pl-lg-3{padding-left:12px!important}.v-application .pl-lg-4{padding-left:16px!important}.v-application .pl-lg-5{padding-left:20px!important}.v-application .pl-lg-6{padding-left:24px!important}.v-application .pl-lg-7{padding-left:28px!important}.v-application .pl-lg-8{padding-left:32px!important}.v-application .pl-lg-9{padding-left:36px!important}.v-application .pl-lg-10{padding-left:40px!important}.v-application .pl-lg-11{padding-left:44px!important}.v-application .pl-lg-12{padding-left:48px!important}.v-application .pl-lg-13{padding-left:52px!important}.v-application .pl-lg-14{padding-left:56px!important}.v-application .pl-lg-15{padding-left:60px!important}.v-application .pl-lg-16{padding-left:64px!important}.v-application--is-ltr .ps-lg-0{padding-left:0!important}.v-application--is-rtl .ps-lg-0{padding-right:0!important}.v-application--is-ltr .ps-lg-1{padding-left:4px!important}.v-application--is-rtl .ps-lg-1{padding-right:4px!important}.v-application--is-ltr .ps-lg-2{padding-left:8px!important}.v-application--is-rtl .ps-lg-2{padding-right:8px!important}.v-application--is-ltr .ps-lg-3{padding-left:12px!important}.v-application--is-rtl .ps-lg-3{padding-right:12px!important}.v-application--is-ltr .ps-lg-4{padding-left:16px!important}.v-application--is-rtl .ps-lg-4{padding-right:16px!important}.v-application--is-ltr .ps-lg-5{padding-left:20px!important}.v-application--is-rtl .ps-lg-5{padding-right:20px!important}.v-application--is-ltr .ps-lg-6{padding-left:24px!important}.v-application--is-rtl .ps-lg-6{padding-right:24px!important}.v-application--is-ltr .ps-lg-7{padding-left:28px!important}.v-application--is-rtl .ps-lg-7{padding-right:28px!important}.v-application--is-ltr .ps-lg-8{padding-left:32px!important}.v-application--is-rtl .ps-lg-8{padding-right:32px!important}.v-application--is-ltr .ps-lg-9{padding-left:36px!important}.v-application--is-rtl .ps-lg-9{padding-right:36px!important}.v-application--is-ltr .ps-lg-10{padding-left:40px!important}.v-application--is-rtl .ps-lg-10{padding-right:40px!important}.v-application--is-ltr .ps-lg-11{padding-left:44px!important}.v-application--is-rtl .ps-lg-11{padding-right:44px!important}.v-application--is-ltr .ps-lg-12{padding-left:48px!important}.v-application--is-rtl .ps-lg-12{padding-right:48px!important}.v-application--is-ltr .ps-lg-13{padding-left:52px!important}.v-application--is-rtl .ps-lg-13{padding-right:52px!important}.v-application--is-ltr .ps-lg-14{padding-left:56px!important}.v-application--is-rtl .ps-lg-14{padding-right:56px!important}.v-application--is-ltr .ps-lg-15{padding-left:60px!important}.v-application--is-rtl .ps-lg-15{padding-right:60px!important}.v-application--is-ltr .ps-lg-16{padding-left:64px!important}.v-application--is-rtl .ps-lg-16{padding-right:64px!important}.v-application--is-ltr .pe-lg-0{padding-right:0!important}.v-application--is-rtl .pe-lg-0{padding-left:0!important}.v-application--is-ltr .pe-lg-1{padding-right:4px!important}.v-application--is-rtl .pe-lg-1{padding-left:4px!important}.v-application--is-ltr .pe-lg-2{padding-right:8px!important}.v-application--is-rtl .pe-lg-2{padding-left:8px!important}.v-application--is-ltr .pe-lg-3{padding-right:12px!important}.v-application--is-rtl .pe-lg-3{padding-left:12px!important}.v-application--is-ltr .pe-lg-4{padding-right:16px!important}.v-application--is-rtl .pe-lg-4{padding-left:16px!important}.v-application--is-ltr .pe-lg-5{padding-right:20px!important}.v-application--is-rtl .pe-lg-5{padding-left:20px!important}.v-application--is-ltr .pe-lg-6{padding-right:24px!important}.v-application--is-rtl .pe-lg-6{padding-left:24px!important}.v-application--is-ltr .pe-lg-7{padding-right:28px!important}.v-application--is-rtl .pe-lg-7{padding-left:28px!important}.v-application--is-ltr .pe-lg-8{padding-right:32px!important}.v-application--is-rtl .pe-lg-8{padding-left:32px!important}.v-application--is-ltr .pe-lg-9{padding-right:36px!important}.v-application--is-rtl .pe-lg-9{padding-left:36px!important}.v-application--is-ltr .pe-lg-10{padding-right:40px!important}.v-application--is-rtl .pe-lg-10{padding-left:40px!important}.v-application--is-ltr .pe-lg-11{padding-right:44px!important}.v-application--is-rtl .pe-lg-11{padding-left:44px!important}.v-application--is-ltr .pe-lg-12{padding-right:48px!important}.v-application--is-rtl .pe-lg-12{padding-left:48px!important}.v-application--is-ltr .pe-lg-13{padding-right:52px!important}.v-application--is-rtl .pe-lg-13{padding-left:52px!important}.v-application--is-ltr .pe-lg-14{padding-right:56px!important}.v-application--is-rtl .pe-lg-14{padding-left:56px!important}.v-application--is-ltr .pe-lg-15{padding-right:60px!important}.v-application--is-rtl .pe-lg-15{padding-left:60px!important}.v-application--is-ltr .pe-lg-16{padding-right:64px!important}.v-application--is-rtl .pe-lg-16{padding-left:64px!important}.v-application .text-lg-left{text-align:left!important}.v-application .text-lg-right{text-align:right!important}.v-application .text-lg-center{text-align:center!important}.v-application .text-lg-justify{text-align:justify!important}.v-application .text-lg-start{text-align:start!important}.v-application .text-lg-end{text-align:end!important}.v-application .text-lg-h1{font-size:6rem!important;line-height:6rem;letter-spacing:-.015625em!important}.v-application .text-lg-h1,.v-application .text-lg-h2{font-weight:300;font-family:Roboto,sans-serif!important}.v-application .text-lg-h2{font-size:3.75rem!important;line-height:3.75rem;letter-spacing:-.0083333333em!important}.v-application .text-lg-h3{font-size:3rem!important;line-height:3.125rem;letter-spacing:normal!important}.v-application .text-lg-h3,.v-application .text-lg-h4{font-weight:400;font-family:Roboto,sans-serif!important}.v-application .text-lg-h4{font-size:2.125rem!important;line-height:2.5rem;letter-spacing:.0073529412em!important}.v-application .text-lg-h5{font-size:1.5rem!important;font-weight:400;letter-spacing:normal!important}.v-application .text-lg-h5,.v-application .text-lg-h6{line-height:2rem;font-family:Roboto,sans-serif!important}.v-application .text-lg-h6{font-size:1.25rem!important;font-weight:500;letter-spacing:.0125em!important}.v-application .text-lg-subtitle-1{font-size:1rem!important;font-weight:400;line-height:1.75rem;letter-spacing:.009375em!important;font-family:Roboto,sans-serif!important}.v-application .text-lg-subtitle-2{font-size:.875rem!important;font-weight:500;line-height:1.375rem;letter-spacing:.0071428571em!important;font-family:Roboto,sans-serif!important}.v-application .text-lg-body-1{font-size:1rem!important;font-weight:400;line-height:1.5rem;letter-spacing:.03125em!important;font-family:Roboto,sans-serif!important}.v-application .text-lg-body-2{font-weight:400;line-height:1.25rem;letter-spacing:.0178571429em!important}.v-application .text-lg-body-2,.v-application .text-lg-button{font-size:.875rem!important;font-family:Roboto,sans-serif!important}.v-application .text-lg-button{font-weight:500;line-height:2.25rem;letter-spacing:.0892857143em!important;text-transform:uppercase!important}.v-application .text-lg-caption{font-weight:400;line-height:1.25rem;letter-spacing:.0333333333em!important}.v-application .text-lg-caption,.v-application .text-lg-overline{font-size:.75rem!important;font-family:Roboto,sans-serif!important}.v-application .text-lg-overline{font-weight:500;line-height:2rem;letter-spacing:.1666666667em!important;text-transform:uppercase!important}}@media(min-width:1904px){.v-application .d-xl-none{display:none!important}.v-application .d-xl-inline{display:inline!important}.v-application .d-xl-inline-block{display:inline-block!important}.v-application .d-xl-block{display:block!important}.v-application .d-xl-table{display:table!important}.v-application .d-xl-table-row{display:table-row!important}.v-application .d-xl-table-cell{display:table-cell!important}.v-application .d-xl-flex{display:flex!important}.v-application .d-xl-inline-flex{display:inline-flex!important}.v-application .float-xl-none{float:none!important}.v-application .float-xl-left{float:left!important}.v-application .float-xl-right{float:right!important}.v-application--is-rtl .float-xl-end{float:left!important}.v-application--is-ltr .float-xl-end,.v-application--is-rtl .float-xl-start{float:right!important}.v-application--is-ltr .float-xl-start{float:left!important}.v-application .flex-xl-fill{flex:1 1 auto!important}.v-application .flex-xl-row{flex-direction:row!important}.v-application .flex-xl-column{flex-direction:column!important}.v-application .flex-xl-row-reverse{flex-direction:row-reverse!important}.v-application .flex-xl-column-reverse{flex-direction:column-reverse!important}.v-application .flex-xl-grow-0{flex-grow:0!important}.v-application .flex-xl-grow-1{flex-grow:1!important}.v-application .flex-xl-shrink-0{flex-shrink:0!important}.v-application .flex-xl-shrink-1{flex-shrink:1!important}.v-application .flex-xl-wrap{flex-wrap:wrap!important}.v-application .flex-xl-nowrap{flex-wrap:nowrap!important}.v-application .flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.v-application .justify-xl-start{justify-content:flex-start!important}.v-application .justify-xl-end{justify-content:flex-end!important}.v-application .justify-xl-center{justify-content:center!important}.v-application .justify-xl-space-between{justify-content:space-between!important}.v-application .justify-xl-space-around{justify-content:space-around!important}.v-application .align-xl-start{align-items:flex-start!important}.v-application .align-xl-end{align-items:flex-end!important}.v-application .align-xl-center{align-items:center!important}.v-application .align-xl-baseline{align-items:baseline!important}.v-application .align-xl-stretch{align-items:stretch!important}.v-application .align-content-xl-start{align-content:flex-start!important}.v-application .align-content-xl-end{align-content:flex-end!important}.v-application .align-content-xl-center{align-content:center!important}.v-application .align-content-xl-space-between{align-content:space-between!important}.v-application .align-content-xl-space-around{align-content:space-around!important}.v-application .align-content-xl-stretch{align-content:stretch!important}.v-application .align-self-xl-auto{align-self:auto!important}.v-application .align-self-xl-start{align-self:flex-start!important}.v-application .align-self-xl-end{align-self:flex-end!important}.v-application .align-self-xl-center{align-self:center!important}.v-application .align-self-xl-baseline{align-self:baseline!important}.v-application .align-self-xl-stretch{align-self:stretch!important}.v-application .order-xl-first{order:-1!important}.v-application .order-xl-0{order:0!important}.v-application .order-xl-1{order:1!important}.v-application .order-xl-2{order:2!important}.v-application .order-xl-3{order:3!important}.v-application .order-xl-4{order:4!important}.v-application .order-xl-5{order:5!important}.v-application .order-xl-6{order:6!important}.v-application .order-xl-7{order:7!important}.v-application .order-xl-8{order:8!important}.v-application .order-xl-9{order:9!important}.v-application .order-xl-10{order:10!important}.v-application .order-xl-11{order:11!important}.v-application .order-xl-12{order:12!important}.v-application .order-xl-last{order:13!important}.v-application .ma-xl-0{margin:0!important}.v-application .ma-xl-1{margin:4px!important}.v-application .ma-xl-2{margin:8px!important}.v-application .ma-xl-3{margin:12px!important}.v-application .ma-xl-4{margin:16px!important}.v-application .ma-xl-5{margin:20px!important}.v-application .ma-xl-6{margin:24px!important}.v-application .ma-xl-7{margin:28px!important}.v-application .ma-xl-8{margin:32px!important}.v-application .ma-xl-9{margin:36px!important}.v-application .ma-xl-10{margin:40px!important}.v-application .ma-xl-11{margin:44px!important}.v-application .ma-xl-12{margin:48px!important}.v-application .ma-xl-13{margin:52px!important}.v-application .ma-xl-14{margin:56px!important}.v-application .ma-xl-15{margin:60px!important}.v-application .ma-xl-16{margin:64px!important}.v-application .ma-xl-auto{margin:auto!important}.v-application .mx-xl-0{margin-right:0!important;margin-left:0!important}.v-application .mx-xl-1{margin-right:4px!important;margin-left:4px!important}.v-application .mx-xl-2{margin-right:8px!important;margin-left:8px!important}.v-application .mx-xl-3{margin-right:12px!important;margin-left:12px!important}.v-application .mx-xl-4{margin-right:16px!important;margin-left:16px!important}.v-application .mx-xl-5{margin-right:20px!important;margin-left:20px!important}.v-application .mx-xl-6{margin-right:24px!important;margin-left:24px!important}.v-application .mx-xl-7{margin-right:28px!important;margin-left:28px!important}.v-application .mx-xl-8{margin-right:32px!important;margin-left:32px!important}.v-application .mx-xl-9{margin-right:36px!important;margin-left:36px!important}.v-application .mx-xl-10{margin-right:40px!important;margin-left:40px!important}.v-application .mx-xl-11{margin-right:44px!important;margin-left:44px!important}.v-application .mx-xl-12{margin-right:48px!important;margin-left:48px!important}.v-application .mx-xl-13{margin-right:52px!important;margin-left:52px!important}.v-application .mx-xl-14{margin-right:56px!important;margin-left:56px!important}.v-application .mx-xl-15{margin-right:60px!important;margin-left:60px!important}.v-application .mx-xl-16{margin-right:64px!important;margin-left:64px!important}.v-application .mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.v-application .my-xl-0{margin-top:0!important;margin-bottom:0!important}.v-application .my-xl-1{margin-top:4px!important;margin-bottom:4px!important}.v-application .my-xl-2{margin-top:8px!important;margin-bottom:8px!important}.v-application .my-xl-3{margin-top:12px!important;margin-bottom:12px!important}.v-application .my-xl-4{margin-top:16px!important;margin-bottom:16px!important}.v-application .my-xl-5{margin-top:20px!important;margin-bottom:20px!important}.v-application .my-xl-6{margin-top:24px!important;margin-bottom:24px!important}.v-application .my-xl-7{margin-top:28px!important;margin-bottom:28px!important}.v-application .my-xl-8{margin-top:32px!important;margin-bottom:32px!important}.v-application .my-xl-9{margin-top:36px!important;margin-bottom:36px!important}.v-application .my-xl-10{margin-top:40px!important;margin-bottom:40px!important}.v-application .my-xl-11{margin-top:44px!important;margin-bottom:44px!important}.v-application .my-xl-12{margin-top:48px!important;margin-bottom:48px!important}.v-application .my-xl-13{margin-top:52px!important;margin-bottom:52px!important}.v-application .my-xl-14{margin-top:56px!important;margin-bottom:56px!important}.v-application .my-xl-15{margin-top:60px!important;margin-bottom:60px!important}.v-application .my-xl-16{margin-top:64px!important;margin-bottom:64px!important}.v-application .my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.v-application .mt-xl-0{margin-top:0!important}.v-application .mt-xl-1{margin-top:4px!important}.v-application .mt-xl-2{margin-top:8px!important}.v-application .mt-xl-3{margin-top:12px!important}.v-application .mt-xl-4{margin-top:16px!important}.v-application .mt-xl-5{margin-top:20px!important}.v-application .mt-xl-6{margin-top:24px!important}.v-application .mt-xl-7{margin-top:28px!important}.v-application .mt-xl-8{margin-top:32px!important}.v-application .mt-xl-9{margin-top:36px!important}.v-application .mt-xl-10{margin-top:40px!important}.v-application .mt-xl-11{margin-top:44px!important}.v-application .mt-xl-12{margin-top:48px!important}.v-application .mt-xl-13{margin-top:52px!important}.v-application .mt-xl-14{margin-top:56px!important}.v-application .mt-xl-15{margin-top:60px!important}.v-application .mt-xl-16{margin-top:64px!important}.v-application .mt-xl-auto{margin-top:auto!important}.v-application .mr-xl-0{margin-right:0!important}.v-application .mr-xl-1{margin-right:4px!important}.v-application .mr-xl-2{margin-right:8px!important}.v-application .mr-xl-3{margin-right:12px!important}.v-application .mr-xl-4{margin-right:16px!important}.v-application .mr-xl-5{margin-right:20px!important}.v-application .mr-xl-6{margin-right:24px!important}.v-application .mr-xl-7{margin-right:28px!important}.v-application .mr-xl-8{margin-right:32px!important}.v-application .mr-xl-9{margin-right:36px!important}.v-application .mr-xl-10{margin-right:40px!important}.v-application .mr-xl-11{margin-right:44px!important}.v-application .mr-xl-12{margin-right:48px!important}.v-application .mr-xl-13{margin-right:52px!important}.v-application .mr-xl-14{margin-right:56px!important}.v-application .mr-xl-15{margin-right:60px!important}.v-application .mr-xl-16{margin-right:64px!important}.v-application .mr-xl-auto{margin-right:auto!important}.v-application .mb-xl-0{margin-bottom:0!important}.v-application .mb-xl-1{margin-bottom:4px!important}.v-application .mb-xl-2{margin-bottom:8px!important}.v-application .mb-xl-3{margin-bottom:12px!important}.v-application .mb-xl-4{margin-bottom:16px!important}.v-application .mb-xl-5{margin-bottom:20px!important}.v-application .mb-xl-6{margin-bottom:24px!important}.v-application .mb-xl-7{margin-bottom:28px!important}.v-application .mb-xl-8{margin-bottom:32px!important}.v-application .mb-xl-9{margin-bottom:36px!important}.v-application .mb-xl-10{margin-bottom:40px!important}.v-application .mb-xl-11{margin-bottom:44px!important}.v-application .mb-xl-12{margin-bottom:48px!important}.v-application .mb-xl-13{margin-bottom:52px!important}.v-application .mb-xl-14{margin-bottom:56px!important}.v-application .mb-xl-15{margin-bottom:60px!important}.v-application .mb-xl-16{margin-bottom:64px!important}.v-application .mb-xl-auto{margin-bottom:auto!important}.v-application .ml-xl-0{margin-left:0!important}.v-application .ml-xl-1{margin-left:4px!important}.v-application .ml-xl-2{margin-left:8px!important}.v-application .ml-xl-3{margin-left:12px!important}.v-application .ml-xl-4{margin-left:16px!important}.v-application .ml-xl-5{margin-left:20px!important}.v-application .ml-xl-6{margin-left:24px!important}.v-application .ml-xl-7{margin-left:28px!important}.v-application .ml-xl-8{margin-left:32px!important}.v-application .ml-xl-9{margin-left:36px!important}.v-application .ml-xl-10{margin-left:40px!important}.v-application .ml-xl-11{margin-left:44px!important}.v-application .ml-xl-12{margin-left:48px!important}.v-application .ml-xl-13{margin-left:52px!important}.v-application .ml-xl-14{margin-left:56px!important}.v-application .ml-xl-15{margin-left:60px!important}.v-application .ml-xl-16{margin-left:64px!important}.v-application .ml-xl-auto{margin-left:auto!important}.v-application--is-ltr .ms-xl-0{margin-left:0!important}.v-application--is-rtl .ms-xl-0{margin-right:0!important}.v-application--is-ltr .ms-xl-1{margin-left:4px!important}.v-application--is-rtl .ms-xl-1{margin-right:4px!important}.v-application--is-ltr .ms-xl-2{margin-left:8px!important}.v-application--is-rtl .ms-xl-2{margin-right:8px!important}.v-application--is-ltr .ms-xl-3{margin-left:12px!important}.v-application--is-rtl .ms-xl-3{margin-right:12px!important}.v-application--is-ltr .ms-xl-4{margin-left:16px!important}.v-application--is-rtl .ms-xl-4{margin-right:16px!important}.v-application--is-ltr .ms-xl-5{margin-left:20px!important}.v-application--is-rtl .ms-xl-5{margin-right:20px!important}.v-application--is-ltr .ms-xl-6{margin-left:24px!important}.v-application--is-rtl .ms-xl-6{margin-right:24px!important}.v-application--is-ltr .ms-xl-7{margin-left:28px!important}.v-application--is-rtl .ms-xl-7{margin-right:28px!important}.v-application--is-ltr .ms-xl-8{margin-left:32px!important}.v-application--is-rtl .ms-xl-8{margin-right:32px!important}.v-application--is-ltr .ms-xl-9{margin-left:36px!important}.v-application--is-rtl .ms-xl-9{margin-right:36px!important}.v-application--is-ltr .ms-xl-10{margin-left:40px!important}.v-application--is-rtl .ms-xl-10{margin-right:40px!important}.v-application--is-ltr .ms-xl-11{margin-left:44px!important}.v-application--is-rtl .ms-xl-11{margin-right:44px!important}.v-application--is-ltr .ms-xl-12{margin-left:48px!important}.v-application--is-rtl .ms-xl-12{margin-right:48px!important}.v-application--is-ltr .ms-xl-13{margin-left:52px!important}.v-application--is-rtl .ms-xl-13{margin-right:52px!important}.v-application--is-ltr .ms-xl-14{margin-left:56px!important}.v-application--is-rtl .ms-xl-14{margin-right:56px!important}.v-application--is-ltr .ms-xl-15{margin-left:60px!important}.v-application--is-rtl .ms-xl-15{margin-right:60px!important}.v-application--is-ltr .ms-xl-16{margin-left:64px!important}.v-application--is-rtl .ms-xl-16{margin-right:64px!important}.v-application--is-ltr .ms-xl-auto{margin-left:auto!important}.v-application--is-rtl .ms-xl-auto{margin-right:auto!important}.v-application--is-ltr .me-xl-0{margin-right:0!important}.v-application--is-rtl .me-xl-0{margin-left:0!important}.v-application--is-ltr .me-xl-1{margin-right:4px!important}.v-application--is-rtl .me-xl-1{margin-left:4px!important}.v-application--is-ltr .me-xl-2{margin-right:8px!important}.v-application--is-rtl .me-xl-2{margin-left:8px!important}.v-application--is-ltr .me-xl-3{margin-right:12px!important}.v-application--is-rtl .me-xl-3{margin-left:12px!important}.v-application--is-ltr .me-xl-4{margin-right:16px!important}.v-application--is-rtl .me-xl-4{margin-left:16px!important}.v-application--is-ltr .me-xl-5{margin-right:20px!important}.v-application--is-rtl .me-xl-5{margin-left:20px!important}.v-application--is-ltr .me-xl-6{margin-right:24px!important}.v-application--is-rtl .me-xl-6{margin-left:24px!important}.v-application--is-ltr .me-xl-7{margin-right:28px!important}.v-application--is-rtl .me-xl-7{margin-left:28px!important}.v-application--is-ltr .me-xl-8{margin-right:32px!important}.v-application--is-rtl .me-xl-8{margin-left:32px!important}.v-application--is-ltr .me-xl-9{margin-right:36px!important}.v-application--is-rtl .me-xl-9{margin-left:36px!important}.v-application--is-ltr .me-xl-10{margin-right:40px!important}.v-application--is-rtl .me-xl-10{margin-left:40px!important}.v-application--is-ltr .me-xl-11{margin-right:44px!important}.v-application--is-rtl .me-xl-11{margin-left:44px!important}.v-application--is-ltr .me-xl-12{margin-right:48px!important}.v-application--is-rtl .me-xl-12{margin-left:48px!important}.v-application--is-ltr .me-xl-13{margin-right:52px!important}.v-application--is-rtl .me-xl-13{margin-left:52px!important}.v-application--is-ltr .me-xl-14{margin-right:56px!important}.v-application--is-rtl .me-xl-14{margin-left:56px!important}.v-application--is-ltr .me-xl-15{margin-right:60px!important}.v-application--is-rtl .me-xl-15{margin-left:60px!important}.v-application--is-ltr .me-xl-16{margin-right:64px!important}.v-application--is-rtl .me-xl-16{margin-left:64px!important}.v-application--is-ltr .me-xl-auto{margin-right:auto!important}.v-application--is-rtl .me-xl-auto{margin-left:auto!important}.v-application .ma-xl-n1{margin:-4px!important}.v-application .ma-xl-n2{margin:-8px!important}.v-application .ma-xl-n3{margin:-12px!important}.v-application .ma-xl-n4{margin:-16px!important}.v-application .ma-xl-n5{margin:-20px!important}.v-application .ma-xl-n6{margin:-24px!important}.v-application .ma-xl-n7{margin:-28px!important}.v-application .ma-xl-n8{margin:-32px!important}.v-application .ma-xl-n9{margin:-36px!important}.v-application .ma-xl-n10{margin:-40px!important}.v-application .ma-xl-n11{margin:-44px!important}.v-application .ma-xl-n12{margin:-48px!important}.v-application .ma-xl-n13{margin:-52px!important}.v-application .ma-xl-n14{margin:-56px!important}.v-application .ma-xl-n15{margin:-60px!important}.v-application .ma-xl-n16{margin:-64px!important}.v-application .mx-xl-n1{margin-right:-4px!important;margin-left:-4px!important}.v-application .mx-xl-n2{margin-right:-8px!important;margin-left:-8px!important}.v-application .mx-xl-n3{margin-right:-12px!important;margin-left:-12px!important}.v-application .mx-xl-n4{margin-right:-16px!important;margin-left:-16px!important}.v-application .mx-xl-n5{margin-right:-20px!important;margin-left:-20px!important}.v-application .mx-xl-n6{margin-right:-24px!important;margin-left:-24px!important}.v-application .mx-xl-n7{margin-right:-28px!important;margin-left:-28px!important}.v-application .mx-xl-n8{margin-right:-32px!important;margin-left:-32px!important}.v-application .mx-xl-n9{margin-right:-36px!important;margin-left:-36px!important}.v-application .mx-xl-n10{margin-right:-40px!important;margin-left:-40px!important}.v-application .mx-xl-n11{margin-right:-44px!important;margin-left:-44px!important}.v-application .mx-xl-n12{margin-right:-48px!important;margin-left:-48px!important}.v-application .mx-xl-n13{margin-right:-52px!important;margin-left:-52px!important}.v-application .mx-xl-n14{margin-right:-56px!important;margin-left:-56px!important}.v-application .mx-xl-n15{margin-right:-60px!important;margin-left:-60px!important}.v-application .mx-xl-n16{margin-right:-64px!important;margin-left:-64px!important}.v-application .my-xl-n1{margin-top:-4px!important;margin-bottom:-4px!important}.v-application .my-xl-n2{margin-top:-8px!important;margin-bottom:-8px!important}.v-application .my-xl-n3{margin-top:-12px!important;margin-bottom:-12px!important}.v-application .my-xl-n4{margin-top:-16px!important;margin-bottom:-16px!important}.v-application .my-xl-n5{margin-top:-20px!important;margin-bottom:-20px!important}.v-application .my-xl-n6{margin-top:-24px!important;margin-bottom:-24px!important}.v-application .my-xl-n7{margin-top:-28px!important;margin-bottom:-28px!important}.v-application .my-xl-n8{margin-top:-32px!important;margin-bottom:-32px!important}.v-application .my-xl-n9{margin-top:-36px!important;margin-bottom:-36px!important}.v-application .my-xl-n10{margin-top:-40px!important;margin-bottom:-40px!important}.v-application .my-xl-n11{margin-top:-44px!important;margin-bottom:-44px!important}.v-application .my-xl-n12{margin-top:-48px!important;margin-bottom:-48px!important}.v-application .my-xl-n13{margin-top:-52px!important;margin-bottom:-52px!important}.v-application .my-xl-n14{margin-top:-56px!important;margin-bottom:-56px!important}.v-application .my-xl-n15{margin-top:-60px!important;margin-bottom:-60px!important}.v-application .my-xl-n16{margin-top:-64px!important;margin-bottom:-64px!important}.v-application .mt-xl-n1{margin-top:-4px!important}.v-application .mt-xl-n2{margin-top:-8px!important}.v-application .mt-xl-n3{margin-top:-12px!important}.v-application .mt-xl-n4{margin-top:-16px!important}.v-application .mt-xl-n5{margin-top:-20px!important}.v-application .mt-xl-n6{margin-top:-24px!important}.v-application .mt-xl-n7{margin-top:-28px!important}.v-application .mt-xl-n8{margin-top:-32px!important}.v-application .mt-xl-n9{margin-top:-36px!important}.v-application .mt-xl-n10{margin-top:-40px!important}.v-application .mt-xl-n11{margin-top:-44px!important}.v-application .mt-xl-n12{margin-top:-48px!important}.v-application .mt-xl-n13{margin-top:-52px!important}.v-application .mt-xl-n14{margin-top:-56px!important}.v-application .mt-xl-n15{margin-top:-60px!important}.v-application .mt-xl-n16{margin-top:-64px!important}.v-application .mr-xl-n1{margin-right:-4px!important}.v-application .mr-xl-n2{margin-right:-8px!important}.v-application .mr-xl-n3{margin-right:-12px!important}.v-application .mr-xl-n4{margin-right:-16px!important}.v-application .mr-xl-n5{margin-right:-20px!important}.v-application .mr-xl-n6{margin-right:-24px!important}.v-application .mr-xl-n7{margin-right:-28px!important}.v-application .mr-xl-n8{margin-right:-32px!important}.v-application .mr-xl-n9{margin-right:-36px!important}.v-application .mr-xl-n10{margin-right:-40px!important}.v-application .mr-xl-n11{margin-right:-44px!important}.v-application .mr-xl-n12{margin-right:-48px!important}.v-application .mr-xl-n13{margin-right:-52px!important}.v-application .mr-xl-n14{margin-right:-56px!important}.v-application .mr-xl-n15{margin-right:-60px!important}.v-application .mr-xl-n16{margin-right:-64px!important}.v-application .mb-xl-n1{margin-bottom:-4px!important}.v-application .mb-xl-n2{margin-bottom:-8px!important}.v-application .mb-xl-n3{margin-bottom:-12px!important}.v-application .mb-xl-n4{margin-bottom:-16px!important}.v-application .mb-xl-n5{margin-bottom:-20px!important}.v-application .mb-xl-n6{margin-bottom:-24px!important}.v-application .mb-xl-n7{margin-bottom:-28px!important}.v-application .mb-xl-n8{margin-bottom:-32px!important}.v-application .mb-xl-n9{margin-bottom:-36px!important}.v-application .mb-xl-n10{margin-bottom:-40px!important}.v-application .mb-xl-n11{margin-bottom:-44px!important}.v-application .mb-xl-n12{margin-bottom:-48px!important}.v-application .mb-xl-n13{margin-bottom:-52px!important}.v-application .mb-xl-n14{margin-bottom:-56px!important}.v-application .mb-xl-n15{margin-bottom:-60px!important}.v-application .mb-xl-n16{margin-bottom:-64px!important}.v-application .ml-xl-n1{margin-left:-4px!important}.v-application .ml-xl-n2{margin-left:-8px!important}.v-application .ml-xl-n3{margin-left:-12px!important}.v-application .ml-xl-n4{margin-left:-16px!important}.v-application .ml-xl-n5{margin-left:-20px!important}.v-application .ml-xl-n6{margin-left:-24px!important}.v-application .ml-xl-n7{margin-left:-28px!important}.v-application .ml-xl-n8{margin-left:-32px!important}.v-application .ml-xl-n9{margin-left:-36px!important}.v-application .ml-xl-n10{margin-left:-40px!important}.v-application .ml-xl-n11{margin-left:-44px!important}.v-application .ml-xl-n12{margin-left:-48px!important}.v-application .ml-xl-n13{margin-left:-52px!important}.v-application .ml-xl-n14{margin-left:-56px!important}.v-application .ml-xl-n15{margin-left:-60px!important}.v-application .ml-xl-n16{margin-left:-64px!important}.v-application--is-ltr .ms-xl-n1{margin-left:-4px!important}.v-application--is-rtl .ms-xl-n1{margin-right:-4px!important}.v-application--is-ltr .ms-xl-n2{margin-left:-8px!important}.v-application--is-rtl .ms-xl-n2{margin-right:-8px!important}.v-application--is-ltr .ms-xl-n3{margin-left:-12px!important}.v-application--is-rtl .ms-xl-n3{margin-right:-12px!important}.v-application--is-ltr .ms-xl-n4{margin-left:-16px!important}.v-application--is-rtl .ms-xl-n4{margin-right:-16px!important}.v-application--is-ltr .ms-xl-n5{margin-left:-20px!important}.v-application--is-rtl .ms-xl-n5{margin-right:-20px!important}.v-application--is-ltr .ms-xl-n6{margin-left:-24px!important}.v-application--is-rtl .ms-xl-n6{margin-right:-24px!important}.v-application--is-ltr .ms-xl-n7{margin-left:-28px!important}.v-application--is-rtl .ms-xl-n7{margin-right:-28px!important}.v-application--is-ltr .ms-xl-n8{margin-left:-32px!important}.v-application--is-rtl .ms-xl-n8{margin-right:-32px!important}.v-application--is-ltr .ms-xl-n9{margin-left:-36px!important}.v-application--is-rtl .ms-xl-n9{margin-right:-36px!important}.v-application--is-ltr .ms-xl-n10{margin-left:-40px!important}.v-application--is-rtl .ms-xl-n10{margin-right:-40px!important}.v-application--is-ltr .ms-xl-n11{margin-left:-44px!important}.v-application--is-rtl .ms-xl-n11{margin-right:-44px!important}.v-application--is-ltr .ms-xl-n12{margin-left:-48px!important}.v-application--is-rtl .ms-xl-n12{margin-right:-48px!important}.v-application--is-ltr .ms-xl-n13{margin-left:-52px!important}.v-application--is-rtl .ms-xl-n13{margin-right:-52px!important}.v-application--is-ltr .ms-xl-n14{margin-left:-56px!important}.v-application--is-rtl .ms-xl-n14{margin-right:-56px!important}.v-application--is-ltr .ms-xl-n15{margin-left:-60px!important}.v-application--is-rtl .ms-xl-n15{margin-right:-60px!important}.v-application--is-ltr .ms-xl-n16{margin-left:-64px!important}.v-application--is-rtl .ms-xl-n16{margin-right:-64px!important}.v-application--is-ltr .me-xl-n1{margin-right:-4px!important}.v-application--is-rtl .me-xl-n1{margin-left:-4px!important}.v-application--is-ltr .me-xl-n2{margin-right:-8px!important}.v-application--is-rtl .me-xl-n2{margin-left:-8px!important}.v-application--is-ltr .me-xl-n3{margin-right:-12px!important}.v-application--is-rtl .me-xl-n3{margin-left:-12px!important}.v-application--is-ltr .me-xl-n4{margin-right:-16px!important}.v-application--is-rtl .me-xl-n4{margin-left:-16px!important}.v-application--is-ltr .me-xl-n5{margin-right:-20px!important}.v-application--is-rtl .me-xl-n5{margin-left:-20px!important}.v-application--is-ltr .me-xl-n6{margin-right:-24px!important}.v-application--is-rtl .me-xl-n6{margin-left:-24px!important}.v-application--is-ltr .me-xl-n7{margin-right:-28px!important}.v-application--is-rtl .me-xl-n7{margin-left:-28px!important}.v-application--is-ltr .me-xl-n8{margin-right:-32px!important}.v-application--is-rtl .me-xl-n8{margin-left:-32px!important}.v-application--is-ltr .me-xl-n9{margin-right:-36px!important}.v-application--is-rtl .me-xl-n9{margin-left:-36px!important}.v-application--is-ltr .me-xl-n10{margin-right:-40px!important}.v-application--is-rtl .me-xl-n10{margin-left:-40px!important}.v-application--is-ltr .me-xl-n11{margin-right:-44px!important}.v-application--is-rtl .me-xl-n11{margin-left:-44px!important}.v-application--is-ltr .me-xl-n12{margin-right:-48px!important}.v-application--is-rtl .me-xl-n12{margin-left:-48px!important}.v-application--is-ltr .me-xl-n13{margin-right:-52px!important}.v-application--is-rtl .me-xl-n13{margin-left:-52px!important}.v-application--is-ltr .me-xl-n14{margin-right:-56px!important}.v-application--is-rtl .me-xl-n14{margin-left:-56px!important}.v-application--is-ltr .me-xl-n15{margin-right:-60px!important}.v-application--is-rtl .me-xl-n15{margin-left:-60px!important}.v-application--is-ltr .me-xl-n16{margin-right:-64px!important}.v-application--is-rtl .me-xl-n16{margin-left:-64px!important}.v-application .pa-xl-0{padding:0!important}.v-application .pa-xl-1{padding:4px!important}.v-application .pa-xl-2{padding:8px!important}.v-application .pa-xl-3{padding:12px!important}.v-application .pa-xl-4{padding:16px!important}.v-application .pa-xl-5{padding:20px!important}.v-application .pa-xl-6{padding:24px!important}.v-application .pa-xl-7{padding:28px!important}.v-application .pa-xl-8{padding:32px!important}.v-application .pa-xl-9{padding:36px!important}.v-application .pa-xl-10{padding:40px!important}.v-application .pa-xl-11{padding:44px!important}.v-application .pa-xl-12{padding:48px!important}.v-application .pa-xl-13{padding:52px!important}.v-application .pa-xl-14{padding:56px!important}.v-application .pa-xl-15{padding:60px!important}.v-application .pa-xl-16{padding:64px!important}.v-application .px-xl-0{padding-right:0!important;padding-left:0!important}.v-application .px-xl-1{padding-right:4px!important;padding-left:4px!important}.v-application .px-xl-2{padding-right:8px!important;padding-left:8px!important}.v-application .px-xl-3{padding-right:12px!important;padding-left:12px!important}.v-application .px-xl-4{padding-right:16px!important;padding-left:16px!important}.v-application .px-xl-5{padding-right:20px!important;padding-left:20px!important}.v-application .px-xl-6{padding-right:24px!important;padding-left:24px!important}.v-application .px-xl-7{padding-right:28px!important;padding-left:28px!important}.v-application .px-xl-8{padding-right:32px!important;padding-left:32px!important}.v-application .px-xl-9{padding-right:36px!important;padding-left:36px!important}.v-application .px-xl-10{padding-right:40px!important;padding-left:40px!important}.v-application .px-xl-11{padding-right:44px!important;padding-left:44px!important}.v-application .px-xl-12{padding-right:48px!important;padding-left:48px!important}.v-application .px-xl-13{padding-right:52px!important;padding-left:52px!important}.v-application .px-xl-14{padding-right:56px!important;padding-left:56px!important}.v-application .px-xl-15{padding-right:60px!important;padding-left:60px!important}.v-application .px-xl-16{padding-right:64px!important;padding-left:64px!important}.v-application .py-xl-0{padding-top:0!important;padding-bottom:0!important}.v-application .py-xl-1{padding-top:4px!important;padding-bottom:4px!important}.v-application .py-xl-2{padding-top:8px!important;padding-bottom:8px!important}.v-application .py-xl-3{padding-top:12px!important;padding-bottom:12px!important}.v-application .py-xl-4{padding-top:16px!important;padding-bottom:16px!important}.v-application .py-xl-5{padding-top:20px!important;padding-bottom:20px!important}.v-application .py-xl-6{padding-top:24px!important;padding-bottom:24px!important}.v-application .py-xl-7{padding-top:28px!important;padding-bottom:28px!important}.v-application .py-xl-8{padding-top:32px!important;padding-bottom:32px!important}.v-application .py-xl-9{padding-top:36px!important;padding-bottom:36px!important}.v-application .py-xl-10{padding-top:40px!important;padding-bottom:40px!important}.v-application .py-xl-11{padding-top:44px!important;padding-bottom:44px!important}.v-application .py-xl-12{padding-top:48px!important;padding-bottom:48px!important}.v-application .py-xl-13{padding-top:52px!important;padding-bottom:52px!important}.v-application .py-xl-14{padding-top:56px!important;padding-bottom:56px!important}.v-application .py-xl-15{padding-top:60px!important;padding-bottom:60px!important}.v-application .py-xl-16{padding-top:64px!important;padding-bottom:64px!important}.v-application .pt-xl-0{padding-top:0!important}.v-application .pt-xl-1{padding-top:4px!important}.v-application .pt-xl-2{padding-top:8px!important}.v-application .pt-xl-3{padding-top:12px!important}.v-application .pt-xl-4{padding-top:16px!important}.v-application .pt-xl-5{padding-top:20px!important}.v-application .pt-xl-6{padding-top:24px!important}.v-application .pt-xl-7{padding-top:28px!important}.v-application .pt-xl-8{padding-top:32px!important}.v-application .pt-xl-9{padding-top:36px!important}.v-application .pt-xl-10{padding-top:40px!important}.v-application .pt-xl-11{padding-top:44px!important}.v-application .pt-xl-12{padding-top:48px!important}.v-application .pt-xl-13{padding-top:52px!important}.v-application .pt-xl-14{padding-top:56px!important}.v-application .pt-xl-15{padding-top:60px!important}.v-application .pt-xl-16{padding-top:64px!important}.v-application .pr-xl-0{padding-right:0!important}.v-application .pr-xl-1{padding-right:4px!important}.v-application .pr-xl-2{padding-right:8px!important}.v-application .pr-xl-3{padding-right:12px!important}.v-application .pr-xl-4{padding-right:16px!important}.v-application .pr-xl-5{padding-right:20px!important}.v-application .pr-xl-6{padding-right:24px!important}.v-application .pr-xl-7{padding-right:28px!important}.v-application .pr-xl-8{padding-right:32px!important}.v-application .pr-xl-9{padding-right:36px!important}.v-application .pr-xl-10{padding-right:40px!important}.v-application .pr-xl-11{padding-right:44px!important}.v-application .pr-xl-12{padding-right:48px!important}.v-application .pr-xl-13{padding-right:52px!important}.v-application .pr-xl-14{padding-right:56px!important}.v-application .pr-xl-15{padding-right:60px!important}.v-application .pr-xl-16{padding-right:64px!important}.v-application .pb-xl-0{padding-bottom:0!important}.v-application .pb-xl-1{padding-bottom:4px!important}.v-application .pb-xl-2{padding-bottom:8px!important}.v-application .pb-xl-3{padding-bottom:12px!important}.v-application .pb-xl-4{padding-bottom:16px!important}.v-application .pb-xl-5{padding-bottom:20px!important}.v-application .pb-xl-6{padding-bottom:24px!important}.v-application .pb-xl-7{padding-bottom:28px!important}.v-application .pb-xl-8{padding-bottom:32px!important}.v-application .pb-xl-9{padding-bottom:36px!important}.v-application .pb-xl-10{padding-bottom:40px!important}.v-application .pb-xl-11{padding-bottom:44px!important}.v-application .pb-xl-12{padding-bottom:48px!important}.v-application .pb-xl-13{padding-bottom:52px!important}.v-application .pb-xl-14{padding-bottom:56px!important}.v-application .pb-xl-15{padding-bottom:60px!important}.v-application .pb-xl-16{padding-bottom:64px!important}.v-application .pl-xl-0{padding-left:0!important}.v-application .pl-xl-1{padding-left:4px!important}.v-application .pl-xl-2{padding-left:8px!important}.v-application .pl-xl-3{padding-left:12px!important}.v-application .pl-xl-4{padding-left:16px!important}.v-application .pl-xl-5{padding-left:20px!important}.v-application .pl-xl-6{padding-left:24px!important}.v-application .pl-xl-7{padding-left:28px!important}.v-application .pl-xl-8{padding-left:32px!important}.v-application .pl-xl-9{padding-left:36px!important}.v-application .pl-xl-10{padding-left:40px!important}.v-application .pl-xl-11{padding-left:44px!important}.v-application .pl-xl-12{padding-left:48px!important}.v-application .pl-xl-13{padding-left:52px!important}.v-application .pl-xl-14{padding-left:56px!important}.v-application .pl-xl-15{padding-left:60px!important}.v-application .pl-xl-16{padding-left:64px!important}.v-application--is-ltr .ps-xl-0{padding-left:0!important}.v-application--is-rtl .ps-xl-0{padding-right:0!important}.v-application--is-ltr .ps-xl-1{padding-left:4px!important}.v-application--is-rtl .ps-xl-1{padding-right:4px!important}.v-application--is-ltr .ps-xl-2{padding-left:8px!important}.v-application--is-rtl .ps-xl-2{padding-right:8px!important}.v-application--is-ltr .ps-xl-3{padding-left:12px!important}.v-application--is-rtl .ps-xl-3{padding-right:12px!important}.v-application--is-ltr .ps-xl-4{padding-left:16px!important}.v-application--is-rtl .ps-xl-4{padding-right:16px!important}.v-application--is-ltr .ps-xl-5{padding-left:20px!important}.v-application--is-rtl .ps-xl-5{padding-right:20px!important}.v-application--is-ltr .ps-xl-6{padding-left:24px!important}.v-application--is-rtl .ps-xl-6{padding-right:24px!important}.v-application--is-ltr .ps-xl-7{padding-left:28px!important}.v-application--is-rtl .ps-xl-7{padding-right:28px!important}.v-application--is-ltr .ps-xl-8{padding-left:32px!important}.v-application--is-rtl .ps-xl-8{padding-right:32px!important}.v-application--is-ltr .ps-xl-9{padding-left:36px!important}.v-application--is-rtl .ps-xl-9{padding-right:36px!important}.v-application--is-ltr .ps-xl-10{padding-left:40px!important}.v-application--is-rtl .ps-xl-10{padding-right:40px!important}.v-application--is-ltr .ps-xl-11{padding-left:44px!important}.v-application--is-rtl .ps-xl-11{padding-right:44px!important}.v-application--is-ltr .ps-xl-12{padding-left:48px!important}.v-application--is-rtl .ps-xl-12{padding-right:48px!important}.v-application--is-ltr .ps-xl-13{padding-left:52px!important}.v-application--is-rtl .ps-xl-13{padding-right:52px!important}.v-application--is-ltr .ps-xl-14{padding-left:56px!important}.v-application--is-rtl .ps-xl-14{padding-right:56px!important}.v-application--is-ltr .ps-xl-15{padding-left:60px!important}.v-application--is-rtl .ps-xl-15{padding-right:60px!important}.v-application--is-ltr .ps-xl-16{padding-left:64px!important}.v-application--is-rtl .ps-xl-16{padding-right:64px!important}.v-application--is-ltr .pe-xl-0{padding-right:0!important}.v-application--is-rtl .pe-xl-0{padding-left:0!important}.v-application--is-ltr .pe-xl-1{padding-right:4px!important}.v-application--is-rtl .pe-xl-1{padding-left:4px!important}.v-application--is-ltr .pe-xl-2{padding-right:8px!important}.v-application--is-rtl .pe-xl-2{padding-left:8px!important}.v-application--is-ltr .pe-xl-3{padding-right:12px!important}.v-application--is-rtl .pe-xl-3{padding-left:12px!important}.v-application--is-ltr .pe-xl-4{padding-right:16px!important}.v-application--is-rtl .pe-xl-4{padding-left:16px!important}.v-application--is-ltr .pe-xl-5{padding-right:20px!important}.v-application--is-rtl .pe-xl-5{padding-left:20px!important}.v-application--is-ltr .pe-xl-6{padding-right:24px!important}.v-application--is-rtl .pe-xl-6{padding-left:24px!important}.v-application--is-ltr .pe-xl-7{padding-right:28px!important}.v-application--is-rtl .pe-xl-7{padding-left:28px!important}.v-application--is-ltr .pe-xl-8{padding-right:32px!important}.v-application--is-rtl .pe-xl-8{padding-left:32px!important}.v-application--is-ltr .pe-xl-9{padding-right:36px!important}.v-application--is-rtl .pe-xl-9{padding-left:36px!important}.v-application--is-ltr .pe-xl-10{padding-right:40px!important}.v-application--is-rtl .pe-xl-10{padding-left:40px!important}.v-application--is-ltr .pe-xl-11{padding-right:44px!important}.v-application--is-rtl .pe-xl-11{padding-left:44px!important}.v-application--is-ltr .pe-xl-12{padding-right:48px!important}.v-application--is-rtl .pe-xl-12{padding-left:48px!important}.v-application--is-ltr .pe-xl-13{padding-right:52px!important}.v-application--is-rtl .pe-xl-13{padding-left:52px!important}.v-application--is-ltr .pe-xl-14{padding-right:56px!important}.v-application--is-rtl .pe-xl-14{padding-left:56px!important}.v-application--is-ltr .pe-xl-15{padding-right:60px!important}.v-application--is-rtl .pe-xl-15{padding-left:60px!important}.v-application--is-ltr .pe-xl-16{padding-right:64px!important}.v-application--is-rtl .pe-xl-16{padding-left:64px!important}.v-application .text-xl-left{text-align:left!important}.v-application .text-xl-right{text-align:right!important}.v-application .text-xl-center{text-align:center!important}.v-application .text-xl-justify{text-align:justify!important}.v-application .text-xl-start{text-align:start!important}.v-application .text-xl-end{text-align:end!important}.v-application .text-xl-h1{font-size:6rem!important;line-height:6rem;letter-spacing:-.015625em!important}.v-application .text-xl-h1,.v-application .text-xl-h2{font-weight:300;font-family:Roboto,sans-serif!important}.v-application .text-xl-h2{font-size:3.75rem!important;line-height:3.75rem;letter-spacing:-.0083333333em!important}.v-application .text-xl-h3{font-size:3rem!important;line-height:3.125rem;letter-spacing:normal!important}.v-application .text-xl-h3,.v-application .text-xl-h4{font-weight:400;font-family:Roboto,sans-serif!important}.v-application .text-xl-h4{font-size:2.125rem!important;line-height:2.5rem;letter-spacing:.0073529412em!important}.v-application .text-xl-h5{font-size:1.5rem!important;font-weight:400;letter-spacing:normal!important}.v-application .text-xl-h5,.v-application .text-xl-h6{line-height:2rem;font-family:Roboto,sans-serif!important}.v-application .text-xl-h6{font-size:1.25rem!important;font-weight:500;letter-spacing:.0125em!important}.v-application .text-xl-subtitle-1{font-size:1rem!important;font-weight:400;line-height:1.75rem;letter-spacing:.009375em!important;font-family:Roboto,sans-serif!important}.v-application .text-xl-subtitle-2{font-size:.875rem!important;font-weight:500;line-height:1.375rem;letter-spacing:.0071428571em!important;font-family:Roboto,sans-serif!important}.v-application .text-xl-body-1{font-size:1rem!important;font-weight:400;line-height:1.5rem;letter-spacing:.03125em!important;font-family:Roboto,sans-serif!important}.v-application .text-xl-body-2{font-weight:400;line-height:1.25rem;letter-spacing:.0178571429em!important}.v-application .text-xl-body-2,.v-application .text-xl-button{font-size:.875rem!important;font-family:Roboto,sans-serif!important}.v-application .text-xl-button{font-weight:500;line-height:2.25rem;letter-spacing:.0892857143em!important;text-transform:uppercase!important}.v-application .text-xl-caption{font-weight:400;line-height:1.25rem;letter-spacing:.0333333333em!important}.v-application .text-xl-caption,.v-application .text-xl-overline{font-size:.75rem!important;font-family:Roboto,sans-serif!important}.v-application .text-xl-overline{font-weight:500;line-height:2rem;letter-spacing:.1666666667em!important;text-transform:uppercase!important}}@media print{.v-application .d-print-none{display:none!important}.v-application .d-print-inline{display:inline!important}.v-application .d-print-inline-block{display:inline-block!important}.v-application .d-print-block{display:block!important}.v-application .d-print-table{display:table!important}.v-application .d-print-table-row{display:table-row!important}.v-application .d-print-table-cell{display:table-cell!important}.v-application .d-print-flex{display:flex!important}.v-application .d-print-inline-flex{display:inline-flex!important}.v-application .float-print-none{float:none!important}.v-application .float-print-left{float:left!important}.v-application .float-print-right{float:right!important}.v-application--is-rtl .float-print-end{float:left!important}.v-application--is-ltr .float-print-end,.v-application--is-rtl .float-print-start{float:right!important}.v-application--is-ltr .float-print-start{float:left!important}}.theme--light.v-progress-linear{color:rgba(0,0,0,.87)}.theme--dark.v-progress-linear{color:#fff}.v-progress-linear{background:transparent;overflow:hidden;position:relative;transition:.2s cubic-bezier(.4,0,.6,1);width:100%}.v-progress-linear__buffer{height:inherit;left:0;position:absolute;top:0;transition:inherit;width:100%}.v-progress-linear--reverse .v-progress-linear__buffer{left:auto;right:0}.v-progress-linear__background{bottom:0;left:0;position:absolute;top:0;transition:inherit}.v-progress-linear--reverse .v-progress-linear__background{left:auto;right:0}.v-progress-linear__content{align-items:center;display:flex;height:100%;left:0;justify-content:center;position:absolute;top:0;width:100%}.v-progress-linear--reverse .v-progress-linear__content{left:auto;right:0}.v-progress-linear__determinate{height:inherit;left:0;position:absolute;transition:inherit}.v-progress-linear--reverse .v-progress-linear__determinate{left:auto;right:0}.v-progress-linear .v-progress-linear__indeterminate .long,.v-progress-linear .v-progress-linear__indeterminate .short{animation-play-state:paused;background-color:inherit;bottom:0;height:inherit;left:0;position:absolute;right:auto;top:0;width:auto;will-change:left,right}.v-progress-linear .v-progress-linear__indeterminate--active .long{animation-name:indeterminate-ltr;animation-duration:2.2s;animation-iteration-count:infinite}.v-progress-linear .v-progress-linear__indeterminate--active .short{animation-name:indeterminate-short-ltr;animation-duration:2.2s;animation-iteration-count:infinite}.v-progress-linear--reverse .v-progress-linear__indeterminate .long,.v-progress-linear--reverse .v-progress-linear__indeterminate .short{left:auto;right:0}.v-progress-linear--reverse .v-progress-linear__indeterminate--active .long{animation-name:indeterminate-rtl}.v-progress-linear--reverse .v-progress-linear__indeterminate--active .short{animation-name:indeterminate-short-rtl}.v-progress-linear__stream{animation:stream-ltr .25s linear infinite;animation-play-state:paused;border-color:currentColor;border-top:4px dotted;bottom:0;left:auto;right:-8px;opacity:.3;pointer-events:none;position:absolute;top:calc(50% - 2px);transition:inherit}.v-progress-linear--reverse .v-progress-linear__stream{animation:stream-rtl .25s linear infinite;left:-8px;right:auto}.v-progress-linear__wrapper{overflow:hidden;position:relative;transition:inherit}.v-progress-linear--absolute,.v-progress-linear--fixed{left:0;z-index:1}.v-progress-linear--absolute{position:absolute}.v-progress-linear--fixed{position:fixed}.v-progress-linear--reactive .v-progress-linear__content{pointer-events:none}.v-progress-linear--rounded{border-radius:4px}.v-progress-linear--striped .v-progress-linear__determinate{background-image:linear-gradient(135deg,hsla(0,0%,100%,.25) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.25) 0,hsla(0,0%,100%,.25) 75%,transparent 0,transparent);background-size:40px 40px;background-repeat:repeat}.v-progress-linear--query .v-progress-linear__indeterminate--active .long{animation-name:query-ltr;animation-duration:2s;animation-iteration-count:infinite}.v-progress-linear--query .v-progress-linear__indeterminate--active .short{animation-name:query-short-ltr;animation-duration:2s;animation-iteration-count:infinite}.v-progress-linear--query.v-progress-linear--reverse .v-progress-linear__indeterminate--active .long{animation-name:query-rtl}.v-progress-linear--query.v-progress-linear--reverse .v-progress-linear__indeterminate--active .short{animation-name:query-short-rtl}.v-progress-linear--visible .v-progress-linear__indeterminate--active .long,.v-progress-linear--visible .v-progress-linear__indeterminate--active .short,.v-progress-linear--visible .v-progress-linear__stream{animation-play-state:running}@keyframes indeterminate-ltr{0%{left:-90%;right:100%}60%{left:-90%;right:100%}to{left:100%;right:-35%}}@keyframes indeterminate-rtl{0%{left:100%;right:-90%}60%{left:100%;right:-90%}to{left:-35%;right:100%}}@keyframes indeterminate-short-ltr{0%{left:-200%;right:100%}60%{left:107%;right:-8%}to{left:107%;right:-8%}}@keyframes indeterminate-short-rtl{0%{left:100%;right:-200%}60%{left:-8%;right:107%}to{left:-8%;right:107%}}@keyframes query-ltr{0%{right:-90%;left:100%}60%{right:-90%;left:100%}to{right:100%;left:-35%}}@keyframes query-rtl{0%{right:100%;left:-90%}60%{right:100%;left:-90%}to{right:-35%;left:100%}}@keyframes query-short-ltr{0%{right:-200%;left:100%}60%{right:107%;left:-8%}to{right:107%;left:-8%}}@keyframes query-short-rtl{0%{right:100%;left:-200%}60%{right:-8%;left:107%}to{right:-8%;left:107%}}@keyframes stream-ltr{to{transform:translateX(-8px)}}@keyframes stream-rtl{to{transform:translateX(8px)}}.v-ripple__container{border-radius:inherit;width:100%;height:100%;z-index:0;contain:strict}.v-ripple__animation,.v-ripple__container{color:inherit;position:absolute;left:0;top:0;overflow:hidden;pointer-events:none}.v-ripple__animation{border-radius:50%;background:currentColor;opacity:0;will-change:transform,opacity}.v-ripple__animation--enter{transition:none;opacity:0}.v-ripple__animation--in{transition:transform .25s cubic-bezier(.4,0,.2,1),opacity .1s cubic-bezier(.4,0,.2,1);opacity:.25}.v-ripple__animation--out{transition:opacity .3s cubic-bezier(.4,0,.2,1);opacity:0}.theme--light.v-footer{background-color:#f5f5f5;color:rgba(0,0,0,.87)}.theme--dark.v-footer{background-color:#272727;color:#fff}.v-sheet.v-footer{border-radius:0}.v-sheet.v-footer:not(.v-sheet--outlined){box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.v-sheet.v-footer.v-sheet--shaped{border-radius:16px 0}.v-footer{align-items:center;display:flex;flex:0 1 auto!important;flex-wrap:wrap;padding:6px 16px;position:relative;transition-duration:.2s;transition-property:background-color,left,right;transition-timing-function:cubic-bezier(.4,0,.2,1)}.v-footer:not([data-booted=true]){transition:none!important}.v-footer--absolute,.v-footer--fixed{z-index:3}.v-footer--absolute{position:absolute}.v-footer--absolute:not(.v-footer--inset){width:100%}.v-footer--fixed{position:fixed}.v-footer--padless{padding:0}.theme--light.v-toolbar.v-sheet{background-color:#fff}.theme--dark.v-toolbar.v-sheet{background-color:#272727}.v-sheet.v-toolbar{border-radius:0}.v-sheet.v-toolbar:not(.v-sheet--outlined){box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)}.v-sheet.v-toolbar.v-sheet--shaped{border-radius:16px 0}.v-toolbar{contain:layout;display:block;flex:1 1 auto;max-width:100%;transition:transform .2s cubic-bezier(.4,0,.2,1),background-color .2s cubic-bezier(.4,0,.2,1),left .2s cubic-bezier(.4,0,.2,1),right .2s cubic-bezier(.4,0,.2,1),box-shadow .28s cubic-bezier(.4,0,.2,1),max-width .25s cubic-bezier(.4,0,.2,1),width .25s cubic-bezier(.4,0,.2,1);position:relative;box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)}.v-toolbar .v-input{padding-top:0;margin-top:0}.v-toolbar__content,.v-toolbar__extension{padding:4px 16px}.v-toolbar__content .v-btn.v-btn--icon.v-size--default,.v-toolbar__extension .v-btn.v-btn--icon.v-size--default{height:48px;width:48px}.v-application--is-ltr .v-toolbar__content>.v-btn.v-btn--icon:first-child,.v-application--is-ltr .v-toolbar__extension>.v-btn.v-btn--icon:first-child{margin-left:-12px}.v-application--is-rtl .v-toolbar__content>.v-btn.v-btn--icon:first-child,.v-application--is-rtl .v-toolbar__extension>.v-btn.v-btn--icon:first-child{margin-right:-12px}.v-application--is-ltr .v-toolbar__content>.v-btn.v-btn--icon:first-child+.v-toolbar__title,.v-application--is-ltr .v-toolbar__extension>.v-btn.v-btn--icon:first-child+.v-toolbar__title{padding-left:20px}.v-application--is-rtl .v-toolbar__content>.v-btn.v-btn--icon:first-child+.v-toolbar__title,.v-application--is-rtl .v-toolbar__extension>.v-btn.v-btn--icon:first-child+.v-toolbar__title{padding-right:20px}.v-application--is-ltr .v-toolbar__content>.v-btn.v-btn--icon:last-child,.v-application--is-ltr .v-toolbar__extension>.v-btn.v-btn--icon:last-child{margin-right:-12px}.v-application--is-rtl .v-toolbar__content>.v-btn.v-btn--icon:last-child,.v-application--is-rtl .v-toolbar__extension>.v-btn.v-btn--icon:last-child{margin-left:-12px}.v-toolbar__content>.v-tabs,.v-toolbar__extension>.v-tabs{height:inherit;margin-top:-4px;margin-bottom:-4px}.v-toolbar__content>.v-tabs>.v-slide-group.v-tabs-bar,.v-toolbar__extension>.v-tabs>.v-slide-group.v-tabs-bar{background-color:inherit;height:inherit}.v-toolbar__content>.v-tabs:first-child,.v-toolbar__extension>.v-tabs:first-child{margin-left:-16px}.v-toolbar__content>.v-tabs:last-child,.v-toolbar__extension>.v-tabs:last-child{margin-right:-16px}.v-toolbar__content,.v-toolbar__extension{align-items:center;display:flex;position:relative;z-index:0}.v-toolbar__image{position:absolute;top:0;bottom:0;width:100%;z-index:0;contain:strict}.v-toolbar__image,.v-toolbar__image .v-image{border-radius:inherit}.v-toolbar__items{display:flex;height:inherit}.v-toolbar__items>.v-btn{border-radius:0;height:100%!important;max-height:none}.v-toolbar__title{font-size:1.25rem;line-height:1.5;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.v-toolbar.v-toolbar--absolute{position:absolute;top:0;z-index:1}.v-toolbar.v-toolbar--bottom{top:auto;bottom:0}.v-toolbar.v-toolbar--collapse .v-toolbar__title{white-space:nowrap}.v-toolbar.v-toolbar--collapsed{max-width:112px;overflow:hidden}.v-application--is-ltr .v-toolbar.v-toolbar--collapsed{border-bottom-right-radius:24px}.v-application--is-rtl .v-toolbar.v-toolbar--collapsed{border-bottom-left-radius:24px}.v-toolbar.v-toolbar--collapsed .v-toolbar__extension,.v-toolbar.v-toolbar--collapsed .v-toolbar__title{display:none}.v-toolbar--dense .v-toolbar__content,.v-toolbar--dense .v-toolbar__extension{padding-top:0;padding-bottom:0}.v-toolbar--flat{box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)!important}.v-toolbar--floating{display:inline-flex}.v-toolbar--prominent .v-toolbar__content{align-items:flex-start}.v-toolbar--prominent .v-toolbar__title{font-size:1.5rem;padding-top:6px}.v-toolbar--prominent:not(.v-toolbar--bottom) .v-toolbar__title{align-self:flex-end;padding-bottom:6px;padding-top:0}.theme--light.v-image{color:rgba(0,0,0,.87)}.theme--dark.v-image{color:#fff}.v-image{z-index:0}.v-image__image,.v-image__placeholder{z-index:-1;position:absolute;top:0;left:0;width:100%;height:100%}.v-image__image{background-repeat:no-repeat}.v-image__image--preload{filter:blur(2px)}.v-image__image--contain{background-size:contain}.v-image__image--cover{background-size:cover}.v-responsive{position:relative;overflow:hidden;flex:1 0 auto;max-width:100%;display:flex}.v-responsive__content{flex:1 0 0px;max-width:100%}.v-application--is-ltr .v-responsive__sizer~.v-responsive__content{margin-left:-100%}.v-application--is-rtl .v-responsive__sizer~.v-responsive__content{margin-right:-100%}.v-responsive__sizer{transition:padding-bottom .2s cubic-bezier(.25,.8,.5,1);flex:1 0 0px}.theme--light.v-app-bar.v-toolbar.v-sheet{background-color:#f5f5f5}.theme--dark.v-app-bar.v-toolbar.v-sheet{background-color:#272727}.v-sheet.v-app-bar.v-toolbar{border-radius:0}.v-sheet.v-app-bar.v-toolbar:not(.v-sheet--outlined){box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)}.v-sheet.v-app-bar.v-toolbar.v-sheet--shaped{border-radius:16px 0}.v-app-bar:not([data-booted=true]){transition:none!important}.v-app-bar.v-app-bar--fixed{position:fixed;top:0;z-index:5}.v-app-bar.v-app-bar.v-app-bar--hide-shadow{box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)!important}.v-app-bar--fade-img-on-scroll .v-toolbar__image .v-image__image{transition:opacity .4s cubic-bezier(.4,0,.2,1)}.v-app-bar.v-toolbar--prominent.v-app-bar--shrink-on-scroll .v-toolbar__image{will-change:opacity}.v-app-bar.v-toolbar--prominent.v-app-bar--shrink-on-scroll.v-app-bar--collapse-on-scroll .v-toolbar__extension{display:none}.v-app-bar.v-toolbar--prominent.v-app-bar--shrink-on-scroll.v-app-bar--is-scrolled .v-toolbar__title{padding-top:9px}.v-app-bar.v-toolbar--prominent.v-app-bar--shrink-on-scroll.v-app-bar--is-scrolled:not(.v-app-bar--bottom) .v-toolbar__title{padding-bottom:9px}.v-app-bar.v-app-bar--shrink-on-scroll .v-toolbar__title{font-size:inherit}.v-app-bar-title__content,.v-app-bar-title__placeholder{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.v-app-bar-title__content{position:absolute}.theme--light.v-application{background:#fff;color:rgba(0,0,0,.87)}.theme--light.v-application .text--primary{color:rgba(0,0,0,.87)!important}.theme--light.v-application .text--secondary{color:rgba(0,0,0,.6)!important}.theme--light.v-application .text--disabled{color:rgba(0,0,0,.38)!important}.theme--dark.v-application{background:#121212;color:#fff}.theme--dark.v-application .text--primary{color:#fff!important}.theme--dark.v-application .text--secondary{color:hsla(0,0%,100%,.7)!important}.theme--dark.v-application .text--disabled{color:hsla(0,0%,100%,.5)!important}.v-application{display:flex;position:relative}.v-application a{cursor:pointer}.v-application--is-rtl{direction:rtl}.v-application--wrap{flex:1 1 auto;backface-visibility:hidden;display:flex;flex-direction:column;min-height:100vh;max-width:100%;position:relative}@-moz-document url-prefix(){@media print{.v-application,.v-application--wrap{display:block}}}.v-main{display:flex;flex:1 0 auto;max-width:100%;transition:.2s cubic-bezier(.4,0,.2,1)}.v-main:not([data-booted=true]){transition:none!important}.v-main__wrap{flex:1 1 auto;max-width:100%;position:relative}@-moz-document url-prefix(){@media print{.v-main{display:block}}}@font-face{font-family:Material Design Icons;src:url(/mobilitydcatap-ui/fonts/materialdesignicons-webfont.0766edc9.eot);src:url(/mobilitydcatap-ui/fonts/materialdesignicons-webfont.0766edc9.eot?#iefix&v=7.4.47) format("embedded-opentype"),url(/mobilitydcatap-ui/fonts/materialdesignicons-webfont.fbaef2a9.woff2) format("woff2"),url(/mobilitydcatap-ui/fonts/materialdesignicons-webfont.e659bf56.woff) format("woff"),url(/mobilitydcatap-ui/fonts/materialdesignicons-webfont.714a4eee.ttf) format("truetype");font-weight:400;font-style:normal}.mdi-set,.mdi:before{display:inline-block;font:normal normal normal 24px/1 Material Design Icons;font-size:inherit;text-rendering:auto;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mdi-ab-testing:before{content:"\F01C9"}.mdi-abacus:before{content:"\F16E0"}.mdi-abjad-arabic:before{content:"\F1328"}.mdi-abjad-hebrew:before{content:"\F1329"}.mdi-abugida-devanagari:before{content:"\F132A"}.mdi-abugida-thai:before{content:"\F132B"}.mdi-access-point:before{content:"\F0003"}.mdi-access-point-check:before{content:"\F1538"}.mdi-access-point-minus:before{content:"\F1539"}.mdi-access-point-network:before{content:"\F0002"}.mdi-access-point-network-off:before{content:"\F0BE1"}.mdi-access-point-off:before{content:"\F1511"}.mdi-access-point-plus:before{content:"\F153A"}.mdi-access-point-remove:before{content:"\F153B"}.mdi-account:before{content:"\F0004"}.mdi-account-alert:before{content:"\F0005"}.mdi-account-alert-outline:before{content:"\F0B50"}.mdi-account-arrow-down:before{content:"\F1868"}.mdi-account-arrow-down-outline:before{content:"\F1869"}.mdi-account-arrow-left:before{content:"\F0B51"}.mdi-account-arrow-left-outline:before{content:"\F0B52"}.mdi-account-arrow-right:before{content:"\F0B53"}.mdi-account-arrow-right-outline:before{content:"\F0B54"}.mdi-account-arrow-up:before{content:"\F1867"}.mdi-account-arrow-up-outline:before{content:"\F186A"}.mdi-account-badge:before{content:"\F1B0A"}.mdi-account-badge-outline:before{content:"\F1B0B"}.mdi-account-box:before{content:"\F0006"}.mdi-account-box-edit-outline:before{content:"\F1CC8"}.mdi-account-box-minus-outline:before{content:"\F1CC9"}.mdi-account-box-multiple:before{content:"\F0934"}.mdi-account-box-multiple-outline:before{content:"\F100A"}.mdi-account-box-outline:before{content:"\F0007"}.mdi-account-box-plus-outline:before{content:"\F1CCA"}.mdi-account-cancel:before{content:"\F12DF"}.mdi-account-cancel-outline:before{content:"\F12E0"}.mdi-account-card:before{content:"\F1BA4"}.mdi-account-card-outline:before{content:"\F1BA5"}.mdi-account-cash:before{content:"\F1097"}.mdi-account-cash-outline:before{content:"\F1098"}.mdi-account-check:before{content:"\F0008"}.mdi-account-check-outline:before{content:"\F0BE2"}.mdi-account-child:before{content:"\F0A89"}.mdi-account-child-circle:before{content:"\F0A8A"}.mdi-account-child-outline:before{content:"\F10C8"}.mdi-account-circle:before{content:"\F0009"}.mdi-account-circle-outline:before{content:"\F0B55"}.mdi-account-clock:before{content:"\F0B56"}.mdi-account-clock-outline:before{content:"\F0B57"}.mdi-account-cog:before{content:"\F1370"}.mdi-account-cog-outline:before{content:"\F1371"}.mdi-account-convert:before{content:"\F000A"}.mdi-account-convert-outline:before{content:"\F1301"}.mdi-account-cowboy-hat:before{content:"\F0E9B"}.mdi-account-cowboy-hat-outline:before{content:"\F17F3"}.mdi-account-credit-card:before{content:"\F1BA6"}.mdi-account-credit-card-outline:before{content:"\F1BA7"}.mdi-account-details:before{content:"\F0631"}.mdi-account-details-outline:before{content:"\F1372"}.mdi-account-edit:before{content:"\F06BC"}.mdi-account-edit-outline:before{content:"\F0FFB"}.mdi-account-eye:before{content:"\F0420"}.mdi-account-eye-outline:before{content:"\F127B"}.mdi-account-file:before{content:"\F1CA7"}.mdi-account-file-outline:before{content:"\F1CA8"}.mdi-account-file-text:before{content:"\F1CA9"}.mdi-account-file-text-outline:before{content:"\F1CAA"}.mdi-account-filter:before{content:"\F0936"}.mdi-account-filter-outline:before{content:"\F0F9D"}.mdi-account-group:before{content:"\F0849"}.mdi-account-group-outline:before{content:"\F0B58"}.mdi-account-hard-hat:before{content:"\F05B5"}.mdi-account-hard-hat-outline:before{content:"\F1A1F"}.mdi-account-heart:before{content:"\F0899"}.mdi-account-heart-outline:before{content:"\F0BE3"}.mdi-account-injury:before{content:"\F1815"}.mdi-account-injury-outline:before{content:"\F1816"}.mdi-account-key:before{content:"\F000B"}.mdi-account-key-outline:before{content:"\F0BE4"}.mdi-account-lock:before{content:"\F115E"}.mdi-account-lock-open:before{content:"\F1960"}.mdi-account-lock-open-outline:before{content:"\F1961"}.mdi-account-lock-outline:before{content:"\F115F"}.mdi-account-minus:before{content:"\F000D"}.mdi-account-minus-outline:before{content:"\F0AEC"}.mdi-account-multiple:before{content:"\F000E"}.mdi-account-multiple-check:before{content:"\F08C5"}.mdi-account-multiple-check-outline:before{content:"\F11FE"}.mdi-account-multiple-minus:before{content:"\F05D3"}.mdi-account-multiple-minus-outline:before{content:"\F0BE5"}.mdi-account-multiple-outline:before{content:"\F000F"}.mdi-account-multiple-plus:before{content:"\F0010"}.mdi-account-multiple-plus-outline:before{content:"\F0800"}.mdi-account-multiple-remove:before{content:"\F120A"}.mdi-account-multiple-remove-outline:before{content:"\F120B"}.mdi-account-music:before{content:"\F0803"}.mdi-account-music-outline:before{content:"\F0CE9"}.mdi-account-network:before{content:"\F0011"}.mdi-account-network-off:before{content:"\F1AF1"}.mdi-account-network-off-outline:before{content:"\F1AF2"}.mdi-account-network-outline:before{content:"\F0BE6"}.mdi-account-off:before{content:"\F0012"}.mdi-account-off-outline:before{content:"\F0BE7"}.mdi-account-outline:before{content:"\F0013"}.mdi-account-plus:before{content:"\F0014"}.mdi-account-plus-outline:before{content:"\F0801"}.mdi-account-question:before{content:"\F0B59"}.mdi-account-question-outline:before{content:"\F0B5A"}.mdi-account-reactivate:before{content:"\F152B"}.mdi-account-reactivate-outline:before{content:"\F152C"}.mdi-account-remove:before{content:"\F0015"}.mdi-account-remove-outline:before{content:"\F0AED"}.mdi-account-school:before{content:"\F1A20"}.mdi-account-school-outline:before{content:"\F1A21"}.mdi-account-search:before{content:"\F0016"}.mdi-account-search-outline:before{content:"\F0935"}.mdi-account-settings:before{content:"\F0630"}.mdi-account-settings-outline:before{content:"\F10C9"}.mdi-account-star:before{content:"\F0017"}.mdi-account-star-outline:before{content:"\F0BE8"}.mdi-account-supervisor:before{content:"\F0A8B"}.mdi-account-supervisor-circle:before{content:"\F0A8C"}.mdi-account-supervisor-circle-outline:before{content:"\F14EC"}.mdi-account-supervisor-outline:before{content:"\F112D"}.mdi-account-switch:before{content:"\F0019"}.mdi-account-switch-outline:before{content:"\F04CB"}.mdi-account-sync:before{content:"\F191B"}.mdi-account-sync-outline:before{content:"\F191C"}.mdi-account-tag:before{content:"\F1C1B"}.mdi-account-tag-outline:before{content:"\F1C1C"}.mdi-account-tie:before{content:"\F0CE3"}.mdi-account-tie-hat:before{content:"\F1898"}.mdi-account-tie-hat-outline:before{content:"\F1899"}.mdi-account-tie-outline:before{content:"\F10CA"}.mdi-account-tie-voice:before{content:"\F1308"}.mdi-account-tie-voice-off:before{content:"\F130A"}.mdi-account-tie-voice-off-outline:before{content:"\F130B"}.mdi-account-tie-voice-outline:before{content:"\F1309"}.mdi-account-tie-woman:before{content:"\F1A8C"}.mdi-account-voice:before{content:"\F05CB"}.mdi-account-voice-off:before{content:"\F0ED4"}.mdi-account-wrench:before{content:"\F189A"}.mdi-account-wrench-outline:before{content:"\F189B"}.mdi-adjust:before{content:"\F001A"}.mdi-advertisements:before{content:"\F192A"}.mdi-advertisements-off:before{content:"\F192B"}.mdi-air-conditioner:before{content:"\F001B"}.mdi-air-filter:before{content:"\F0D43"}.mdi-air-horn:before{content:"\F0DAC"}.mdi-air-humidifier:before{content:"\F1099"}.mdi-air-humidifier-off:before{content:"\F1466"}.mdi-air-purifier:before{content:"\F0D44"}.mdi-air-purifier-off:before{content:"\F1B57"}.mdi-airbag:before{content:"\F0BE9"}.mdi-airballoon:before{content:"\F001C"}.mdi-airballoon-outline:before{content:"\F100B"}.mdi-airplane:before{content:"\F001D"}.mdi-airplane-alert:before{content:"\F187A"}.mdi-airplane-check:before{content:"\F187B"}.mdi-airplane-clock:before{content:"\F187C"}.mdi-airplane-cog:before{content:"\F187D"}.mdi-airplane-edit:before{content:"\F187E"}.mdi-airplane-landing:before{content:"\F05D4"}.mdi-airplane-marker:before{content:"\F187F"}.mdi-airplane-minus:before{content:"\F1880"}.mdi-airplane-off:before{content:"\F001E"}.mdi-airplane-plus:before{content:"\F1881"}.mdi-airplane-remove:before{content:"\F1882"}.mdi-airplane-search:before{content:"\F1883"}.mdi-airplane-settings:before{content:"\F1884"}.mdi-airplane-takeoff:before{content:"\F05D5"}.mdi-airport:before{content:"\F084B"}.mdi-alarm:before{content:"\F0020"}.mdi-alarm-bell:before{content:"\F078E"}.mdi-alarm-check:before{content:"\F0021"}.mdi-alarm-light:before{content:"\F078F"}.mdi-alarm-light-off:before{content:"\F171E"}.mdi-alarm-light-off-outline:before{content:"\F171F"}.mdi-alarm-light-outline:before{content:"\F0BEA"}.mdi-alarm-multiple:before{content:"\F0022"}.mdi-alarm-note:before{content:"\F0E71"}.mdi-alarm-note-off:before{content:"\F0E72"}.mdi-alarm-off:before{content:"\F0023"}.mdi-alarm-panel:before{content:"\F15C4"}.mdi-alarm-panel-outline:before{content:"\F15C5"}.mdi-alarm-plus:before{content:"\F0024"}.mdi-alarm-snooze:before{content:"\F068E"}.mdi-album:before{content:"\F0025"}.mdi-alert:before{content:"\F0026"}.mdi-alert-box:before{content:"\F0027"}.mdi-alert-box-outline:before{content:"\F0CE4"}.mdi-alert-circle:before{content:"\F0028"}.mdi-alert-circle-check:before{content:"\F11ED"}.mdi-alert-circle-check-outline:before{content:"\F11EE"}.mdi-alert-circle-outline:before{content:"\F05D6"}.mdi-alert-decagram:before{content:"\F06BD"}.mdi-alert-decagram-outline:before{content:"\F0CE5"}.mdi-alert-minus:before{content:"\F14BB"}.mdi-alert-minus-outline:before{content:"\F14BE"}.mdi-alert-octagon:before{content:"\F0029"}.mdi-alert-octagon-outline:before{content:"\F0CE6"}.mdi-alert-octagram:before{content:"\F0767"}.mdi-alert-octagram-outline:before{content:"\F0CE7"}.mdi-alert-outline:before{content:"\F002A"}.mdi-alert-plus:before{content:"\F14BA"}.mdi-alert-plus-outline:before{content:"\F14BD"}.mdi-alert-remove:before{content:"\F14BC"}.mdi-alert-remove-outline:before{content:"\F14BF"}.mdi-alert-rhombus:before{content:"\F11CE"}.mdi-alert-rhombus-outline:before{content:"\F11CF"}.mdi-alien:before{content:"\F089A"}.mdi-alien-outline:before{content:"\F10CB"}.mdi-align-horizontal-center:before{content:"\F11C3"}.mdi-align-horizontal-distribute:before{content:"\F1962"}.mdi-align-horizontal-left:before{content:"\F11C2"}.mdi-align-horizontal-right:before{content:"\F11C4"}.mdi-align-vertical-bottom:before{content:"\F11C5"}.mdi-align-vertical-center:before{content:"\F11C6"}.mdi-align-vertical-distribute:before{content:"\F1963"}.mdi-align-vertical-top:before{content:"\F11C7"}.mdi-all-inclusive:before{content:"\F06BE"}.mdi-all-inclusive-box:before{content:"\F188D"}.mdi-all-inclusive-box-outline:before{content:"\F188E"}.mdi-allergy:before{content:"\F1258"}.mdi-alpha:before{content:"\F002B"}.mdi-alpha-a:before{content:"\F0AEE"}.mdi-alpha-a-box:before{content:"\F0B08"}.mdi-alpha-a-box-outline:before{content:"\F0BEB"}.mdi-alpha-a-circle:before{content:"\F0BEC"}.mdi-alpha-a-circle-outline:before{content:"\F0BED"}.mdi-alpha-b:before{content:"\F0AEF"}.mdi-alpha-b-box:before{content:"\F0B09"}.mdi-alpha-b-box-outline:before{content:"\F0BEE"}.mdi-alpha-b-circle:before{content:"\F0BEF"}.mdi-alpha-b-circle-outline:before{content:"\F0BF0"}.mdi-alpha-c:before{content:"\F0AF0"}.mdi-alpha-c-box:before{content:"\F0B0A"}.mdi-alpha-c-box-outline:before{content:"\F0BF1"}.mdi-alpha-c-circle:before{content:"\F0BF2"}.mdi-alpha-c-circle-outline:before{content:"\F0BF3"}.mdi-alpha-d:before{content:"\F0AF1"}.mdi-alpha-d-box:before{content:"\F0B0B"}.mdi-alpha-d-box-outline:before{content:"\F0BF4"}.mdi-alpha-d-circle:before{content:"\F0BF5"}.mdi-alpha-d-circle-outline:before{content:"\F0BF6"}.mdi-alpha-e:before{content:"\F0AF2"}.mdi-alpha-e-box:before{content:"\F0B0C"}.mdi-alpha-e-box-outline:before{content:"\F0BF7"}.mdi-alpha-e-circle:before{content:"\F0BF8"}.mdi-alpha-e-circle-outline:before{content:"\F0BF9"}.mdi-alpha-f:before{content:"\F0AF3"}.mdi-alpha-f-box:before{content:"\F0B0D"}.mdi-alpha-f-box-outline:before{content:"\F0BFA"}.mdi-alpha-f-circle:before{content:"\F0BFB"}.mdi-alpha-f-circle-outline:before{content:"\F0BFC"}.mdi-alpha-g:before{content:"\F0AF4"}.mdi-alpha-g-box:before{content:"\F0B0E"}.mdi-alpha-g-box-outline:before{content:"\F0BFD"}.mdi-alpha-g-circle:before{content:"\F0BFE"}.mdi-alpha-g-circle-outline:before{content:"\F0BFF"}.mdi-alpha-h:before{content:"\F0AF5"}.mdi-alpha-h-box:before{content:"\F0B0F"}.mdi-alpha-h-box-outline:before{content:"\F0C00"}.mdi-alpha-h-circle:before{content:"\F0C01"}.mdi-alpha-h-circle-outline:before{content:"\F0C02"}.mdi-alpha-i:before{content:"\F0AF6"}.mdi-alpha-i-box:before{content:"\F0B10"}.mdi-alpha-i-box-outline:before{content:"\F0C03"}.mdi-alpha-i-circle:before{content:"\F0C04"}.mdi-alpha-i-circle-outline:before{content:"\F0C05"}.mdi-alpha-j:before{content:"\F0AF7"}.mdi-alpha-j-box:before{content:"\F0B11"}.mdi-alpha-j-box-outline:before{content:"\F0C06"}.mdi-alpha-j-circle:before{content:"\F0C07"}.mdi-alpha-j-circle-outline:before{content:"\F0C08"}.mdi-alpha-k:before{content:"\F0AF8"}.mdi-alpha-k-box:before{content:"\F0B12"}.mdi-alpha-k-box-outline:before{content:"\F0C09"}.mdi-alpha-k-circle:before{content:"\F0C0A"}.mdi-alpha-k-circle-outline:before{content:"\F0C0B"}.mdi-alpha-l:before{content:"\F0AF9"}.mdi-alpha-l-box:before{content:"\F0B13"}.mdi-alpha-l-box-outline:before{content:"\F0C0C"}.mdi-alpha-l-circle:before{content:"\F0C0D"}.mdi-alpha-l-circle-outline:before{content:"\F0C0E"}.mdi-alpha-m:before{content:"\F0AFA"}.mdi-alpha-m-box:before{content:"\F0B14"}.mdi-alpha-m-box-outline:before{content:"\F0C0F"}.mdi-alpha-m-circle:before{content:"\F0C10"}.mdi-alpha-m-circle-outline:before{content:"\F0C11"}.mdi-alpha-n:before{content:"\F0AFB"}.mdi-alpha-n-box:before{content:"\F0B15"}.mdi-alpha-n-box-outline:before{content:"\F0C12"}.mdi-alpha-n-circle:before{content:"\F0C13"}.mdi-alpha-n-circle-outline:before{content:"\F0C14"}.mdi-alpha-o:before{content:"\F0AFC"}.mdi-alpha-o-box:before{content:"\F0B16"}.mdi-alpha-o-box-outline:before{content:"\F0C15"}.mdi-alpha-o-circle:before{content:"\F0C16"}.mdi-alpha-o-circle-outline:before{content:"\F0C17"}.mdi-alpha-p:before{content:"\F0AFD"}.mdi-alpha-p-box:before{content:"\F0B17"}.mdi-alpha-p-box-outline:before{content:"\F0C18"}.mdi-alpha-p-circle:before{content:"\F0C19"}.mdi-alpha-p-circle-outline:before{content:"\F0C1A"}.mdi-alpha-q:before{content:"\F0AFE"}.mdi-alpha-q-box:before{content:"\F0B18"}.mdi-alpha-q-box-outline:before{content:"\F0C1B"}.mdi-alpha-q-circle:before{content:"\F0C1C"}.mdi-alpha-q-circle-outline:before{content:"\F0C1D"}.mdi-alpha-r:before{content:"\F0AFF"}.mdi-alpha-r-box:before{content:"\F0B19"}.mdi-alpha-r-box-outline:before{content:"\F0C1E"}.mdi-alpha-r-circle:before{content:"\F0C1F"}.mdi-alpha-r-circle-outline:before{content:"\F0C20"}.mdi-alpha-s:before{content:"\F0B00"}.mdi-alpha-s-box:before{content:"\F0B1A"}.mdi-alpha-s-box-outline:before{content:"\F0C21"}.mdi-alpha-s-circle:before{content:"\F0C22"}.mdi-alpha-s-circle-outline:before{content:"\F0C23"}.mdi-alpha-t:before{content:"\F0B01"}.mdi-alpha-t-box:before{content:"\F0B1B"}.mdi-alpha-t-box-outline:before{content:"\F0C24"}.mdi-alpha-t-circle:before{content:"\F0C25"}.mdi-alpha-t-circle-outline:before{content:"\F0C26"}.mdi-alpha-u:before{content:"\F0B02"}.mdi-alpha-u-box:before{content:"\F0B1C"}.mdi-alpha-u-box-outline:before{content:"\F0C27"}.mdi-alpha-u-circle:before{content:"\F0C28"}.mdi-alpha-u-circle-outline:before{content:"\F0C29"}.mdi-alpha-v:before{content:"\F0B03"}.mdi-alpha-v-box:before{content:"\F0B1D"}.mdi-alpha-v-box-outline:before{content:"\F0C2A"}.mdi-alpha-v-circle:before{content:"\F0C2B"}.mdi-alpha-v-circle-outline:before{content:"\F0C2C"}.mdi-alpha-w:before{content:"\F0B04"}.mdi-alpha-w-box:before{content:"\F0B1E"}.mdi-alpha-w-box-outline:before{content:"\F0C2D"}.mdi-alpha-w-circle:before{content:"\F0C2E"}.mdi-alpha-w-circle-outline:before{content:"\F0C2F"}.mdi-alpha-x:before{content:"\F0B05"}.mdi-alpha-x-box:before{content:"\F0B1F"}.mdi-alpha-x-box-outline:before{content:"\F0C30"}.mdi-alpha-x-circle:before{content:"\F0C31"}.mdi-alpha-x-circle-outline:before{content:"\F0C32"}.mdi-alpha-y:before{content:"\F0B06"}.mdi-alpha-y-box:before{content:"\F0B20"}.mdi-alpha-y-box-outline:before{content:"\F0C33"}.mdi-alpha-y-circle:before{content:"\F0C34"}.mdi-alpha-y-circle-outline:before{content:"\F0C35"}.mdi-alpha-z:before{content:"\F0B07"}.mdi-alpha-z-box:before{content:"\F0B21"}.mdi-alpha-z-box-outline:before{content:"\F0C36"}.mdi-alpha-z-circle:before{content:"\F0C37"}.mdi-alpha-z-circle-outline:before{content:"\F0C38"}.mdi-alphabet-aurebesh:before{content:"\F132C"}.mdi-alphabet-cyrillic:before{content:"\F132D"}.mdi-alphabet-greek:before{content:"\F132E"}.mdi-alphabet-latin:before{content:"\F132F"}.mdi-alphabet-piqad:before{content:"\F1330"}.mdi-alphabet-tengwar:before{content:"\F1337"}.mdi-alphabetical:before{content:"\F002C"}.mdi-alphabetical-off:before{content:"\F100C"}.mdi-alphabetical-variant:before{content:"\F100D"}.mdi-alphabetical-variant-off:before{content:"\F100E"}.mdi-altimeter:before{content:"\F05D7"}.mdi-ambulance:before{content:"\F002F"}.mdi-ammunition:before{content:"\F0CE8"}.mdi-ampersand:before{content:"\F0A8D"}.mdi-amplifier:before{content:"\F0030"}.mdi-amplifier-off:before{content:"\F11B5"}.mdi-anchor:before{content:"\F0031"}.mdi-android:before{content:"\F0032"}.mdi-android-studio:before{content:"\F0034"}.mdi-angle-acute:before{content:"\F0937"}.mdi-angle-obtuse:before{content:"\F0938"}.mdi-angle-right:before{content:"\F0939"}.mdi-angular:before{content:"\F06B2"}.mdi-angularjs:before{content:"\F06BF"}.mdi-animation:before{content:"\F05D8"}.mdi-animation-outline:before{content:"\F0A8F"}.mdi-animation-play:before{content:"\F093A"}.mdi-animation-play-outline:before{content:"\F0A90"}.mdi-ansible:before{content:"\F109A"}.mdi-antenna:before{content:"\F1119"}.mdi-anvil:before{content:"\F089B"}.mdi-apache-kafka:before{content:"\F100F"}.mdi-api:before{content:"\F109B"}.mdi-api-off:before{content:"\F1257"}.mdi-apple:before{content:"\F0035"}.mdi-apple-finder:before{content:"\F0036"}.mdi-apple-icloud:before{content:"\F0038"}.mdi-apple-ios:before{content:"\F0037"}.mdi-apple-keyboard-caps:before{content:"\F0632"}.mdi-apple-keyboard-command:before{content:"\F0633"}.mdi-apple-keyboard-control:before{content:"\F0634"}.mdi-apple-keyboard-option:before{content:"\F0635"}.mdi-apple-keyboard-shift:before{content:"\F0636"}.mdi-apple-safari:before{content:"\F0039"}.mdi-application:before{content:"\F08C6"}.mdi-application-array:before{content:"\F10F5"}.mdi-application-array-outline:before{content:"\F10F6"}.mdi-application-braces:before{content:"\F10F7"}.mdi-application-braces-outline:before{content:"\F10F8"}.mdi-application-brackets:before{content:"\F0C8B"}.mdi-application-brackets-outline:before{content:"\F0C8C"}.mdi-application-cog:before{content:"\F0675"}.mdi-application-cog-outline:before{content:"\F1577"}.mdi-application-edit:before{content:"\F00AE"}.mdi-application-edit-outline:before{content:"\F0619"}.mdi-application-export:before{content:"\F0DAD"}.mdi-application-import:before{content:"\F0DAE"}.mdi-application-outline:before{content:"\F0614"}.mdi-application-parentheses:before{content:"\F10F9"}.mdi-application-parentheses-outline:before{content:"\F10FA"}.mdi-application-settings:before{content:"\F0B60"}.mdi-application-settings-outline:before{content:"\F1555"}.mdi-application-variable:before{content:"\F10FB"}.mdi-application-variable-outline:before{content:"\F10FC"}.mdi-approximately-equal:before{content:"\F0F9E"}.mdi-approximately-equal-box:before{content:"\F0F9F"}.mdi-apps:before{content:"\F003B"}.mdi-apps-box:before{content:"\F0D46"}.mdi-arch:before{content:"\F08C7"}.mdi-archive:before{content:"\F003C"}.mdi-archive-alert:before{content:"\F14FD"}.mdi-archive-alert-outline:before{content:"\F14FE"}.mdi-archive-arrow-down:before{content:"\F1259"}.mdi-archive-arrow-down-outline:before{content:"\F125A"}.mdi-archive-arrow-up:before{content:"\F125B"}.mdi-archive-arrow-up-outline:before{content:"\F125C"}.mdi-archive-cancel:before{content:"\F174B"}.mdi-archive-cancel-outline:before{content:"\F174C"}.mdi-archive-check:before{content:"\F174D"}.mdi-archive-check-outline:before{content:"\F174E"}.mdi-archive-clock:before{content:"\F174F"}.mdi-archive-clock-outline:before{content:"\F1750"}.mdi-archive-cog:before{content:"\F1751"}.mdi-archive-cog-outline:before{content:"\F1752"}.mdi-archive-edit:before{content:"\F1753"}.mdi-archive-edit-outline:before{content:"\F1754"}.mdi-archive-eye:before{content:"\F1755"}.mdi-archive-eye-outline:before{content:"\F1756"}.mdi-archive-lock:before{content:"\F1757"}.mdi-archive-lock-open:before{content:"\F1758"}.mdi-archive-lock-open-outline:before{content:"\F1759"}.mdi-archive-lock-outline:before{content:"\F175A"}.mdi-archive-marker:before{content:"\F175B"}.mdi-archive-marker-outline:before{content:"\F175C"}.mdi-archive-minus:before{content:"\F175D"}.mdi-archive-minus-outline:before{content:"\F175E"}.mdi-archive-music:before{content:"\F175F"}.mdi-archive-music-outline:before{content:"\F1760"}.mdi-archive-off:before{content:"\F1761"}.mdi-archive-off-outline:before{content:"\F1762"}.mdi-archive-outline:before{content:"\F120E"}.mdi-archive-plus:before{content:"\F1763"}.mdi-archive-plus-outline:before{content:"\F1764"}.mdi-archive-refresh:before{content:"\F1765"}.mdi-archive-refresh-outline:before{content:"\F1766"}.mdi-archive-remove:before{content:"\F1767"}.mdi-archive-remove-outline:before{content:"\F1768"}.mdi-archive-search:before{content:"\F1769"}.mdi-archive-search-outline:before{content:"\F176A"}.mdi-archive-settings:before{content:"\F176B"}.mdi-archive-settings-outline:before{content:"\F176C"}.mdi-archive-star:before{content:"\F176D"}.mdi-archive-star-outline:before{content:"\F176E"}.mdi-archive-sync:before{content:"\F176F"}.mdi-archive-sync-outline:before{content:"\F1770"}.mdi-arm-flex:before{content:"\F0FD7"}.mdi-arm-flex-outline:before{content:"\F0FD6"}.mdi-arrange-bring-forward:before{content:"\F003D"}.mdi-arrange-bring-to-front:before{content:"\F003E"}.mdi-arrange-send-backward:before{content:"\F003F"}.mdi-arrange-send-to-back:before{content:"\F0040"}.mdi-arrow-all:before{content:"\F0041"}.mdi-arrow-bottom-left:before{content:"\F0042"}.mdi-arrow-bottom-left-bold-box:before{content:"\F1964"}.mdi-arrow-bottom-left-bold-box-outline:before{content:"\F1965"}.mdi-arrow-bottom-left-bold-outline:before{content:"\F09B7"}.mdi-arrow-bottom-left-thick:before{content:"\F09B8"}.mdi-arrow-bottom-left-thin:before{content:"\F19B6"}.mdi-arrow-bottom-left-thin-circle-outline:before{content:"\F1596"}.mdi-arrow-bottom-right:before{content:"\F0043"}.mdi-arrow-bottom-right-bold-box:before{content:"\F1966"}.mdi-arrow-bottom-right-bold-box-outline:before{content:"\F1967"}.mdi-arrow-bottom-right-bold-outline:before{content:"\F09B9"}.mdi-arrow-bottom-right-thick:before{content:"\F09BA"}.mdi-arrow-bottom-right-thin:before{content:"\F19B7"}.mdi-arrow-bottom-right-thin-circle-outline:before{content:"\F1595"}.mdi-arrow-collapse:before{content:"\F0615"}.mdi-arrow-collapse-all:before{content:"\F0044"}.mdi-arrow-collapse-down:before{content:"\F0792"}.mdi-arrow-collapse-horizontal:before{content:"\F084C"}.mdi-arrow-collapse-left:before{content:"\F0793"}.mdi-arrow-collapse-right:before{content:"\F0794"}.mdi-arrow-collapse-up:before{content:"\F0795"}.mdi-arrow-collapse-vertical:before{content:"\F084D"}.mdi-arrow-decision:before{content:"\F09BB"}.mdi-arrow-decision-auto:before{content:"\F09BC"}.mdi-arrow-decision-auto-outline:before{content:"\F09BD"}.mdi-arrow-decision-outline:before{content:"\F09BE"}.mdi-arrow-down:before{content:"\F0045"}.mdi-arrow-down-bold:before{content:"\F072E"}.mdi-arrow-down-bold-box:before{content:"\F072F"}.mdi-arrow-down-bold-box-outline:before{content:"\F0730"}.mdi-arrow-down-bold-circle:before{content:"\F0047"}.mdi-arrow-down-bold-circle-outline:before{content:"\F0048"}.mdi-arrow-down-bold-hexagon-outline:before{content:"\F0049"}.mdi-arrow-down-bold-outline:before{content:"\F09BF"}.mdi-arrow-down-box:before{content:"\F06C0"}.mdi-arrow-down-circle:before{content:"\F0CDB"}.mdi-arrow-down-circle-outline:before{content:"\F0CDC"}.mdi-arrow-down-drop-circle:before{content:"\F004A"}.mdi-arrow-down-drop-circle-outline:before{content:"\F004B"}.mdi-arrow-down-left:before{content:"\F17A1"}.mdi-arrow-down-left-bold:before{content:"\F17A2"}.mdi-arrow-down-right:before{content:"\F17A3"}.mdi-arrow-down-right-bold:before{content:"\F17A4"}.mdi-arrow-down-thick:before{content:"\F0046"}.mdi-arrow-down-thin:before{content:"\F19B3"}.mdi-arrow-down-thin-circle-outline:before{content:"\F1599"}.mdi-arrow-expand:before{content:"\F0616"}.mdi-arrow-expand-all:before{content:"\F004C"}.mdi-arrow-expand-down:before{content:"\F0796"}.mdi-arrow-expand-horizontal:before{content:"\F084E"}.mdi-arrow-expand-left:before{content:"\F0797"}.mdi-arrow-expand-right:before{content:"\F0798"}.mdi-arrow-expand-up:before{content:"\F0799"}.mdi-arrow-expand-vertical:before{content:"\F084F"}.mdi-arrow-horizontal-lock:before{content:"\F115B"}.mdi-arrow-left:before{content:"\F004D"}.mdi-arrow-left-bold:before{content:"\F0731"}.mdi-arrow-left-bold-box:before{content:"\F0732"}.mdi-arrow-left-bold-box-outline:before{content:"\F0733"}.mdi-arrow-left-bold-circle:before{content:"\F004F"}.mdi-arrow-left-bold-circle-outline:before{content:"\F0050"}.mdi-arrow-left-bold-hexagon-outline:before{content:"\F0051"}.mdi-arrow-left-bold-outline:before{content:"\F09C0"}.mdi-arrow-left-bottom:before{content:"\F17A5"}.mdi-arrow-left-bottom-bold:before{content:"\F17A6"}.mdi-arrow-left-box:before{content:"\F06C1"}.mdi-arrow-left-circle:before{content:"\F0CDD"}.mdi-arrow-left-circle-outline:before{content:"\F0CDE"}.mdi-arrow-left-drop-circle:before{content:"\F0052"}.mdi-arrow-left-drop-circle-outline:before{content:"\F0053"}.mdi-arrow-left-right:before{content:"\F0E73"}.mdi-arrow-left-right-bold:before{content:"\F0E74"}.mdi-arrow-left-right-bold-outline:before{content:"\F09C1"}.mdi-arrow-left-thick:before{content:"\F004E"}.mdi-arrow-left-thin:before{content:"\F19B1"}.mdi-arrow-left-thin-circle-outline:before{content:"\F159A"}.mdi-arrow-left-top:before{content:"\F17A7"}.mdi-arrow-left-top-bold:before{content:"\F17A8"}.mdi-arrow-oscillating:before{content:"\F1C91"}.mdi-arrow-oscillating-off:before{content:"\F1C92"}.mdi-arrow-projectile:before{content:"\F1840"}.mdi-arrow-projectile-multiple:before{content:"\F183F"}.mdi-arrow-right:before{content:"\F0054"}.mdi-arrow-right-bold:before{content:"\F0734"}.mdi-arrow-right-bold-box:before{content:"\F0735"}.mdi-arrow-right-bold-box-outline:before{content:"\F0736"}.mdi-arrow-right-bold-circle:before{content:"\F0056"}.mdi-arrow-right-bold-circle-outline:before{content:"\F0057"}.mdi-arrow-right-bold-hexagon-outline:before{content:"\F0058"}.mdi-arrow-right-bold-outline:before{content:"\F09C2"}.mdi-arrow-right-bottom:before{content:"\F17A9"}.mdi-arrow-right-bottom-bold:before{content:"\F17AA"}.mdi-arrow-right-box:before{content:"\F06C2"}.mdi-arrow-right-circle:before{content:"\F0CDF"}.mdi-arrow-right-circle-outline:before{content:"\F0CE0"}.mdi-arrow-right-drop-circle:before{content:"\F0059"}.mdi-arrow-right-drop-circle-outline:before{content:"\F005A"}.mdi-arrow-right-thick:before{content:"\F0055"}.mdi-arrow-right-thin:before{content:"\F19B0"}.mdi-arrow-right-thin-circle-outline:before{content:"\F1598"}.mdi-arrow-right-top:before{content:"\F17AB"}.mdi-arrow-right-top-bold:before{content:"\F17AC"}.mdi-arrow-split-horizontal:before{content:"\F093B"}.mdi-arrow-split-vertical:before{content:"\F093C"}.mdi-arrow-top-left:before{content:"\F005B"}.mdi-arrow-top-left-bold-box:before{content:"\F1968"}.mdi-arrow-top-left-bold-box-outline:before{content:"\F1969"}.mdi-arrow-top-left-bold-outline:before{content:"\F09C3"}.mdi-arrow-top-left-bottom-right:before{content:"\F0E75"}.mdi-arrow-top-left-bottom-right-bold:before{content:"\F0E76"}.mdi-arrow-top-left-thick:before{content:"\F09C4"}.mdi-arrow-top-left-thin:before{content:"\F19B5"}.mdi-arrow-top-left-thin-circle-outline:before{content:"\F1593"}.mdi-arrow-top-right:before{content:"\F005C"}.mdi-arrow-top-right-bold-box:before{content:"\F196A"}.mdi-arrow-top-right-bold-box-outline:before{content:"\F196B"}.mdi-arrow-top-right-bold-outline:before{content:"\F09C5"}.mdi-arrow-top-right-bottom-left:before{content:"\F0E77"}.mdi-arrow-top-right-bottom-left-bold:before{content:"\F0E78"}.mdi-arrow-top-right-thick:before{content:"\F09C6"}.mdi-arrow-top-right-thin:before{content:"\F19B4"}.mdi-arrow-top-right-thin-circle-outline:before{content:"\F1594"}.mdi-arrow-u-down-left:before{content:"\F17AD"}.mdi-arrow-u-down-left-bold:before{content:"\F17AE"}.mdi-arrow-u-down-right:before{content:"\F17AF"}.mdi-arrow-u-down-right-bold:before{content:"\F17B0"}.mdi-arrow-u-left-bottom:before{content:"\F17B1"}.mdi-arrow-u-left-bottom-bold:before{content:"\F17B2"}.mdi-arrow-u-left-top:before{content:"\F17B3"}.mdi-arrow-u-left-top-bold:before{content:"\F17B4"}.mdi-arrow-u-right-bottom:before{content:"\F17B5"}.mdi-arrow-u-right-bottom-bold:before{content:"\F17B6"}.mdi-arrow-u-right-top:before{content:"\F17B7"}.mdi-arrow-u-right-top-bold:before{content:"\F17B8"}.mdi-arrow-u-up-left:before{content:"\F17B9"}.mdi-arrow-u-up-left-bold:before{content:"\F17BA"}.mdi-arrow-u-up-right:before{content:"\F17BB"}.mdi-arrow-u-up-right-bold:before{content:"\F17BC"}.mdi-arrow-up:before{content:"\F005D"}.mdi-arrow-up-bold:before{content:"\F0737"}.mdi-arrow-up-bold-box:before{content:"\F0738"}.mdi-arrow-up-bold-box-outline:before{content:"\F0739"}.mdi-arrow-up-bold-circle:before{content:"\F005F"}.mdi-arrow-up-bold-circle-outline:before{content:"\F0060"}.mdi-arrow-up-bold-hexagon-outline:before{content:"\F0061"}.mdi-arrow-up-bold-outline:before{content:"\F09C7"}.mdi-arrow-up-box:before{content:"\F06C3"}.mdi-arrow-up-circle:before{content:"\F0CE1"}.mdi-arrow-up-circle-outline:before{content:"\F0CE2"}.mdi-arrow-up-down:before{content:"\F0E79"}.mdi-arrow-up-down-bold:before{content:"\F0E7A"}.mdi-arrow-up-down-bold-outline:before{content:"\F09C8"}.mdi-arrow-up-drop-circle:before{content:"\F0062"}.mdi-arrow-up-drop-circle-outline:before{content:"\F0063"}.mdi-arrow-up-left:before{content:"\F17BD"}.mdi-arrow-up-left-bold:before{content:"\F17BE"}.mdi-arrow-up-right:before{content:"\F17BF"}.mdi-arrow-up-right-bold:before{content:"\F17C0"}.mdi-arrow-up-thick:before{content:"\F005E"}.mdi-arrow-up-thin:before{content:"\F19B2"}.mdi-arrow-up-thin-circle-outline:before{content:"\F1597"}.mdi-arrow-vertical-lock:before{content:"\F115C"}.mdi-artboard:before{content:"\F1B9A"}.mdi-artstation:before{content:"\F0B5B"}.mdi-aspect-ratio:before{content:"\F0A24"}.mdi-assistant:before{content:"\F0064"}.mdi-asterisk:before{content:"\F06C4"}.mdi-asterisk-circle-outline:before{content:"\F1A27"}.mdi-at:before{content:"\F0065"}.mdi-atlassian:before{content:"\F0804"}.mdi-atm:before{content:"\F0D47"}.mdi-atom:before{content:"\F0768"}.mdi-atom-variant:before{content:"\F0E7B"}.mdi-attachment:before{content:"\F0066"}.mdi-attachment-check:before{content:"\F1AC1"}.mdi-attachment-lock:before{content:"\F19C4"}.mdi-attachment-minus:before{content:"\F1AC2"}.mdi-attachment-off:before{content:"\F1AC3"}.mdi-attachment-plus:before{content:"\F1AC4"}.mdi-attachment-remove:before{content:"\F1AC5"}.mdi-atv:before{content:"\F1B70"}.mdi-audio-input-rca:before{content:"\F186B"}.mdi-audio-input-stereo-minijack:before{content:"\F186C"}.mdi-audio-input-xlr:before{content:"\F186D"}.mdi-audio-video:before{content:"\F093D"}.mdi-audio-video-off:before{content:"\F11B6"}.mdi-augmented-reality:before{content:"\F0850"}.mdi-aurora:before{content:"\F1BB9"}.mdi-auto-download:before{content:"\F137E"}.mdi-auto-fix:before{content:"\F0068"}.mdi-auto-mode:before{content:"\F1C20"}.mdi-auto-upload:before{content:"\F0069"}.mdi-autorenew:before{content:"\F006A"}.mdi-autorenew-off:before{content:"\F19E7"}.mdi-av-timer:before{content:"\F006B"}.mdi-awning:before{content:"\F1B87"}.mdi-awning-outline:before{content:"\F1B88"}.mdi-aws:before{content:"\F0E0F"}.mdi-axe:before{content:"\F08C8"}.mdi-axe-battle:before{content:"\F1842"}.mdi-axis:before{content:"\F0D48"}.mdi-axis-arrow:before{content:"\F0D49"}.mdi-axis-arrow-info:before{content:"\F140E"}.mdi-axis-arrow-lock:before{content:"\F0D4A"}.mdi-axis-lock:before{content:"\F0D4B"}.mdi-axis-x-arrow:before{content:"\F0D4C"}.mdi-axis-x-arrow-lock:before{content:"\F0D4D"}.mdi-axis-x-rotate-clockwise:before{content:"\F0D4E"}.mdi-axis-x-rotate-counterclockwise:before{content:"\F0D4F"}.mdi-axis-x-y-arrow-lock:before{content:"\F0D50"}.mdi-axis-y-arrow:before{content:"\F0D51"}.mdi-axis-y-arrow-lock:before{content:"\F0D52"}.mdi-axis-y-rotate-clockwise:before{content:"\F0D53"}.mdi-axis-y-rotate-counterclockwise:before{content:"\F0D54"}.mdi-axis-z-arrow:before{content:"\F0D55"}.mdi-axis-z-arrow-lock:before{content:"\F0D56"}.mdi-axis-z-rotate-clockwise:before{content:"\F0D57"}.mdi-axis-z-rotate-counterclockwise:before{content:"\F0D58"}.mdi-babel:before{content:"\F0A25"}.mdi-baby:before{content:"\F006C"}.mdi-baby-bottle:before{content:"\F0F39"}.mdi-baby-bottle-outline:before{content:"\F0F3A"}.mdi-baby-buggy:before{content:"\F13E0"}.mdi-baby-buggy-off:before{content:"\F1AF3"}.mdi-baby-carriage:before{content:"\F068F"}.mdi-baby-carriage-off:before{content:"\F0FA0"}.mdi-baby-face:before{content:"\F0E7C"}.mdi-baby-face-outline:before{content:"\F0E7D"}.mdi-backburger:before{content:"\F006D"}.mdi-backspace:before{content:"\F006E"}.mdi-backspace-outline:before{content:"\F0B5C"}.mdi-backspace-reverse:before{content:"\F0E7E"}.mdi-backspace-reverse-outline:before{content:"\F0E7F"}.mdi-backup-restore:before{content:"\F006F"}.mdi-bacteria:before{content:"\F0ED5"}.mdi-bacteria-outline:before{content:"\F0ED6"}.mdi-badge-account:before{content:"\F0DA7"}.mdi-badge-account-alert:before{content:"\F0DA8"}.mdi-badge-account-alert-outline:before{content:"\F0DA9"}.mdi-badge-account-horizontal:before{content:"\F0E0D"}.mdi-badge-account-horizontal-outline:before{content:"\F0E0E"}.mdi-badge-account-outline:before{content:"\F0DAA"}.mdi-badminton:before{content:"\F0851"}.mdi-bag-carry-on:before{content:"\F0F3B"}.mdi-bag-carry-on-check:before{content:"\F0D65"}.mdi-bag-carry-on-off:before{content:"\F0F3C"}.mdi-bag-checked:before{content:"\F0F3D"}.mdi-bag-personal:before{content:"\F0E10"}.mdi-bag-personal-off:before{content:"\F0E11"}.mdi-bag-personal-off-outline:before{content:"\F0E12"}.mdi-bag-personal-outline:before{content:"\F0E13"}.mdi-bag-personal-plus:before{content:"\F1CA4"}.mdi-bag-personal-plus-outline:before{content:"\F1CA5"}.mdi-bag-personal-tag:before{content:"\F1B0C"}.mdi-bag-personal-tag-outline:before{content:"\F1B0D"}.mdi-bag-suitcase:before{content:"\F158B"}.mdi-bag-suitcase-off:before{content:"\F158D"}.mdi-bag-suitcase-off-outline:before{content:"\F158E"}.mdi-bag-suitcase-outline:before{content:"\F158C"}.mdi-baguette:before{content:"\F0F3E"}.mdi-balcony:before{content:"\F1817"}.mdi-balloon:before{content:"\F0A26"}.mdi-ballot:before{content:"\F09C9"}.mdi-ballot-outline:before{content:"\F09CA"}.mdi-ballot-recount:before{content:"\F0C39"}.mdi-ballot-recount-outline:before{content:"\F0C3A"}.mdi-bandage:before{content:"\F0DAF"}.mdi-bank:before{content:"\F0070"}.mdi-bank-check:before{content:"\F1655"}.mdi-bank-circle:before{content:"\F1C03"}.mdi-bank-circle-outline:before{content:"\F1C04"}.mdi-bank-minus:before{content:"\F0DB0"}.mdi-bank-off:before{content:"\F1656"}.mdi-bank-off-outline:before{content:"\F1657"}.mdi-bank-outline:before{content:"\F0E80"}.mdi-bank-plus:before{content:"\F0DB1"}.mdi-bank-remove:before{content:"\F0DB2"}.mdi-bank-transfer:before{content:"\F0A27"}.mdi-bank-transfer-in:before{content:"\F0A28"}.mdi-bank-transfer-out:before{content:"\F0A29"}.mdi-barcode:before{content:"\F0071"}.mdi-barcode-off:before{content:"\F1236"}.mdi-barcode-scan:before{content:"\F0072"}.mdi-barley:before{content:"\F0073"}.mdi-barley-off:before{content:"\F0B5D"}.mdi-barn:before{content:"\F0B5E"}.mdi-barrel:before{content:"\F0074"}.mdi-barrel-outline:before{content:"\F1A28"}.mdi-baseball:before{content:"\F0852"}.mdi-baseball-bat:before{content:"\F0853"}.mdi-baseball-diamond:before{content:"\F15EC"}.mdi-baseball-diamond-outline:before{content:"\F15ED"}.mdi-baseball-outline:before{content:"\F1C5A"}.mdi-bash:before{content:"\F1183"}.mdi-basket:before{content:"\F0076"}.mdi-basket-check:before{content:"\F18E5"}.mdi-basket-check-outline:before{content:"\F18E6"}.mdi-basket-fill:before{content:"\F0077"}.mdi-basket-minus:before{content:"\F1523"}.mdi-basket-minus-outline:before{content:"\F1524"}.mdi-basket-off:before{content:"\F1525"}.mdi-basket-off-outline:before{content:"\F1526"}.mdi-basket-outline:before{content:"\F1181"}.mdi-basket-plus:before{content:"\F1527"}.mdi-basket-plus-outline:before{content:"\F1528"}.mdi-basket-remove:before{content:"\F1529"}.mdi-basket-remove-outline:before{content:"\F152A"}.mdi-basket-unfill:before{content:"\F0078"}.mdi-basketball:before{content:"\F0806"}.mdi-basketball-hoop:before{content:"\F0C3B"}.mdi-basketball-hoop-outline:before{content:"\F0C3C"}.mdi-bat:before{content:"\F0B5F"}.mdi-bathtub:before{content:"\F1818"}.mdi-bathtub-outline:before{content:"\F1819"}.mdi-battery:before{content:"\F0079"}.mdi-battery-10:before{content:"\F007A"}.mdi-battery-10-bluetooth:before{content:"\F093E"}.mdi-battery-20:before{content:"\F007B"}.mdi-battery-20-bluetooth:before{content:"\F093F"}.mdi-battery-30:before{content:"\F007C"}.mdi-battery-30-bluetooth:before{content:"\F0940"}.mdi-battery-40:before{content:"\F007D"}.mdi-battery-40-bluetooth:before{content:"\F0941"}.mdi-battery-50:before{content:"\F007E"}.mdi-battery-50-bluetooth:before{content:"\F0942"}.mdi-battery-60:before{content:"\F007F"}.mdi-battery-60-bluetooth:before{content:"\F0943"}.mdi-battery-70:before{content:"\F0080"}.mdi-battery-70-bluetooth:before{content:"\F0944"}.mdi-battery-80:before{content:"\F0081"}.mdi-battery-80-bluetooth:before{content:"\F0945"}.mdi-battery-90:before{content:"\F0082"}.mdi-battery-90-bluetooth:before{content:"\F0946"}.mdi-battery-alert:before{content:"\F0083"}.mdi-battery-alert-bluetooth:before{content:"\F0947"}.mdi-battery-alert-variant:before{content:"\F10CC"}.mdi-battery-alert-variant-outline:before{content:"\F10CD"}.mdi-battery-arrow-down:before{content:"\F17DE"}.mdi-battery-arrow-down-outline:before{content:"\F17DF"}.mdi-battery-arrow-up:before{content:"\F17E0"}.mdi-battery-arrow-up-outline:before{content:"\F17E1"}.mdi-battery-bluetooth:before{content:"\F0948"}.mdi-battery-bluetooth-variant:before{content:"\F0949"}.mdi-battery-charging:before{content:"\F0084"}.mdi-battery-charging-10:before{content:"\F089C"}.mdi-battery-charging-100:before{content:"\F0085"}.mdi-battery-charging-20:before{content:"\F0086"}.mdi-battery-charging-30:before{content:"\F0087"}.mdi-battery-charging-40:before{content:"\F0088"}.mdi-battery-charging-50:before{content:"\F089D"}.mdi-battery-charging-60:before{content:"\F0089"}.mdi-battery-charging-70:before{content:"\F089E"}.mdi-battery-charging-80:before{content:"\F008A"}.mdi-battery-charging-90:before{content:"\F008B"}.mdi-battery-charging-high:before{content:"\F12A6"}.mdi-battery-charging-low:before{content:"\F12A4"}.mdi-battery-charging-medium:before{content:"\F12A5"}.mdi-battery-charging-outline:before{content:"\F089F"}.mdi-battery-charging-wireless:before{content:"\F0807"}.mdi-battery-charging-wireless-10:before{content:"\F0808"}.mdi-battery-charging-wireless-20:before{content:"\F0809"}.mdi-battery-charging-wireless-30:before{content:"\F080A"}.mdi-battery-charging-wireless-40:before{content:"\F080B"}.mdi-battery-charging-wireless-50:before{content:"\F080C"}.mdi-battery-charging-wireless-60:before{content:"\F080D"}.mdi-battery-charging-wireless-70:before{content:"\F080E"}.mdi-battery-charging-wireless-80:before{content:"\F080F"}.mdi-battery-charging-wireless-90:before{content:"\F0810"}.mdi-battery-charging-wireless-alert:before{content:"\F0811"}.mdi-battery-charging-wireless-outline:before{content:"\F0812"}.mdi-battery-check:before{content:"\F17E2"}.mdi-battery-check-outline:before{content:"\F17E3"}.mdi-battery-clock:before{content:"\F19E5"}.mdi-battery-clock-outline:before{content:"\F19E6"}.mdi-battery-heart:before{content:"\F120F"}.mdi-battery-heart-outline:before{content:"\F1210"}.mdi-battery-heart-variant:before{content:"\F1211"}.mdi-battery-high:before{content:"\F12A3"}.mdi-battery-lock:before{content:"\F179C"}.mdi-battery-lock-open:before{content:"\F179D"}.mdi-battery-low:before{content:"\F12A1"}.mdi-battery-medium:before{content:"\F12A2"}.mdi-battery-minus:before{content:"\F17E4"}.mdi-battery-minus-outline:before{content:"\F17E5"}.mdi-battery-minus-variant:before{content:"\F008C"}.mdi-battery-negative:before{content:"\F008D"}.mdi-battery-off:before{content:"\F125D"}.mdi-battery-off-outline:before{content:"\F125E"}.mdi-battery-outline:before{content:"\F008E"}.mdi-battery-plus:before{content:"\F17E6"}.mdi-battery-plus-outline:before{content:"\F17E7"}.mdi-battery-plus-variant:before{content:"\F008F"}.mdi-battery-positive:before{content:"\F0090"}.mdi-battery-remove:before{content:"\F17E8"}.mdi-battery-remove-outline:before{content:"\F17E9"}.mdi-battery-sync:before{content:"\F1834"}.mdi-battery-sync-outline:before{content:"\F1835"}.mdi-battery-unknown:before{content:"\F0091"}.mdi-battery-unknown-bluetooth:before{content:"\F094A"}.mdi-beach:before{content:"\F0092"}.mdi-beaker:before{content:"\F0CEA"}.mdi-beaker-alert:before{content:"\F1229"}.mdi-beaker-alert-outline:before{content:"\F122A"}.mdi-beaker-check:before{content:"\F122B"}.mdi-beaker-check-outline:before{content:"\F122C"}.mdi-beaker-minus:before{content:"\F122D"}.mdi-beaker-minus-outline:before{content:"\F122E"}.mdi-beaker-outline:before{content:"\F0690"}.mdi-beaker-plus:before{content:"\F122F"}.mdi-beaker-plus-outline:before{content:"\F1230"}.mdi-beaker-question:before{content:"\F1231"}.mdi-beaker-question-outline:before{content:"\F1232"}.mdi-beaker-remove:before{content:"\F1233"}.mdi-beaker-remove-outline:before{content:"\F1234"}.mdi-bed:before{content:"\F02E3"}.mdi-bed-clock:before{content:"\F1B94"}.mdi-bed-double:before{content:"\F0FD4"}.mdi-bed-double-outline:before{content:"\F0FD3"}.mdi-bed-empty:before{content:"\F08A0"}.mdi-bed-king:before{content:"\F0FD2"}.mdi-bed-king-outline:before{content:"\F0FD1"}.mdi-bed-outline:before{content:"\F0099"}.mdi-bed-queen:before{content:"\F0FD0"}.mdi-bed-queen-outline:before{content:"\F0FDB"}.mdi-bed-single:before{content:"\F106D"}.mdi-bed-single-outline:before{content:"\F106E"}.mdi-bee:before{content:"\F0FA1"}.mdi-bee-flower:before{content:"\F0FA2"}.mdi-beehive-off-outline:before{content:"\F13ED"}.mdi-beehive-outline:before{content:"\F10CE"}.mdi-beekeeper:before{content:"\F14E2"}.mdi-beer:before{content:"\F0098"}.mdi-beer-outline:before{content:"\F130C"}.mdi-bell:before{content:"\F009A"}.mdi-bell-alert:before{content:"\F0D59"}.mdi-bell-alert-outline:before{content:"\F0E81"}.mdi-bell-badge:before{content:"\F116B"}.mdi-bell-badge-outline:before{content:"\F0178"}.mdi-bell-cancel:before{content:"\F13E7"}.mdi-bell-cancel-outline:before{content:"\F13E8"}.mdi-bell-check:before{content:"\F11E5"}.mdi-bell-check-outline:before{content:"\F11E6"}.mdi-bell-circle:before{content:"\F0D5A"}.mdi-bell-circle-outline:before{content:"\F0D5B"}.mdi-bell-cog:before{content:"\F1A29"}.mdi-bell-cog-outline:before{content:"\F1A2A"}.mdi-bell-minus:before{content:"\F13E9"}.mdi-bell-minus-outline:before{content:"\F13EA"}.mdi-bell-off:before{content:"\F009B"}.mdi-bell-off-outline:before{content:"\F0A91"}.mdi-bell-outline:before{content:"\F009C"}.mdi-bell-plus:before{content:"\F009D"}.mdi-bell-plus-outline:before{content:"\F0A92"}.mdi-bell-remove:before{content:"\F13EB"}.mdi-bell-remove-outline:before{content:"\F13EC"}.mdi-bell-ring:before{content:"\F009E"}.mdi-bell-ring-outline:before{content:"\F009F"}.mdi-bell-sleep:before{content:"\F00A0"}.mdi-bell-sleep-outline:before{content:"\F0A93"}.mdi-bench:before{content:"\F1C21"}.mdi-bench-back:before{content:"\F1C22"}.mdi-beta:before{content:"\F00A1"}.mdi-betamax:before{content:"\F09CB"}.mdi-biathlon:before{content:"\F0E14"}.mdi-bicycle:before{content:"\F109C"}.mdi-bicycle-basket:before{content:"\F1235"}.mdi-bicycle-cargo:before{content:"\F189C"}.mdi-bicycle-electric:before{content:"\F15B4"}.mdi-bicycle-penny-farthing:before{content:"\F15E9"}.mdi-bike:before{content:"\F00A3"}.mdi-bike-fast:before{content:"\F111F"}.mdi-bike-pedal:before{content:"\F1C23"}.mdi-bike-pedal-clipless:before{content:"\F1C24"}.mdi-bike-pedal-mountain:before{content:"\F1C25"}.mdi-billboard:before{content:"\F1010"}.mdi-billiards:before{content:"\F0B61"}.mdi-billiards-rack:before{content:"\F0B62"}.mdi-binoculars:before{content:"\F00A5"}.mdi-bio:before{content:"\F00A6"}.mdi-biohazard:before{content:"\F00A7"}.mdi-bird:before{content:"\F15C6"}.mdi-bitbucket:before{content:"\F00A8"}.mdi-bitcoin:before{content:"\F0813"}.mdi-black-mesa:before{content:"\F00A9"}.mdi-blender:before{content:"\F0CEB"}.mdi-blender-outline:before{content:"\F181A"}.mdi-blender-software:before{content:"\F00AB"}.mdi-blinds:before{content:"\F00AC"}.mdi-blinds-horizontal:before{content:"\F1A2B"}.mdi-blinds-horizontal-closed:before{content:"\F1A2C"}.mdi-blinds-open:before{content:"\F1011"}.mdi-blinds-vertical:before{content:"\F1A2D"}.mdi-blinds-vertical-closed:before{content:"\F1A2E"}.mdi-block-helper:before{content:"\F00AD"}.mdi-blood-bag:before{content:"\F0CEC"}.mdi-bluetooth:before{content:"\F00AF"}.mdi-bluetooth-audio:before{content:"\F00B0"}.mdi-bluetooth-connect:before{content:"\F00B1"}.mdi-bluetooth-off:before{content:"\F00B2"}.mdi-bluetooth-settings:before{content:"\F00B3"}.mdi-bluetooth-transfer:before{content:"\F00B4"}.mdi-blur:before{content:"\F00B5"}.mdi-blur-linear:before{content:"\F00B6"}.mdi-blur-off:before{content:"\F00B7"}.mdi-blur-radial:before{content:"\F00B8"}.mdi-bolt:before{content:"\F0DB3"}.mdi-bomb:before{content:"\F0691"}.mdi-bomb-off:before{content:"\F06C5"}.mdi-bone:before{content:"\F00B9"}.mdi-bone-off:before{content:"\F19E0"}.mdi-book:before{content:"\F00BA"}.mdi-book-account:before{content:"\F13AD"}.mdi-book-account-outline:before{content:"\F13AE"}.mdi-book-alert:before{content:"\F167C"}.mdi-book-alert-outline:before{content:"\F167D"}.mdi-book-alphabet:before{content:"\F061D"}.mdi-book-arrow-down:before{content:"\F167E"}.mdi-book-arrow-down-outline:before{content:"\F167F"}.mdi-book-arrow-left:before{content:"\F1680"}.mdi-book-arrow-left-outline:before{content:"\F1681"}.mdi-book-arrow-right:before{content:"\F1682"}.mdi-book-arrow-right-outline:before{content:"\F1683"}.mdi-book-arrow-up:before{content:"\F1684"}.mdi-book-arrow-up-outline:before{content:"\F1685"}.mdi-book-cancel:before{content:"\F1686"}.mdi-book-cancel-outline:before{content:"\F1687"}.mdi-book-check:before{content:"\F14F3"}.mdi-book-check-outline:before{content:"\F14F4"}.mdi-book-clock:before{content:"\F1688"}.mdi-book-clock-outline:before{content:"\F1689"}.mdi-book-cog:before{content:"\F168A"}.mdi-book-cog-outline:before{content:"\F168B"}.mdi-book-cross:before{content:"\F00A2"}.mdi-book-edit:before{content:"\F168C"}.mdi-book-edit-outline:before{content:"\F168D"}.mdi-book-education:before{content:"\F16C9"}.mdi-book-education-outline:before{content:"\F16CA"}.mdi-book-heart:before{content:"\F1A1D"}.mdi-book-heart-outline:before{content:"\F1A1E"}.mdi-book-information-variant:before{content:"\F106F"}.mdi-book-lock:before{content:"\F079A"}.mdi-book-lock-open:before{content:"\F079B"}.mdi-book-lock-open-outline:before{content:"\F168E"}.mdi-book-lock-outline:before{content:"\F168F"}.mdi-book-marker:before{content:"\F1690"}.mdi-book-marker-outline:before{content:"\F1691"}.mdi-book-minus:before{content:"\F05D9"}.mdi-book-minus-multiple:before{content:"\F0A94"}.mdi-book-minus-multiple-outline:before{content:"\F090B"}.mdi-book-minus-outline:before{content:"\F1692"}.mdi-book-multiple:before{content:"\F00BB"}.mdi-book-multiple-outline:before{content:"\F0436"}.mdi-book-music:before{content:"\F0067"}.mdi-book-music-outline:before{content:"\F1693"}.mdi-book-off:before{content:"\F1694"}.mdi-book-off-outline:before{content:"\F1695"}.mdi-book-open:before{content:"\F00BD"}.mdi-book-open-blank-variant:before{content:"\F00BE"}.mdi-book-open-blank-variant-outline:before{content:"\F1CCB"}.mdi-book-open-outline:before{content:"\F0B63"}.mdi-book-open-page-variant:before{content:"\F05DA"}.mdi-book-open-page-variant-outline:before{content:"\F15D6"}.mdi-book-open-variant:before{content:"\F14F7"}.mdi-book-open-variant-outline:before{content:"\F1CCC"}.mdi-book-outline:before{content:"\F0B64"}.mdi-book-play:before{content:"\F0E82"}.mdi-book-play-outline:before{content:"\F0E83"}.mdi-book-plus:before{content:"\F05DB"}.mdi-book-plus-multiple:before{content:"\F0A95"}.mdi-book-plus-multiple-outline:before{content:"\F0ADE"}.mdi-book-plus-outline:before{content:"\F1696"}.mdi-book-refresh:before{content:"\F1697"}.mdi-book-refresh-outline:before{content:"\F1698"}.mdi-book-remove:before{content:"\F0A97"}.mdi-book-remove-multiple:before{content:"\F0A96"}.mdi-book-remove-multiple-outline:before{content:"\F04CA"}.mdi-book-remove-outline:before{content:"\F1699"}.mdi-book-search:before{content:"\F0E84"}.mdi-book-search-outline:before{content:"\F0E85"}.mdi-book-settings:before{content:"\F169A"}.mdi-book-settings-outline:before{content:"\F169B"}.mdi-book-sync:before{content:"\F169C"}.mdi-book-sync-outline:before{content:"\F16C8"}.mdi-book-variant:before{content:"\F00BF"}.mdi-bookmark:before{content:"\F00C0"}.mdi-bookmark-box:before{content:"\F1B75"}.mdi-bookmark-box-multiple:before{content:"\F196C"}.mdi-bookmark-box-multiple-outline:before{content:"\F196D"}.mdi-bookmark-box-outline:before{content:"\F1B76"}.mdi-bookmark-check:before{content:"\F00C1"}.mdi-bookmark-check-outline:before{content:"\F137B"}.mdi-bookmark-minus:before{content:"\F09CC"}.mdi-bookmark-minus-outline:before{content:"\F09CD"}.mdi-bookmark-multiple:before{content:"\F0E15"}.mdi-bookmark-multiple-outline:before{content:"\F0E16"}.mdi-bookmark-music:before{content:"\F00C2"}.mdi-bookmark-music-outline:before{content:"\F1379"}.mdi-bookmark-off:before{content:"\F09CE"}.mdi-bookmark-off-outline:before{content:"\F09CF"}.mdi-bookmark-outline:before{content:"\F00C3"}.mdi-bookmark-plus:before{content:"\F00C5"}.mdi-bookmark-plus-outline:before{content:"\F00C4"}.mdi-bookmark-remove:before{content:"\F00C6"}.mdi-bookmark-remove-outline:before{content:"\F137A"}.mdi-bookshelf:before{content:"\F125F"}.mdi-boom-gate:before{content:"\F0E86"}.mdi-boom-gate-alert:before{content:"\F0E87"}.mdi-boom-gate-alert-outline:before{content:"\F0E88"}.mdi-boom-gate-arrow-down:before{content:"\F0E89"}.mdi-boom-gate-arrow-down-outline:before{content:"\F0E8A"}.mdi-boom-gate-arrow-up:before{content:"\F0E8C"}.mdi-boom-gate-arrow-up-outline:before{content:"\F0E8D"}.mdi-boom-gate-outline:before{content:"\F0E8B"}.mdi-boom-gate-up:before{content:"\F17F9"}.mdi-boom-gate-up-outline:before{content:"\F17FA"}.mdi-boombox:before{content:"\F05DC"}.mdi-boomerang:before{content:"\F10CF"}.mdi-bootstrap:before{content:"\F06C6"}.mdi-border-all:before{content:"\F00C7"}.mdi-border-all-variant:before{content:"\F08A1"}.mdi-border-bottom:before{content:"\F00C8"}.mdi-border-bottom-variant:before{content:"\F08A2"}.mdi-border-color:before{content:"\F00C9"}.mdi-border-horizontal:before{content:"\F00CA"}.mdi-border-inside:before{content:"\F00CB"}.mdi-border-left:before{content:"\F00CC"}.mdi-border-left-variant:before{content:"\F08A3"}.mdi-border-none:before{content:"\F00CD"}.mdi-border-none-variant:before{content:"\F08A4"}.mdi-border-outside:before{content:"\F00CE"}.mdi-border-radius:before{content:"\F1AF4"}.mdi-border-right:before{content:"\F00CF"}.mdi-border-right-variant:before{content:"\F08A5"}.mdi-border-style:before{content:"\F00D0"}.mdi-border-top:before{content:"\F00D1"}.mdi-border-top-variant:before{content:"\F08A6"}.mdi-border-vertical:before{content:"\F00D2"}.mdi-bottle-soda:before{content:"\F1070"}.mdi-bottle-soda-classic:before{content:"\F1071"}.mdi-bottle-soda-classic-outline:before{content:"\F1363"}.mdi-bottle-soda-outline:before{content:"\F1072"}.mdi-bottle-tonic:before{content:"\F112E"}.mdi-bottle-tonic-outline:before{content:"\F112F"}.mdi-bottle-tonic-plus:before{content:"\F1130"}.mdi-bottle-tonic-plus-outline:before{content:"\F1131"}.mdi-bottle-tonic-skull:before{content:"\F1132"}.mdi-bottle-tonic-skull-outline:before{content:"\F1133"}.mdi-bottle-wine:before{content:"\F0854"}.mdi-bottle-wine-outline:before{content:"\F1310"}.mdi-bow-arrow:before{content:"\F1841"}.mdi-bow-tie:before{content:"\F0678"}.mdi-bowl:before{content:"\F028E"}.mdi-bowl-mix:before{content:"\F0617"}.mdi-bowl-mix-outline:before{content:"\F02E4"}.mdi-bowl-outline:before{content:"\F02A9"}.mdi-bowling:before{content:"\F00D3"}.mdi-box:before{content:"\F00D4"}.mdi-box-cutter:before{content:"\F00D5"}.mdi-box-cutter-off:before{content:"\F0B4A"}.mdi-box-shadow:before{content:"\F0637"}.mdi-boxing-glove:before{content:"\F0B65"}.mdi-braille:before{content:"\F09D0"}.mdi-brain:before{content:"\F09D1"}.mdi-bread-slice:before{content:"\F0CEE"}.mdi-bread-slice-outline:before{content:"\F0CEF"}.mdi-bridge:before{content:"\F0618"}.mdi-briefcase:before{content:"\F00D6"}.mdi-briefcase-account:before{content:"\F0CF0"}.mdi-briefcase-account-outline:before{content:"\F0CF1"}.mdi-briefcase-arrow-left-right:before{content:"\F1A8D"}.mdi-briefcase-arrow-left-right-outline:before{content:"\F1A8E"}.mdi-briefcase-arrow-up-down:before{content:"\F1A8F"}.mdi-briefcase-arrow-up-down-outline:before{content:"\F1A90"}.mdi-briefcase-check:before{content:"\F00D7"}.mdi-briefcase-check-outline:before{content:"\F131E"}.mdi-briefcase-clock:before{content:"\F10D0"}.mdi-briefcase-clock-outline:before{content:"\F10D1"}.mdi-briefcase-download:before{content:"\F00D8"}.mdi-briefcase-download-outline:before{content:"\F0C3D"}.mdi-briefcase-edit:before{content:"\F0A98"}.mdi-briefcase-edit-outline:before{content:"\F0C3E"}.mdi-briefcase-eye:before{content:"\F17D9"}.mdi-briefcase-eye-outline:before{content:"\F17DA"}.mdi-briefcase-minus:before{content:"\F0A2A"}.mdi-briefcase-minus-outline:before{content:"\F0C3F"}.mdi-briefcase-off:before{content:"\F1658"}.mdi-briefcase-off-outline:before{content:"\F1659"}.mdi-briefcase-outline:before{content:"\F0814"}.mdi-briefcase-plus:before{content:"\F0A2B"}.mdi-briefcase-plus-outline:before{content:"\F0C40"}.mdi-briefcase-remove:before{content:"\F0A2C"}.mdi-briefcase-remove-outline:before{content:"\F0C41"}.mdi-briefcase-search:before{content:"\F0A2D"}.mdi-briefcase-search-outline:before{content:"\F0C42"}.mdi-briefcase-upload:before{content:"\F00D9"}.mdi-briefcase-upload-outline:before{content:"\F0C43"}.mdi-briefcase-variant:before{content:"\F1494"}.mdi-briefcase-variant-off:before{content:"\F165A"}.mdi-briefcase-variant-off-outline:before{content:"\F165B"}.mdi-briefcase-variant-outline:before{content:"\F1495"}.mdi-brightness-1:before{content:"\F00DA"}.mdi-brightness-2:before{content:"\F00DB"}.mdi-brightness-3:before{content:"\F00DC"}.mdi-brightness-4:before{content:"\F00DD"}.mdi-brightness-5:before{content:"\F00DE"}.mdi-brightness-6:before{content:"\F00DF"}.mdi-brightness-7:before{content:"\F00E0"}.mdi-brightness-auto:before{content:"\F00E1"}.mdi-brightness-percent:before{content:"\F0CF2"}.mdi-broadcast:before{content:"\F1720"}.mdi-broadcast-off:before{content:"\F1721"}.mdi-broom:before{content:"\F00E2"}.mdi-brush:before{content:"\F00E3"}.mdi-brush-off:before{content:"\F1771"}.mdi-brush-outline:before{content:"\F1A0D"}.mdi-brush-variant:before{content:"\F1813"}.mdi-bucket:before{content:"\F1415"}.mdi-bucket-outline:before{content:"\F1416"}.mdi-buffet:before{content:"\F0578"}.mdi-bug:before{content:"\F00E4"}.mdi-bug-check:before{content:"\F0A2E"}.mdi-bug-check-outline:before{content:"\F0A2F"}.mdi-bug-outline:before{content:"\F0A30"}.mdi-bug-pause:before{content:"\F1AF5"}.mdi-bug-pause-outline:before{content:"\F1AF6"}.mdi-bug-play:before{content:"\F1AF7"}.mdi-bug-play-outline:before{content:"\F1AF8"}.mdi-bug-stop:before{content:"\F1AF9"}.mdi-bug-stop-outline:before{content:"\F1AFA"}.mdi-bugle:before{content:"\F0DB4"}.mdi-bulkhead-light:before{content:"\F1A2F"}.mdi-bulldozer:before{content:"\F0B22"}.mdi-bullet:before{content:"\F0CF3"}.mdi-bulletin-board:before{content:"\F00E5"}.mdi-bullhorn:before{content:"\F00E6"}.mdi-bullhorn-outline:before{content:"\F0B23"}.mdi-bullhorn-variant:before{content:"\F196E"}.mdi-bullhorn-variant-outline:before{content:"\F196F"}.mdi-bullseye:before{content:"\F05DD"}.mdi-bullseye-arrow:before{content:"\F08C9"}.mdi-bulma:before{content:"\F12E7"}.mdi-bunk-bed:before{content:"\F1302"}.mdi-bunk-bed-outline:before{content:"\F0097"}.mdi-bus:before{content:"\F00E7"}.mdi-bus-alert:before{content:"\F0A99"}.mdi-bus-articulated-end:before{content:"\F079C"}.mdi-bus-articulated-front:before{content:"\F079D"}.mdi-bus-clock:before{content:"\F08CA"}.mdi-bus-double-decker:before{content:"\F079E"}.mdi-bus-electric:before{content:"\F191D"}.mdi-bus-marker:before{content:"\F1212"}.mdi-bus-multiple:before{content:"\F0F3F"}.mdi-bus-school:before{content:"\F079F"}.mdi-bus-side:before{content:"\F07A0"}.mdi-bus-sign:before{content:"\F1CC1"}.mdi-bus-stop:before{content:"\F1012"}.mdi-bus-stop-covered:before{content:"\F1013"}.mdi-bus-stop-uncovered:before{content:"\F1014"}.mdi-bus-wrench:before{content:"\F1CC2"}.mdi-butterfly:before{content:"\F1589"}.mdi-butterfly-outline:before{content:"\F158A"}.mdi-button-cursor:before{content:"\F1B4F"}.mdi-button-pointer:before{content:"\F1B50"}.mdi-cabin-a-frame:before{content:"\F188C"}.mdi-cable-data:before{content:"\F1394"}.mdi-cached:before{content:"\F00E8"}.mdi-cactus:before{content:"\F0DB5"}.mdi-cake:before{content:"\F00E9"}.mdi-cake-layered:before{content:"\F00EA"}.mdi-cake-variant:before{content:"\F00EB"}.mdi-cake-variant-outline:before{content:"\F17F0"}.mdi-calculator:before{content:"\F00EC"}.mdi-calculator-variant:before{content:"\F0A9A"}.mdi-calculator-variant-outline:before{content:"\F15A6"}.mdi-calendar:before{content:"\F00ED"}.mdi-calendar-account:before{content:"\F0ED7"}.mdi-calendar-account-outline:before{content:"\F0ED8"}.mdi-calendar-alert:before{content:"\F0A31"}.mdi-calendar-alert-outline:before{content:"\F1B62"}.mdi-calendar-arrow-left:before{content:"\F1134"}.mdi-calendar-arrow-right:before{content:"\F1135"}.mdi-calendar-badge:before{content:"\F1B9D"}.mdi-calendar-badge-outline:before{content:"\F1B9E"}.mdi-calendar-blank:before{content:"\F00EE"}.mdi-calendar-blank-multiple:before{content:"\F1073"}.mdi-calendar-blank-outline:before{content:"\F0B66"}.mdi-calendar-check:before{content:"\F00EF"}.mdi-calendar-check-outline:before{content:"\F0C44"}.mdi-calendar-clock:before{content:"\F00F0"}.mdi-calendar-clock-outline:before{content:"\F16E1"}.mdi-calendar-collapse-horizontal:before{content:"\F189D"}.mdi-calendar-collapse-horizontal-outline:before{content:"\F1B63"}.mdi-calendar-cursor:before{content:"\F157B"}.mdi-calendar-cursor-outline:before{content:"\F1B64"}.mdi-calendar-edit:before{content:"\F08A7"}.mdi-calendar-edit-outline:before{content:"\F1B65"}.mdi-calendar-end:before{content:"\F166C"}.mdi-calendar-end-outline:before{content:"\F1B66"}.mdi-calendar-expand-horizontal:before{content:"\F189E"}.mdi-calendar-expand-horizontal-outline:before{content:"\F1B67"}.mdi-calendar-export:before{content:"\F0B24"}.mdi-calendar-export-outline:before{content:"\F1B68"}.mdi-calendar-filter:before{content:"\F1A32"}.mdi-calendar-filter-outline:before{content:"\F1A33"}.mdi-calendar-heart:before{content:"\F09D2"}.mdi-calendar-heart-outline:before{content:"\F1B69"}.mdi-calendar-import:before{content:"\F0B25"}.mdi-calendar-import-outline:before{content:"\F1B6A"}.mdi-calendar-lock:before{content:"\F1641"}.mdi-calendar-lock-open:before{content:"\F1B5B"}.mdi-calendar-lock-open-outline:before{content:"\F1B5C"}.mdi-calendar-lock-outline:before{content:"\F1642"}.mdi-calendar-minus:before{content:"\F0D5C"}.mdi-calendar-minus-outline:before{content:"\F1B6B"}.mdi-calendar-month:before{content:"\F0E17"}.mdi-calendar-month-outline:before{content:"\F0E18"}.mdi-calendar-multiple:before{content:"\F00F1"}.mdi-calendar-multiple-check:before{content:"\F00F2"}.mdi-calendar-multiselect:before{content:"\F0A32"}.mdi-calendar-multiselect-outline:before{content:"\F1B55"}.mdi-calendar-outline:before{content:"\F0B67"}.mdi-calendar-plus:before{content:"\F00F3"}.mdi-calendar-plus-outline:before{content:"\F1B6C"}.mdi-calendar-question:before{content:"\F0692"}.mdi-calendar-question-outline:before{content:"\F1B6D"}.mdi-calendar-range:before{content:"\F0679"}.mdi-calendar-range-outline:before{content:"\F0B68"}.mdi-calendar-refresh:before{content:"\F01E1"}.mdi-calendar-refresh-outline:before{content:"\F0203"}.mdi-calendar-remove:before{content:"\F00F4"}.mdi-calendar-remove-outline:before{content:"\F0C45"}.mdi-calendar-search:before{content:"\F094C"}.mdi-calendar-search-outline:before{content:"\F1B6E"}.mdi-calendar-star:before{content:"\F09D3"}.mdi-calendar-star-four-points:before{content:"\F1C1F"}.mdi-calendar-star-outline:before{content:"\F1B53"}.mdi-calendar-start:before{content:"\F166D"}.mdi-calendar-start-outline:before{content:"\F1B6F"}.mdi-calendar-sync:before{content:"\F0E8E"}.mdi-calendar-sync-outline:before{content:"\F0E8F"}.mdi-calendar-text:before{content:"\F00F5"}.mdi-calendar-text-outline:before{content:"\F0C46"}.mdi-calendar-today:before{content:"\F00F6"}.mdi-calendar-today-outline:before{content:"\F1A30"}.mdi-calendar-week:before{content:"\F0A33"}.mdi-calendar-week-begin:before{content:"\F0A34"}.mdi-calendar-week-begin-outline:before{content:"\F1A31"}.mdi-calendar-week-outline:before{content:"\F1A34"}.mdi-calendar-weekend:before{content:"\F0ED9"}.mdi-calendar-weekend-outline:before{content:"\F0EDA"}.mdi-call-made:before{content:"\F00F7"}.mdi-call-merge:before{content:"\F00F8"}.mdi-call-missed:before{content:"\F00F9"}.mdi-call-received:before{content:"\F00FA"}.mdi-call-split:before{content:"\F00FB"}.mdi-camcorder:before{content:"\F00FC"}.mdi-camcorder-off:before{content:"\F00FF"}.mdi-camera:before{content:"\F0100"}.mdi-camera-account:before{content:"\F08CB"}.mdi-camera-burst:before{content:"\F0693"}.mdi-camera-control:before{content:"\F0B69"}.mdi-camera-document:before{content:"\F1871"}.mdi-camera-document-off:before{content:"\F1872"}.mdi-camera-enhance:before{content:"\F0101"}.mdi-camera-enhance-outline:before{content:"\F0B6A"}.mdi-camera-flip:before{content:"\F15D9"}.mdi-camera-flip-outline:before{content:"\F15DA"}.mdi-camera-front:before{content:"\F0102"}.mdi-camera-front-variant:before{content:"\F0103"}.mdi-camera-gopro:before{content:"\F07A1"}.mdi-camera-image:before{content:"\F08CC"}.mdi-camera-iris:before{content:"\F0104"}.mdi-camera-lock:before{content:"\F1A14"}.mdi-camera-lock-open:before{content:"\F1C0D"}.mdi-camera-lock-open-outline:before{content:"\F1C0E"}.mdi-camera-lock-outline:before{content:"\F1A15"}.mdi-camera-marker:before{content:"\F19A7"}.mdi-camera-marker-outline:before{content:"\F19A8"}.mdi-camera-metering-center:before{content:"\F07A2"}.mdi-camera-metering-matrix:before{content:"\F07A3"}.mdi-camera-metering-partial:before{content:"\F07A4"}.mdi-camera-metering-spot:before{content:"\F07A5"}.mdi-camera-off:before{content:"\F05DF"}.mdi-camera-off-outline:before{content:"\F19BF"}.mdi-camera-outline:before{content:"\F0D5D"}.mdi-camera-party-mode:before{content:"\F0105"}.mdi-camera-plus:before{content:"\F0EDB"}.mdi-camera-plus-outline:before{content:"\F0EDC"}.mdi-camera-rear:before{content:"\F0106"}.mdi-camera-rear-variant:before{content:"\F0107"}.mdi-camera-retake:before{content:"\F0E19"}.mdi-camera-retake-outline:before{content:"\F0E1A"}.mdi-camera-switch:before{content:"\F0108"}.mdi-camera-switch-outline:before{content:"\F084A"}.mdi-camera-timer:before{content:"\F0109"}.mdi-camera-wireless:before{content:"\F0DB6"}.mdi-camera-wireless-outline:before{content:"\F0DB7"}.mdi-campfire:before{content:"\F0EDD"}.mdi-cancel:before{content:"\F073A"}.mdi-candelabra:before{content:"\F17D2"}.mdi-candelabra-fire:before{content:"\F17D3"}.mdi-candle:before{content:"\F05E2"}.mdi-candy:before{content:"\F1970"}.mdi-candy-off:before{content:"\F1971"}.mdi-candy-off-outline:before{content:"\F1972"}.mdi-candy-outline:before{content:"\F1973"}.mdi-candycane:before{content:"\F010A"}.mdi-cannabis:before{content:"\F07A6"}.mdi-cannabis-off:before{content:"\F166E"}.mdi-caps-lock:before{content:"\F0A9B"}.mdi-car:before{content:"\F010B"}.mdi-car-2-plus:before{content:"\F1015"}.mdi-car-3-plus:before{content:"\F1016"}.mdi-car-arrow-left:before{content:"\F13B2"}.mdi-car-arrow-right:before{content:"\F13B3"}.mdi-car-back:before{content:"\F0E1B"}.mdi-car-battery:before{content:"\F010C"}.mdi-car-brake-abs:before{content:"\F0C47"}.mdi-car-brake-alert:before{content:"\F0C48"}.mdi-car-brake-fluid-level:before{content:"\F1909"}.mdi-car-brake-hold:before{content:"\F0D5E"}.mdi-car-brake-low-pressure:before{content:"\F190A"}.mdi-car-brake-parking:before{content:"\F0D5F"}.mdi-car-brake-retarder:before{content:"\F1017"}.mdi-car-brake-temperature:before{content:"\F190B"}.mdi-car-brake-worn-linings:before{content:"\F190C"}.mdi-car-child-seat:before{content:"\F0FA3"}.mdi-car-clock:before{content:"\F1974"}.mdi-car-clutch:before{content:"\F1018"}.mdi-car-cog:before{content:"\F13CC"}.mdi-car-connected:before{content:"\F010D"}.mdi-car-convertible:before{content:"\F07A7"}.mdi-car-coolant-level:before{content:"\F1019"}.mdi-car-cruise-control:before{content:"\F0D60"}.mdi-car-defrost-front:before{content:"\F0D61"}.mdi-car-defrost-rear:before{content:"\F0D62"}.mdi-car-door:before{content:"\F0B6B"}.mdi-car-door-lock:before{content:"\F109D"}.mdi-car-door-lock-open:before{content:"\F1C81"}.mdi-car-electric:before{content:"\F0B6C"}.mdi-car-electric-outline:before{content:"\F15B5"}.mdi-car-emergency:before{content:"\F160F"}.mdi-car-esp:before{content:"\F0C49"}.mdi-car-estate:before{content:"\F07A8"}.mdi-car-hatchback:before{content:"\F07A9"}.mdi-car-info:before{content:"\F11BE"}.mdi-car-key:before{content:"\F0B6D"}.mdi-car-lifted-pickup:before{content:"\F152D"}.mdi-car-light-alert:before{content:"\F190D"}.mdi-car-light-dimmed:before{content:"\F0C4A"}.mdi-car-light-fog:before{content:"\F0C4B"}.mdi-car-light-high:before{content:"\F0C4C"}.mdi-car-limousine:before{content:"\F08CD"}.mdi-car-multiple:before{content:"\F0B6E"}.mdi-car-off:before{content:"\F0E1C"}.mdi-car-outline:before{content:"\F14ED"}.mdi-car-parking-lights:before{content:"\F0D63"}.mdi-car-pickup:before{content:"\F07AA"}.mdi-car-search:before{content:"\F1B8D"}.mdi-car-search-outline:before{content:"\F1B8E"}.mdi-car-seat:before{content:"\F0FA4"}.mdi-car-seat-cooler:before{content:"\F0FA5"}.mdi-car-seat-heater:before{content:"\F0FA6"}.mdi-car-select:before{content:"\F1879"}.mdi-car-settings:before{content:"\F13CD"}.mdi-car-shift-pattern:before{content:"\F0F40"}.mdi-car-side:before{content:"\F07AB"}.mdi-car-speed-limiter:before{content:"\F190E"}.mdi-car-sports:before{content:"\F07AC"}.mdi-car-tire-alert:before{content:"\F0C4D"}.mdi-car-traction-control:before{content:"\F0D64"}.mdi-car-turbocharger:before{content:"\F101A"}.mdi-car-wash:before{content:"\F010E"}.mdi-car-windshield:before{content:"\F101B"}.mdi-car-windshield-outline:before{content:"\F101C"}.mdi-car-wireless:before{content:"\F1878"}.mdi-car-wrench:before{content:"\F1814"}.mdi-carabiner:before{content:"\F14C0"}.mdi-caravan:before{content:"\F07AD"}.mdi-card:before{content:"\F0B6F"}.mdi-card-account-details:before{content:"\F05D2"}.mdi-card-account-details-outline:before{content:"\F0DAB"}.mdi-card-account-details-star:before{content:"\F02A3"}.mdi-card-account-details-star-outline:before{content:"\F06DB"}.mdi-card-account-mail:before{content:"\F018E"}.mdi-card-account-mail-outline:before{content:"\F0E98"}.mdi-card-account-phone:before{content:"\F0E99"}.mdi-card-account-phone-outline:before{content:"\F0E9A"}.mdi-card-bulleted:before{content:"\F0B70"}.mdi-card-bulleted-off:before{content:"\F0B71"}.mdi-card-bulleted-off-outline:before{content:"\F0B72"}.mdi-card-bulleted-outline:before{content:"\F0B73"}.mdi-card-bulleted-settings:before{content:"\F0B74"}.mdi-card-bulleted-settings-outline:before{content:"\F0B75"}.mdi-card-minus:before{content:"\F1600"}.mdi-card-minus-outline:before{content:"\F1601"}.mdi-card-multiple:before{content:"\F17F1"}.mdi-card-multiple-outline:before{content:"\F17F2"}.mdi-card-off:before{content:"\F1602"}.mdi-card-off-outline:before{content:"\F1603"}.mdi-card-outline:before{content:"\F0B76"}.mdi-card-plus:before{content:"\F11FF"}.mdi-card-plus-outline:before{content:"\F1200"}.mdi-card-remove:before{content:"\F1604"}.mdi-card-remove-outline:before{content:"\F1605"}.mdi-card-search:before{content:"\F1074"}.mdi-card-search-outline:before{content:"\F1075"}.mdi-card-text:before{content:"\F0B77"}.mdi-card-text-outline:before{content:"\F0B78"}.mdi-cards:before{content:"\F0638"}.mdi-cards-club:before{content:"\F08CE"}.mdi-cards-club-outline:before{content:"\F189F"}.mdi-cards-diamond:before{content:"\F08CF"}.mdi-cards-diamond-outline:before{content:"\F101D"}.mdi-cards-heart:before{content:"\F08D0"}.mdi-cards-heart-outline:before{content:"\F18A0"}.mdi-cards-outline:before{content:"\F0639"}.mdi-cards-playing:before{content:"\F18A1"}.mdi-cards-playing-club:before{content:"\F18A2"}.mdi-cards-playing-club-multiple:before{content:"\F18A3"}.mdi-cards-playing-club-multiple-outline:before{content:"\F18A4"}.mdi-cards-playing-club-outline:before{content:"\F18A5"}.mdi-cards-playing-diamond:before{content:"\F18A6"}.mdi-cards-playing-diamond-multiple:before{content:"\F18A7"}.mdi-cards-playing-diamond-multiple-outline:before{content:"\F18A8"}.mdi-cards-playing-diamond-outline:before{content:"\F18A9"}.mdi-cards-playing-heart:before{content:"\F18AA"}.mdi-cards-playing-heart-multiple:before{content:"\F18AB"}.mdi-cards-playing-heart-multiple-outline:before{content:"\F18AC"}.mdi-cards-playing-heart-outline:before{content:"\F18AD"}.mdi-cards-playing-outline:before{content:"\F063A"}.mdi-cards-playing-spade:before{content:"\F18AE"}.mdi-cards-playing-spade-multiple:before{content:"\F18AF"}.mdi-cards-playing-spade-multiple-outline:before{content:"\F18B0"}.mdi-cards-playing-spade-outline:before{content:"\F18B1"}.mdi-cards-spade:before{content:"\F08D1"}.mdi-cards-spade-outline:before{content:"\F18B2"}.mdi-cards-variant:before{content:"\F06C7"}.mdi-carrot:before{content:"\F010F"}.mdi-cart:before{content:"\F0110"}.mdi-cart-arrow-down:before{content:"\F0D66"}.mdi-cart-arrow-right:before{content:"\F0C4E"}.mdi-cart-arrow-up:before{content:"\F0D67"}.mdi-cart-check:before{content:"\F15EA"}.mdi-cart-heart:before{content:"\F18E0"}.mdi-cart-minus:before{content:"\F0D68"}.mdi-cart-off:before{content:"\F066B"}.mdi-cart-outline:before{content:"\F0111"}.mdi-cart-percent:before{content:"\F1BAE"}.mdi-cart-plus:before{content:"\F0112"}.mdi-cart-remove:before{content:"\F0D69"}.mdi-cart-variant:before{content:"\F15EB"}.mdi-case-sensitive-alt:before{content:"\F0113"}.mdi-cash:before{content:"\F0114"}.mdi-cash-100:before{content:"\F0115"}.mdi-cash-check:before{content:"\F14EE"}.mdi-cash-clock:before{content:"\F1A91"}.mdi-cash-edit:before{content:"\F1CAB"}.mdi-cash-fast:before{content:"\F185C"}.mdi-cash-lock:before{content:"\F14EA"}.mdi-cash-lock-open:before{content:"\F14EB"}.mdi-cash-marker:before{content:"\F0DB8"}.mdi-cash-minus:before{content:"\F1260"}.mdi-cash-multiple:before{content:"\F0116"}.mdi-cash-off:before{content:"\F1C79"}.mdi-cash-plus:before{content:"\F1261"}.mdi-cash-refund:before{content:"\F0A9C"}.mdi-cash-register:before{content:"\F0CF4"}.mdi-cash-remove:before{content:"\F1262"}.mdi-cash-sync:before{content:"\F1A92"}.mdi-cassette:before{content:"\F09D4"}.mdi-cast:before{content:"\F0118"}.mdi-cast-audio:before{content:"\F101E"}.mdi-cast-audio-variant:before{content:"\F1749"}.mdi-cast-connected:before{content:"\F0119"}.mdi-cast-education:before{content:"\F0E1D"}.mdi-cast-off:before{content:"\F078A"}.mdi-cast-variant:before{content:"\F001F"}.mdi-castle:before{content:"\F011A"}.mdi-cat:before{content:"\F011B"}.mdi-cctv:before{content:"\F07AE"}.mdi-cctv-off:before{content:"\F185F"}.mdi-ceiling-fan:before{content:"\F1797"}.mdi-ceiling-fan-light:before{content:"\F1798"}.mdi-ceiling-light:before{content:"\F0769"}.mdi-ceiling-light-multiple:before{content:"\F18DD"}.mdi-ceiling-light-multiple-outline:before{content:"\F18DE"}.mdi-ceiling-light-outline:before{content:"\F17C7"}.mdi-cellphone:before{content:"\F011C"}.mdi-cellphone-arrow-down:before{content:"\F09D5"}.mdi-cellphone-arrow-down-variant:before{content:"\F19C5"}.mdi-cellphone-basic:before{content:"\F011E"}.mdi-cellphone-charging:before{content:"\F1397"}.mdi-cellphone-check:before{content:"\F17FD"}.mdi-cellphone-cog:before{content:"\F0951"}.mdi-cellphone-dock:before{content:"\F011F"}.mdi-cellphone-information:before{content:"\F0F41"}.mdi-cellphone-key:before{content:"\F094E"}.mdi-cellphone-link:before{content:"\F0121"}.mdi-cellphone-link-off:before{content:"\F0122"}.mdi-cellphone-lock:before{content:"\F094F"}.mdi-cellphone-marker:before{content:"\F183A"}.mdi-cellphone-message:before{content:"\F08D3"}.mdi-cellphone-message-off:before{content:"\F10D2"}.mdi-cellphone-nfc:before{content:"\F0E90"}.mdi-cellphone-nfc-off:before{content:"\F12D8"}.mdi-cellphone-off:before{content:"\F0950"}.mdi-cellphone-play:before{content:"\F101F"}.mdi-cellphone-remove:before{content:"\F094D"}.mdi-cellphone-screenshot:before{content:"\F0A35"}.mdi-cellphone-settings:before{content:"\F0123"}.mdi-cellphone-sound:before{content:"\F0952"}.mdi-cellphone-text:before{content:"\F08D2"}.mdi-cellphone-wireless:before{content:"\F0815"}.mdi-centos:before{content:"\F111A"}.mdi-certificate:before{content:"\F0124"}.mdi-certificate-outline:before{content:"\F1188"}.mdi-chair-rolling:before{content:"\F0F48"}.mdi-chair-school:before{content:"\F0125"}.mdi-chandelier:before{content:"\F1793"}.mdi-charity:before{content:"\F0C4F"}.mdi-charity-search:before{content:"\F1C82"}.mdi-chart-arc:before{content:"\F0126"}.mdi-chart-areaspline:before{content:"\F0127"}.mdi-chart-areaspline-variant:before{content:"\F0E91"}.mdi-chart-bar:before{content:"\F0128"}.mdi-chart-bar-stacked:before{content:"\F076A"}.mdi-chart-bell-curve:before{content:"\F0C50"}.mdi-chart-bell-curve-cumulative:before{content:"\F0FA7"}.mdi-chart-box:before{content:"\F154D"}.mdi-chart-box-multiple:before{content:"\F1CCD"}.mdi-chart-box-multiple-outline:before{content:"\F1CCE"}.mdi-chart-box-outline:before{content:"\F154E"}.mdi-chart-box-plus-outline:before{content:"\F154F"}.mdi-chart-bubble:before{content:"\F05E3"}.mdi-chart-donut:before{content:"\F07AF"}.mdi-chart-donut-variant:before{content:"\F07B0"}.mdi-chart-gantt:before{content:"\F066C"}.mdi-chart-histogram:before{content:"\F0129"}.mdi-chart-line:before{content:"\F012A"}.mdi-chart-line-stacked:before{content:"\F076B"}.mdi-chart-line-variant:before{content:"\F07B1"}.mdi-chart-multiline:before{content:"\F08D4"}.mdi-chart-multiple:before{content:"\F1213"}.mdi-chart-pie:before{content:"\F012B"}.mdi-chart-pie-outline:before{content:"\F1BDF"}.mdi-chart-ppf:before{content:"\F1380"}.mdi-chart-sankey:before{content:"\F11DF"}.mdi-chart-sankey-variant:before{content:"\F11E0"}.mdi-chart-scatter-plot:before{content:"\F0E92"}.mdi-chart-scatter-plot-hexbin:before{content:"\F066D"}.mdi-chart-timeline:before{content:"\F066E"}.mdi-chart-timeline-variant:before{content:"\F0E93"}.mdi-chart-timeline-variant-shimmer:before{content:"\F15B6"}.mdi-chart-tree:before{content:"\F0E94"}.mdi-chart-waterfall:before{content:"\F1918"}.mdi-chat:before{content:"\F0B79"}.mdi-chat-alert:before{content:"\F0B7A"}.mdi-chat-alert-outline:before{content:"\F12C9"}.mdi-chat-minus:before{content:"\F1410"}.mdi-chat-minus-outline:before{content:"\F1413"}.mdi-chat-outline:before{content:"\F0EDE"}.mdi-chat-plus:before{content:"\F140F"}.mdi-chat-plus-outline:before{content:"\F1412"}.mdi-chat-processing:before{content:"\F0B7B"}.mdi-chat-processing-outline:before{content:"\F12CA"}.mdi-chat-question:before{content:"\F1738"}.mdi-chat-question-outline:before{content:"\F1739"}.mdi-chat-remove:before{content:"\F1411"}.mdi-chat-remove-outline:before{content:"\F1414"}.mdi-chat-sleep:before{content:"\F12D1"}.mdi-chat-sleep-outline:before{content:"\F12D2"}.mdi-check:before{content:"\F012C"}.mdi-check-all:before{content:"\F012D"}.mdi-check-bold:before{content:"\F0E1E"}.mdi-check-circle:before{content:"\F05E0"}.mdi-check-circle-outline:before{content:"\F05E1"}.mdi-check-decagram:before{content:"\F0791"}.mdi-check-decagram-outline:before{content:"\F1740"}.mdi-check-network:before{content:"\F0C53"}.mdi-check-network-outline:before{content:"\F0C54"}.mdi-check-outline:before{content:"\F0855"}.mdi-check-underline:before{content:"\F0E1F"}.mdi-check-underline-circle:before{content:"\F0E20"}.mdi-check-underline-circle-outline:before{content:"\F0E21"}.mdi-checkbook:before{content:"\F0A9D"}.mdi-checkbook-arrow-left:before{content:"\F1C1D"}.mdi-checkbook-arrow-right:before{content:"\F1C1E"}.mdi-checkbox-blank:before{content:"\F012E"}.mdi-checkbox-blank-badge:before{content:"\F1176"}.mdi-checkbox-blank-badge-outline:before{content:"\F0117"}.mdi-checkbox-blank-circle:before{content:"\F012F"}.mdi-checkbox-blank-circle-outline:before{content:"\F0130"}.mdi-checkbox-blank-off:before{content:"\F12EC"}.mdi-checkbox-blank-off-outline:before{content:"\F12ED"}.mdi-checkbox-blank-outline:before{content:"\F0131"}.mdi-checkbox-intermediate:before{content:"\F0856"}.mdi-checkbox-intermediate-variant:before{content:"\F1B54"}.mdi-checkbox-marked:before{content:"\F0132"}.mdi-checkbox-marked-circle:before{content:"\F0133"}.mdi-checkbox-marked-circle-auto-outline:before{content:"\F1C26"}.mdi-checkbox-marked-circle-minus-outline:before{content:"\F1C27"}.mdi-checkbox-marked-circle-outline:before{content:"\F0134"}.mdi-checkbox-marked-circle-plus-outline:before{content:"\F1927"}.mdi-checkbox-marked-outline:before{content:"\F0135"}.mdi-checkbox-multiple-blank:before{content:"\F0136"}.mdi-checkbox-multiple-blank-circle:before{content:"\F063B"}.mdi-checkbox-multiple-blank-circle-outline:before{content:"\F063C"}.mdi-checkbox-multiple-blank-outline:before{content:"\F0137"}.mdi-checkbox-multiple-marked:before{content:"\F0138"}.mdi-checkbox-multiple-marked-circle:before{content:"\F063D"}.mdi-checkbox-multiple-marked-circle-outline:before{content:"\F063E"}.mdi-checkbox-multiple-marked-outline:before{content:"\F0139"}.mdi-checkbox-multiple-outline:before{content:"\F0C51"}.mdi-checkbox-outline:before{content:"\F0C52"}.mdi-checkerboard:before{content:"\F013A"}.mdi-checkerboard-minus:before{content:"\F1202"}.mdi-checkerboard-plus:before{content:"\F1201"}.mdi-checkerboard-remove:before{content:"\F1203"}.mdi-cheese:before{content:"\F12B9"}.mdi-cheese-off:before{content:"\F13EE"}.mdi-chef-hat:before{content:"\F0B7C"}.mdi-chemical-weapon:before{content:"\F013B"}.mdi-chess-bishop:before{content:"\F085C"}.mdi-chess-king:before{content:"\F0857"}.mdi-chess-knight:before{content:"\F0858"}.mdi-chess-pawn:before{content:"\F0859"}.mdi-chess-queen:before{content:"\F085A"}.mdi-chess-rook:before{content:"\F085B"}.mdi-chevron-double-down:before{content:"\F013C"}.mdi-chevron-double-left:before{content:"\F013D"}.mdi-chevron-double-right:before{content:"\F013E"}.mdi-chevron-double-up:before{content:"\F013F"}.mdi-chevron-down:before{content:"\F0140"}.mdi-chevron-down-box:before{content:"\F09D6"}.mdi-chevron-down-box-outline:before{content:"\F09D7"}.mdi-chevron-down-circle:before{content:"\F0B26"}.mdi-chevron-down-circle-outline:before{content:"\F0B27"}.mdi-chevron-left:before{content:"\F0141"}.mdi-chevron-left-box:before{content:"\F09D8"}.mdi-chevron-left-box-outline:before{content:"\F09D9"}.mdi-chevron-left-circle:before{content:"\F0B28"}.mdi-chevron-left-circle-outline:before{content:"\F0B29"}.mdi-chevron-right:before{content:"\F0142"}.mdi-chevron-right-box:before{content:"\F09DA"}.mdi-chevron-right-box-outline:before{content:"\F09DB"}.mdi-chevron-right-circle:before{content:"\F0B2A"}.mdi-chevron-right-circle-outline:before{content:"\F0B2B"}.mdi-chevron-triple-down:before{content:"\F0DB9"}.mdi-chevron-triple-left:before{content:"\F0DBA"}.mdi-chevron-triple-right:before{content:"\F0DBB"}.mdi-chevron-triple-up:before{content:"\F0DBC"}.mdi-chevron-up:before{content:"\F0143"}.mdi-chevron-up-box:before{content:"\F09DC"}.mdi-chevron-up-box-outline:before{content:"\F09DD"}.mdi-chevron-up-circle:before{content:"\F0B2C"}.mdi-chevron-up-circle-outline:before{content:"\F0B2D"}.mdi-chili-alert:before{content:"\F17EA"}.mdi-chili-alert-outline:before{content:"\F17EB"}.mdi-chili-hot:before{content:"\F07B2"}.mdi-chili-hot-outline:before{content:"\F17EC"}.mdi-chili-medium:before{content:"\F07B3"}.mdi-chili-medium-outline:before{content:"\F17ED"}.mdi-chili-mild:before{content:"\F07B4"}.mdi-chili-mild-outline:before{content:"\F17EE"}.mdi-chili-off:before{content:"\F1467"}.mdi-chili-off-outline:before{content:"\F17EF"}.mdi-chip:before{content:"\F061A"}.mdi-church:before{content:"\F0144"}.mdi-church-outline:before{content:"\F1B02"}.mdi-cigar:before{content:"\F1189"}.mdi-cigar-off:before{content:"\F141B"}.mdi-circle:before{content:"\F0765"}.mdi-circle-box:before{content:"\F15DC"}.mdi-circle-box-outline:before{content:"\F15DD"}.mdi-circle-double:before{content:"\F0E95"}.mdi-circle-edit-outline:before{content:"\F08D5"}.mdi-circle-expand:before{content:"\F0E96"}.mdi-circle-half:before{content:"\F1395"}.mdi-circle-half-full:before{content:"\F1396"}.mdi-circle-medium:before{content:"\F09DE"}.mdi-circle-multiple:before{content:"\F0B38"}.mdi-circle-multiple-outline:before{content:"\F0695"}.mdi-circle-off-outline:before{content:"\F10D3"}.mdi-circle-opacity:before{content:"\F1853"}.mdi-circle-outline:before{content:"\F0766"}.mdi-circle-slice-1:before{content:"\F0A9E"}.mdi-circle-slice-2:before{content:"\F0A9F"}.mdi-circle-slice-3:before{content:"\F0AA0"}.mdi-circle-slice-4:before{content:"\F0AA1"}.mdi-circle-slice-5:before{content:"\F0AA2"}.mdi-circle-slice-6:before{content:"\F0AA3"}.mdi-circle-slice-7:before{content:"\F0AA4"}.mdi-circle-slice-8:before{content:"\F0AA5"}.mdi-circle-small:before{content:"\F09DF"}.mdi-circular-saw:before{content:"\F0E22"}.mdi-city:before{content:"\F0146"}.mdi-city-switch:before{content:"\F1C28"}.mdi-city-variant:before{content:"\F0A36"}.mdi-city-variant-outline:before{content:"\F0A37"}.mdi-clipboard:before{content:"\F0147"}.mdi-clipboard-account:before{content:"\F0148"}.mdi-clipboard-account-outline:before{content:"\F0C55"}.mdi-clipboard-alert:before{content:"\F0149"}.mdi-clipboard-alert-outline:before{content:"\F0CF7"}.mdi-clipboard-arrow-down:before{content:"\F014A"}.mdi-clipboard-arrow-down-outline:before{content:"\F0C56"}.mdi-clipboard-arrow-left:before{content:"\F014B"}.mdi-clipboard-arrow-left-outline:before{content:"\F0CF8"}.mdi-clipboard-arrow-right:before{content:"\F0CF9"}.mdi-clipboard-arrow-right-outline:before{content:"\F0CFA"}.mdi-clipboard-arrow-up:before{content:"\F0C57"}.mdi-clipboard-arrow-up-outline:before{content:"\F0C58"}.mdi-clipboard-check:before{content:"\F014E"}.mdi-clipboard-check-multiple:before{content:"\F1263"}.mdi-clipboard-check-multiple-outline:before{content:"\F1264"}.mdi-clipboard-check-outline:before{content:"\F08A8"}.mdi-clipboard-clock:before{content:"\F16E2"}.mdi-clipboard-clock-outline:before{content:"\F16E3"}.mdi-clipboard-edit:before{content:"\F14E5"}.mdi-clipboard-edit-outline:before{content:"\F14E6"}.mdi-clipboard-file:before{content:"\F1265"}.mdi-clipboard-file-outline:before{content:"\F1266"}.mdi-clipboard-flow:before{content:"\F06C8"}.mdi-clipboard-flow-outline:before{content:"\F1117"}.mdi-clipboard-list:before{content:"\F10D4"}.mdi-clipboard-list-outline:before{content:"\F10D5"}.mdi-clipboard-minus:before{content:"\F1618"}.mdi-clipboard-minus-outline:before{content:"\F1619"}.mdi-clipboard-multiple:before{content:"\F1267"}.mdi-clipboard-multiple-outline:before{content:"\F1268"}.mdi-clipboard-off:before{content:"\F161A"}.mdi-clipboard-off-outline:before{content:"\F161B"}.mdi-clipboard-outline:before{content:"\F014C"}.mdi-clipboard-play:before{content:"\F0C59"}.mdi-clipboard-play-multiple:before{content:"\F1269"}.mdi-clipboard-play-multiple-outline:before{content:"\F126A"}.mdi-clipboard-play-outline:before{content:"\F0C5A"}.mdi-clipboard-plus:before{content:"\F0751"}.mdi-clipboard-plus-outline:before{content:"\F131F"}.mdi-clipboard-pulse:before{content:"\F085D"}.mdi-clipboard-pulse-outline:before{content:"\F085E"}.mdi-clipboard-remove:before{content:"\F161C"}.mdi-clipboard-remove-outline:before{content:"\F161D"}.mdi-clipboard-search:before{content:"\F161E"}.mdi-clipboard-search-outline:before{content:"\F161F"}.mdi-clipboard-text:before{content:"\F014D"}.mdi-clipboard-text-clock:before{content:"\F18F9"}.mdi-clipboard-text-clock-outline:before{content:"\F18FA"}.mdi-clipboard-text-multiple:before{content:"\F126B"}.mdi-clipboard-text-multiple-outline:before{content:"\F126C"}.mdi-clipboard-text-off:before{content:"\F1620"}.mdi-clipboard-text-off-outline:before{content:"\F1621"}.mdi-clipboard-text-outline:before{content:"\F0A38"}.mdi-clipboard-text-play:before{content:"\F0C5B"}.mdi-clipboard-text-play-outline:before{content:"\F0C5C"}.mdi-clipboard-text-search:before{content:"\F1622"}.mdi-clipboard-text-search-outline:before{content:"\F1623"}.mdi-clippy:before{content:"\F014F"}.mdi-clock:before{content:"\F0954"}.mdi-clock-alert:before{content:"\F0955"}.mdi-clock-alert-outline:before{content:"\F05CE"}.mdi-clock-check:before{content:"\F0FA8"}.mdi-clock-check-outline:before{content:"\F0FA9"}.mdi-clock-digital:before{content:"\F0E97"}.mdi-clock-edit:before{content:"\F19BA"}.mdi-clock-edit-outline:before{content:"\F19BB"}.mdi-clock-end:before{content:"\F0151"}.mdi-clock-fast:before{content:"\F0152"}.mdi-clock-in:before{content:"\F0153"}.mdi-clock-minus:before{content:"\F1863"}.mdi-clock-minus-outline:before{content:"\F1864"}.mdi-clock-out:before{content:"\F0154"}.mdi-clock-outline:before{content:"\F0150"}.mdi-clock-plus:before{content:"\F1861"}.mdi-clock-plus-outline:before{content:"\F1862"}.mdi-clock-remove:before{content:"\F1865"}.mdi-clock-remove-outline:before{content:"\F1866"}.mdi-clock-star-four-points:before{content:"\F1C29"}.mdi-clock-star-four-points-outline:before{content:"\F1C2A"}.mdi-clock-start:before{content:"\F0155"}.mdi-clock-time-eight:before{content:"\F1446"}.mdi-clock-time-eight-outline:before{content:"\F1452"}.mdi-clock-time-eleven:before{content:"\F1449"}.mdi-clock-time-eleven-outline:before{content:"\F1455"}.mdi-clock-time-five:before{content:"\F1443"}.mdi-clock-time-five-outline:before{content:"\F144F"}.mdi-clock-time-four:before{content:"\F1442"}.mdi-clock-time-four-outline:before{content:"\F144E"}.mdi-clock-time-nine:before{content:"\F1447"}.mdi-clock-time-nine-outline:before{content:"\F1453"}.mdi-clock-time-one:before{content:"\F143F"}.mdi-clock-time-one-outline:before{content:"\F144B"}.mdi-clock-time-seven:before{content:"\F1445"}.mdi-clock-time-seven-outline:before{content:"\F1451"}.mdi-clock-time-six:before{content:"\F1444"}.mdi-clock-time-six-outline:before{content:"\F1450"}.mdi-clock-time-ten:before{content:"\F1448"}.mdi-clock-time-ten-outline:before{content:"\F1454"}.mdi-clock-time-three:before{content:"\F1441"}.mdi-clock-time-three-outline:before{content:"\F144D"}.mdi-clock-time-twelve:before{content:"\F144A"}.mdi-clock-time-twelve-outline:before{content:"\F1456"}.mdi-clock-time-two:before{content:"\F1440"}.mdi-clock-time-two-outline:before{content:"\F144C"}.mdi-close:before{content:"\F0156"}.mdi-close-box:before{content:"\F0157"}.mdi-close-box-multiple:before{content:"\F0C5D"}.mdi-close-box-multiple-outline:before{content:"\F0C5E"}.mdi-close-box-outline:before{content:"\F0158"}.mdi-close-circle:before{content:"\F0159"}.mdi-close-circle-multiple:before{content:"\F062A"}.mdi-close-circle-multiple-outline:before{content:"\F0883"}.mdi-close-circle-outline:before{content:"\F015A"}.mdi-close-network:before{content:"\F015B"}.mdi-close-network-outline:before{content:"\F0C5F"}.mdi-close-octagon:before{content:"\F015C"}.mdi-close-octagon-outline:before{content:"\F015D"}.mdi-close-outline:before{content:"\F06C9"}.mdi-close-thick:before{content:"\F1398"}.mdi-closed-caption:before{content:"\F015E"}.mdi-closed-caption-outline:before{content:"\F0DBD"}.mdi-cloud:before{content:"\F015F"}.mdi-cloud-alert:before{content:"\F09E0"}.mdi-cloud-alert-outline:before{content:"\F1BE0"}.mdi-cloud-arrow-down:before{content:"\F1BE1"}.mdi-cloud-arrow-down-outline:before{content:"\F1BE2"}.mdi-cloud-arrow-left:before{content:"\F1BE3"}.mdi-cloud-arrow-left-outline:before{content:"\F1BE4"}.mdi-cloud-arrow-right:before{content:"\F1BE5"}.mdi-cloud-arrow-right-outline:before{content:"\F1BE6"}.mdi-cloud-arrow-up:before{content:"\F1BE7"}.mdi-cloud-arrow-up-outline:before{content:"\F1BE8"}.mdi-cloud-braces:before{content:"\F07B5"}.mdi-cloud-cancel:before{content:"\F1BE9"}.mdi-cloud-cancel-outline:before{content:"\F1BEA"}.mdi-cloud-check:before{content:"\F1BEB"}.mdi-cloud-check-outline:before{content:"\F1BEC"}.mdi-cloud-check-variant:before{content:"\F0160"}.mdi-cloud-check-variant-outline:before{content:"\F12CC"}.mdi-cloud-circle:before{content:"\F0161"}.mdi-cloud-circle-outline:before{content:"\F1BED"}.mdi-cloud-clock:before{content:"\F1BEE"}.mdi-cloud-clock-outline:before{content:"\F1BEF"}.mdi-cloud-cog:before{content:"\F1BF0"}.mdi-cloud-cog-outline:before{content:"\F1BF1"}.mdi-cloud-download:before{content:"\F0162"}.mdi-cloud-download-outline:before{content:"\F0B7D"}.mdi-cloud-key:before{content:"\F1CA1"}.mdi-cloud-key-outline:before{content:"\F1CA2"}.mdi-cloud-lock:before{content:"\F11F1"}.mdi-cloud-lock-open:before{content:"\F1BF2"}.mdi-cloud-lock-open-outline:before{content:"\F1BF3"}.mdi-cloud-lock-outline:before{content:"\F11F2"}.mdi-cloud-minus:before{content:"\F1BF4"}.mdi-cloud-minus-outline:before{content:"\F1BF5"}.mdi-cloud-off:before{content:"\F1BF6"}.mdi-cloud-off-outline:before{content:"\F0164"}.mdi-cloud-outline:before{content:"\F0163"}.mdi-cloud-percent:before{content:"\F1A35"}.mdi-cloud-percent-outline:before{content:"\F1A36"}.mdi-cloud-plus:before{content:"\F1BF7"}.mdi-cloud-plus-outline:before{content:"\F1BF8"}.mdi-cloud-print:before{content:"\F0165"}.mdi-cloud-print-outline:before{content:"\F0166"}.mdi-cloud-question:before{content:"\F0A39"}.mdi-cloud-question-outline:before{content:"\F1BF9"}.mdi-cloud-refresh:before{content:"\F1BFA"}.mdi-cloud-refresh-outline:before{content:"\F1BFB"}.mdi-cloud-refresh-variant:before{content:"\F052A"}.mdi-cloud-refresh-variant-outline:before{content:"\F1BFC"}.mdi-cloud-remove:before{content:"\F1BFD"}.mdi-cloud-remove-outline:before{content:"\F1BFE"}.mdi-cloud-search:before{content:"\F0956"}.mdi-cloud-search-outline:before{content:"\F0957"}.mdi-cloud-sync:before{content:"\F063F"}.mdi-cloud-sync-outline:before{content:"\F12D6"}.mdi-cloud-tags:before{content:"\F07B6"}.mdi-cloud-upload:before{content:"\F0167"}.mdi-cloud-upload-outline:before{content:"\F0B7E"}.mdi-clouds:before{content:"\F1B95"}.mdi-clover:before{content:"\F0816"}.mdi-clover-outline:before{content:"\F1C62"}.mdi-coach-lamp:before{content:"\F1020"}.mdi-coach-lamp-variant:before{content:"\F1A37"}.mdi-coat-rack:before{content:"\F109E"}.mdi-code-array:before{content:"\F0168"}.mdi-code-block-braces:before{content:"\F1C83"}.mdi-code-block-brackets:before{content:"\F1C84"}.mdi-code-block-parentheses:before{content:"\F1C85"}.mdi-code-block-tags:before{content:"\F1C86"}.mdi-code-braces:before{content:"\F0169"}.mdi-code-braces-box:before{content:"\F10D6"}.mdi-code-brackets:before{content:"\F016A"}.mdi-code-equal:before{content:"\F016B"}.mdi-code-greater-than:before{content:"\F016C"}.mdi-code-greater-than-or-equal:before{content:"\F016D"}.mdi-code-json:before{content:"\F0626"}.mdi-code-less-than:before{content:"\F016E"}.mdi-code-less-than-or-equal:before{content:"\F016F"}.mdi-code-not-equal:before{content:"\F0170"}.mdi-code-not-equal-variant:before{content:"\F0171"}.mdi-code-parentheses:before{content:"\F0172"}.mdi-code-parentheses-box:before{content:"\F10D7"}.mdi-code-string:before{content:"\F0173"}.mdi-code-tags:before{content:"\F0174"}.mdi-code-tags-check:before{content:"\F0694"}.mdi-codepen:before{content:"\F0175"}.mdi-coffee:before{content:"\F0176"}.mdi-coffee-maker:before{content:"\F109F"}.mdi-coffee-maker-check:before{content:"\F1931"}.mdi-coffee-maker-check-outline:before{content:"\F1932"}.mdi-coffee-maker-outline:before{content:"\F181B"}.mdi-coffee-off:before{content:"\F0FAA"}.mdi-coffee-off-outline:before{content:"\F0FAB"}.mdi-coffee-outline:before{content:"\F06CA"}.mdi-coffee-to-go:before{content:"\F0177"}.mdi-coffee-to-go-outline:before{content:"\F130E"}.mdi-coffin:before{content:"\F0B7F"}.mdi-cog:before{content:"\F0493"}.mdi-cog-box:before{content:"\F0494"}.mdi-cog-clockwise:before{content:"\F11DD"}.mdi-cog-counterclockwise:before{content:"\F11DE"}.mdi-cog-off:before{content:"\F13CE"}.mdi-cog-off-outline:before{content:"\F13CF"}.mdi-cog-outline:before{content:"\F08BB"}.mdi-cog-pause:before{content:"\F1933"}.mdi-cog-pause-outline:before{content:"\F1934"}.mdi-cog-play:before{content:"\F1935"}.mdi-cog-play-outline:before{content:"\F1936"}.mdi-cog-refresh:before{content:"\F145E"}.mdi-cog-refresh-outline:before{content:"\F145F"}.mdi-cog-stop:before{content:"\F1937"}.mdi-cog-stop-outline:before{content:"\F1938"}.mdi-cog-sync:before{content:"\F1460"}.mdi-cog-sync-outline:before{content:"\F1461"}.mdi-cog-transfer:before{content:"\F105B"}.mdi-cog-transfer-outline:before{content:"\F105C"}.mdi-cogs:before{content:"\F08D6"}.mdi-collage:before{content:"\F0640"}.mdi-collapse-all:before{content:"\F0AA6"}.mdi-collapse-all-outline:before{content:"\F0AA7"}.mdi-color-helper:before{content:"\F0179"}.mdi-comma:before{content:"\F0E23"}.mdi-comma-box:before{content:"\F0E2B"}.mdi-comma-box-outline:before{content:"\F0E24"}.mdi-comma-circle:before{content:"\F0E25"}.mdi-comma-circle-outline:before{content:"\F0E26"}.mdi-comment:before{content:"\F017A"}.mdi-comment-account:before{content:"\F017B"}.mdi-comment-account-outline:before{content:"\F017C"}.mdi-comment-alert:before{content:"\F017D"}.mdi-comment-alert-outline:before{content:"\F017E"}.mdi-comment-arrow-left:before{content:"\F09E1"}.mdi-comment-arrow-left-outline:before{content:"\F09E2"}.mdi-comment-arrow-right:before{content:"\F09E3"}.mdi-comment-arrow-right-outline:before{content:"\F09E4"}.mdi-comment-bookmark:before{content:"\F15AE"}.mdi-comment-bookmark-outline:before{content:"\F15AF"}.mdi-comment-check:before{content:"\F017F"}.mdi-comment-check-outline:before{content:"\F0180"}.mdi-comment-edit:before{content:"\F11BF"}.mdi-comment-edit-outline:before{content:"\F12C4"}.mdi-comment-eye:before{content:"\F0A3A"}.mdi-comment-eye-outline:before{content:"\F0A3B"}.mdi-comment-flash:before{content:"\F15B0"}.mdi-comment-flash-outline:before{content:"\F15B1"}.mdi-comment-minus:before{content:"\F15DF"}.mdi-comment-minus-outline:before{content:"\F15E0"}.mdi-comment-multiple:before{content:"\F085F"}.mdi-comment-multiple-outline:before{content:"\F0181"}.mdi-comment-off:before{content:"\F15E1"}.mdi-comment-off-outline:before{content:"\F15E2"}.mdi-comment-outline:before{content:"\F0182"}.mdi-comment-plus:before{content:"\F09E5"}.mdi-comment-plus-outline:before{content:"\F0183"}.mdi-comment-processing:before{content:"\F0184"}.mdi-comment-processing-outline:before{content:"\F0185"}.mdi-comment-question:before{content:"\F0817"}.mdi-comment-question-outline:before{content:"\F0186"}.mdi-comment-quote:before{content:"\F1021"}.mdi-comment-quote-outline:before{content:"\F1022"}.mdi-comment-remove:before{content:"\F05DE"}.mdi-comment-remove-outline:before{content:"\F0187"}.mdi-comment-search:before{content:"\F0A3C"}.mdi-comment-search-outline:before{content:"\F0A3D"}.mdi-comment-text:before{content:"\F0188"}.mdi-comment-text-multiple:before{content:"\F0860"}.mdi-comment-text-multiple-outline:before{content:"\F0861"}.mdi-comment-text-outline:before{content:"\F0189"}.mdi-compare:before{content:"\F018A"}.mdi-compare-horizontal:before{content:"\F1492"}.mdi-compare-remove:before{content:"\F18B3"}.mdi-compare-vertical:before{content:"\F1493"}.mdi-compass:before{content:"\F018B"}.mdi-compass-off:before{content:"\F0B80"}.mdi-compass-off-outline:before{content:"\F0B81"}.mdi-compass-outline:before{content:"\F018C"}.mdi-compass-rose:before{content:"\F1382"}.mdi-compost:before{content:"\F1A38"}.mdi-cone:before{content:"\F194C"}.mdi-cone-off:before{content:"\F194D"}.mdi-connection:before{content:"\F1616"}.mdi-console:before{content:"\F018D"}.mdi-console-line:before{content:"\F07B7"}.mdi-console-network:before{content:"\F08A9"}.mdi-console-network-outline:before{content:"\F0C60"}.mdi-consolidate:before{content:"\F10D8"}.mdi-contactless-payment:before{content:"\F0D6A"}.mdi-contactless-payment-circle:before{content:"\F0321"}.mdi-contactless-payment-circle-outline:before{content:"\F0408"}.mdi-contacts:before{content:"\F06CB"}.mdi-contacts-outline:before{content:"\F05B8"}.mdi-contain:before{content:"\F0A3E"}.mdi-contain-end:before{content:"\F0A3F"}.mdi-contain-start:before{content:"\F0A40"}.mdi-content-copy:before{content:"\F018F"}.mdi-content-cut:before{content:"\F0190"}.mdi-content-duplicate:before{content:"\F0191"}.mdi-content-paste:before{content:"\F0192"}.mdi-content-save:before{content:"\F0193"}.mdi-content-save-alert:before{content:"\F0F42"}.mdi-content-save-alert-outline:before{content:"\F0F43"}.mdi-content-save-all:before{content:"\F0194"}.mdi-content-save-all-outline:before{content:"\F0F44"}.mdi-content-save-check:before{content:"\F18EA"}.mdi-content-save-check-outline:before{content:"\F18EB"}.mdi-content-save-cog:before{content:"\F145B"}.mdi-content-save-cog-outline:before{content:"\F145C"}.mdi-content-save-edit:before{content:"\F0CFB"}.mdi-content-save-edit-outline:before{content:"\F0CFC"}.mdi-content-save-minus:before{content:"\F1B43"}.mdi-content-save-minus-outline:before{content:"\F1B44"}.mdi-content-save-move:before{content:"\F0E27"}.mdi-content-save-move-outline:before{content:"\F0E28"}.mdi-content-save-off:before{content:"\F1643"}.mdi-content-save-off-outline:before{content:"\F1644"}.mdi-content-save-outline:before{content:"\F0818"}.mdi-content-save-plus:before{content:"\F1B41"}.mdi-content-save-plus-outline:before{content:"\F1B42"}.mdi-content-save-settings:before{content:"\F061B"}.mdi-content-save-settings-outline:before{content:"\F0B2E"}.mdi-contrast:before{content:"\F0195"}.mdi-contrast-box:before{content:"\F0196"}.mdi-contrast-circle:before{content:"\F0197"}.mdi-controller:before{content:"\F02B4"}.mdi-controller-classic:before{content:"\F0B82"}.mdi-controller-classic-outline:before{content:"\F0B83"}.mdi-controller-off:before{content:"\F02B5"}.mdi-cookie:before{content:"\F0198"}.mdi-cookie-alert:before{content:"\F16D0"}.mdi-cookie-alert-outline:before{content:"\F16D1"}.mdi-cookie-check:before{content:"\F16D2"}.mdi-cookie-check-outline:before{content:"\F16D3"}.mdi-cookie-clock:before{content:"\F16E4"}.mdi-cookie-clock-outline:before{content:"\F16E5"}.mdi-cookie-cog:before{content:"\F16D4"}.mdi-cookie-cog-outline:before{content:"\F16D5"}.mdi-cookie-edit:before{content:"\F16E6"}.mdi-cookie-edit-outline:before{content:"\F16E7"}.mdi-cookie-lock:before{content:"\F16E8"}.mdi-cookie-lock-outline:before{content:"\F16E9"}.mdi-cookie-minus:before{content:"\F16DA"}.mdi-cookie-minus-outline:before{content:"\F16DB"}.mdi-cookie-off:before{content:"\F16EA"}.mdi-cookie-off-outline:before{content:"\F16EB"}.mdi-cookie-outline:before{content:"\F16DE"}.mdi-cookie-plus:before{content:"\F16D6"}.mdi-cookie-plus-outline:before{content:"\F16D7"}.mdi-cookie-refresh:before{content:"\F16EC"}.mdi-cookie-refresh-outline:before{content:"\F16ED"}.mdi-cookie-remove:before{content:"\F16D8"}.mdi-cookie-remove-outline:before{content:"\F16D9"}.mdi-cookie-settings:before{content:"\F16DC"}.mdi-cookie-settings-outline:before{content:"\F16DD"}.mdi-coolant-temperature:before{content:"\F03C8"}.mdi-copyleft:before{content:"\F1939"}.mdi-copyright:before{content:"\F05E6"}.mdi-cordova:before{content:"\F0958"}.mdi-corn:before{content:"\F07B8"}.mdi-corn-off:before{content:"\F13EF"}.mdi-cosine-wave:before{content:"\F1479"}.mdi-counter:before{content:"\F0199"}.mdi-countertop:before{content:"\F181C"}.mdi-countertop-outline:before{content:"\F181D"}.mdi-cow:before{content:"\F019A"}.mdi-cow-off:before{content:"\F18FC"}.mdi-cpu-32-bit:before{content:"\F0EDF"}.mdi-cpu-64-bit:before{content:"\F0EE0"}.mdi-cradle:before{content:"\F198B"}.mdi-cradle-outline:before{content:"\F1991"}.mdi-crane:before{content:"\F0862"}.mdi-creation:before{content:"\F0674"}.mdi-creation-outline:before{content:"\F1C2B"}.mdi-creative-commons:before{content:"\F0D6B"}.mdi-credit-card:before{content:"\F0FEF"}.mdi-credit-card-check:before{content:"\F13D0"}.mdi-credit-card-check-outline:before{content:"\F13D1"}.mdi-credit-card-chip:before{content:"\F190F"}.mdi-credit-card-chip-outline:before{content:"\F1910"}.mdi-credit-card-clock:before{content:"\F0EE1"}.mdi-credit-card-clock-outline:before{content:"\F0EE2"}.mdi-credit-card-edit:before{content:"\F17D7"}.mdi-credit-card-edit-outline:before{content:"\F17D8"}.mdi-credit-card-fast:before{content:"\F1911"}.mdi-credit-card-fast-outline:before{content:"\F1912"}.mdi-credit-card-lock:before{content:"\F18E7"}.mdi-credit-card-lock-outline:before{content:"\F18E8"}.mdi-credit-card-marker:before{content:"\F06A8"}.mdi-credit-card-marker-outline:before{content:"\F0DBE"}.mdi-credit-card-minus:before{content:"\F0FAC"}.mdi-credit-card-minus-outline:before{content:"\F0FAD"}.mdi-credit-card-multiple:before{content:"\F0FF0"}.mdi-credit-card-multiple-outline:before{content:"\F019C"}.mdi-credit-card-off:before{content:"\F0FF1"}.mdi-credit-card-off-outline:before{content:"\F05E4"}.mdi-credit-card-outline:before{content:"\F019B"}.mdi-credit-card-plus:before{content:"\F0FF2"}.mdi-credit-card-plus-outline:before{content:"\F0676"}.mdi-credit-card-refresh:before{content:"\F1645"}.mdi-credit-card-refresh-outline:before{content:"\F1646"}.mdi-credit-card-refund:before{content:"\F0FF3"}.mdi-credit-card-refund-outline:before{content:"\F0AA8"}.mdi-credit-card-remove:before{content:"\F0FAE"}.mdi-credit-card-remove-outline:before{content:"\F0FAF"}.mdi-credit-card-scan:before{content:"\F0FF4"}.mdi-credit-card-scan-outline:before{content:"\F019D"}.mdi-credit-card-search:before{content:"\F1647"}.mdi-credit-card-search-outline:before{content:"\F1648"}.mdi-credit-card-settings:before{content:"\F0FF5"}.mdi-credit-card-settings-outline:before{content:"\F08D7"}.mdi-credit-card-sync:before{content:"\F1649"}.mdi-credit-card-sync-outline:before{content:"\F164A"}.mdi-credit-card-wireless:before{content:"\F0802"}.mdi-credit-card-wireless-off:before{content:"\F057A"}.mdi-credit-card-wireless-off-outline:before{content:"\F057B"}.mdi-credit-card-wireless-outline:before{content:"\F0D6C"}.mdi-cricket:before{content:"\F0D6D"}.mdi-crop:before{content:"\F019E"}.mdi-crop-free:before{content:"\F019F"}.mdi-crop-landscape:before{content:"\F01A0"}.mdi-crop-portrait:before{content:"\F01A1"}.mdi-crop-rotate:before{content:"\F0696"}.mdi-crop-square:before{content:"\F01A2"}.mdi-cross:before{content:"\F0953"}.mdi-cross-bolnisi:before{content:"\F0CED"}.mdi-cross-celtic:before{content:"\F0CF5"}.mdi-cross-outline:before{content:"\F0CF6"}.mdi-crosshairs:before{content:"\F01A3"}.mdi-crosshairs-gps:before{content:"\F01A4"}.mdi-crosshairs-off:before{content:"\F0F45"}.mdi-crosshairs-question:before{content:"\F1136"}.mdi-crowd:before{content:"\F1975"}.mdi-crown:before{content:"\F01A5"}.mdi-crown-circle:before{content:"\F17DC"}.mdi-crown-circle-outline:before{content:"\F17DD"}.mdi-crown-outline:before{content:"\F11D0"}.mdi-cryengine:before{content:"\F0959"}.mdi-crystal-ball:before{content:"\F0B2F"}.mdi-cube:before{content:"\F01A6"}.mdi-cube-off:before{content:"\F141C"}.mdi-cube-off-outline:before{content:"\F141D"}.mdi-cube-outline:before{content:"\F01A7"}.mdi-cube-scan:before{content:"\F0B84"}.mdi-cube-send:before{content:"\F01A8"}.mdi-cube-unfolded:before{content:"\F01A9"}.mdi-cup:before{content:"\F01AA"}.mdi-cup-off:before{content:"\F05E5"}.mdi-cup-off-outline:before{content:"\F137D"}.mdi-cup-outline:before{content:"\F130F"}.mdi-cup-water:before{content:"\F01AB"}.mdi-cupboard:before{content:"\F0F46"}.mdi-cupboard-outline:before{content:"\F0F47"}.mdi-cupcake:before{content:"\F095A"}.mdi-curling:before{content:"\F0863"}.mdi-currency-bdt:before{content:"\F0864"}.mdi-currency-brl:before{content:"\F0B85"}.mdi-currency-btc:before{content:"\F01AC"}.mdi-currency-cny:before{content:"\F07BA"}.mdi-currency-eth:before{content:"\F07BB"}.mdi-currency-eur:before{content:"\F01AD"}.mdi-currency-eur-off:before{content:"\F1315"}.mdi-currency-fra:before{content:"\F1A39"}.mdi-currency-gbp:before{content:"\F01AE"}.mdi-currency-ils:before{content:"\F0C61"}.mdi-currency-inr:before{content:"\F01AF"}.mdi-currency-jpy:before{content:"\F07BC"}.mdi-currency-krw:before{content:"\F07BD"}.mdi-currency-kzt:before{content:"\F0865"}.mdi-currency-mnt:before{content:"\F1512"}.mdi-currency-ngn:before{content:"\F01B0"}.mdi-currency-php:before{content:"\F09E6"}.mdi-currency-rial:before{content:"\F0E9C"}.mdi-currency-rub:before{content:"\F01B1"}.mdi-currency-rupee:before{content:"\F1976"}.mdi-currency-sign:before{content:"\F07BE"}.mdi-currency-thb:before{content:"\F1C05"}.mdi-currency-try:before{content:"\F01B2"}.mdi-currency-twd:before{content:"\F07BF"}.mdi-currency-uah:before{content:"\F1B9B"}.mdi-currency-usd:before{content:"\F01C1"}.mdi-currency-usd-off:before{content:"\F067A"}.mdi-current-ac:before{content:"\F1480"}.mdi-current-dc:before{content:"\F095C"}.mdi-cursor-default:before{content:"\F01C0"}.mdi-cursor-default-click:before{content:"\F0CFD"}.mdi-cursor-default-click-outline:before{content:"\F0CFE"}.mdi-cursor-default-gesture:before{content:"\F1127"}.mdi-cursor-default-gesture-outline:before{content:"\F1128"}.mdi-cursor-default-outline:before{content:"\F01BF"}.mdi-cursor-move:before{content:"\F01BE"}.mdi-cursor-pointer:before{content:"\F01BD"}.mdi-cursor-text:before{content:"\F05E7"}.mdi-curtains:before{content:"\F1846"}.mdi-curtains-closed:before{content:"\F1847"}.mdi-cylinder:before{content:"\F194E"}.mdi-cylinder-off:before{content:"\F194F"}.mdi-dance-ballroom:before{content:"\F15FB"}.mdi-dance-pole:before{content:"\F1578"}.mdi-data-matrix:before{content:"\F153C"}.mdi-data-matrix-edit:before{content:"\F153D"}.mdi-data-matrix-minus:before{content:"\F153E"}.mdi-data-matrix-plus:before{content:"\F153F"}.mdi-data-matrix-remove:before{content:"\F1540"}.mdi-data-matrix-scan:before{content:"\F1541"}.mdi-database:before{content:"\F01BC"}.mdi-database-alert:before{content:"\F163A"}.mdi-database-alert-outline:before{content:"\F1624"}.mdi-database-arrow-down:before{content:"\F163B"}.mdi-database-arrow-down-outline:before{content:"\F1625"}.mdi-database-arrow-left:before{content:"\F163C"}.mdi-database-arrow-left-outline:before{content:"\F1626"}.mdi-database-arrow-right:before{content:"\F163D"}.mdi-database-arrow-right-outline:before{content:"\F1627"}.mdi-database-arrow-up:before{content:"\F163E"}.mdi-database-arrow-up-outline:before{content:"\F1628"}.mdi-database-check:before{content:"\F0AA9"}.mdi-database-check-outline:before{content:"\F1629"}.mdi-database-clock:before{content:"\F163F"}.mdi-database-clock-outline:before{content:"\F162A"}.mdi-database-cog:before{content:"\F164B"}.mdi-database-cog-outline:before{content:"\F164C"}.mdi-database-edit:before{content:"\F0B86"}.mdi-database-edit-outline:before{content:"\F162B"}.mdi-database-export:before{content:"\F095E"}.mdi-database-export-outline:before{content:"\F162C"}.mdi-database-eye:before{content:"\F191F"}.mdi-database-eye-off:before{content:"\F1920"}.mdi-database-eye-off-outline:before{content:"\F1921"}.mdi-database-eye-outline:before{content:"\F1922"}.mdi-database-import:before{content:"\F095D"}.mdi-database-import-outline:before{content:"\F162D"}.mdi-database-lock:before{content:"\F0AAA"}.mdi-database-lock-outline:before{content:"\F162E"}.mdi-database-marker:before{content:"\F12F6"}.mdi-database-marker-outline:before{content:"\F162F"}.mdi-database-minus:before{content:"\F01BB"}.mdi-database-minus-outline:before{content:"\F1630"}.mdi-database-off:before{content:"\F1640"}.mdi-database-off-outline:before{content:"\F1631"}.mdi-database-outline:before{content:"\F1632"}.mdi-database-plus:before{content:"\F01BA"}.mdi-database-plus-outline:before{content:"\F1633"}.mdi-database-refresh:before{content:"\F05C2"}.mdi-database-refresh-outline:before{content:"\F1634"}.mdi-database-remove:before{content:"\F0D00"}.mdi-database-remove-outline:before{content:"\F1635"}.mdi-database-search:before{content:"\F0866"}.mdi-database-search-outline:before{content:"\F1636"}.mdi-database-settings:before{content:"\F0D01"}.mdi-database-settings-outline:before{content:"\F1637"}.mdi-database-sync:before{content:"\F0CFF"}.mdi-database-sync-outline:before{content:"\F1638"}.mdi-death-star:before{content:"\F08D8"}.mdi-death-star-variant:before{content:"\F08D9"}.mdi-deathly-hallows:before{content:"\F0B87"}.mdi-debian:before{content:"\F08DA"}.mdi-debug-step-into:before{content:"\F01B9"}.mdi-debug-step-out:before{content:"\F01B8"}.mdi-debug-step-over:before{content:"\F01B7"}.mdi-decagram:before{content:"\F076C"}.mdi-decagram-outline:before{content:"\F076D"}.mdi-decimal:before{content:"\F10A1"}.mdi-decimal-comma:before{content:"\F10A2"}.mdi-decimal-comma-decrease:before{content:"\F10A3"}.mdi-decimal-comma-increase:before{content:"\F10A4"}.mdi-decimal-decrease:before{content:"\F01B6"}.mdi-decimal-increase:before{content:"\F01B5"}.mdi-delete:before{content:"\F01B4"}.mdi-delete-alert:before{content:"\F10A5"}.mdi-delete-alert-outline:before{content:"\F10A6"}.mdi-delete-circle:before{content:"\F0683"}.mdi-delete-circle-outline:before{content:"\F0B88"}.mdi-delete-clock:before{content:"\F1556"}.mdi-delete-clock-outline:before{content:"\F1557"}.mdi-delete-empty:before{content:"\F06CC"}.mdi-delete-empty-outline:before{content:"\F0E9D"}.mdi-delete-forever:before{content:"\F05E8"}.mdi-delete-forever-outline:before{content:"\F0B89"}.mdi-delete-off:before{content:"\F10A7"}.mdi-delete-off-outline:before{content:"\F10A8"}.mdi-delete-outline:before{content:"\F09E7"}.mdi-delete-restore:before{content:"\F0819"}.mdi-delete-sweep:before{content:"\F05E9"}.mdi-delete-sweep-outline:before{content:"\F0C62"}.mdi-delete-variant:before{content:"\F01B3"}.mdi-delta:before{content:"\F01C2"}.mdi-desk:before{content:"\F1239"}.mdi-desk-lamp:before{content:"\F095F"}.mdi-desk-lamp-off:before{content:"\F1B1F"}.mdi-desk-lamp-on:before{content:"\F1B20"}.mdi-deskphone:before{content:"\F01C3"}.mdi-desktop-classic:before{content:"\F07C0"}.mdi-desktop-tower:before{content:"\F01C5"}.mdi-desktop-tower-monitor:before{content:"\F0AAB"}.mdi-details:before{content:"\F01C6"}.mdi-dev-to:before{content:"\F0D6E"}.mdi-developer-board:before{content:"\F0697"}.mdi-deviantart:before{content:"\F01C7"}.mdi-devices:before{content:"\F0FB0"}.mdi-dharmachakra:before{content:"\F094B"}.mdi-diabetes:before{content:"\F1126"}.mdi-dialpad:before{content:"\F061C"}.mdi-diameter:before{content:"\F0C63"}.mdi-diameter-outline:before{content:"\F0C64"}.mdi-diameter-variant:before{content:"\F0C65"}.mdi-diamond:before{content:"\F0B8A"}.mdi-diamond-outline:before{content:"\F0B8B"}.mdi-diamond-stone:before{content:"\F01C8"}.mdi-diaper-outline:before{content:"\F1CCF"}.mdi-dice-1:before{content:"\F01CA"}.mdi-dice-1-outline:before{content:"\F114A"}.mdi-dice-2:before{content:"\F01CB"}.mdi-dice-2-outline:before{content:"\F114B"}.mdi-dice-3:before{content:"\F01CC"}.mdi-dice-3-outline:before{content:"\F114C"}.mdi-dice-4:before{content:"\F01CD"}.mdi-dice-4-outline:before{content:"\F114D"}.mdi-dice-5:before{content:"\F01CE"}.mdi-dice-5-outline:before{content:"\F114E"}.mdi-dice-6:before{content:"\F01CF"}.mdi-dice-6-outline:before{content:"\F114F"}.mdi-dice-d10:before{content:"\F1153"}.mdi-dice-d10-outline:before{content:"\F076F"}.mdi-dice-d12:before{content:"\F1154"}.mdi-dice-d12-outline:before{content:"\F0867"}.mdi-dice-d20:before{content:"\F1155"}.mdi-dice-d20-outline:before{content:"\F05EA"}.mdi-dice-d4:before{content:"\F1150"}.mdi-dice-d4-outline:before{content:"\F05EB"}.mdi-dice-d6:before{content:"\F1151"}.mdi-dice-d6-outline:before{content:"\F05ED"}.mdi-dice-d8:before{content:"\F1152"}.mdi-dice-d8-outline:before{content:"\F05EC"}.mdi-dice-multiple:before{content:"\F076E"}.mdi-dice-multiple-outline:before{content:"\F1156"}.mdi-digital-ocean:before{content:"\F1237"}.mdi-dip-switch:before{content:"\F07C1"}.mdi-directions:before{content:"\F01D0"}.mdi-directions-fork:before{content:"\F0641"}.mdi-disc:before{content:"\F05EE"}.mdi-disc-alert:before{content:"\F01D1"}.mdi-disc-player:before{content:"\F0960"}.mdi-dishwasher:before{content:"\F0AAC"}.mdi-dishwasher-alert:before{content:"\F11B8"}.mdi-dishwasher-off:before{content:"\F11B9"}.mdi-disqus:before{content:"\F01D2"}.mdi-distribute-horizontal-center:before{content:"\F11C9"}.mdi-distribute-horizontal-left:before{content:"\F11C8"}.mdi-distribute-horizontal-right:before{content:"\F11CA"}.mdi-distribute-vertical-bottom:before{content:"\F11CB"}.mdi-distribute-vertical-center:before{content:"\F11CC"}.mdi-distribute-vertical-top:before{content:"\F11CD"}.mdi-diversify:before{content:"\F1877"}.mdi-diving:before{content:"\F1977"}.mdi-diving-flippers:before{content:"\F0DBF"}.mdi-diving-helmet:before{content:"\F0DC0"}.mdi-diving-scuba:before{content:"\F1B77"}.mdi-diving-scuba-flag:before{content:"\F0DC2"}.mdi-diving-scuba-mask:before{content:"\F0DC1"}.mdi-diving-scuba-tank:before{content:"\F0DC3"}.mdi-diving-scuba-tank-multiple:before{content:"\F0DC4"}.mdi-diving-snorkel:before{content:"\F0DC5"}.mdi-division:before{content:"\F01D4"}.mdi-division-box:before{content:"\F01D5"}.mdi-dlna:before{content:"\F0A41"}.mdi-dna:before{content:"\F0684"}.mdi-dns:before{content:"\F01D6"}.mdi-dns-outline:before{content:"\F0B8C"}.mdi-dock-bottom:before{content:"\F10A9"}.mdi-dock-left:before{content:"\F10AA"}.mdi-dock-right:before{content:"\F10AB"}.mdi-dock-top:before{content:"\F1513"}.mdi-dock-window:before{content:"\F10AC"}.mdi-docker:before{content:"\F0868"}.mdi-doctor:before{content:"\F0A42"}.mdi-dog:before{content:"\F0A43"}.mdi-dog-service:before{content:"\F0AAD"}.mdi-dog-side:before{content:"\F0A44"}.mdi-dog-side-off:before{content:"\F16EE"}.mdi-dolby:before{content:"\F06B3"}.mdi-dolly:before{content:"\F0E9E"}.mdi-dolphin:before{content:"\F18B4"}.mdi-domain:before{content:"\F01D7"}.mdi-domain-off:before{content:"\F0D6F"}.mdi-domain-plus:before{content:"\F10AD"}.mdi-domain-remove:before{content:"\F10AE"}.mdi-domain-switch:before{content:"\F1C2C"}.mdi-dome-light:before{content:"\F141E"}.mdi-domino-mask:before{content:"\F1023"}.mdi-donkey:before{content:"\F07C2"}.mdi-door:before{content:"\F081A"}.mdi-door-closed:before{content:"\F081B"}.mdi-door-closed-cancel:before{content:"\F1C93"}.mdi-door-closed-lock:before{content:"\F10AF"}.mdi-door-open:before{content:"\F081C"}.mdi-door-sliding:before{content:"\F181E"}.mdi-door-sliding-lock:before{content:"\F181F"}.mdi-door-sliding-open:before{content:"\F1820"}.mdi-doorbell:before{content:"\F12E6"}.mdi-doorbell-video:before{content:"\F0869"}.mdi-dot-net:before{content:"\F0AAE"}.mdi-dots-circle:before{content:"\F1978"}.mdi-dots-grid:before{content:"\F15FC"}.mdi-dots-hexagon:before{content:"\F15FF"}.mdi-dots-horizontal:before{content:"\F01D8"}.mdi-dots-horizontal-circle:before{content:"\F07C3"}.mdi-dots-horizontal-circle-outline:before{content:"\F0B8D"}.mdi-dots-square:before{content:"\F15FD"}.mdi-dots-triangle:before{content:"\F15FE"}.mdi-dots-vertical:before{content:"\F01D9"}.mdi-dots-vertical-circle:before{content:"\F07C4"}.mdi-dots-vertical-circle-outline:before{content:"\F0B8E"}.mdi-download:before{content:"\F01DA"}.mdi-download-box:before{content:"\F1462"}.mdi-download-box-outline:before{content:"\F1463"}.mdi-download-circle:before{content:"\F1464"}.mdi-download-circle-outline:before{content:"\F1465"}.mdi-download-lock:before{content:"\F1320"}.mdi-download-lock-outline:before{content:"\F1321"}.mdi-download-multiple:before{content:"\F09E9"}.mdi-download-multiple-outline:before{content:"\F1CD0"}.mdi-download-network:before{content:"\F06F4"}.mdi-download-network-outline:before{content:"\F0C66"}.mdi-download-off:before{content:"\F10B0"}.mdi-download-off-outline:before{content:"\F10B1"}.mdi-download-outline:before{content:"\F0B8F"}.mdi-drag:before{content:"\F01DB"}.mdi-drag-horizontal:before{content:"\F01DC"}.mdi-drag-horizontal-variant:before{content:"\F12F0"}.mdi-drag-variant:before{content:"\F0B90"}.mdi-drag-vertical:before{content:"\F01DD"}.mdi-drag-vertical-variant:before{content:"\F12F1"}.mdi-drama-masks:before{content:"\F0D02"}.mdi-draw:before{content:"\F0F49"}.mdi-draw-pen:before{content:"\F19B9"}.mdi-drawing:before{content:"\F01DE"}.mdi-drawing-box:before{content:"\F01DF"}.mdi-dresser:before{content:"\F0F4A"}.mdi-dresser-outline:before{content:"\F0F4B"}.mdi-drone:before{content:"\F01E2"}.mdi-dropbox:before{content:"\F01E3"}.mdi-drupal:before{content:"\F01E4"}.mdi-duck:before{content:"\F01E5"}.mdi-dumbbell:before{content:"\F01E6"}.mdi-dump-truck:before{content:"\F0C67"}.mdi-ear-hearing:before{content:"\F07C5"}.mdi-ear-hearing-loop:before{content:"\F1AEE"}.mdi-ear-hearing-off:before{content:"\F0A45"}.mdi-earbuds:before{content:"\F184F"}.mdi-earbuds-off:before{content:"\F1850"}.mdi-earbuds-off-outline:before{content:"\F1851"}.mdi-earbuds-outline:before{content:"\F1852"}.mdi-earth:before{content:"\F01E7"}.mdi-earth-arrow-down:before{content:"\F1C87"}.mdi-earth-arrow-left:before{content:"\F1C88"}.mdi-earth-arrow-right:before{content:"\F1311"}.mdi-earth-arrow-up:before{content:"\F1C89"}.mdi-earth-box:before{content:"\F06CD"}.mdi-earth-box-minus:before{content:"\F1407"}.mdi-earth-box-off:before{content:"\F06CE"}.mdi-earth-box-plus:before{content:"\F1406"}.mdi-earth-box-remove:before{content:"\F1408"}.mdi-earth-minus:before{content:"\F1404"}.mdi-earth-off:before{content:"\F01E8"}.mdi-earth-plus:before{content:"\F1403"}.mdi-earth-remove:before{content:"\F1405"}.mdi-egg:before{content:"\F0AAF"}.mdi-egg-easter:before{content:"\F0AB0"}.mdi-egg-fried:before{content:"\F184A"}.mdi-egg-off:before{content:"\F13F0"}.mdi-egg-off-outline:before{content:"\F13F1"}.mdi-egg-outline:before{content:"\F13F2"}.mdi-eiffel-tower:before{content:"\F156B"}.mdi-eight-track:before{content:"\F09EA"}.mdi-eject:before{content:"\F01EA"}.mdi-eject-circle:before{content:"\F1B23"}.mdi-eject-circle-outline:before{content:"\F1B24"}.mdi-eject-outline:before{content:"\F0B91"}.mdi-electric-switch:before{content:"\F0E9F"}.mdi-electric-switch-closed:before{content:"\F10D9"}.mdi-electron-framework:before{content:"\F1024"}.mdi-elephant:before{content:"\F07C6"}.mdi-elevation-decline:before{content:"\F01EB"}.mdi-elevation-rise:before{content:"\F01EC"}.mdi-elevator:before{content:"\F01ED"}.mdi-elevator-down:before{content:"\F12C2"}.mdi-elevator-passenger:before{content:"\F1381"}.mdi-elevator-passenger-off:before{content:"\F1979"}.mdi-elevator-passenger-off-outline:before{content:"\F197A"}.mdi-elevator-passenger-outline:before{content:"\F197B"}.mdi-elevator-up:before{content:"\F12C1"}.mdi-ellipse:before{content:"\F0EA0"}.mdi-ellipse-outline:before{content:"\F0EA1"}.mdi-email:before{content:"\F01EE"}.mdi-email-alert:before{content:"\F06CF"}.mdi-email-alert-outline:before{content:"\F0D42"}.mdi-email-arrow-left:before{content:"\F10DA"}.mdi-email-arrow-left-outline:before{content:"\F10DB"}.mdi-email-arrow-right:before{content:"\F10DC"}.mdi-email-arrow-right-outline:before{content:"\F10DD"}.mdi-email-box:before{content:"\F0D03"}.mdi-email-check:before{content:"\F0AB1"}.mdi-email-check-outline:before{content:"\F0AB2"}.mdi-email-edit:before{content:"\F0EE3"}.mdi-email-edit-outline:before{content:"\F0EE4"}.mdi-email-fast:before{content:"\F186F"}.mdi-email-fast-outline:before{content:"\F1870"}.mdi-email-heart-outline:before{content:"\F1C5B"}.mdi-email-lock:before{content:"\F01F1"}.mdi-email-lock-outline:before{content:"\F1B61"}.mdi-email-mark-as-unread:before{content:"\F0B92"}.mdi-email-minus:before{content:"\F0EE5"}.mdi-email-minus-outline:before{content:"\F0EE6"}.mdi-email-multiple:before{content:"\F0EE7"}.mdi-email-multiple-outline:before{content:"\F0EE8"}.mdi-email-newsletter:before{content:"\F0FB1"}.mdi-email-off:before{content:"\F13E3"}.mdi-email-off-outline:before{content:"\F13E4"}.mdi-email-open:before{content:"\F01EF"}.mdi-email-open-heart-outline:before{content:"\F1C5C"}.mdi-email-open-multiple:before{content:"\F0EE9"}.mdi-email-open-multiple-outline:before{content:"\F0EEA"}.mdi-email-open-outline:before{content:"\F05EF"}.mdi-email-outline:before{content:"\F01F0"}.mdi-email-plus:before{content:"\F09EB"}.mdi-email-plus-outline:before{content:"\F09EC"}.mdi-email-remove:before{content:"\F1661"}.mdi-email-remove-outline:before{content:"\F1662"}.mdi-email-seal:before{content:"\F195B"}.mdi-email-seal-outline:before{content:"\F195C"}.mdi-email-search:before{content:"\F0961"}.mdi-email-search-outline:before{content:"\F0962"}.mdi-email-sync:before{content:"\F12C7"}.mdi-email-sync-outline:before{content:"\F12C8"}.mdi-email-variant:before{content:"\F05F0"}.mdi-ember:before{content:"\F0B30"}.mdi-emby:before{content:"\F06B4"}.mdi-emoticon:before{content:"\F0C68"}.mdi-emoticon-angry:before{content:"\F0C69"}.mdi-emoticon-angry-outline:before{content:"\F0C6A"}.mdi-emoticon-confused:before{content:"\F10DE"}.mdi-emoticon-confused-outline:before{content:"\F10DF"}.mdi-emoticon-cool:before{content:"\F0C6B"}.mdi-emoticon-cool-outline:before{content:"\F01F3"}.mdi-emoticon-cry:before{content:"\F0C6C"}.mdi-emoticon-cry-outline:before{content:"\F0C6D"}.mdi-emoticon-dead:before{content:"\F0C6E"}.mdi-emoticon-dead-outline:before{content:"\F069B"}.mdi-emoticon-devil:before{content:"\F0C6F"}.mdi-emoticon-devil-outline:before{content:"\F01F4"}.mdi-emoticon-excited:before{content:"\F0C70"}.mdi-emoticon-excited-outline:before{content:"\F069C"}.mdi-emoticon-frown:before{content:"\F0F4C"}.mdi-emoticon-frown-outline:before{content:"\F0F4D"}.mdi-emoticon-happy:before{content:"\F0C71"}.mdi-emoticon-happy-outline:before{content:"\F01F5"}.mdi-emoticon-kiss:before{content:"\F0C72"}.mdi-emoticon-kiss-outline:before{content:"\F0C73"}.mdi-emoticon-lol:before{content:"\F1214"}.mdi-emoticon-lol-outline:before{content:"\F1215"}.mdi-emoticon-minus:before{content:"\F1CB2"}.mdi-emoticon-minus-outline:before{content:"\F1CB3"}.mdi-emoticon-neutral:before{content:"\F0C74"}.mdi-emoticon-neutral-outline:before{content:"\F01F6"}.mdi-emoticon-outline:before{content:"\F01F2"}.mdi-emoticon-plus:before{content:"\F1CB4"}.mdi-emoticon-plus-outline:before{content:"\F1CB5"}.mdi-emoticon-poop:before{content:"\F01F7"}.mdi-emoticon-poop-outline:before{content:"\F0C75"}.mdi-emoticon-remove:before{content:"\F1CB6"}.mdi-emoticon-remove-outline:before{content:"\F1CB7"}.mdi-emoticon-sad:before{content:"\F0C76"}.mdi-emoticon-sad-outline:before{content:"\F01F8"}.mdi-emoticon-sick:before{content:"\F157C"}.mdi-emoticon-sick-outline:before{content:"\F157D"}.mdi-emoticon-tongue:before{content:"\F01F9"}.mdi-emoticon-tongue-outline:before{content:"\F0C77"}.mdi-emoticon-wink:before{content:"\F0C78"}.mdi-emoticon-wink-outline:before{content:"\F0C79"}.mdi-engine:before{content:"\F01FA"}.mdi-engine-off:before{content:"\F0A46"}.mdi-engine-off-outline:before{content:"\F0A47"}.mdi-engine-outline:before{content:"\F01FB"}.mdi-epsilon:before{content:"\F10E0"}.mdi-equal:before{content:"\F01FC"}.mdi-equal-box:before{content:"\F01FD"}.mdi-equalizer:before{content:"\F0EA2"}.mdi-equalizer-outline:before{content:"\F0EA3"}.mdi-eraser:before{content:"\F01FE"}.mdi-eraser-variant:before{content:"\F0642"}.mdi-escalator:before{content:"\F01FF"}.mdi-escalator-box:before{content:"\F1399"}.mdi-escalator-down:before{content:"\F12C0"}.mdi-escalator-up:before{content:"\F12BF"}.mdi-eslint:before{content:"\F0C7A"}.mdi-et:before{content:"\F0AB3"}.mdi-ethereum:before{content:"\F086A"}.mdi-ethernet:before{content:"\F0200"}.mdi-ethernet-cable:before{content:"\F0201"}.mdi-ethernet-cable-off:before{content:"\F0202"}.mdi-ethernet-off:before{content:"\F1CD1"}.mdi-ev-plug-ccs1:before{content:"\F1519"}.mdi-ev-plug-ccs2:before{content:"\F151A"}.mdi-ev-plug-chademo:before{content:"\F151B"}.mdi-ev-plug-tesla:before{content:"\F151C"}.mdi-ev-plug-type1:before{content:"\F151D"}.mdi-ev-plug-type2:before{content:"\F151E"}.mdi-ev-station:before{content:"\F05F1"}.mdi-evernote:before{content:"\F0204"}.mdi-excavator:before{content:"\F1025"}.mdi-exclamation:before{content:"\F0205"}.mdi-exclamation-thick:before{content:"\F1238"}.mdi-exit-run:before{content:"\F0A48"}.mdi-exit-to-app:before{content:"\F0206"}.mdi-expand-all:before{content:"\F0AB4"}.mdi-expand-all-outline:before{content:"\F0AB5"}.mdi-expansion-card:before{content:"\F08AE"}.mdi-expansion-card-variant:before{content:"\F0FB2"}.mdi-exponent:before{content:"\F0963"}.mdi-exponent-box:before{content:"\F0964"}.mdi-export:before{content:"\F0207"}.mdi-export-variant:before{content:"\F0B93"}.mdi-eye:before{content:"\F0208"}.mdi-eye-arrow-left:before{content:"\F18FD"}.mdi-eye-arrow-left-outline:before{content:"\F18FE"}.mdi-eye-arrow-right:before{content:"\F18FF"}.mdi-eye-arrow-right-outline:before{content:"\F1900"}.mdi-eye-check:before{content:"\F0D04"}.mdi-eye-check-outline:before{content:"\F0D05"}.mdi-eye-circle:before{content:"\F0B94"}.mdi-eye-circle-outline:before{content:"\F0B95"}.mdi-eye-closed:before{content:"\F1CA3"}.mdi-eye-lock:before{content:"\F1C06"}.mdi-eye-lock-open:before{content:"\F1C07"}.mdi-eye-lock-open-outline:before{content:"\F1C08"}.mdi-eye-lock-outline:before{content:"\F1C09"}.mdi-eye-minus:before{content:"\F1026"}.mdi-eye-minus-outline:before{content:"\F1027"}.mdi-eye-off:before{content:"\F0209"}.mdi-eye-off-outline:before{content:"\F06D1"}.mdi-eye-outline:before{content:"\F06D0"}.mdi-eye-plus:before{content:"\F086B"}.mdi-eye-plus-outline:before{content:"\F086C"}.mdi-eye-refresh:before{content:"\F197C"}.mdi-eye-refresh-outline:before{content:"\F197D"}.mdi-eye-remove:before{content:"\F15E3"}.mdi-eye-remove-outline:before{content:"\F15E4"}.mdi-eye-settings:before{content:"\F086D"}.mdi-eye-settings-outline:before{content:"\F086E"}.mdi-eyedropper:before{content:"\F020A"}.mdi-eyedropper-minus:before{content:"\F13DD"}.mdi-eyedropper-off:before{content:"\F13DF"}.mdi-eyedropper-plus:before{content:"\F13DC"}.mdi-eyedropper-remove:before{content:"\F13DE"}.mdi-eyedropper-variant:before{content:"\F020B"}.mdi-face-agent:before{content:"\F0D70"}.mdi-face-man:before{content:"\F0643"}.mdi-face-man-outline:before{content:"\F0B96"}.mdi-face-man-profile:before{content:"\F0644"}.mdi-face-man-shimmer:before{content:"\F15CC"}.mdi-face-man-shimmer-outline:before{content:"\F15CD"}.mdi-face-mask:before{content:"\F1586"}.mdi-face-mask-outline:before{content:"\F1587"}.mdi-face-recognition:before{content:"\F0C7B"}.mdi-face-woman:before{content:"\F1077"}.mdi-face-woman-outline:before{content:"\F1078"}.mdi-face-woman-profile:before{content:"\F1076"}.mdi-face-woman-shimmer:before{content:"\F15CE"}.mdi-face-woman-shimmer-outline:before{content:"\F15CF"}.mdi-facebook:before{content:"\F020C"}.mdi-facebook-gaming:before{content:"\F07DD"}.mdi-facebook-messenger:before{content:"\F020E"}.mdi-facebook-workplace:before{content:"\F0B31"}.mdi-factory:before{content:"\F020F"}.mdi-family-tree:before{content:"\F160E"}.mdi-fan:before{content:"\F0210"}.mdi-fan-alert:before{content:"\F146C"}.mdi-fan-auto:before{content:"\F171D"}.mdi-fan-chevron-down:before{content:"\F146D"}.mdi-fan-chevron-up:before{content:"\F146E"}.mdi-fan-clock:before{content:"\F1A3A"}.mdi-fan-minus:before{content:"\F1470"}.mdi-fan-off:before{content:"\F081D"}.mdi-fan-plus:before{content:"\F146F"}.mdi-fan-remove:before{content:"\F1471"}.mdi-fan-speed-1:before{content:"\F1472"}.mdi-fan-speed-2:before{content:"\F1473"}.mdi-fan-speed-3:before{content:"\F1474"}.mdi-fast-forward:before{content:"\F0211"}.mdi-fast-forward-10:before{content:"\F0D71"}.mdi-fast-forward-15:before{content:"\F193A"}.mdi-fast-forward-30:before{content:"\F0D06"}.mdi-fast-forward-45:before{content:"\F1B12"}.mdi-fast-forward-5:before{content:"\F11F8"}.mdi-fast-forward-60:before{content:"\F160B"}.mdi-fast-forward-outline:before{content:"\F06D2"}.mdi-faucet:before{content:"\F1B29"}.mdi-faucet-variant:before{content:"\F1B2A"}.mdi-fax:before{content:"\F0212"}.mdi-feather:before{content:"\F06D3"}.mdi-feature-search:before{content:"\F0A49"}.mdi-feature-search-outline:before{content:"\F0A4A"}.mdi-fedora:before{content:"\F08DB"}.mdi-fence:before{content:"\F179A"}.mdi-fence-electric:before{content:"\F17F6"}.mdi-fencing:before{content:"\F14C1"}.mdi-ferris-wheel:before{content:"\F0EA4"}.mdi-ferry:before{content:"\F0213"}.mdi-file:before{content:"\F0214"}.mdi-file-account:before{content:"\F073B"}.mdi-file-account-outline:before{content:"\F1028"}.mdi-file-alert:before{content:"\F0A4B"}.mdi-file-alert-outline:before{content:"\F0A4C"}.mdi-file-arrow-left-right:before{content:"\F1A93"}.mdi-file-arrow-left-right-outline:before{content:"\F1A94"}.mdi-file-arrow-up-down:before{content:"\F1A95"}.mdi-file-arrow-up-down-outline:before{content:"\F1A96"}.mdi-file-cabinet:before{content:"\F0AB6"}.mdi-file-cad:before{content:"\F0EEB"}.mdi-file-cad-box:before{content:"\F0EEC"}.mdi-file-cancel:before{content:"\F0DC6"}.mdi-file-cancel-outline:before{content:"\F0DC7"}.mdi-file-certificate:before{content:"\F1186"}.mdi-file-certificate-outline:before{content:"\F1187"}.mdi-file-chart:before{content:"\F0215"}.mdi-file-chart-check:before{content:"\F19C6"}.mdi-file-chart-check-outline:before{content:"\F19C7"}.mdi-file-chart-outline:before{content:"\F1029"}.mdi-file-check:before{content:"\F0216"}.mdi-file-check-outline:before{content:"\F0E29"}.mdi-file-clock:before{content:"\F12E1"}.mdi-file-clock-outline:before{content:"\F12E2"}.mdi-file-cloud:before{content:"\F0217"}.mdi-file-cloud-outline:before{content:"\F102A"}.mdi-file-code:before{content:"\F022E"}.mdi-file-code-outline:before{content:"\F102B"}.mdi-file-cog:before{content:"\F107B"}.mdi-file-cog-outline:before{content:"\F107C"}.mdi-file-compare:before{content:"\F08AA"}.mdi-file-delimited:before{content:"\F0218"}.mdi-file-delimited-outline:before{content:"\F0EA5"}.mdi-file-document:before{content:"\F0219"}.mdi-file-document-alert:before{content:"\F1A97"}.mdi-file-document-alert-outline:before{content:"\F1A98"}.mdi-file-document-arrow-right:before{content:"\F1C0F"}.mdi-file-document-arrow-right-outline:before{content:"\F1C10"}.mdi-file-document-check:before{content:"\F1A99"}.mdi-file-document-check-outline:before{content:"\F1A9A"}.mdi-file-document-edit:before{content:"\F0DC8"}.mdi-file-document-edit-outline:before{content:"\F0DC9"}.mdi-file-document-minus:before{content:"\F1A9B"}.mdi-file-document-minus-outline:before{content:"\F1A9C"}.mdi-file-document-multiple:before{content:"\F1517"}.mdi-file-document-multiple-outline:before{content:"\F1518"}.mdi-file-document-outline:before{content:"\F09EE"}.mdi-file-document-plus:before{content:"\F1A9D"}.mdi-file-document-plus-outline:before{content:"\F1A9E"}.mdi-file-document-refresh:before{content:"\F1C7A"}.mdi-file-document-refresh-outline:before{content:"\F1C7B"}.mdi-file-document-remove:before{content:"\F1A9F"}.mdi-file-document-remove-outline:before{content:"\F1AA0"}.mdi-file-download:before{content:"\F0965"}.mdi-file-download-outline:before{content:"\F0966"}.mdi-file-edit:before{content:"\F11E7"}.mdi-file-edit-outline:before{content:"\F11E8"}.mdi-file-excel:before{content:"\F021B"}.mdi-file-excel-box:before{content:"\F021C"}.mdi-file-excel-box-outline:before{content:"\F102C"}.mdi-file-excel-outline:before{content:"\F102D"}.mdi-file-export:before{content:"\F021D"}.mdi-file-export-outline:before{content:"\F102E"}.mdi-file-eye:before{content:"\F0DCA"}.mdi-file-eye-outline:before{content:"\F0DCB"}.mdi-file-find:before{content:"\F021E"}.mdi-file-find-outline:before{content:"\F0B97"}.mdi-file-gif-box:before{content:"\F0D78"}.mdi-file-hidden:before{content:"\F0613"}.mdi-file-image:before{content:"\F021F"}.mdi-file-image-marker:before{content:"\F1772"}.mdi-file-image-marker-outline:before{content:"\F1773"}.mdi-file-image-minus:before{content:"\F193B"}.mdi-file-image-minus-outline:before{content:"\F193C"}.mdi-file-image-outline:before{content:"\F0EB0"}.mdi-file-image-plus:before{content:"\F193D"}.mdi-file-image-plus-outline:before{content:"\F193E"}.mdi-file-image-remove:before{content:"\F193F"}.mdi-file-image-remove-outline:before{content:"\F1940"}.mdi-file-import:before{content:"\F0220"}.mdi-file-import-outline:before{content:"\F102F"}.mdi-file-jpg-box:before{content:"\F0225"}.mdi-file-key:before{content:"\F1184"}.mdi-file-key-outline:before{content:"\F1185"}.mdi-file-link:before{content:"\F1177"}.mdi-file-link-outline:before{content:"\F1178"}.mdi-file-lock:before{content:"\F0221"}.mdi-file-lock-open:before{content:"\F19C8"}.mdi-file-lock-open-outline:before{content:"\F19C9"}.mdi-file-lock-outline:before{content:"\F1030"}.mdi-file-marker:before{content:"\F1774"}.mdi-file-marker-outline:before{content:"\F1775"}.mdi-file-minus:before{content:"\F1AA1"}.mdi-file-minus-outline:before{content:"\F1AA2"}.mdi-file-move:before{content:"\F0AB9"}.mdi-file-move-outline:before{content:"\F1031"}.mdi-file-multiple:before{content:"\F0222"}.mdi-file-multiple-outline:before{content:"\F1032"}.mdi-file-music:before{content:"\F0223"}.mdi-file-music-outline:before{content:"\F0E2A"}.mdi-file-outline:before{content:"\F0224"}.mdi-file-pdf-box:before{content:"\F0226"}.mdi-file-percent:before{content:"\F081E"}.mdi-file-percent-outline:before{content:"\F1033"}.mdi-file-phone:before{content:"\F1179"}.mdi-file-phone-outline:before{content:"\F117A"}.mdi-file-plus:before{content:"\F0752"}.mdi-file-plus-outline:before{content:"\F0EED"}.mdi-file-png-box:before{content:"\F0E2D"}.mdi-file-powerpoint:before{content:"\F0227"}.mdi-file-powerpoint-box:before{content:"\F0228"}.mdi-file-powerpoint-box-outline:before{content:"\F1034"}.mdi-file-powerpoint-outline:before{content:"\F1035"}.mdi-file-presentation-box:before{content:"\F0229"}.mdi-file-question:before{content:"\F086F"}.mdi-file-question-outline:before{content:"\F1036"}.mdi-file-refresh:before{content:"\F0918"}.mdi-file-refresh-outline:before{content:"\F0541"}.mdi-file-remove:before{content:"\F0B98"}.mdi-file-remove-outline:before{content:"\F1037"}.mdi-file-replace:before{content:"\F0B32"}.mdi-file-replace-outline:before{content:"\F0B33"}.mdi-file-restore:before{content:"\F0670"}.mdi-file-restore-outline:before{content:"\F1038"}.mdi-file-rotate-left:before{content:"\F1A3B"}.mdi-file-rotate-left-outline:before{content:"\F1A3C"}.mdi-file-rotate-right:before{content:"\F1A3D"}.mdi-file-rotate-right-outline:before{content:"\F1A3E"}.mdi-file-search:before{content:"\F0C7C"}.mdi-file-search-outline:before{content:"\F0C7D"}.mdi-file-send:before{content:"\F022A"}.mdi-file-send-outline:before{content:"\F1039"}.mdi-file-settings:before{content:"\F1079"}.mdi-file-settings-outline:before{content:"\F107A"}.mdi-file-sign:before{content:"\F19C3"}.mdi-file-star:before{content:"\F103A"}.mdi-file-star-four-points:before{content:"\F1C2D"}.mdi-file-star-four-points-outline:before{content:"\F1C2E"}.mdi-file-star-outline:before{content:"\F103B"}.mdi-file-swap:before{content:"\F0FB4"}.mdi-file-swap-outline:before{content:"\F0FB5"}.mdi-file-sync:before{content:"\F1216"}.mdi-file-sync-outline:before{content:"\F1217"}.mdi-file-table:before{content:"\F0C7E"}.mdi-file-table-box:before{content:"\F10E1"}.mdi-file-table-box-multiple:before{content:"\F10E2"}.mdi-file-table-box-multiple-outline:before{content:"\F10E3"}.mdi-file-table-box-outline:before{content:"\F10E4"}.mdi-file-table-outline:before{content:"\F0C7F"}.mdi-file-tree:before{content:"\F0645"}.mdi-file-tree-outline:before{content:"\F13D2"}.mdi-file-undo:before{content:"\F08DC"}.mdi-file-undo-outline:before{content:"\F103C"}.mdi-file-upload:before{content:"\F0A4D"}.mdi-file-upload-outline:before{content:"\F0A4E"}.mdi-file-video:before{content:"\F022B"}.mdi-file-video-outline:before{content:"\F0E2C"}.mdi-file-word:before{content:"\F022C"}.mdi-file-word-box:before{content:"\F022D"}.mdi-file-word-box-outline:before{content:"\F103D"}.mdi-file-word-outline:before{content:"\F103E"}.mdi-file-xml-box:before{content:"\F1B4B"}.mdi-film:before{content:"\F022F"}.mdi-filmstrip:before{content:"\F0230"}.mdi-filmstrip-box:before{content:"\F0332"}.mdi-filmstrip-box-multiple:before{content:"\F0D18"}.mdi-filmstrip-off:before{content:"\F0231"}.mdi-filter:before{content:"\F0232"}.mdi-filter-check:before{content:"\F18EC"}.mdi-filter-check-outline:before{content:"\F18ED"}.mdi-filter-cog:before{content:"\F1AA3"}.mdi-filter-cog-outline:before{content:"\F1AA4"}.mdi-filter-menu:before{content:"\F10E5"}.mdi-filter-menu-outline:before{content:"\F10E6"}.mdi-filter-minus:before{content:"\F0EEE"}.mdi-filter-minus-outline:before{content:"\F0EEF"}.mdi-filter-multiple:before{content:"\F1A3F"}.mdi-filter-multiple-outline:before{content:"\F1A40"}.mdi-filter-off:before{content:"\F14EF"}.mdi-filter-off-outline:before{content:"\F14F0"}.mdi-filter-outline:before{content:"\F0233"}.mdi-filter-plus:before{content:"\F0EF0"}.mdi-filter-plus-outline:before{content:"\F0EF1"}.mdi-filter-remove:before{content:"\F0234"}.mdi-filter-remove-outline:before{content:"\F0235"}.mdi-filter-settings:before{content:"\F1AA5"}.mdi-filter-settings-outline:before{content:"\F1AA6"}.mdi-filter-variant:before{content:"\F0236"}.mdi-filter-variant-minus:before{content:"\F1112"}.mdi-filter-variant-plus:before{content:"\F1113"}.mdi-filter-variant-remove:before{content:"\F103F"}.mdi-finance:before{content:"\F081F"}.mdi-find-replace:before{content:"\F06D4"}.mdi-fingerprint:before{content:"\F0237"}.mdi-fingerprint-off:before{content:"\F0EB1"}.mdi-fire:before{content:"\F0238"}.mdi-fire-alert:before{content:"\F15D7"}.mdi-fire-circle:before{content:"\F1807"}.mdi-fire-extinguisher:before{content:"\F0EF2"}.mdi-fire-hydrant:before{content:"\F1137"}.mdi-fire-hydrant-alert:before{content:"\F1138"}.mdi-fire-hydrant-off:before{content:"\F1139"}.mdi-fire-off:before{content:"\F1722"}.mdi-fire-station:before{content:"\F1CC3"}.mdi-fire-truck:before{content:"\F08AB"}.mdi-firebase:before{content:"\F0967"}.mdi-firefox:before{content:"\F0239"}.mdi-fireplace:before{content:"\F0E2E"}.mdi-fireplace-off:before{content:"\F0E2F"}.mdi-firewire:before{content:"\F05BE"}.mdi-firework:before{content:"\F0E30"}.mdi-firework-off:before{content:"\F1723"}.mdi-fish:before{content:"\F023A"}.mdi-fish-off:before{content:"\F13F3"}.mdi-fishbowl:before{content:"\F0EF3"}.mdi-fishbowl-outline:before{content:"\F0EF4"}.mdi-fit-to-page:before{content:"\F0EF5"}.mdi-fit-to-page-outline:before{content:"\F0EF6"}.mdi-fit-to-screen:before{content:"\F18F4"}.mdi-fit-to-screen-outline:before{content:"\F18F5"}.mdi-flag:before{content:"\F023B"}.mdi-flag-checkered:before{content:"\F023C"}.mdi-flag-minus:before{content:"\F0B99"}.mdi-flag-minus-outline:before{content:"\F10B2"}.mdi-flag-off:before{content:"\F18EE"}.mdi-flag-off-outline:before{content:"\F18EF"}.mdi-flag-outline:before{content:"\F023D"}.mdi-flag-plus:before{content:"\F0B9A"}.mdi-flag-plus-outline:before{content:"\F10B3"}.mdi-flag-remove:before{content:"\F0B9B"}.mdi-flag-remove-outline:before{content:"\F10B4"}.mdi-flag-triangle:before{content:"\F023F"}.mdi-flag-variant:before{content:"\F0240"}.mdi-flag-variant-minus:before{content:"\F1BB4"}.mdi-flag-variant-minus-outline:before{content:"\F1BB5"}.mdi-flag-variant-off:before{content:"\F1BB0"}.mdi-flag-variant-off-outline:before{content:"\F1BB1"}.mdi-flag-variant-outline:before{content:"\F023E"}.mdi-flag-variant-plus:before{content:"\F1BB2"}.mdi-flag-variant-plus-outline:before{content:"\F1BB3"}.mdi-flag-variant-remove:before{content:"\F1BB6"}.mdi-flag-variant-remove-outline:before{content:"\F1BB7"}.mdi-flare:before{content:"\F0D72"}.mdi-flash:before{content:"\F0241"}.mdi-flash-alert:before{content:"\F0EF7"}.mdi-flash-alert-outline:before{content:"\F0EF8"}.mdi-flash-auto:before{content:"\F0242"}.mdi-flash-off:before{content:"\F0243"}.mdi-flash-off-outline:before{content:"\F1B45"}.mdi-flash-outline:before{content:"\F06D5"}.mdi-flash-red-eye:before{content:"\F067B"}.mdi-flash-triangle:before{content:"\F1B1D"}.mdi-flash-triangle-outline:before{content:"\F1B1E"}.mdi-flashlight:before{content:"\F0244"}.mdi-flashlight-off:before{content:"\F0245"}.mdi-flask:before{content:"\F0093"}.mdi-flask-empty:before{content:"\F0094"}.mdi-flask-empty-minus:before{content:"\F123A"}.mdi-flask-empty-minus-outline:before{content:"\F123B"}.mdi-flask-empty-off:before{content:"\F13F4"}.mdi-flask-empty-off-outline:before{content:"\F13F5"}.mdi-flask-empty-outline:before{content:"\F0095"}.mdi-flask-empty-plus:before{content:"\F123C"}.mdi-flask-empty-plus-outline:before{content:"\F123D"}.mdi-flask-empty-remove:before{content:"\F123E"}.mdi-flask-empty-remove-outline:before{content:"\F123F"}.mdi-flask-minus:before{content:"\F1240"}.mdi-flask-minus-outline:before{content:"\F1241"}.mdi-flask-off:before{content:"\F13F6"}.mdi-flask-off-outline:before{content:"\F13F7"}.mdi-flask-outline:before{content:"\F0096"}.mdi-flask-plus:before{content:"\F1242"}.mdi-flask-plus-outline:before{content:"\F1243"}.mdi-flask-remove:before{content:"\F1244"}.mdi-flask-remove-outline:before{content:"\F1245"}.mdi-flask-round-bottom:before{content:"\F124B"}.mdi-flask-round-bottom-empty:before{content:"\F124C"}.mdi-flask-round-bottom-empty-outline:before{content:"\F124D"}.mdi-flask-round-bottom-outline:before{content:"\F124E"}.mdi-fleur-de-lis:before{content:"\F1303"}.mdi-flip-horizontal:before{content:"\F10E7"}.mdi-flip-to-back:before{content:"\F0247"}.mdi-flip-to-front:before{content:"\F0248"}.mdi-flip-vertical:before{content:"\F10E8"}.mdi-floor-lamp:before{content:"\F08DD"}.mdi-floor-lamp-dual:before{content:"\F1040"}.mdi-floor-lamp-dual-outline:before{content:"\F17CE"}.mdi-floor-lamp-outline:before{content:"\F17C8"}.mdi-floor-lamp-torchiere:before{content:"\F1747"}.mdi-floor-lamp-torchiere-outline:before{content:"\F17D6"}.mdi-floor-lamp-torchiere-variant:before{content:"\F1041"}.mdi-floor-lamp-torchiere-variant-outline:before{content:"\F17CF"}.mdi-floor-plan:before{content:"\F0821"}.mdi-floppy:before{content:"\F0249"}.mdi-floppy-variant:before{content:"\F09EF"}.mdi-flower:before{content:"\F024A"}.mdi-flower-outline:before{content:"\F09F0"}.mdi-flower-pollen:before{content:"\F1885"}.mdi-flower-pollen-outline:before{content:"\F1886"}.mdi-flower-poppy:before{content:"\F0D08"}.mdi-flower-tulip:before{content:"\F09F1"}.mdi-flower-tulip-outline:before{content:"\F09F2"}.mdi-focus-auto:before{content:"\F0F4E"}.mdi-focus-field:before{content:"\F0F4F"}.mdi-focus-field-horizontal:before{content:"\F0F50"}.mdi-focus-field-vertical:before{content:"\F0F51"}.mdi-folder:before{content:"\F024B"}.mdi-folder-account:before{content:"\F024C"}.mdi-folder-account-outline:before{content:"\F0B9C"}.mdi-folder-alert:before{content:"\F0DCC"}.mdi-folder-alert-outline:before{content:"\F0DCD"}.mdi-folder-arrow-down:before{content:"\F19E8"}.mdi-folder-arrow-down-outline:before{content:"\F19E9"}.mdi-folder-arrow-left:before{content:"\F19EA"}.mdi-folder-arrow-left-outline:before{content:"\F19EB"}.mdi-folder-arrow-left-right:before{content:"\F19EC"}.mdi-folder-arrow-left-right-outline:before{content:"\F19ED"}.mdi-folder-arrow-right:before{content:"\F19EE"}.mdi-folder-arrow-right-outline:before{content:"\F19EF"}.mdi-folder-arrow-up:before{content:"\F19F0"}.mdi-folder-arrow-up-down:before{content:"\F19F1"}.mdi-folder-arrow-up-down-outline:before{content:"\F19F2"}.mdi-folder-arrow-up-outline:before{content:"\F19F3"}.mdi-folder-cancel:before{content:"\F19F4"}.mdi-folder-cancel-outline:before{content:"\F19F5"}.mdi-folder-check:before{content:"\F197E"}.mdi-folder-check-outline:before{content:"\F197F"}.mdi-folder-clock:before{content:"\F0ABA"}.mdi-folder-clock-outline:before{content:"\F0ABB"}.mdi-folder-cog:before{content:"\F107F"}.mdi-folder-cog-outline:before{content:"\F1080"}.mdi-folder-download:before{content:"\F024D"}.mdi-folder-download-outline:before{content:"\F10E9"}.mdi-folder-edit:before{content:"\F08DE"}.mdi-folder-edit-outline:before{content:"\F0DCE"}.mdi-folder-eye:before{content:"\F178A"}.mdi-folder-eye-outline:before{content:"\F178B"}.mdi-folder-file:before{content:"\F19F6"}.mdi-folder-file-outline:before{content:"\F19F7"}.mdi-folder-google-drive:before{content:"\F024E"}.mdi-folder-heart:before{content:"\F10EA"}.mdi-folder-heart-outline:before{content:"\F10EB"}.mdi-folder-hidden:before{content:"\F179E"}.mdi-folder-home:before{content:"\F10B5"}.mdi-folder-home-outline:before{content:"\F10B6"}.mdi-folder-image:before{content:"\F024F"}.mdi-folder-information:before{content:"\F10B7"}.mdi-folder-information-outline:before{content:"\F10B8"}.mdi-folder-key:before{content:"\F08AC"}.mdi-folder-key-network:before{content:"\F08AD"}.mdi-folder-key-network-outline:before{content:"\F0C80"}.mdi-folder-key-outline:before{content:"\F10EC"}.mdi-folder-lock:before{content:"\F0250"}.mdi-folder-lock-open:before{content:"\F0251"}.mdi-folder-lock-open-outline:before{content:"\F1AA7"}.mdi-folder-lock-outline:before{content:"\F1AA8"}.mdi-folder-marker:before{content:"\F126D"}.mdi-folder-marker-outline:before{content:"\F126E"}.mdi-folder-minus:before{content:"\F1B49"}.mdi-folder-minus-outline:before{content:"\F1B4A"}.mdi-folder-move:before{content:"\F0252"}.mdi-folder-move-outline:before{content:"\F1246"}.mdi-folder-multiple:before{content:"\F0253"}.mdi-folder-multiple-image:before{content:"\F0254"}.mdi-folder-multiple-outline:before{content:"\F0255"}.mdi-folder-multiple-plus:before{content:"\F147E"}.mdi-folder-multiple-plus-outline:before{content:"\F147F"}.mdi-folder-music:before{content:"\F1359"}.mdi-folder-music-outline:before{content:"\F135A"}.mdi-folder-network:before{content:"\F0870"}.mdi-folder-network-outline:before{content:"\F0C81"}.mdi-folder-off:before{content:"\F19F8"}.mdi-folder-off-outline:before{content:"\F19F9"}.mdi-folder-open:before{content:"\F0770"}.mdi-folder-open-outline:before{content:"\F0DCF"}.mdi-folder-outline:before{content:"\F0256"}.mdi-folder-play:before{content:"\F19FA"}.mdi-folder-play-outline:before{content:"\F19FB"}.mdi-folder-plus:before{content:"\F0257"}.mdi-folder-plus-outline:before{content:"\F0B9D"}.mdi-folder-pound:before{content:"\F0D09"}.mdi-folder-pound-outline:before{content:"\F0D0A"}.mdi-folder-question:before{content:"\F19CA"}.mdi-folder-question-outline:before{content:"\F19CB"}.mdi-folder-refresh:before{content:"\F0749"}.mdi-folder-refresh-outline:before{content:"\F0542"}.mdi-folder-remove:before{content:"\F0258"}.mdi-folder-remove-outline:before{content:"\F0B9E"}.mdi-folder-search:before{content:"\F0968"}.mdi-folder-search-outline:before{content:"\F0969"}.mdi-folder-settings:before{content:"\F107D"}.mdi-folder-settings-outline:before{content:"\F107E"}.mdi-folder-star:before{content:"\F069D"}.mdi-folder-star-multiple:before{content:"\F13D3"}.mdi-folder-star-multiple-outline:before{content:"\F13D4"}.mdi-folder-star-outline:before{content:"\F0B9F"}.mdi-folder-swap:before{content:"\F0FB6"}.mdi-folder-swap-outline:before{content:"\F0FB7"}.mdi-folder-sync:before{content:"\F0D0B"}.mdi-folder-sync-outline:before{content:"\F0D0C"}.mdi-folder-table:before{content:"\F12E3"}.mdi-folder-table-outline:before{content:"\F12E4"}.mdi-folder-text:before{content:"\F0C82"}.mdi-folder-text-outline:before{content:"\F0C83"}.mdi-folder-upload:before{content:"\F0259"}.mdi-folder-upload-outline:before{content:"\F10ED"}.mdi-folder-wrench:before{content:"\F19FC"}.mdi-folder-wrench-outline:before{content:"\F19FD"}.mdi-folder-zip:before{content:"\F06EB"}.mdi-folder-zip-outline:before{content:"\F07B9"}.mdi-font-awesome:before{content:"\F003A"}.mdi-food:before{content:"\F025A"}.mdi-food-apple:before{content:"\F025B"}.mdi-food-apple-outline:before{content:"\F0C84"}.mdi-food-croissant:before{content:"\F07C8"}.mdi-food-drumstick:before{content:"\F141F"}.mdi-food-drumstick-off:before{content:"\F1468"}.mdi-food-drumstick-off-outline:before{content:"\F1469"}.mdi-food-drumstick-outline:before{content:"\F1420"}.mdi-food-fork-drink:before{content:"\F05F2"}.mdi-food-halal:before{content:"\F1572"}.mdi-food-hot-dog:before{content:"\F184B"}.mdi-food-kosher:before{content:"\F1573"}.mdi-food-off:before{content:"\F05F3"}.mdi-food-off-outline:before{content:"\F1915"}.mdi-food-outline:before{content:"\F1916"}.mdi-food-steak:before{content:"\F146A"}.mdi-food-steak-off:before{content:"\F146B"}.mdi-food-takeout-box:before{content:"\F1836"}.mdi-food-takeout-box-outline:before{content:"\F1837"}.mdi-food-turkey:before{content:"\F171C"}.mdi-food-variant:before{content:"\F025C"}.mdi-food-variant-off:before{content:"\F13E5"}.mdi-foot-print:before{content:"\F0F52"}.mdi-football:before{content:"\F025D"}.mdi-football-australian:before{content:"\F025E"}.mdi-football-helmet:before{content:"\F025F"}.mdi-forest:before{content:"\F1897"}.mdi-forest-outline:before{content:"\F1C63"}.mdi-forklift:before{content:"\F07C9"}.mdi-form-dropdown:before{content:"\F1400"}.mdi-form-select:before{content:"\F1401"}.mdi-form-textarea:before{content:"\F1095"}.mdi-form-textbox:before{content:"\F060E"}.mdi-form-textbox-lock:before{content:"\F135D"}.mdi-form-textbox-password:before{content:"\F07F5"}.mdi-format-align-bottom:before{content:"\F0753"}.mdi-format-align-center:before{content:"\F0260"}.mdi-format-align-justify:before{content:"\F0261"}.mdi-format-align-left:before{content:"\F0262"}.mdi-format-align-middle:before{content:"\F0754"}.mdi-format-align-right:before{content:"\F0263"}.mdi-format-align-top:before{content:"\F0755"}.mdi-format-annotation-minus:before{content:"\F0ABC"}.mdi-format-annotation-plus:before{content:"\F0646"}.mdi-format-bold:before{content:"\F0264"}.mdi-format-clear:before{content:"\F0265"}.mdi-format-color-fill:before{content:"\F0266"}.mdi-format-color-highlight:before{content:"\F0E31"}.mdi-format-color-marker-cancel:before{content:"\F1313"}.mdi-format-color-text:before{content:"\F069E"}.mdi-format-columns:before{content:"\F08DF"}.mdi-format-float-center:before{content:"\F0267"}.mdi-format-float-left:before{content:"\F0268"}.mdi-format-float-none:before{content:"\F0269"}.mdi-format-float-right:before{content:"\F026A"}.mdi-format-font:before{content:"\F06D6"}.mdi-format-font-size-decrease:before{content:"\F09F3"}.mdi-format-font-size-increase:before{content:"\F09F4"}.mdi-format-header-1:before{content:"\F026B"}.mdi-format-header-2:before{content:"\F026C"}.mdi-format-header-3:before{content:"\F026D"}.mdi-format-header-4:before{content:"\F026E"}.mdi-format-header-5:before{content:"\F026F"}.mdi-format-header-6:before{content:"\F0270"}.mdi-format-header-decrease:before{content:"\F0271"}.mdi-format-header-equal:before{content:"\F0272"}.mdi-format-header-increase:before{content:"\F0273"}.mdi-format-header-pound:before{content:"\F0274"}.mdi-format-horizontal-align-center:before{content:"\F061E"}.mdi-format-horizontal-align-left:before{content:"\F061F"}.mdi-format-horizontal-align-right:before{content:"\F0620"}.mdi-format-indent-decrease:before{content:"\F0275"}.mdi-format-indent-increase:before{content:"\F0276"}.mdi-format-italic:before{content:"\F0277"}.mdi-format-letter-case:before{content:"\F0B34"}.mdi-format-letter-case-lower:before{content:"\F0B35"}.mdi-format-letter-case-upper:before{content:"\F0B36"}.mdi-format-letter-ends-with:before{content:"\F0FB8"}.mdi-format-letter-matches:before{content:"\F0FB9"}.mdi-format-letter-spacing:before{content:"\F1956"}.mdi-format-letter-spacing-variant:before{content:"\F1AFB"}.mdi-format-letter-starts-with:before{content:"\F0FBA"}.mdi-format-line-height:before{content:"\F1AFC"}.mdi-format-line-spacing:before{content:"\F0278"}.mdi-format-line-style:before{content:"\F05C8"}.mdi-format-line-weight:before{content:"\F05C9"}.mdi-format-list-bulleted:before{content:"\F0279"}.mdi-format-list-bulleted-square:before{content:"\F0DD0"}.mdi-format-list-bulleted-triangle:before{content:"\F0EB2"}.mdi-format-list-bulleted-type:before{content:"\F027A"}.mdi-format-list-checkbox:before{content:"\F096A"}.mdi-format-list-checks:before{content:"\F0756"}.mdi-format-list-group:before{content:"\F1860"}.mdi-format-list-group-plus:before{content:"\F1B56"}.mdi-format-list-numbered:before{content:"\F027B"}.mdi-format-list-numbered-rtl:before{content:"\F0D0D"}.mdi-format-list-text:before{content:"\F126F"}.mdi-format-overline:before{content:"\F0EB3"}.mdi-format-page-break:before{content:"\F06D7"}.mdi-format-page-split:before{content:"\F1917"}.mdi-format-paint:before{content:"\F027C"}.mdi-format-paragraph:before{content:"\F027D"}.mdi-format-paragraph-spacing:before{content:"\F1AFD"}.mdi-format-pilcrow:before{content:"\F06D8"}.mdi-format-pilcrow-arrow-left:before{content:"\F0286"}.mdi-format-pilcrow-arrow-right:before{content:"\F0285"}.mdi-format-quote-close:before{content:"\F027E"}.mdi-format-quote-close-outline:before{content:"\F11A8"}.mdi-format-quote-open:before{content:"\F0757"}.mdi-format-quote-open-outline:before{content:"\F11A7"}.mdi-format-rotate-90:before{content:"\F06AA"}.mdi-format-section:before{content:"\F069F"}.mdi-format-size:before{content:"\F027F"}.mdi-format-strikethrough:before{content:"\F0280"}.mdi-format-strikethrough-variant:before{content:"\F0281"}.mdi-format-subscript:before{content:"\F0282"}.mdi-format-superscript:before{content:"\F0283"}.mdi-format-text:before{content:"\F0284"}.mdi-format-text-rotation-angle-down:before{content:"\F0FBB"}.mdi-format-text-rotation-angle-up:before{content:"\F0FBC"}.mdi-format-text-rotation-down:before{content:"\F0D73"}.mdi-format-text-rotation-down-vertical:before{content:"\F0FBD"}.mdi-format-text-rotation-none:before{content:"\F0D74"}.mdi-format-text-rotation-up:before{content:"\F0FBE"}.mdi-format-text-rotation-vertical:before{content:"\F0FBF"}.mdi-format-text-variant:before{content:"\F0E32"}.mdi-format-text-variant-outline:before{content:"\F150F"}.mdi-format-text-wrapping-clip:before{content:"\F0D0E"}.mdi-format-text-wrapping-overflow:before{content:"\F0D0F"}.mdi-format-text-wrapping-wrap:before{content:"\F0D10"}.mdi-format-textbox:before{content:"\F0D11"}.mdi-format-title:before{content:"\F05F4"}.mdi-format-underline:before{content:"\F0287"}.mdi-format-underline-wavy:before{content:"\F18E9"}.mdi-format-vertical-align-bottom:before{content:"\F0621"}.mdi-format-vertical-align-center:before{content:"\F0622"}.mdi-format-vertical-align-top:before{content:"\F0623"}.mdi-format-wrap-inline:before{content:"\F0288"}.mdi-format-wrap-square:before{content:"\F0289"}.mdi-format-wrap-tight:before{content:"\F028A"}.mdi-format-wrap-top-bottom:before{content:"\F028B"}.mdi-forum:before{content:"\F028C"}.mdi-forum-minus:before{content:"\F1AA9"}.mdi-forum-minus-outline:before{content:"\F1AAA"}.mdi-forum-outline:before{content:"\F0822"}.mdi-forum-plus:before{content:"\F1AAB"}.mdi-forum-plus-outline:before{content:"\F1AAC"}.mdi-forum-remove:before{content:"\F1AAD"}.mdi-forum-remove-outline:before{content:"\F1AAE"}.mdi-forward:before{content:"\F028D"}.mdi-forwardburger:before{content:"\F0D75"}.mdi-fountain:before{content:"\F096B"}.mdi-fountain-pen:before{content:"\F0D12"}.mdi-fountain-pen-tip:before{content:"\F0D13"}.mdi-fraction-one-half:before{content:"\F1992"}.mdi-freebsd:before{content:"\F08E0"}.mdi-french-fries:before{content:"\F1957"}.mdi-frequently-asked-questions:before{content:"\F0EB4"}.mdi-fridge:before{content:"\F0290"}.mdi-fridge-alert:before{content:"\F11B1"}.mdi-fridge-alert-outline:before{content:"\F11B2"}.mdi-fridge-bottom:before{content:"\F0292"}.mdi-fridge-industrial:before{content:"\F15EE"}.mdi-fridge-industrial-alert:before{content:"\F15EF"}.mdi-fridge-industrial-alert-outline:before{content:"\F15F0"}.mdi-fridge-industrial-off:before{content:"\F15F1"}.mdi-fridge-industrial-off-outline:before{content:"\F15F2"}.mdi-fridge-industrial-outline:before{content:"\F15F3"}.mdi-fridge-off:before{content:"\F11AF"}.mdi-fridge-off-outline:before{content:"\F11B0"}.mdi-fridge-outline:before{content:"\F028F"}.mdi-fridge-top:before{content:"\F0291"}.mdi-fridge-variant:before{content:"\F15F4"}.mdi-fridge-variant-alert:before{content:"\F15F5"}.mdi-fridge-variant-alert-outline:before{content:"\F15F6"}.mdi-fridge-variant-off:before{content:"\F15F7"}.mdi-fridge-variant-off-outline:before{content:"\F15F8"}.mdi-fridge-variant-outline:before{content:"\F15F9"}.mdi-fruit-cherries:before{content:"\F1042"}.mdi-fruit-cherries-off:before{content:"\F13F8"}.mdi-fruit-citrus:before{content:"\F1043"}.mdi-fruit-citrus-off:before{content:"\F13F9"}.mdi-fruit-grapes:before{content:"\F1044"}.mdi-fruit-grapes-outline:before{content:"\F1045"}.mdi-fruit-pear:before{content:"\F1A0E"}.mdi-fruit-pineapple:before{content:"\F1046"}.mdi-fruit-watermelon:before{content:"\F1047"}.mdi-fuel:before{content:"\F07CA"}.mdi-fuel-cell:before{content:"\F18B5"}.mdi-fullscreen:before{content:"\F0293"}.mdi-fullscreen-exit:before{content:"\F0294"}.mdi-function:before{content:"\F0295"}.mdi-function-variant:before{content:"\F0871"}.mdi-furigana-horizontal:before{content:"\F1081"}.mdi-furigana-vertical:before{content:"\F1082"}.mdi-fuse:before{content:"\F0C85"}.mdi-fuse-alert:before{content:"\F142D"}.mdi-fuse-blade:before{content:"\F0C86"}.mdi-fuse-off:before{content:"\F142C"}.mdi-gamepad:before{content:"\F0296"}.mdi-gamepad-circle:before{content:"\F0E33"}.mdi-gamepad-circle-down:before{content:"\F0E34"}.mdi-gamepad-circle-left:before{content:"\F0E35"}.mdi-gamepad-circle-outline:before{content:"\F0E36"}.mdi-gamepad-circle-right:before{content:"\F0E37"}.mdi-gamepad-circle-up:before{content:"\F0E38"}.mdi-gamepad-down:before{content:"\F0E39"}.mdi-gamepad-left:before{content:"\F0E3A"}.mdi-gamepad-outline:before{content:"\F1919"}.mdi-gamepad-right:before{content:"\F0E3B"}.mdi-gamepad-round:before{content:"\F0E3C"}.mdi-gamepad-round-down:before{content:"\F0E3D"}.mdi-gamepad-round-left:before{content:"\F0E3E"}.mdi-gamepad-round-outline:before{content:"\F0E3F"}.mdi-gamepad-round-right:before{content:"\F0E40"}.mdi-gamepad-round-up:before{content:"\F0E41"}.mdi-gamepad-square:before{content:"\F0EB5"}.mdi-gamepad-square-outline:before{content:"\F0EB6"}.mdi-gamepad-up:before{content:"\F0E42"}.mdi-gamepad-variant:before{content:"\F0297"}.mdi-gamepad-variant-outline:before{content:"\F0EB7"}.mdi-gamma:before{content:"\F10EE"}.mdi-gantry-crane:before{content:"\F0DD1"}.mdi-garage:before{content:"\F06D9"}.mdi-garage-alert:before{content:"\F0872"}.mdi-garage-alert-variant:before{content:"\F12D5"}.mdi-garage-lock:before{content:"\F17FB"}.mdi-garage-open:before{content:"\F06DA"}.mdi-garage-open-variant:before{content:"\F12D4"}.mdi-garage-variant:before{content:"\F12D3"}.mdi-garage-variant-lock:before{content:"\F17FC"}.mdi-gas-burner:before{content:"\F1A1B"}.mdi-gas-cylinder:before{content:"\F0647"}.mdi-gas-station:before{content:"\F0298"}.mdi-gas-station-in-use:before{content:"\F1CC4"}.mdi-gas-station-in-use-outline:before{content:"\F1CC5"}.mdi-gas-station-off:before{content:"\F1409"}.mdi-gas-station-off-outline:before{content:"\F140A"}.mdi-gas-station-outline:before{content:"\F0EB8"}.mdi-gate:before{content:"\F0299"}.mdi-gate-alert:before{content:"\F17F8"}.mdi-gate-and:before{content:"\F08E1"}.mdi-gate-arrow-left:before{content:"\F17F7"}.mdi-gate-arrow-right:before{content:"\F1169"}.mdi-gate-buffer:before{content:"\F1AFE"}.mdi-gate-nand:before{content:"\F08E2"}.mdi-gate-nor:before{content:"\F08E3"}.mdi-gate-not:before{content:"\F08E4"}.mdi-gate-open:before{content:"\F116A"}.mdi-gate-or:before{content:"\F08E5"}.mdi-gate-xnor:before{content:"\F08E6"}.mdi-gate-xor:before{content:"\F08E7"}.mdi-gatsby:before{content:"\F0E43"}.mdi-gauge:before{content:"\F029A"}.mdi-gauge-empty:before{content:"\F0873"}.mdi-gauge-full:before{content:"\F0874"}.mdi-gauge-low:before{content:"\F0875"}.mdi-gavel:before{content:"\F029B"}.mdi-gender-female:before{content:"\F029C"}.mdi-gender-male:before{content:"\F029D"}.mdi-gender-male-female:before{content:"\F029E"}.mdi-gender-male-female-variant:before{content:"\F113F"}.mdi-gender-non-binary:before{content:"\F1140"}.mdi-gender-transgender:before{content:"\F029F"}.mdi-generator-mobile:before{content:"\F1C8A"}.mdi-generator-portable:before{content:"\F1C8B"}.mdi-generator-stationary:before{content:"\F1C8C"}.mdi-gentoo:before{content:"\F08E8"}.mdi-gesture:before{content:"\F07CB"}.mdi-gesture-double-tap:before{content:"\F073C"}.mdi-gesture-pinch:before{content:"\F0ABD"}.mdi-gesture-spread:before{content:"\F0ABE"}.mdi-gesture-swipe:before{content:"\F0D76"}.mdi-gesture-swipe-down:before{content:"\F073D"}.mdi-gesture-swipe-horizontal:before{content:"\F0ABF"}.mdi-gesture-swipe-left:before{content:"\F073E"}.mdi-gesture-swipe-right:before{content:"\F073F"}.mdi-gesture-swipe-up:before{content:"\F0740"}.mdi-gesture-swipe-vertical:before{content:"\F0AC0"}.mdi-gesture-tap:before{content:"\F0741"}.mdi-gesture-tap-box:before{content:"\F12A9"}.mdi-gesture-tap-button:before{content:"\F12A8"}.mdi-gesture-tap-hold:before{content:"\F0D77"}.mdi-gesture-two-double-tap:before{content:"\F0742"}.mdi-gesture-two-tap:before{content:"\F0743"}.mdi-ghost:before{content:"\F02A0"}.mdi-ghost-off:before{content:"\F09F5"}.mdi-ghost-off-outline:before{content:"\F165C"}.mdi-ghost-outline:before{content:"\F165D"}.mdi-gift:before{content:"\F0E44"}.mdi-gift-off:before{content:"\F16EF"}.mdi-gift-off-outline:before{content:"\F16F0"}.mdi-gift-open:before{content:"\F16F1"}.mdi-gift-open-outline:before{content:"\F16F2"}.mdi-gift-outline:before{content:"\F02A1"}.mdi-git:before{content:"\F02A2"}.mdi-github:before{content:"\F02A4"}.mdi-gitlab:before{content:"\F0BA0"}.mdi-glass-cocktail:before{content:"\F0356"}.mdi-glass-cocktail-off:before{content:"\F15E6"}.mdi-glass-flute:before{content:"\F02A5"}.mdi-glass-fragile:before{content:"\F1873"}.mdi-glass-mug:before{content:"\F02A6"}.mdi-glass-mug-off:before{content:"\F15E7"}.mdi-glass-mug-variant:before{content:"\F1116"}.mdi-glass-mug-variant-off:before{content:"\F15E8"}.mdi-glass-pint-outline:before{content:"\F130D"}.mdi-glass-stange:before{content:"\F02A7"}.mdi-glass-tulip:before{content:"\F02A8"}.mdi-glass-wine:before{content:"\F0876"}.mdi-glasses:before{content:"\F02AA"}.mdi-globe-light:before{content:"\F066F"}.mdi-globe-light-outline:before{content:"\F12D7"}.mdi-globe-model:before{content:"\F08E9"}.mdi-gmail:before{content:"\F02AB"}.mdi-gnome:before{content:"\F02AC"}.mdi-go-kart:before{content:"\F0D79"}.mdi-go-kart-track:before{content:"\F0D7A"}.mdi-gog:before{content:"\F0BA1"}.mdi-gold:before{content:"\F124F"}.mdi-golf:before{content:"\F0823"}.mdi-golf-cart:before{content:"\F11A4"}.mdi-golf-tee:before{content:"\F1083"}.mdi-gondola:before{content:"\F0686"}.mdi-goodreads:before{content:"\F0D7B"}.mdi-google:before{content:"\F02AD"}.mdi-google-ads:before{content:"\F0C87"}.mdi-google-analytics:before{content:"\F07CC"}.mdi-google-assistant:before{content:"\F07CD"}.mdi-google-cardboard:before{content:"\F02AE"}.mdi-google-chrome:before{content:"\F02AF"}.mdi-google-circles:before{content:"\F02B0"}.mdi-google-circles-communities:before{content:"\F02B1"}.mdi-google-circles-extended:before{content:"\F02B2"}.mdi-google-circles-group:before{content:"\F02B3"}.mdi-google-classroom:before{content:"\F02C0"}.mdi-google-cloud:before{content:"\F11F6"}.mdi-google-downasaur:before{content:"\F1362"}.mdi-google-drive:before{content:"\F02B6"}.mdi-google-earth:before{content:"\F02B7"}.mdi-google-fit:before{content:"\F096C"}.mdi-google-glass:before{content:"\F02B8"}.mdi-google-hangouts:before{content:"\F02C9"}.mdi-google-keep:before{content:"\F06DC"}.mdi-google-lens:before{content:"\F09F6"}.mdi-google-maps:before{content:"\F05F5"}.mdi-google-my-business:before{content:"\F1048"}.mdi-google-nearby:before{content:"\F02B9"}.mdi-google-play:before{content:"\F02BC"}.mdi-google-plus:before{content:"\F02BD"}.mdi-google-podcast:before{content:"\F0EB9"}.mdi-google-spreadsheet:before{content:"\F09F7"}.mdi-google-street-view:before{content:"\F0C88"}.mdi-google-translate:before{content:"\F02BF"}.mdi-gradient-horizontal:before{content:"\F174A"}.mdi-gradient-vertical:before{content:"\F06A0"}.mdi-grain:before{content:"\F0D7C"}.mdi-graph:before{content:"\F1049"}.mdi-graph-outline:before{content:"\F104A"}.mdi-graphql:before{content:"\F0877"}.mdi-grass:before{content:"\F1510"}.mdi-grave-stone:before{content:"\F0BA2"}.mdi-grease-pencil:before{content:"\F0648"}.mdi-greater-than:before{content:"\F096D"}.mdi-greater-than-or-equal:before{content:"\F096E"}.mdi-greenhouse:before{content:"\F002D"}.mdi-grid:before{content:"\F02C1"}.mdi-grid-large:before{content:"\F0758"}.mdi-grid-off:before{content:"\F02C2"}.mdi-grill:before{content:"\F0E45"}.mdi-grill-outline:before{content:"\F118A"}.mdi-group:before{content:"\F02C3"}.mdi-guitar-acoustic:before{content:"\F0771"}.mdi-guitar-electric:before{content:"\F02C4"}.mdi-guitar-pick:before{content:"\F02C5"}.mdi-guitar-pick-outline:before{content:"\F02C6"}.mdi-guy-fawkes-mask:before{content:"\F0825"}.mdi-gymnastics:before{content:"\F1A41"}.mdi-hail:before{content:"\F0AC1"}.mdi-hair-dryer:before{content:"\F10EF"}.mdi-hair-dryer-outline:before{content:"\F10F0"}.mdi-halloween:before{content:"\F0BA3"}.mdi-hamburger:before{content:"\F0685"}.mdi-hamburger-check:before{content:"\F1776"}.mdi-hamburger-minus:before{content:"\F1777"}.mdi-hamburger-off:before{content:"\F1778"}.mdi-hamburger-plus:before{content:"\F1779"}.mdi-hamburger-remove:before{content:"\F177A"}.mdi-hammer:before{content:"\F08EA"}.mdi-hammer-screwdriver:before{content:"\F1322"}.mdi-hammer-sickle:before{content:"\F1887"}.mdi-hammer-wrench:before{content:"\F1323"}.mdi-hand-back-left:before{content:"\F0E46"}.mdi-hand-back-left-off:before{content:"\F1830"}.mdi-hand-back-left-off-outline:before{content:"\F1832"}.mdi-hand-back-left-outline:before{content:"\F182C"}.mdi-hand-back-right:before{content:"\F0E47"}.mdi-hand-back-right-off:before{content:"\F1831"}.mdi-hand-back-right-off-outline:before{content:"\F1833"}.mdi-hand-back-right-outline:before{content:"\F182D"}.mdi-hand-clap:before{content:"\F194B"}.mdi-hand-clap-off:before{content:"\F1A42"}.mdi-hand-coin:before{content:"\F188F"}.mdi-hand-coin-outline:before{content:"\F1890"}.mdi-hand-cycle:before{content:"\F1B9C"}.mdi-hand-extended:before{content:"\F18B6"}.mdi-hand-extended-outline:before{content:"\F18B7"}.mdi-hand-front-left:before{content:"\F182B"}.mdi-hand-front-left-outline:before{content:"\F182E"}.mdi-hand-front-right:before{content:"\F0A4F"}.mdi-hand-front-right-outline:before{content:"\F182F"}.mdi-hand-heart:before{content:"\F10F1"}.mdi-hand-heart-outline:before{content:"\F157E"}.mdi-hand-okay:before{content:"\F0A50"}.mdi-hand-peace:before{content:"\F0A51"}.mdi-hand-peace-variant:before{content:"\F0A52"}.mdi-hand-pointing-down:before{content:"\F0A53"}.mdi-hand-pointing-left:before{content:"\F0A54"}.mdi-hand-pointing-right:before{content:"\F02C7"}.mdi-hand-pointing-up:before{content:"\F0A55"}.mdi-hand-saw:before{content:"\F0E48"}.mdi-hand-wash:before{content:"\F157F"}.mdi-hand-wash-outline:before{content:"\F1580"}.mdi-hand-water:before{content:"\F139F"}.mdi-hand-wave:before{content:"\F1821"}.mdi-hand-wave-outline:before{content:"\F1822"}.mdi-handball:before{content:"\F0F53"}.mdi-handcuffs:before{content:"\F113E"}.mdi-hands-pray:before{content:"\F0579"}.mdi-handshake:before{content:"\F1218"}.mdi-handshake-outline:before{content:"\F15A1"}.mdi-hanger:before{content:"\F02C8"}.mdi-hard-hat:before{content:"\F096F"}.mdi-harddisk:before{content:"\F02CA"}.mdi-harddisk-plus:before{content:"\F104B"}.mdi-harddisk-remove:before{content:"\F104C"}.mdi-hat-fedora:before{content:"\F0BA4"}.mdi-hazard-lights:before{content:"\F0C89"}.mdi-hdmi-port:before{content:"\F1BB8"}.mdi-hdr:before{content:"\F0D7D"}.mdi-hdr-off:before{content:"\F0D7E"}.mdi-head:before{content:"\F135E"}.mdi-head-alert:before{content:"\F1338"}.mdi-head-alert-outline:before{content:"\F1339"}.mdi-head-check:before{content:"\F133A"}.mdi-head-check-outline:before{content:"\F133B"}.mdi-head-cog:before{content:"\F133C"}.mdi-head-cog-outline:before{content:"\F133D"}.mdi-head-dots-horizontal:before{content:"\F133E"}.mdi-head-dots-horizontal-outline:before{content:"\F133F"}.mdi-head-flash:before{content:"\F1340"}.mdi-head-flash-outline:before{content:"\F1341"}.mdi-head-heart:before{content:"\F1342"}.mdi-head-heart-outline:before{content:"\F1343"}.mdi-head-lightbulb:before{content:"\F1344"}.mdi-head-lightbulb-outline:before{content:"\F1345"}.mdi-head-minus:before{content:"\F1346"}.mdi-head-minus-outline:before{content:"\F1347"}.mdi-head-outline:before{content:"\F135F"}.mdi-head-plus:before{content:"\F1348"}.mdi-head-plus-outline:before{content:"\F1349"}.mdi-head-question:before{content:"\F134A"}.mdi-head-question-outline:before{content:"\F134B"}.mdi-head-remove:before{content:"\F134C"}.mdi-head-remove-outline:before{content:"\F134D"}.mdi-head-snowflake:before{content:"\F134E"}.mdi-head-snowflake-outline:before{content:"\F134F"}.mdi-head-sync:before{content:"\F1350"}.mdi-head-sync-outline:before{content:"\F1351"}.mdi-headphones:before{content:"\F02CB"}.mdi-headphones-bluetooth:before{content:"\F0970"}.mdi-headphones-box:before{content:"\F02CC"}.mdi-headphones-off:before{content:"\F07CE"}.mdi-headphones-settings:before{content:"\F02CD"}.mdi-headset:before{content:"\F02CE"}.mdi-headset-dock:before{content:"\F02CF"}.mdi-headset-off:before{content:"\F02D0"}.mdi-heart:before{content:"\F02D1"}.mdi-heart-box:before{content:"\F02D2"}.mdi-heart-box-outline:before{content:"\F02D3"}.mdi-heart-broken:before{content:"\F02D4"}.mdi-heart-broken-outline:before{content:"\F0D14"}.mdi-heart-circle:before{content:"\F0971"}.mdi-heart-circle-outline:before{content:"\F0972"}.mdi-heart-cog:before{content:"\F1663"}.mdi-heart-cog-outline:before{content:"\F1664"}.mdi-heart-flash:before{content:"\F0EF9"}.mdi-heart-half:before{content:"\F06DF"}.mdi-heart-half-full:before{content:"\F06DE"}.mdi-heart-half-outline:before{content:"\F06E0"}.mdi-heart-minus:before{content:"\F142F"}.mdi-heart-minus-outline:before{content:"\F1432"}.mdi-heart-multiple:before{content:"\F0A56"}.mdi-heart-multiple-outline:before{content:"\F0A57"}.mdi-heart-off:before{content:"\F0759"}.mdi-heart-off-outline:before{content:"\F1434"}.mdi-heart-outline:before{content:"\F02D5"}.mdi-heart-plus:before{content:"\F142E"}.mdi-heart-plus-outline:before{content:"\F1431"}.mdi-heart-pulse:before{content:"\F05F6"}.mdi-heart-remove:before{content:"\F1430"}.mdi-heart-remove-outline:before{content:"\F1433"}.mdi-heart-search:before{content:"\F1C8D"}.mdi-heart-settings:before{content:"\F1665"}.mdi-heart-settings-outline:before{content:"\F1666"}.mdi-heat-pump:before{content:"\F1A43"}.mdi-heat-pump-outline:before{content:"\F1A44"}.mdi-heat-wave:before{content:"\F1A45"}.mdi-heating-coil:before{content:"\F1AAF"}.mdi-helicopter:before{content:"\F0AC2"}.mdi-help:before{content:"\F02D6"}.mdi-help-box:before{content:"\F078B"}.mdi-help-box-multiple:before{content:"\F1C0A"}.mdi-help-box-multiple-outline:before{content:"\F1C0B"}.mdi-help-box-outline:before{content:"\F1C0C"}.mdi-help-circle:before{content:"\F02D7"}.mdi-help-circle-outline:before{content:"\F0625"}.mdi-help-network:before{content:"\F06F5"}.mdi-help-network-outline:before{content:"\F0C8A"}.mdi-help-rhombus:before{content:"\F0BA5"}.mdi-help-rhombus-outline:before{content:"\F0BA6"}.mdi-hexadecimal:before{content:"\F12A7"}.mdi-hexagon:before{content:"\F02D8"}.mdi-hexagon-multiple:before{content:"\F06E1"}.mdi-hexagon-multiple-outline:before{content:"\F10F2"}.mdi-hexagon-outline:before{content:"\F02D9"}.mdi-hexagon-slice-1:before{content:"\F0AC3"}.mdi-hexagon-slice-2:before{content:"\F0AC4"}.mdi-hexagon-slice-3:before{content:"\F0AC5"}.mdi-hexagon-slice-4:before{content:"\F0AC6"}.mdi-hexagon-slice-5:before{content:"\F0AC7"}.mdi-hexagon-slice-6:before{content:"\F0AC8"}.mdi-hexagram:before{content:"\F0AC9"}.mdi-hexagram-outline:before{content:"\F0ACA"}.mdi-high-definition:before{content:"\F07CF"}.mdi-high-definition-box:before{content:"\F0878"}.mdi-highway:before{content:"\F05F7"}.mdi-hiking:before{content:"\F0D7F"}.mdi-history:before{content:"\F02DA"}.mdi-hockey-puck:before{content:"\F0879"}.mdi-hockey-sticks:before{content:"\F087A"}.mdi-hololens:before{content:"\F02DB"}.mdi-home:before{content:"\F02DC"}.mdi-home-account:before{content:"\F0826"}.mdi-home-alert:before{content:"\F087B"}.mdi-home-alert-outline:before{content:"\F15D0"}.mdi-home-analytics:before{content:"\F0EBA"}.mdi-home-assistant:before{content:"\F07D0"}.mdi-home-automation:before{content:"\F07D1"}.mdi-home-battery:before{content:"\F1901"}.mdi-home-battery-outline:before{content:"\F1902"}.mdi-home-circle:before{content:"\F07D2"}.mdi-home-circle-outline:before{content:"\F104D"}.mdi-home-city:before{content:"\F0D15"}.mdi-home-city-outline:before{content:"\F0D16"}.mdi-home-clock:before{content:"\F1A12"}.mdi-home-clock-outline:before{content:"\F1A13"}.mdi-home-edit:before{content:"\F1159"}.mdi-home-edit-outline:before{content:"\F115A"}.mdi-home-export-outline:before{content:"\F0F9B"}.mdi-home-flood:before{content:"\F0EFA"}.mdi-home-floor-0:before{content:"\F0DD2"}.mdi-home-floor-1:before{content:"\F0D80"}.mdi-home-floor-2:before{content:"\F0D81"}.mdi-home-floor-3:before{content:"\F0D82"}.mdi-home-floor-a:before{content:"\F0D83"}.mdi-home-floor-b:before{content:"\F0D84"}.mdi-home-floor-g:before{content:"\F0D85"}.mdi-home-floor-l:before{content:"\F0D86"}.mdi-home-floor-negative-1:before{content:"\F0DD3"}.mdi-home-group:before{content:"\F0DD4"}.mdi-home-group-minus:before{content:"\F19C1"}.mdi-home-group-plus:before{content:"\F19C0"}.mdi-home-group-remove:before{content:"\F19C2"}.mdi-home-heart:before{content:"\F0827"}.mdi-home-import-outline:before{content:"\F0F9C"}.mdi-home-lightbulb:before{content:"\F1251"}.mdi-home-lightbulb-outline:before{content:"\F1252"}.mdi-home-lightning-bolt:before{content:"\F1903"}.mdi-home-lightning-bolt-outline:before{content:"\F1904"}.mdi-home-lock:before{content:"\F08EB"}.mdi-home-lock-open:before{content:"\F08EC"}.mdi-home-map-marker:before{content:"\F05F8"}.mdi-home-minus:before{content:"\F0974"}.mdi-home-minus-outline:before{content:"\F13D5"}.mdi-home-modern:before{content:"\F02DD"}.mdi-home-off:before{content:"\F1A46"}.mdi-home-off-outline:before{content:"\F1A47"}.mdi-home-outline:before{content:"\F06A1"}.mdi-home-percent:before{content:"\F1C7C"}.mdi-home-percent-outline:before{content:"\F1C7D"}.mdi-home-plus:before{content:"\F0975"}.mdi-home-plus-outline:before{content:"\F13D6"}.mdi-home-remove:before{content:"\F1247"}.mdi-home-remove-outline:before{content:"\F13D7"}.mdi-home-roof:before{content:"\F112B"}.mdi-home-search:before{content:"\F13B0"}.mdi-home-search-outline:before{content:"\F13B1"}.mdi-home-silo:before{content:"\F1BA0"}.mdi-home-silo-outline:before{content:"\F1BA1"}.mdi-home-sound-in:before{content:"\F1C2F"}.mdi-home-sound-in-outline:before{content:"\F1C30"}.mdi-home-sound-out:before{content:"\F1C31"}.mdi-home-sound-out-outline:before{content:"\F1C32"}.mdi-home-switch:before{content:"\F1794"}.mdi-home-switch-outline:before{content:"\F1795"}.mdi-home-thermometer:before{content:"\F0F54"}.mdi-home-thermometer-outline:before{content:"\F0F55"}.mdi-home-variant:before{content:"\F02DE"}.mdi-home-variant-outline:before{content:"\F0BA7"}.mdi-hook:before{content:"\F06E2"}.mdi-hook-off:before{content:"\F06E3"}.mdi-hoop-house:before{content:"\F0E56"}.mdi-hops:before{content:"\F02DF"}.mdi-horizontal-rotate-clockwise:before{content:"\F10F3"}.mdi-horizontal-rotate-counterclockwise:before{content:"\F10F4"}.mdi-horse:before{content:"\F15BF"}.mdi-horse-human:before{content:"\F15C0"}.mdi-horse-variant:before{content:"\F15C1"}.mdi-horse-variant-fast:before{content:"\F186E"}.mdi-horseshoe:before{content:"\F0A58"}.mdi-hospital:before{content:"\F0FF6"}.mdi-hospital-box:before{content:"\F02E0"}.mdi-hospital-box-outline:before{content:"\F0FF7"}.mdi-hospital-building:before{content:"\F02E1"}.mdi-hospital-marker:before{content:"\F02E2"}.mdi-hot-tub:before{content:"\F0828"}.mdi-hours-12:before{content:"\F1C94"}.mdi-hours-24:before{content:"\F1478"}.mdi-hub:before{content:"\F1C95"}.mdi-hub-outline:before{content:"\F1C96"}.mdi-hubspot:before{content:"\F0D17"}.mdi-hulu:before{content:"\F0829"}.mdi-human:before{content:"\F02E6"}.mdi-human-baby-changing-table:before{content:"\F138B"}.mdi-human-cane:before{content:"\F1581"}.mdi-human-capacity-decrease:before{content:"\F159B"}.mdi-human-capacity-increase:before{content:"\F159C"}.mdi-human-child:before{content:"\F02E7"}.mdi-human-dolly:before{content:"\F1980"}.mdi-human-edit:before{content:"\F14E8"}.mdi-human-female:before{content:"\F0649"}.mdi-human-female-boy:before{content:"\F0A59"}.mdi-human-female-dance:before{content:"\F15C9"}.mdi-human-female-female:before{content:"\F0A5A"}.mdi-human-female-female-child:before{content:"\F1C8E"}.mdi-human-female-girl:before{content:"\F0A5B"}.mdi-human-greeting:before{content:"\F17C4"}.mdi-human-greeting-proximity:before{content:"\F159D"}.mdi-human-greeting-variant:before{content:"\F064A"}.mdi-human-handsdown:before{content:"\F064B"}.mdi-human-handsup:before{content:"\F064C"}.mdi-human-male:before{content:"\F064D"}.mdi-human-male-board:before{content:"\F0890"}.mdi-human-male-board-poll:before{content:"\F0846"}.mdi-human-male-boy:before{content:"\F0A5C"}.mdi-human-male-child:before{content:"\F138C"}.mdi-human-male-female:before{content:"\F02E8"}.mdi-human-male-female-child:before{content:"\F1823"}.mdi-human-male-girl:before{content:"\F0A5D"}.mdi-human-male-height:before{content:"\F0EFB"}.mdi-human-male-height-variant:before{content:"\F0EFC"}.mdi-human-male-male:before{content:"\F0A5E"}.mdi-human-male-male-child:before{content:"\F1C8F"}.mdi-human-non-binary:before{content:"\F1848"}.mdi-human-pregnant:before{content:"\F05CF"}.mdi-human-queue:before{content:"\F1571"}.mdi-human-scooter:before{content:"\F11E9"}.mdi-human-walker:before{content:"\F1B71"}.mdi-human-wheelchair:before{content:"\F138D"}.mdi-human-white-cane:before{content:"\F1981"}.mdi-humble-bundle:before{content:"\F0744"}.mdi-hvac:before{content:"\F1352"}.mdi-hvac-off:before{content:"\F159E"}.mdi-hydraulic-oil-level:before{content:"\F1324"}.mdi-hydraulic-oil-temperature:before{content:"\F1325"}.mdi-hydro-power:before{content:"\F12E5"}.mdi-hydrogen-station:before{content:"\F1894"}.mdi-ice-cream:before{content:"\F082A"}.mdi-ice-cream-off:before{content:"\F0E52"}.mdi-ice-pop:before{content:"\F0EFD"}.mdi-id-card:before{content:"\F0FC0"}.mdi-identifier:before{content:"\F0EFE"}.mdi-ideogram-cjk:before{content:"\F1331"}.mdi-ideogram-cjk-variant:before{content:"\F1332"}.mdi-image:before{content:"\F02E9"}.mdi-image-album:before{content:"\F02EA"}.mdi-image-area:before{content:"\F02EB"}.mdi-image-area-close:before{content:"\F02EC"}.mdi-image-auto-adjust:before{content:"\F0FC1"}.mdi-image-broken:before{content:"\F02ED"}.mdi-image-broken-variant:before{content:"\F02EE"}.mdi-image-check:before{content:"\F1B25"}.mdi-image-check-outline:before{content:"\F1B26"}.mdi-image-edit:before{content:"\F11E3"}.mdi-image-edit-outline:before{content:"\F11E4"}.mdi-image-filter-black-white:before{content:"\F02F0"}.mdi-image-filter-center-focus:before{content:"\F02F1"}.mdi-image-filter-center-focus-strong:before{content:"\F0EFF"}.mdi-image-filter-center-focus-strong-outline:before{content:"\F0F00"}.mdi-image-filter-center-focus-weak:before{content:"\F02F2"}.mdi-image-filter-drama:before{content:"\F02F3"}.mdi-image-filter-drama-outline:before{content:"\F1BFF"}.mdi-image-filter-frames:before{content:"\F02F4"}.mdi-image-filter-hdr:before{content:"\F02F5"}.mdi-image-filter-hdr-outline:before{content:"\F1C64"}.mdi-image-filter-none:before{content:"\F02F6"}.mdi-image-filter-tilt-shift:before{content:"\F02F7"}.mdi-image-filter-vintage:before{content:"\F02F8"}.mdi-image-frame:before{content:"\F0E49"}.mdi-image-lock:before{content:"\F1AB0"}.mdi-image-lock-outline:before{content:"\F1AB1"}.mdi-image-marker:before{content:"\F177B"}.mdi-image-marker-outline:before{content:"\F177C"}.mdi-image-minus:before{content:"\F1419"}.mdi-image-minus-outline:before{content:"\F1B47"}.mdi-image-move:before{content:"\F09F8"}.mdi-image-multiple:before{content:"\F02F9"}.mdi-image-multiple-outline:before{content:"\F02EF"}.mdi-image-off:before{content:"\F082B"}.mdi-image-off-outline:before{content:"\F11D1"}.mdi-image-outline:before{content:"\F0976"}.mdi-image-plus:before{content:"\F087C"}.mdi-image-plus-outline:before{content:"\F1B46"}.mdi-image-refresh:before{content:"\F19FE"}.mdi-image-refresh-outline:before{content:"\F19FF"}.mdi-image-remove:before{content:"\F1418"}.mdi-image-remove-outline:before{content:"\F1B48"}.mdi-image-search:before{content:"\F0977"}.mdi-image-search-outline:before{content:"\F0978"}.mdi-image-size-select-actual:before{content:"\F0C8D"}.mdi-image-size-select-large:before{content:"\F0C8E"}.mdi-image-size-select-small:before{content:"\F0C8F"}.mdi-image-sync:before{content:"\F1A00"}.mdi-image-sync-outline:before{content:"\F1A01"}.mdi-image-text:before{content:"\F160D"}.mdi-import:before{content:"\F02FA"}.mdi-inbox:before{content:"\F0687"}.mdi-inbox-arrow-down:before{content:"\F02FB"}.mdi-inbox-arrow-down-outline:before{content:"\F1270"}.mdi-inbox-arrow-up:before{content:"\F03D1"}.mdi-inbox-arrow-up-outline:before{content:"\F1271"}.mdi-inbox-full:before{content:"\F1272"}.mdi-inbox-full-outline:before{content:"\F1273"}.mdi-inbox-multiple:before{content:"\F08B0"}.mdi-inbox-multiple-outline:before{content:"\F0BA8"}.mdi-inbox-outline:before{content:"\F1274"}.mdi-inbox-remove:before{content:"\F159F"}.mdi-inbox-remove-outline:before{content:"\F15A0"}.mdi-incognito:before{content:"\F05F9"}.mdi-incognito-circle:before{content:"\F1421"}.mdi-incognito-circle-off:before{content:"\F1422"}.mdi-incognito-off:before{content:"\F0075"}.mdi-induction:before{content:"\F184C"}.mdi-infinity:before{content:"\F06E4"}.mdi-information:before{content:"\F02FC"}.mdi-information-box:before{content:"\F1C65"}.mdi-information-box-outline:before{content:"\F1C66"}.mdi-information-off:before{content:"\F178C"}.mdi-information-off-outline:before{content:"\F178D"}.mdi-information-outline:before{content:"\F02FD"}.mdi-information-slab-box:before{content:"\F1C67"}.mdi-information-slab-box-outline:before{content:"\F1C68"}.mdi-information-slab-circle:before{content:"\F1C69"}.mdi-information-slab-circle-outline:before{content:"\F1C6A"}.mdi-information-slab-symbol:before{content:"\F1C6B"}.mdi-information-symbol:before{content:"\F1C6C"}.mdi-information-variant:before{content:"\F064E"}.mdi-information-variant-box:before{content:"\F1C6D"}.mdi-information-variant-box-outline:before{content:"\F1C6E"}.mdi-information-variant-circle:before{content:"\F1C6F"}.mdi-information-variant-circle-outline:before{content:"\F1C70"}.mdi-instagram:before{content:"\F02FE"}.mdi-instrument-triangle:before{content:"\F104E"}.mdi-integrated-circuit-chip:before{content:"\F1913"}.mdi-invert-colors:before{content:"\F0301"}.mdi-invert-colors-off:before{content:"\F0E4A"}.mdi-invoice:before{content:"\F1CD2"}.mdi-invoice-arrow-left:before{content:"\F1CD3"}.mdi-invoice-arrow-left-outline:before{content:"\F1CD4"}.mdi-invoice-arrow-right:before{content:"\F1CD5"}.mdi-invoice-arrow-right-outline:before{content:"\F1CD6"}.mdi-invoice-check:before{content:"\F1CD7"}.mdi-invoice-check-outline:before{content:"\F1CD8"}.mdi-invoice-clock:before{content:"\F1CD9"}.mdi-invoice-clock-outline:before{content:"\F1CDA"}.mdi-invoice-edit:before{content:"\F1CDB"}.mdi-invoice-edit-outline:before{content:"\F1CDC"}.mdi-invoice-export-outline:before{content:"\F1CDD"}.mdi-invoice-fast:before{content:"\F1CDE"}.mdi-invoice-fast-outline:before{content:"\F1CDF"}.mdi-invoice-import:before{content:"\F1CE0"}.mdi-invoice-import-outline:before{content:"\F1CE1"}.mdi-invoice-list:before{content:"\F1CE2"}.mdi-invoice-list-outline:before{content:"\F1CE3"}.mdi-invoice-minus:before{content:"\F1CE4"}.mdi-invoice-minus-outline:before{content:"\F1CE5"}.mdi-invoice-multiple:before{content:"\F1CE6"}.mdi-invoice-multiple-outline:before{content:"\F1CE7"}.mdi-invoice-outline:before{content:"\F1CE8"}.mdi-invoice-plus:before{content:"\F1CE9"}.mdi-invoice-plus-outline:before{content:"\F1CEA"}.mdi-invoice-remove:before{content:"\F1CEB"}.mdi-invoice-remove-outline:before{content:"\F1CEC"}.mdi-invoice-send:before{content:"\F1CED"}.mdi-invoice-send-outline:before{content:"\F1CEE"}.mdi-invoice-text:before{content:"\F1CEF"}.mdi-invoice-text-arrow-left:before{content:"\F1CF0"}.mdi-invoice-text-arrow-left-outline:before{content:"\F1CF1"}.mdi-invoice-text-arrow-right:before{content:"\F1CF2"}.mdi-invoice-text-arrow-right-outline:before{content:"\F1CF3"}.mdi-invoice-text-check:before{content:"\F1CF4"}.mdi-invoice-text-check-outline:before{content:"\F1CF5"}.mdi-invoice-text-clock:before{content:"\F1CF6"}.mdi-invoice-text-clock-outline:before{content:"\F1CF7"}.mdi-invoice-text-edit:before{content:"\F1CF8"}.mdi-invoice-text-edit-outline:before{content:"\F1CF9"}.mdi-invoice-text-fast:before{content:"\F1CFA"}.mdi-invoice-text-fast-outline:before{content:"\F1CFB"}.mdi-invoice-text-minus:before{content:"\F1CFC"}.mdi-invoice-text-minus-outline:before{content:"\F1CFD"}.mdi-invoice-text-multiple:before{content:"\F1CFE"}.mdi-invoice-text-multiple-outline:before{content:"\F1CFF"}.mdi-invoice-text-outline:before{content:"\F1D00"}.mdi-invoice-text-plus:before{content:"\F1D01"}.mdi-invoice-text-plus-outline:before{content:"\F1D02"}.mdi-invoice-text-remove:before{content:"\F1D03"}.mdi-invoice-text-remove-outline:before{content:"\F1D04"}.mdi-invoice-text-send:before{content:"\F1D05"}.mdi-invoice-text-send-outline:before{content:"\F1D06"}.mdi-iobroker:before{content:"\F12E8"}.mdi-ip:before{content:"\F0A5F"}.mdi-ip-network:before{content:"\F0A60"}.mdi-ip-network-outline:before{content:"\F0C90"}.mdi-ip-outline:before{content:"\F1982"}.mdi-ipod:before{content:"\F0C91"}.mdi-iron:before{content:"\F1824"}.mdi-iron-board:before{content:"\F1838"}.mdi-iron-outline:before{content:"\F1825"}.mdi-island:before{content:"\F104F"}.mdi-island-variant:before{content:"\F1CC6"}.mdi-iv-bag:before{content:"\F10B9"}.mdi-jabber:before{content:"\F0DD5"}.mdi-jeepney:before{content:"\F0302"}.mdi-jellyfish:before{content:"\F0F01"}.mdi-jellyfish-outline:before{content:"\F0F02"}.mdi-jira:before{content:"\F0303"}.mdi-jquery:before{content:"\F087D"}.mdi-jsfiddle:before{content:"\F0304"}.mdi-jump-rope:before{content:"\F12FF"}.mdi-kabaddi:before{content:"\F0D87"}.mdi-kangaroo:before{content:"\F1558"}.mdi-karate:before{content:"\F082C"}.mdi-kayaking:before{content:"\F08AF"}.mdi-keg:before{content:"\F0305"}.mdi-kettle:before{content:"\F05FA"}.mdi-kettle-alert:before{content:"\F1317"}.mdi-kettle-alert-outline:before{content:"\F1318"}.mdi-kettle-off:before{content:"\F131B"}.mdi-kettle-off-outline:before{content:"\F131C"}.mdi-kettle-outline:before{content:"\F0F56"}.mdi-kettle-pour-over:before{content:"\F173C"}.mdi-kettle-steam:before{content:"\F1319"}.mdi-kettle-steam-outline:before{content:"\F131A"}.mdi-kettlebell:before{content:"\F1300"}.mdi-key:before{content:"\F0306"}.mdi-key-alert:before{content:"\F1983"}.mdi-key-alert-outline:before{content:"\F1984"}.mdi-key-arrow-right:before{content:"\F1312"}.mdi-key-chain:before{content:"\F1574"}.mdi-key-chain-variant:before{content:"\F1575"}.mdi-key-change:before{content:"\F0307"}.mdi-key-link:before{content:"\F119F"}.mdi-key-minus:before{content:"\F0308"}.mdi-key-outline:before{content:"\F0DD6"}.mdi-key-plus:before{content:"\F0309"}.mdi-key-remove:before{content:"\F030A"}.mdi-key-star:before{content:"\F119E"}.mdi-key-variant:before{content:"\F030B"}.mdi-key-wireless:before{content:"\F0FC2"}.mdi-keyboard:before{content:"\F030C"}.mdi-keyboard-backspace:before{content:"\F030D"}.mdi-keyboard-caps:before{content:"\F030E"}.mdi-keyboard-close:before{content:"\F030F"}.mdi-keyboard-close-outline:before{content:"\F1C00"}.mdi-keyboard-esc:before{content:"\F12B7"}.mdi-keyboard-f1:before{content:"\F12AB"}.mdi-keyboard-f10:before{content:"\F12B4"}.mdi-keyboard-f11:before{content:"\F12B5"}.mdi-keyboard-f12:before{content:"\F12B6"}.mdi-keyboard-f2:before{content:"\F12AC"}.mdi-keyboard-f3:before{content:"\F12AD"}.mdi-keyboard-f4:before{content:"\F12AE"}.mdi-keyboard-f5:before{content:"\F12AF"}.mdi-keyboard-f6:before{content:"\F12B0"}.mdi-keyboard-f7:before{content:"\F12B1"}.mdi-keyboard-f8:before{content:"\F12B2"}.mdi-keyboard-f9:before{content:"\F12B3"}.mdi-keyboard-off:before{content:"\F0310"}.mdi-keyboard-off-outline:before{content:"\F0E4B"}.mdi-keyboard-outline:before{content:"\F097B"}.mdi-keyboard-return:before{content:"\F0311"}.mdi-keyboard-settings:before{content:"\F09F9"}.mdi-keyboard-settings-outline:before{content:"\F09FA"}.mdi-keyboard-space:before{content:"\F1050"}.mdi-keyboard-tab:before{content:"\F0312"}.mdi-keyboard-tab-reverse:before{content:"\F0325"}.mdi-keyboard-variant:before{content:"\F0313"}.mdi-khanda:before{content:"\F10FD"}.mdi-kickstarter:before{content:"\F0745"}.mdi-kite:before{content:"\F1985"}.mdi-kite-outline:before{content:"\F1986"}.mdi-kitesurfing:before{content:"\F1744"}.mdi-klingon:before{content:"\F135B"}.mdi-knife:before{content:"\F09FB"}.mdi-knife-military:before{content:"\F09FC"}.mdi-knob:before{content:"\F1B96"}.mdi-koala:before{content:"\F173F"}.mdi-kodi:before{content:"\F0314"}.mdi-kubernetes:before{content:"\F10FE"}.mdi-label:before{content:"\F0315"}.mdi-label-multiple:before{content:"\F1375"}.mdi-label-multiple-outline:before{content:"\F1376"}.mdi-label-off:before{content:"\F0ACB"}.mdi-label-off-outline:before{content:"\F0ACC"}.mdi-label-outline:before{content:"\F0316"}.mdi-label-percent:before{content:"\F12EA"}.mdi-label-percent-outline:before{content:"\F12EB"}.mdi-label-variant:before{content:"\F0ACD"}.mdi-label-variant-outline:before{content:"\F0ACE"}.mdi-ladder:before{content:"\F15A2"}.mdi-ladybug:before{content:"\F082D"}.mdi-lambda:before{content:"\F0627"}.mdi-lamp:before{content:"\F06B5"}.mdi-lamp-outline:before{content:"\F17D0"}.mdi-lamps:before{content:"\F1576"}.mdi-lamps-outline:before{content:"\F17D1"}.mdi-lan:before{content:"\F0317"}.mdi-lan-check:before{content:"\F12AA"}.mdi-lan-connect:before{content:"\F0318"}.mdi-lan-disconnect:before{content:"\F0319"}.mdi-lan-pending:before{content:"\F031A"}.mdi-land-fields:before{content:"\F1AB2"}.mdi-land-plots:before{content:"\F1AB3"}.mdi-land-plots-circle:before{content:"\F1AB4"}.mdi-land-plots-circle-variant:before{content:"\F1AB5"}.mdi-land-plots-marker:before{content:"\F1C5D"}.mdi-land-rows-horizontal:before{content:"\F1AB6"}.mdi-land-rows-vertical:before{content:"\F1AB7"}.mdi-landslide:before{content:"\F1A48"}.mdi-landslide-outline:before{content:"\F1A49"}.mdi-language-c:before{content:"\F0671"}.mdi-language-cpp:before{content:"\F0672"}.mdi-language-csharp:before{content:"\F031B"}.mdi-language-css3:before{content:"\F031C"}.mdi-language-fortran:before{content:"\F121A"}.mdi-language-go:before{content:"\F07D3"}.mdi-language-haskell:before{content:"\F0C92"}.mdi-language-html5:before{content:"\F031D"}.mdi-language-java:before{content:"\F0B37"}.mdi-language-javascript:before{content:"\F031E"}.mdi-language-kotlin:before{content:"\F1219"}.mdi-language-lua:before{content:"\F08B1"}.mdi-language-markdown:before{content:"\F0354"}.mdi-language-markdown-outline:before{content:"\F0F5B"}.mdi-language-php:before{content:"\F031F"}.mdi-language-python:before{content:"\F0320"}.mdi-language-r:before{content:"\F07D4"}.mdi-language-ruby:before{content:"\F0D2D"}.mdi-language-ruby-on-rails:before{content:"\F0ACF"}.mdi-language-rust:before{content:"\F1617"}.mdi-language-swift:before{content:"\F06E5"}.mdi-language-typescript:before{content:"\F06E6"}.mdi-language-xaml:before{content:"\F0673"}.mdi-laptop:before{content:"\F0322"}.mdi-laptop-account:before{content:"\F1A4A"}.mdi-laptop-off:before{content:"\F06E7"}.mdi-laravel:before{content:"\F0AD0"}.mdi-laser-pointer:before{content:"\F1484"}.mdi-lasso:before{content:"\F0F03"}.mdi-lastpass:before{content:"\F0446"}.mdi-latitude:before{content:"\F0F57"}.mdi-launch:before{content:"\F0327"}.mdi-lava-lamp:before{content:"\F07D5"}.mdi-layers:before{content:"\F0328"}.mdi-layers-edit:before{content:"\F1892"}.mdi-layers-minus:before{content:"\F0E4C"}.mdi-layers-off:before{content:"\F0329"}.mdi-layers-off-outline:before{content:"\F09FD"}.mdi-layers-outline:before{content:"\F09FE"}.mdi-layers-plus:before{content:"\F0E4D"}.mdi-layers-remove:before{content:"\F0E4E"}.mdi-layers-search:before{content:"\F1206"}.mdi-layers-search-outline:before{content:"\F1207"}.mdi-layers-triple:before{content:"\F0F58"}.mdi-layers-triple-outline:before{content:"\F0F59"}.mdi-lead-pencil:before{content:"\F064F"}.mdi-leaf:before{content:"\F032A"}.mdi-leaf-circle:before{content:"\F1905"}.mdi-leaf-circle-outline:before{content:"\F1906"}.mdi-leaf-maple:before{content:"\F0C93"}.mdi-leaf-maple-off:before{content:"\F12DA"}.mdi-leaf-off:before{content:"\F12D9"}.mdi-leak:before{content:"\F0DD7"}.mdi-leak-off:before{content:"\F0DD8"}.mdi-lectern:before{content:"\F1AF0"}.mdi-led-off:before{content:"\F032B"}.mdi-led-on:before{content:"\F032C"}.mdi-led-outline:before{content:"\F032D"}.mdi-led-strip:before{content:"\F07D6"}.mdi-led-strip-variant:before{content:"\F1051"}.mdi-led-strip-variant-off:before{content:"\F1A4B"}.mdi-led-variant-off:before{content:"\F032E"}.mdi-led-variant-on:before{content:"\F032F"}.mdi-led-variant-outline:before{content:"\F0330"}.mdi-leek:before{content:"\F117D"}.mdi-less-than:before{content:"\F097C"}.mdi-less-than-or-equal:before{content:"\F097D"}.mdi-library:before{content:"\F0331"}.mdi-library-outline:before{content:"\F1A22"}.mdi-library-shelves:before{content:"\F0BA9"}.mdi-license:before{content:"\F0FC3"}.mdi-lifebuoy:before{content:"\F087E"}.mdi-light-flood-down:before{content:"\F1987"}.mdi-light-flood-up:before{content:"\F1988"}.mdi-light-recessed:before{content:"\F179B"}.mdi-light-switch:before{content:"\F097E"}.mdi-light-switch-off:before{content:"\F1A24"}.mdi-lightbulb:before{content:"\F0335"}.mdi-lightbulb-alert:before{content:"\F19E1"}.mdi-lightbulb-alert-outline:before{content:"\F19E2"}.mdi-lightbulb-auto:before{content:"\F1800"}.mdi-lightbulb-auto-outline:before{content:"\F1801"}.mdi-lightbulb-cfl:before{content:"\F1208"}.mdi-lightbulb-cfl-off:before{content:"\F1209"}.mdi-lightbulb-cfl-spiral:before{content:"\F1275"}.mdi-lightbulb-cfl-spiral-off:before{content:"\F12C3"}.mdi-lightbulb-fluorescent-tube:before{content:"\F1804"}.mdi-lightbulb-fluorescent-tube-outline:before{content:"\F1805"}.mdi-lightbulb-group:before{content:"\F1253"}.mdi-lightbulb-group-off:before{content:"\F12CD"}.mdi-lightbulb-group-off-outline:before{content:"\F12CE"}.mdi-lightbulb-group-outline:before{content:"\F1254"}.mdi-lightbulb-multiple:before{content:"\F1255"}.mdi-lightbulb-multiple-off:before{content:"\F12CF"}.mdi-lightbulb-multiple-off-outline:before{content:"\F12D0"}.mdi-lightbulb-multiple-outline:before{content:"\F1256"}.mdi-lightbulb-night:before{content:"\F1A4C"}.mdi-lightbulb-night-outline:before{content:"\F1A4D"}.mdi-lightbulb-off:before{content:"\F0E4F"}.mdi-lightbulb-off-outline:before{content:"\F0E50"}.mdi-lightbulb-on:before{content:"\F06E8"}.mdi-lightbulb-on-10:before{content:"\F1A4E"}.mdi-lightbulb-on-20:before{content:"\F1A4F"}.mdi-lightbulb-on-30:before{content:"\F1A50"}.mdi-lightbulb-on-40:before{content:"\F1A51"}.mdi-lightbulb-on-50:before{content:"\F1A52"}.mdi-lightbulb-on-60:before{content:"\F1A53"}.mdi-lightbulb-on-70:before{content:"\F1A54"}.mdi-lightbulb-on-80:before{content:"\F1A55"}.mdi-lightbulb-on-90:before{content:"\F1A56"}.mdi-lightbulb-on-outline:before{content:"\F06E9"}.mdi-lightbulb-outline:before{content:"\F0336"}.mdi-lightbulb-question:before{content:"\F19E3"}.mdi-lightbulb-question-outline:before{content:"\F19E4"}.mdi-lightbulb-spot:before{content:"\F17F4"}.mdi-lightbulb-spot-off:before{content:"\F17F5"}.mdi-lightbulb-variant:before{content:"\F1802"}.mdi-lightbulb-variant-outline:before{content:"\F1803"}.mdi-lighthouse:before{content:"\F09FF"}.mdi-lighthouse-on:before{content:"\F0A00"}.mdi-lightning-bolt:before{content:"\F140B"}.mdi-lightning-bolt-circle:before{content:"\F0820"}.mdi-lightning-bolt-outline:before{content:"\F140C"}.mdi-line-scan:before{content:"\F0624"}.mdi-lingerie:before{content:"\F1476"}.mdi-link:before{content:"\F0337"}.mdi-link-box:before{content:"\F0D1A"}.mdi-link-box-outline:before{content:"\F0D1B"}.mdi-link-box-variant:before{content:"\F0D1C"}.mdi-link-box-variant-outline:before{content:"\F0D1D"}.mdi-link-circle:before{content:"\F1CAC"}.mdi-link-circle-outline:before{content:"\F1CAD"}.mdi-link-edit:before{content:"\F1CAE"}.mdi-link-lock:before{content:"\F10BA"}.mdi-link-off:before{content:"\F0338"}.mdi-link-plus:before{content:"\F0C94"}.mdi-link-variant:before{content:"\F0339"}.mdi-link-variant-minus:before{content:"\F10FF"}.mdi-link-variant-off:before{content:"\F033A"}.mdi-link-variant-plus:before{content:"\F1100"}.mdi-link-variant-remove:before{content:"\F1101"}.mdi-linkedin:before{content:"\F033B"}.mdi-linux:before{content:"\F033D"}.mdi-linux-mint:before{content:"\F08ED"}.mdi-lipstick:before{content:"\F13B5"}.mdi-liquid-spot:before{content:"\F1826"}.mdi-liquor:before{content:"\F191E"}.mdi-list-box:before{content:"\F1B7B"}.mdi-list-box-outline:before{content:"\F1B7C"}.mdi-list-status:before{content:"\F15AB"}.mdi-litecoin:before{content:"\F0A61"}.mdi-loading:before{content:"\F0772"}.mdi-location-enter:before{content:"\F0FC4"}.mdi-location-exit:before{content:"\F0FC5"}.mdi-lock:before{content:"\F033E"}.mdi-lock-alert:before{content:"\F08EE"}.mdi-lock-alert-outline:before{content:"\F15D1"}.mdi-lock-check:before{content:"\F139A"}.mdi-lock-check-outline:before{content:"\F16A8"}.mdi-lock-clock:before{content:"\F097F"}.mdi-lock-minus:before{content:"\F16A9"}.mdi-lock-minus-outline:before{content:"\F16AA"}.mdi-lock-off:before{content:"\F1671"}.mdi-lock-off-outline:before{content:"\F1672"}.mdi-lock-open:before{content:"\F033F"}.mdi-lock-open-alert:before{content:"\F139B"}.mdi-lock-open-alert-outline:before{content:"\F15D2"}.mdi-lock-open-check:before{content:"\F139C"}.mdi-lock-open-check-outline:before{content:"\F16AB"}.mdi-lock-open-minus:before{content:"\F16AC"}.mdi-lock-open-minus-outline:before{content:"\F16AD"}.mdi-lock-open-outline:before{content:"\F0340"}.mdi-lock-open-plus:before{content:"\F16AE"}.mdi-lock-open-plus-outline:before{content:"\F16AF"}.mdi-lock-open-remove:before{content:"\F16B0"}.mdi-lock-open-remove-outline:before{content:"\F16B1"}.mdi-lock-open-variant:before{content:"\F0FC6"}.mdi-lock-open-variant-outline:before{content:"\F0FC7"}.mdi-lock-outline:before{content:"\F0341"}.mdi-lock-pattern:before{content:"\F06EA"}.mdi-lock-percent:before{content:"\F1C12"}.mdi-lock-percent-open:before{content:"\F1C13"}.mdi-lock-percent-open-outline:before{content:"\F1C14"}.mdi-lock-percent-open-variant:before{content:"\F1C15"}.mdi-lock-percent-open-variant-outline:before{content:"\F1C16"}.mdi-lock-percent-outline:before{content:"\F1C17"}.mdi-lock-plus:before{content:"\F05FB"}.mdi-lock-plus-outline:before{content:"\F16B2"}.mdi-lock-question:before{content:"\F08EF"}.mdi-lock-remove:before{content:"\F16B3"}.mdi-lock-remove-outline:before{content:"\F16B4"}.mdi-lock-reset:before{content:"\F0773"}.mdi-lock-smart:before{content:"\F08B2"}.mdi-locker:before{content:"\F07D7"}.mdi-locker-multiple:before{content:"\F07D8"}.mdi-login:before{content:"\F0342"}.mdi-login-variant:before{content:"\F05FC"}.mdi-logout:before{content:"\F0343"}.mdi-logout-variant:before{content:"\F05FD"}.mdi-longitude:before{content:"\F0F5A"}.mdi-looks:before{content:"\F0344"}.mdi-lotion:before{content:"\F1582"}.mdi-lotion-outline:before{content:"\F1583"}.mdi-lotion-plus:before{content:"\F1584"}.mdi-lotion-plus-outline:before{content:"\F1585"}.mdi-loupe:before{content:"\F0345"}.mdi-lumx:before{content:"\F0346"}.mdi-lungs:before{content:"\F1084"}.mdi-mace:before{content:"\F1843"}.mdi-magazine-pistol:before{content:"\F0324"}.mdi-magazine-rifle:before{content:"\F0323"}.mdi-magic-staff:before{content:"\F1844"}.mdi-magnet:before{content:"\F0347"}.mdi-magnet-on:before{content:"\F0348"}.mdi-magnify:before{content:"\F0349"}.mdi-magnify-close:before{content:"\F0980"}.mdi-magnify-expand:before{content:"\F1874"}.mdi-magnify-minus:before{content:"\F034A"}.mdi-magnify-minus-cursor:before{content:"\F0A62"}.mdi-magnify-minus-outline:before{content:"\F06EC"}.mdi-magnify-plus:before{content:"\F034B"}.mdi-magnify-plus-cursor:before{content:"\F0A63"}.mdi-magnify-plus-outline:before{content:"\F06ED"}.mdi-magnify-remove-cursor:before{content:"\F120C"}.mdi-magnify-remove-outline:before{content:"\F120D"}.mdi-magnify-scan:before{content:"\F1276"}.mdi-mail:before{content:"\F0EBB"}.mdi-mailbox:before{content:"\F06EE"}.mdi-mailbox-open:before{content:"\F0D88"}.mdi-mailbox-open-outline:before{content:"\F0D89"}.mdi-mailbox-open-up:before{content:"\F0D8A"}.mdi-mailbox-open-up-outline:before{content:"\F0D8B"}.mdi-mailbox-outline:before{content:"\F0D8C"}.mdi-mailbox-up:before{content:"\F0D8D"}.mdi-mailbox-up-outline:before{content:"\F0D8E"}.mdi-manjaro:before{content:"\F160A"}.mdi-map:before{content:"\F034D"}.mdi-map-check:before{content:"\F0EBC"}.mdi-map-check-outline:before{content:"\F0EBD"}.mdi-map-clock:before{content:"\F0D1E"}.mdi-map-clock-outline:before{content:"\F0D1F"}.mdi-map-legend:before{content:"\F0A01"}.mdi-map-marker:before{content:"\F034E"}.mdi-map-marker-account:before{content:"\F18E3"}.mdi-map-marker-account-outline:before{content:"\F18E4"}.mdi-map-marker-alert:before{content:"\F0F05"}.mdi-map-marker-alert-outline:before{content:"\F0F06"}.mdi-map-marker-check:before{content:"\F0C95"}.mdi-map-marker-check-outline:before{content:"\F12FB"}.mdi-map-marker-circle:before{content:"\F034F"}.mdi-map-marker-distance:before{content:"\F08F0"}.mdi-map-marker-down:before{content:"\F1102"}.mdi-map-marker-left:before{content:"\F12DB"}.mdi-map-marker-left-outline:before{content:"\F12DD"}.mdi-map-marker-minus:before{content:"\F0650"}.mdi-map-marker-minus-outline:before{content:"\F12F9"}.mdi-map-marker-multiple:before{content:"\F0350"}.mdi-map-marker-multiple-outline:before{content:"\F1277"}.mdi-map-marker-off:before{content:"\F0351"}.mdi-map-marker-off-outline:before{content:"\F12FD"}.mdi-map-marker-outline:before{content:"\F07D9"}.mdi-map-marker-path:before{content:"\F0D20"}.mdi-map-marker-plus:before{content:"\F0651"}.mdi-map-marker-plus-outline:before{content:"\F12F8"}.mdi-map-marker-question:before{content:"\F0F07"}.mdi-map-marker-question-outline:before{content:"\F0F08"}.mdi-map-marker-radius:before{content:"\F0352"}.mdi-map-marker-radius-outline:before{content:"\F12FC"}.mdi-map-marker-remove:before{content:"\F0F09"}.mdi-map-marker-remove-outline:before{content:"\F12FA"}.mdi-map-marker-remove-variant:before{content:"\F0F0A"}.mdi-map-marker-right:before{content:"\F12DC"}.mdi-map-marker-right-outline:before{content:"\F12DE"}.mdi-map-marker-star:before{content:"\F1608"}.mdi-map-marker-star-outline:before{content:"\F1609"}.mdi-map-marker-up:before{content:"\F1103"}.mdi-map-minus:before{content:"\F0981"}.mdi-map-outline:before{content:"\F0982"}.mdi-map-plus:before{content:"\F0983"}.mdi-map-search:before{content:"\F0984"}.mdi-map-search-outline:before{content:"\F0985"}.mdi-mapbox:before{content:"\F0BAA"}.mdi-margin:before{content:"\F0353"}.mdi-marker:before{content:"\F0652"}.mdi-marker-cancel:before{content:"\F0DD9"}.mdi-marker-check:before{content:"\F0355"}.mdi-mastodon:before{content:"\F0AD1"}.mdi-material-design:before{content:"\F0986"}.mdi-material-ui:before{content:"\F0357"}.mdi-math-compass:before{content:"\F0358"}.mdi-math-cos:before{content:"\F0C96"}.mdi-math-integral:before{content:"\F0FC8"}.mdi-math-integral-box:before{content:"\F0FC9"}.mdi-math-log:before{content:"\F1085"}.mdi-math-norm:before{content:"\F0FCA"}.mdi-math-norm-box:before{content:"\F0FCB"}.mdi-math-sin:before{content:"\F0C97"}.mdi-math-tan:before{content:"\F0C98"}.mdi-matrix:before{content:"\F0628"}.mdi-medal:before{content:"\F0987"}.mdi-medal-outline:before{content:"\F1326"}.mdi-medical-bag:before{content:"\F06EF"}.mdi-medical-cotton-swab:before{content:"\F1AB8"}.mdi-medication:before{content:"\F1B14"}.mdi-medication-outline:before{content:"\F1B15"}.mdi-meditation:before{content:"\F117B"}.mdi-memory:before{content:"\F035B"}.mdi-memory-arrow-down:before{content:"\F1CA6"}.mdi-menorah:before{content:"\F17D4"}.mdi-menorah-fire:before{content:"\F17D5"}.mdi-menu:before{content:"\F035C"}.mdi-menu-close:before{content:"\F1C90"}.mdi-menu-down:before{content:"\F035D"}.mdi-menu-down-outline:before{content:"\F06B6"}.mdi-menu-left:before{content:"\F035E"}.mdi-menu-left-outline:before{content:"\F0A02"}.mdi-menu-open:before{content:"\F0BAB"}.mdi-menu-right:before{content:"\F035F"}.mdi-menu-right-outline:before{content:"\F0A03"}.mdi-menu-swap:before{content:"\F0A64"}.mdi-menu-swap-outline:before{content:"\F0A65"}.mdi-menu-up:before{content:"\F0360"}.mdi-menu-up-outline:before{content:"\F06B7"}.mdi-merge:before{content:"\F0F5C"}.mdi-message:before{content:"\F0361"}.mdi-message-alert:before{content:"\F0362"}.mdi-message-alert-outline:before{content:"\F0A04"}.mdi-message-arrow-left:before{content:"\F12F2"}.mdi-message-arrow-left-outline:before{content:"\F12F3"}.mdi-message-arrow-right:before{content:"\F12F4"}.mdi-message-arrow-right-outline:before{content:"\F12F5"}.mdi-message-badge:before{content:"\F1941"}.mdi-message-badge-outline:before{content:"\F1942"}.mdi-message-bookmark:before{content:"\F15AC"}.mdi-message-bookmark-outline:before{content:"\F15AD"}.mdi-message-bulleted:before{content:"\F06A2"}.mdi-message-bulleted-off:before{content:"\F06A3"}.mdi-message-check:before{content:"\F1B8A"}.mdi-message-check-outline:before{content:"\F1B8B"}.mdi-message-cog:before{content:"\F06F1"}.mdi-message-cog-outline:before{content:"\F1172"}.mdi-message-draw:before{content:"\F0363"}.mdi-message-fast:before{content:"\F19CC"}.mdi-message-fast-outline:before{content:"\F19CD"}.mdi-message-flash:before{content:"\F15A9"}.mdi-message-flash-outline:before{content:"\F15AA"}.mdi-message-image:before{content:"\F0364"}.mdi-message-image-outline:before{content:"\F116C"}.mdi-message-lock:before{content:"\F0FCC"}.mdi-message-lock-outline:before{content:"\F116D"}.mdi-message-minus:before{content:"\F116E"}.mdi-message-minus-outline:before{content:"\F116F"}.mdi-message-off:before{content:"\F164D"}.mdi-message-off-outline:before{content:"\F164E"}.mdi-message-outline:before{content:"\F0365"}.mdi-message-plus:before{content:"\F0653"}.mdi-message-plus-outline:before{content:"\F10BB"}.mdi-message-processing:before{content:"\F0366"}.mdi-message-processing-outline:before{content:"\F1170"}.mdi-message-question:before{content:"\F173A"}.mdi-message-question-outline:before{content:"\F173B"}.mdi-message-reply:before{content:"\F0367"}.mdi-message-reply-outline:before{content:"\F173D"}.mdi-message-reply-text:before{content:"\F0368"}.mdi-message-reply-text-outline:before{content:"\F173E"}.mdi-message-settings:before{content:"\F06F0"}.mdi-message-settings-outline:before{content:"\F1171"}.mdi-message-star:before{content:"\F069A"}.mdi-message-star-outline:before{content:"\F1250"}.mdi-message-text:before{content:"\F0369"}.mdi-message-text-clock:before{content:"\F1173"}.mdi-message-text-clock-outline:before{content:"\F1174"}.mdi-message-text-fast:before{content:"\F19CE"}.mdi-message-text-fast-outline:before{content:"\F19CF"}.mdi-message-text-lock:before{content:"\F0FCD"}.mdi-message-text-lock-outline:before{content:"\F1175"}.mdi-message-text-outline:before{content:"\F036A"}.mdi-message-video:before{content:"\F036B"}.mdi-meteor:before{content:"\F0629"}.mdi-meter-electric:before{content:"\F1A57"}.mdi-meter-electric-outline:before{content:"\F1A58"}.mdi-meter-gas:before{content:"\F1A59"}.mdi-meter-gas-outline:before{content:"\F1A5A"}.mdi-metronome:before{content:"\F07DA"}.mdi-metronome-tick:before{content:"\F07DB"}.mdi-micro-sd:before{content:"\F07DC"}.mdi-microphone:before{content:"\F036C"}.mdi-microphone-message:before{content:"\F050A"}.mdi-microphone-message-off:before{content:"\F050B"}.mdi-microphone-minus:before{content:"\F08B3"}.mdi-microphone-off:before{content:"\F036D"}.mdi-microphone-outline:before{content:"\F036E"}.mdi-microphone-plus:before{content:"\F08B4"}.mdi-microphone-question:before{content:"\F1989"}.mdi-microphone-question-outline:before{content:"\F198A"}.mdi-microphone-settings:before{content:"\F036F"}.mdi-microphone-variant:before{content:"\F0370"}.mdi-microphone-variant-off:before{content:"\F0371"}.mdi-microscope:before{content:"\F0654"}.mdi-microsoft:before{content:"\F0372"}.mdi-microsoft-access:before{content:"\F138E"}.mdi-microsoft-azure:before{content:"\F0805"}.mdi-microsoft-azure-devops:before{content:"\F0FD5"}.mdi-microsoft-bing:before{content:"\F00A4"}.mdi-microsoft-dynamics-365:before{content:"\F0988"}.mdi-microsoft-edge:before{content:"\F01E9"}.mdi-microsoft-excel:before{content:"\F138F"}.mdi-microsoft-internet-explorer:before{content:"\F0300"}.mdi-microsoft-office:before{content:"\F03C6"}.mdi-microsoft-onedrive:before{content:"\F03CA"}.mdi-microsoft-onenote:before{content:"\F0747"}.mdi-microsoft-outlook:before{content:"\F0D22"}.mdi-microsoft-powerpoint:before{content:"\F1390"}.mdi-microsoft-sharepoint:before{content:"\F1391"}.mdi-microsoft-teams:before{content:"\F02BB"}.mdi-microsoft-visual-studio:before{content:"\F0610"}.mdi-microsoft-visual-studio-code:before{content:"\F0A1E"}.mdi-microsoft-windows:before{content:"\F05B3"}.mdi-microsoft-windows-classic:before{content:"\F0A21"}.mdi-microsoft-word:before{content:"\F1392"}.mdi-microsoft-xbox:before{content:"\F05B9"}.mdi-microsoft-xbox-controller:before{content:"\F05BA"}.mdi-microsoft-xbox-controller-battery-alert:before{content:"\F074B"}.mdi-microsoft-xbox-controller-battery-charging:before{content:"\F0A22"}.mdi-microsoft-xbox-controller-battery-empty:before{content:"\F074C"}.mdi-microsoft-xbox-controller-battery-full:before{content:"\F074D"}.mdi-microsoft-xbox-controller-battery-low:before{content:"\F074E"}.mdi-microsoft-xbox-controller-battery-medium:before{content:"\F074F"}.mdi-microsoft-xbox-controller-battery-unknown:before{content:"\F0750"}.mdi-microsoft-xbox-controller-menu:before{content:"\F0E6F"}.mdi-microsoft-xbox-controller-off:before{content:"\F05BB"}.mdi-microsoft-xbox-controller-view:before{content:"\F0E70"}.mdi-microwave:before{content:"\F0C99"}.mdi-microwave-off:before{content:"\F1423"}.mdi-middleware:before{content:"\F0F5D"}.mdi-middleware-outline:before{content:"\F0F5E"}.mdi-midi:before{content:"\F08F1"}.mdi-midi-port:before{content:"\F08F2"}.mdi-mine:before{content:"\F0DDA"}.mdi-minecraft:before{content:"\F0373"}.mdi-mini-sd:before{content:"\F0A05"}.mdi-minidisc:before{content:"\F0A06"}.mdi-minus:before{content:"\F0374"}.mdi-minus-box:before{content:"\F0375"}.mdi-minus-box-multiple:before{content:"\F1141"}.mdi-minus-box-multiple-outline:before{content:"\F1142"}.mdi-minus-box-outline:before{content:"\F06F2"}.mdi-minus-circle:before{content:"\F0376"}.mdi-minus-circle-multiple:before{content:"\F035A"}.mdi-minus-circle-multiple-outline:before{content:"\F0AD3"}.mdi-minus-circle-off:before{content:"\F1459"}.mdi-minus-circle-off-outline:before{content:"\F145A"}.mdi-minus-circle-outline:before{content:"\F0377"}.mdi-minus-network:before{content:"\F0378"}.mdi-minus-network-outline:before{content:"\F0C9A"}.mdi-minus-thick:before{content:"\F1639"}.mdi-mirror:before{content:"\F11FD"}.mdi-mirror-rectangle:before{content:"\F179F"}.mdi-mirror-variant:before{content:"\F17A0"}.mdi-mixed-martial-arts:before{content:"\F0D8F"}.mdi-mixed-reality:before{content:"\F087F"}.mdi-molecule:before{content:"\F0BAC"}.mdi-molecule-co:before{content:"\F12FE"}.mdi-molecule-co2:before{content:"\F07E4"}.mdi-monitor:before{content:"\F0379"}.mdi-monitor-account:before{content:"\F1A5B"}.mdi-monitor-arrow-down:before{content:"\F19D0"}.mdi-monitor-arrow-down-variant:before{content:"\F19D1"}.mdi-monitor-cellphone:before{content:"\F0989"}.mdi-monitor-cellphone-star:before{content:"\F098A"}.mdi-monitor-dashboard:before{content:"\F0A07"}.mdi-monitor-edit:before{content:"\F12C6"}.mdi-monitor-eye:before{content:"\F13B4"}.mdi-monitor-lock:before{content:"\F0DDB"}.mdi-monitor-multiple:before{content:"\F037A"}.mdi-monitor-off:before{content:"\F0D90"}.mdi-monitor-screenshot:before{content:"\F0E51"}.mdi-monitor-share:before{content:"\F1483"}.mdi-monitor-shimmer:before{content:"\F1104"}.mdi-monitor-small:before{content:"\F1876"}.mdi-monitor-speaker:before{content:"\F0F5F"}.mdi-monitor-speaker-off:before{content:"\F0F60"}.mdi-monitor-star:before{content:"\F0DDC"}.mdi-monitor-vertical:before{content:"\F1C33"}.mdi-moon-first-quarter:before{content:"\F0F61"}.mdi-moon-full:before{content:"\F0F62"}.mdi-moon-last-quarter:before{content:"\F0F63"}.mdi-moon-new:before{content:"\F0F64"}.mdi-moon-waning-crescent:before{content:"\F0F65"}.mdi-moon-waning-gibbous:before{content:"\F0F66"}.mdi-moon-waxing-crescent:before{content:"\F0F67"}.mdi-moon-waxing-gibbous:before{content:"\F0F68"}.mdi-moped:before{content:"\F1086"}.mdi-moped-electric:before{content:"\F15B7"}.mdi-moped-electric-outline:before{content:"\F15B8"}.mdi-moped-outline:before{content:"\F15B9"}.mdi-more:before{content:"\F037B"}.mdi-mortar-pestle:before{content:"\F1748"}.mdi-mortar-pestle-plus:before{content:"\F03F1"}.mdi-mosque:before{content:"\F0D45"}.mdi-mosque-outline:before{content:"\F1827"}.mdi-mother-heart:before{content:"\F1314"}.mdi-mother-nurse:before{content:"\F0D21"}.mdi-motion:before{content:"\F15B2"}.mdi-motion-outline:before{content:"\F15B3"}.mdi-motion-pause:before{content:"\F1590"}.mdi-motion-pause-outline:before{content:"\F1592"}.mdi-motion-play:before{content:"\F158F"}.mdi-motion-play-outline:before{content:"\F1591"}.mdi-motion-sensor:before{content:"\F0D91"}.mdi-motion-sensor-off:before{content:"\F1435"}.mdi-motorbike:before{content:"\F037C"}.mdi-motorbike-electric:before{content:"\F15BA"}.mdi-motorbike-off:before{content:"\F1B16"}.mdi-mouse:before{content:"\F037D"}.mdi-mouse-bluetooth:before{content:"\F098B"}.mdi-mouse-left-click:before{content:"\F1D07"}.mdi-mouse-left-click-outline:before{content:"\F1D08"}.mdi-mouse-move-down:before{content:"\F1550"}.mdi-mouse-move-up:before{content:"\F1551"}.mdi-mouse-move-vertical:before{content:"\F1552"}.mdi-mouse-off:before{content:"\F037E"}.mdi-mouse-outline:before{content:"\F1D09"}.mdi-mouse-right-click:before{content:"\F1D0A"}.mdi-mouse-right-click-outline:before{content:"\F1D0B"}.mdi-mouse-scroll-wheel:before{content:"\F1D0C"}.mdi-mouse-variant:before{content:"\F037F"}.mdi-mouse-variant-off:before{content:"\F0380"}.mdi-move-resize:before{content:"\F0655"}.mdi-move-resize-variant:before{content:"\F0656"}.mdi-movie:before{content:"\F0381"}.mdi-movie-check:before{content:"\F16F3"}.mdi-movie-check-outline:before{content:"\F16F4"}.mdi-movie-cog:before{content:"\F16F5"}.mdi-movie-cog-outline:before{content:"\F16F6"}.mdi-movie-edit:before{content:"\F1122"}.mdi-movie-edit-outline:before{content:"\F1123"}.mdi-movie-filter:before{content:"\F1124"}.mdi-movie-filter-outline:before{content:"\F1125"}.mdi-movie-minus:before{content:"\F16F7"}.mdi-movie-minus-outline:before{content:"\F16F8"}.mdi-movie-off:before{content:"\F16F9"}.mdi-movie-off-outline:before{content:"\F16FA"}.mdi-movie-open:before{content:"\F0FCE"}.mdi-movie-open-check:before{content:"\F16FB"}.mdi-movie-open-check-outline:before{content:"\F16FC"}.mdi-movie-open-cog:before{content:"\F16FD"}.mdi-movie-open-cog-outline:before{content:"\F16FE"}.mdi-movie-open-edit:before{content:"\F16FF"}.mdi-movie-open-edit-outline:before{content:"\F1700"}.mdi-movie-open-minus:before{content:"\F1701"}.mdi-movie-open-minus-outline:before{content:"\F1702"}.mdi-movie-open-off:before{content:"\F1703"}.mdi-movie-open-off-outline:before{content:"\F1704"}.mdi-movie-open-outline:before{content:"\F0FCF"}.mdi-movie-open-play:before{content:"\F1705"}.mdi-movie-open-play-outline:before{content:"\F1706"}.mdi-movie-open-plus:before{content:"\F1707"}.mdi-movie-open-plus-outline:before{content:"\F1708"}.mdi-movie-open-remove:before{content:"\F1709"}.mdi-movie-open-remove-outline:before{content:"\F170A"}.mdi-movie-open-settings:before{content:"\F170B"}.mdi-movie-open-settings-outline:before{content:"\F170C"}.mdi-movie-open-star:before{content:"\F170D"}.mdi-movie-open-star-outline:before{content:"\F170E"}.mdi-movie-outline:before{content:"\F0DDD"}.mdi-movie-play:before{content:"\F170F"}.mdi-movie-play-outline:before{content:"\F1710"}.mdi-movie-plus:before{content:"\F1711"}.mdi-movie-plus-outline:before{content:"\F1712"}.mdi-movie-remove:before{content:"\F1713"}.mdi-movie-remove-outline:before{content:"\F1714"}.mdi-movie-roll:before{content:"\F07DE"}.mdi-movie-search:before{content:"\F11D2"}.mdi-movie-search-outline:before{content:"\F11D3"}.mdi-movie-settings:before{content:"\F1715"}.mdi-movie-settings-outline:before{content:"\F1716"}.mdi-movie-star:before{content:"\F1717"}.mdi-movie-star-outline:before{content:"\F1718"}.mdi-mower:before{content:"\F166F"}.mdi-mower-bag:before{content:"\F1670"}.mdi-mower-bag-on:before{content:"\F1B60"}.mdi-mower-on:before{content:"\F1B5F"}.mdi-muffin:before{content:"\F098C"}.mdi-multicast:before{content:"\F1893"}.mdi-multimedia:before{content:"\F1B97"}.mdi-multiplication:before{content:"\F0382"}.mdi-multiplication-box:before{content:"\F0383"}.mdi-mushroom:before{content:"\F07DF"}.mdi-mushroom-off:before{content:"\F13FA"}.mdi-mushroom-off-outline:before{content:"\F13FB"}.mdi-mushroom-outline:before{content:"\F07E0"}.mdi-music:before{content:"\F075A"}.mdi-music-accidental-double-flat:before{content:"\F0F69"}.mdi-music-accidental-double-sharp:before{content:"\F0F6A"}.mdi-music-accidental-flat:before{content:"\F0F6B"}.mdi-music-accidental-natural:before{content:"\F0F6C"}.mdi-music-accidental-sharp:before{content:"\F0F6D"}.mdi-music-box:before{content:"\F0384"}.mdi-music-box-multiple:before{content:"\F0333"}.mdi-music-box-multiple-outline:before{content:"\F0F04"}.mdi-music-box-outline:before{content:"\F0385"}.mdi-music-circle:before{content:"\F0386"}.mdi-music-circle-outline:before{content:"\F0AD4"}.mdi-music-clef-alto:before{content:"\F0F6E"}.mdi-music-clef-bass:before{content:"\F0F6F"}.mdi-music-clef-treble:before{content:"\F0F70"}.mdi-music-note:before{content:"\F0387"}.mdi-music-note-bluetooth:before{content:"\F05FE"}.mdi-music-note-bluetooth-off:before{content:"\F05FF"}.mdi-music-note-eighth:before{content:"\F0388"}.mdi-music-note-eighth-dotted:before{content:"\F0F71"}.mdi-music-note-half:before{content:"\F0389"}.mdi-music-note-half-dotted:before{content:"\F0F72"}.mdi-music-note-minus:before{content:"\F1B89"}.mdi-music-note-off:before{content:"\F038A"}.mdi-music-note-off-outline:before{content:"\F0F73"}.mdi-music-note-outline:before{content:"\F0F74"}.mdi-music-note-plus:before{content:"\F0DDE"}.mdi-music-note-quarter:before{content:"\F038B"}.mdi-music-note-quarter-dotted:before{content:"\F0F75"}.mdi-music-note-sixteenth:before{content:"\F038C"}.mdi-music-note-sixteenth-dotted:before{content:"\F0F76"}.mdi-music-note-whole:before{content:"\F038D"}.mdi-music-note-whole-dotted:before{content:"\F0F77"}.mdi-music-off:before{content:"\F075B"}.mdi-music-rest-eighth:before{content:"\F0F78"}.mdi-music-rest-half:before{content:"\F0F79"}.mdi-music-rest-quarter:before{content:"\F0F7A"}.mdi-music-rest-sixteenth:before{content:"\F0F7B"}.mdi-music-rest-whole:before{content:"\F0F7C"}.mdi-mustache:before{content:"\F15DE"}.mdi-nail:before{content:"\F0DDF"}.mdi-nas:before{content:"\F08F3"}.mdi-nativescript:before{content:"\F0880"}.mdi-nature:before{content:"\F038E"}.mdi-nature-outline:before{content:"\F1C71"}.mdi-nature-people:before{content:"\F038F"}.mdi-nature-people-outline:before{content:"\F1C72"}.mdi-navigation:before{content:"\F0390"}.mdi-navigation-outline:before{content:"\F1607"}.mdi-navigation-variant:before{content:"\F18F0"}.mdi-navigation-variant-outline:before{content:"\F18F1"}.mdi-near-me:before{content:"\F05CD"}.mdi-necklace:before{content:"\F0F0B"}.mdi-needle:before{content:"\F0391"}.mdi-needle-off:before{content:"\F19D2"}.mdi-netflix:before{content:"\F0746"}.mdi-network:before{content:"\F06F3"}.mdi-network-off:before{content:"\F0C9B"}.mdi-network-off-outline:before{content:"\F0C9C"}.mdi-network-outline:before{content:"\F0C9D"}.mdi-network-pos:before{content:"\F1ACB"}.mdi-network-strength-1:before{content:"\F08F4"}.mdi-network-strength-1-alert:before{content:"\F08F5"}.mdi-network-strength-2:before{content:"\F08F6"}.mdi-network-strength-2-alert:before{content:"\F08F7"}.mdi-network-strength-3:before{content:"\F08F8"}.mdi-network-strength-3-alert:before{content:"\F08F9"}.mdi-network-strength-4:before{content:"\F08FA"}.mdi-network-strength-4-alert:before{content:"\F08FB"}.mdi-network-strength-4-cog:before{content:"\F191A"}.mdi-network-strength-off:before{content:"\F08FC"}.mdi-network-strength-off-outline:before{content:"\F08FD"}.mdi-network-strength-outline:before{content:"\F08FE"}.mdi-new-box:before{content:"\F0394"}.mdi-newspaper:before{content:"\F0395"}.mdi-newspaper-check:before{content:"\F1943"}.mdi-newspaper-minus:before{content:"\F0F0C"}.mdi-newspaper-plus:before{content:"\F0F0D"}.mdi-newspaper-remove:before{content:"\F1944"}.mdi-newspaper-variant:before{content:"\F1001"}.mdi-newspaper-variant-multiple:before{content:"\F1002"}.mdi-newspaper-variant-multiple-outline:before{content:"\F1003"}.mdi-newspaper-variant-outline:before{content:"\F1004"}.mdi-nfc:before{content:"\F0396"}.mdi-nfc-search-variant:before{content:"\F0E53"}.mdi-nfc-tap:before{content:"\F0397"}.mdi-nfc-variant:before{content:"\F0398"}.mdi-nfc-variant-off:before{content:"\F0E54"}.mdi-ninja:before{content:"\F0774"}.mdi-nintendo-game-boy:before{content:"\F1393"}.mdi-nintendo-switch:before{content:"\F07E1"}.mdi-nintendo-wii:before{content:"\F05AB"}.mdi-nintendo-wiiu:before{content:"\F072D"}.mdi-nix:before{content:"\F1105"}.mdi-nodejs:before{content:"\F0399"}.mdi-noodles:before{content:"\F117E"}.mdi-not-equal:before{content:"\F098D"}.mdi-not-equal-variant:before{content:"\F098E"}.mdi-note:before{content:"\F039A"}.mdi-note-alert:before{content:"\F177D"}.mdi-note-alert-outline:before{content:"\F177E"}.mdi-note-check:before{content:"\F177F"}.mdi-note-check-outline:before{content:"\F1780"}.mdi-note-edit:before{content:"\F1781"}.mdi-note-edit-outline:before{content:"\F1782"}.mdi-note-minus:before{content:"\F164F"}.mdi-note-minus-outline:before{content:"\F1650"}.mdi-note-multiple:before{content:"\F06B8"}.mdi-note-multiple-outline:before{content:"\F06B9"}.mdi-note-off:before{content:"\F1783"}.mdi-note-off-outline:before{content:"\F1784"}.mdi-note-outline:before{content:"\F039B"}.mdi-note-plus:before{content:"\F039C"}.mdi-note-plus-outline:before{content:"\F039D"}.mdi-note-remove:before{content:"\F1651"}.mdi-note-remove-outline:before{content:"\F1652"}.mdi-note-search:before{content:"\F1653"}.mdi-note-search-outline:before{content:"\F1654"}.mdi-note-text:before{content:"\F039E"}.mdi-note-text-outline:before{content:"\F11D7"}.mdi-notebook:before{content:"\F082E"}.mdi-notebook-check:before{content:"\F14F5"}.mdi-notebook-check-outline:before{content:"\F14F6"}.mdi-notebook-edit:before{content:"\F14E7"}.mdi-notebook-edit-outline:before{content:"\F14E9"}.mdi-notebook-heart:before{content:"\F1A0B"}.mdi-notebook-heart-outline:before{content:"\F1A0C"}.mdi-notebook-minus:before{content:"\F1610"}.mdi-notebook-minus-outline:before{content:"\F1611"}.mdi-notebook-multiple:before{content:"\F0E55"}.mdi-notebook-outline:before{content:"\F0EBF"}.mdi-notebook-plus:before{content:"\F1612"}.mdi-notebook-plus-outline:before{content:"\F1613"}.mdi-notebook-remove:before{content:"\F1614"}.mdi-notebook-remove-outline:before{content:"\F1615"}.mdi-notification-clear-all:before{content:"\F039F"}.mdi-npm:before{content:"\F06F7"}.mdi-nuke:before{content:"\F06A4"}.mdi-null:before{content:"\F07E2"}.mdi-numeric:before{content:"\F03A0"}.mdi-numeric-0:before{content:"\F0B39"}.mdi-numeric-0-box:before{content:"\F03A1"}.mdi-numeric-0-box-multiple:before{content:"\F0F0E"}.mdi-numeric-0-box-multiple-outline:before{content:"\F03A2"}.mdi-numeric-0-box-outline:before{content:"\F03A3"}.mdi-numeric-0-circle:before{content:"\F0C9E"}.mdi-numeric-0-circle-outline:before{content:"\F0C9F"}.mdi-numeric-1:before{content:"\F0B3A"}.mdi-numeric-1-box:before{content:"\F03A4"}.mdi-numeric-1-box-multiple:before{content:"\F0F0F"}.mdi-numeric-1-box-multiple-outline:before{content:"\F03A5"}.mdi-numeric-1-box-outline:before{content:"\F03A6"}.mdi-numeric-1-circle:before{content:"\F0CA0"}.mdi-numeric-1-circle-outline:before{content:"\F0CA1"}.mdi-numeric-10:before{content:"\F0FE9"}.mdi-numeric-10-box:before{content:"\F0F7D"}.mdi-numeric-10-box-multiple:before{content:"\F0FEA"}.mdi-numeric-10-box-multiple-outline:before{content:"\F0FEB"}.mdi-numeric-10-box-outline:before{content:"\F0F7E"}.mdi-numeric-10-circle:before{content:"\F0FEC"}.mdi-numeric-10-circle-outline:before{content:"\F0FED"}.mdi-numeric-2:before{content:"\F0B3B"}.mdi-numeric-2-box:before{content:"\F03A7"}.mdi-numeric-2-box-multiple:before{content:"\F0F10"}.mdi-numeric-2-box-multiple-outline:before{content:"\F03A8"}.mdi-numeric-2-box-outline:before{content:"\F03A9"}.mdi-numeric-2-circle:before{content:"\F0CA2"}.mdi-numeric-2-circle-outline:before{content:"\F0CA3"}.mdi-numeric-3:before{content:"\F0B3C"}.mdi-numeric-3-box:before{content:"\F03AA"}.mdi-numeric-3-box-multiple:before{content:"\F0F11"}.mdi-numeric-3-box-multiple-outline:before{content:"\F03AB"}.mdi-numeric-3-box-outline:before{content:"\F03AC"}.mdi-numeric-3-circle:before{content:"\F0CA4"}.mdi-numeric-3-circle-outline:before{content:"\F0CA5"}.mdi-numeric-4:before{content:"\F0B3D"}.mdi-numeric-4-box:before{content:"\F03AD"}.mdi-numeric-4-box-multiple:before{content:"\F0F12"}.mdi-numeric-4-box-multiple-outline:before{content:"\F03B2"}.mdi-numeric-4-box-outline:before{content:"\F03AE"}.mdi-numeric-4-circle:before{content:"\F0CA6"}.mdi-numeric-4-circle-outline:before{content:"\F0CA7"}.mdi-numeric-5:before{content:"\F0B3E"}.mdi-numeric-5-box:before{content:"\F03B1"}.mdi-numeric-5-box-multiple:before{content:"\F0F13"}.mdi-numeric-5-box-multiple-outline:before{content:"\F03AF"}.mdi-numeric-5-box-outline:before{content:"\F03B0"}.mdi-numeric-5-circle:before{content:"\F0CA8"}.mdi-numeric-5-circle-outline:before{content:"\F0CA9"}.mdi-numeric-6:before{content:"\F0B3F"}.mdi-numeric-6-box:before{content:"\F03B3"}.mdi-numeric-6-box-multiple:before{content:"\F0F14"}.mdi-numeric-6-box-multiple-outline:before{content:"\F03B4"}.mdi-numeric-6-box-outline:before{content:"\F03B5"}.mdi-numeric-6-circle:before{content:"\F0CAA"}.mdi-numeric-6-circle-outline:before{content:"\F0CAB"}.mdi-numeric-7:before{content:"\F0B40"}.mdi-numeric-7-box:before{content:"\F03B6"}.mdi-numeric-7-box-multiple:before{content:"\F0F15"}.mdi-numeric-7-box-multiple-outline:before{content:"\F03B7"}.mdi-numeric-7-box-outline:before{content:"\F03B8"}.mdi-numeric-7-circle:before{content:"\F0CAC"}.mdi-numeric-7-circle-outline:before{content:"\F0CAD"}.mdi-numeric-8:before{content:"\F0B41"}.mdi-numeric-8-box:before{content:"\F03B9"}.mdi-numeric-8-box-multiple:before{content:"\F0F16"}.mdi-numeric-8-box-multiple-outline:before{content:"\F03BA"}.mdi-numeric-8-box-outline:before{content:"\F03BB"}.mdi-numeric-8-circle:before{content:"\F0CAE"}.mdi-numeric-8-circle-outline:before{content:"\F0CAF"}.mdi-numeric-9:before{content:"\F0B42"}.mdi-numeric-9-box:before{content:"\F03BC"}.mdi-numeric-9-box-multiple:before{content:"\F0F17"}.mdi-numeric-9-box-multiple-outline:before{content:"\F03BD"}.mdi-numeric-9-box-outline:before{content:"\F03BE"}.mdi-numeric-9-circle:before{content:"\F0CB0"}.mdi-numeric-9-circle-outline:before{content:"\F0CB1"}.mdi-numeric-9-plus:before{content:"\F0FEE"}.mdi-numeric-9-plus-box:before{content:"\F03BF"}.mdi-numeric-9-plus-box-multiple:before{content:"\F0F18"}.mdi-numeric-9-plus-box-multiple-outline:before{content:"\F03C0"}.mdi-numeric-9-plus-box-outline:before{content:"\F03C1"}.mdi-numeric-9-plus-circle:before{content:"\F0CB2"}.mdi-numeric-9-plus-circle-outline:before{content:"\F0CB3"}.mdi-numeric-negative-1:before{content:"\F1052"}.mdi-numeric-off:before{content:"\F19D3"}.mdi-numeric-positive-1:before{content:"\F15CB"}.mdi-nut:before{content:"\F06F8"}.mdi-nutrition:before{content:"\F03C2"}.mdi-nuxt:before{content:"\F1106"}.mdi-oar:before{content:"\F067C"}.mdi-ocarina:before{content:"\F0DE0"}.mdi-oci:before{content:"\F12E9"}.mdi-ocr:before{content:"\F113A"}.mdi-octagon:before{content:"\F03C3"}.mdi-octagon-outline:before{content:"\F03C4"}.mdi-octagram:before{content:"\F06F9"}.mdi-octagram-edit:before{content:"\F1C34"}.mdi-octagram-edit-outline:before{content:"\F1C35"}.mdi-octagram-minus:before{content:"\F1C36"}.mdi-octagram-minus-outline:before{content:"\F1C37"}.mdi-octagram-outline:before{content:"\F0775"}.mdi-octagram-plus:before{content:"\F1C38"}.mdi-octagram-plus-outline:before{content:"\F1C39"}.mdi-octahedron:before{content:"\F1950"}.mdi-octahedron-off:before{content:"\F1951"}.mdi-odnoklassniki:before{content:"\F03C5"}.mdi-offer:before{content:"\F121B"}.mdi-office-building:before{content:"\F0991"}.mdi-office-building-cog:before{content:"\F1949"}.mdi-office-building-cog-outline:before{content:"\F194A"}.mdi-office-building-marker:before{content:"\F1520"}.mdi-office-building-marker-outline:before{content:"\F1521"}.mdi-office-building-minus:before{content:"\F1BAA"}.mdi-office-building-minus-outline:before{content:"\F1BAB"}.mdi-office-building-outline:before{content:"\F151F"}.mdi-office-building-plus:before{content:"\F1BA8"}.mdi-office-building-plus-outline:before{content:"\F1BA9"}.mdi-office-building-remove:before{content:"\F1BAC"}.mdi-office-building-remove-outline:before{content:"\F1BAD"}.mdi-oil:before{content:"\F03C7"}.mdi-oil-lamp:before{content:"\F0F19"}.mdi-oil-level:before{content:"\F1053"}.mdi-oil-temperature:before{content:"\F0FF8"}.mdi-om:before{content:"\F0973"}.mdi-omega:before{content:"\F03C9"}.mdi-one-up:before{content:"\F0BAD"}.mdi-onepassword:before{content:"\F0881"}.mdi-opacity:before{content:"\F05CC"}.mdi-open-in-app:before{content:"\F03CB"}.mdi-open-in-new:before{content:"\F03CC"}.mdi-open-source-initiative:before{content:"\F0BAE"}.mdi-openid:before{content:"\F03CD"}.mdi-opera:before{content:"\F03CE"}.mdi-orbit:before{content:"\F0018"}.mdi-orbit-variant:before{content:"\F15DB"}.mdi-order-alphabetical-ascending:before{content:"\F020D"}.mdi-order-alphabetical-descending:before{content:"\F0D07"}.mdi-order-bool-ascending:before{content:"\F02BE"}.mdi-order-bool-ascending-variant:before{content:"\F098F"}.mdi-order-bool-descending:before{content:"\F1384"}.mdi-order-bool-descending-variant:before{content:"\F0990"}.mdi-order-numeric-ascending:before{content:"\F0545"}.mdi-order-numeric-descending:before{content:"\F0546"}.mdi-origin:before{content:"\F0B43"}.mdi-ornament:before{content:"\F03CF"}.mdi-ornament-variant:before{content:"\F03D0"}.mdi-outdoor-lamp:before{content:"\F1054"}.mdi-overscan:before{content:"\F1005"}.mdi-owl:before{content:"\F03D2"}.mdi-pac-man:before{content:"\F0BAF"}.mdi-package:before{content:"\F03D3"}.mdi-package-check:before{content:"\F1B51"}.mdi-package-down:before{content:"\F03D4"}.mdi-package-up:before{content:"\F03D5"}.mdi-package-variant:before{content:"\F03D6"}.mdi-package-variant-closed:before{content:"\F03D7"}.mdi-package-variant-closed-check:before{content:"\F1B52"}.mdi-package-variant-closed-minus:before{content:"\F19D4"}.mdi-package-variant-closed-plus:before{content:"\F19D5"}.mdi-package-variant-closed-remove:before{content:"\F19D6"}.mdi-package-variant-minus:before{content:"\F19D7"}.mdi-package-variant-plus:before{content:"\F19D8"}.mdi-package-variant-remove:before{content:"\F19D9"}.mdi-page-first:before{content:"\F0600"}.mdi-page-last:before{content:"\F0601"}.mdi-page-layout-body:before{content:"\F06FA"}.mdi-page-layout-footer:before{content:"\F06FB"}.mdi-page-layout-header:before{content:"\F06FC"}.mdi-page-layout-header-footer:before{content:"\F0F7F"}.mdi-page-layout-sidebar-left:before{content:"\F06FD"}.mdi-page-layout-sidebar-right:before{content:"\F06FE"}.mdi-page-next:before{content:"\F0BB0"}.mdi-page-next-outline:before{content:"\F0BB1"}.mdi-page-previous:before{content:"\F0BB2"}.mdi-page-previous-outline:before{content:"\F0BB3"}.mdi-pail:before{content:"\F1417"}.mdi-pail-minus:before{content:"\F1437"}.mdi-pail-minus-outline:before{content:"\F143C"}.mdi-pail-off:before{content:"\F1439"}.mdi-pail-off-outline:before{content:"\F143E"}.mdi-pail-outline:before{content:"\F143A"}.mdi-pail-plus:before{content:"\F1436"}.mdi-pail-plus-outline:before{content:"\F143B"}.mdi-pail-remove:before{content:"\F1438"}.mdi-pail-remove-outline:before{content:"\F143D"}.mdi-palette:before{content:"\F03D8"}.mdi-palette-advanced:before{content:"\F03D9"}.mdi-palette-outline:before{content:"\F0E0C"}.mdi-palette-swatch:before{content:"\F08B5"}.mdi-palette-swatch-outline:before{content:"\F135C"}.mdi-palette-swatch-variant:before{content:"\F195A"}.mdi-palm-tree:before{content:"\F1055"}.mdi-pan:before{content:"\F0BB4"}.mdi-pan-bottom-left:before{content:"\F0BB5"}.mdi-pan-bottom-right:before{content:"\F0BB6"}.mdi-pan-down:before{content:"\F0BB7"}.mdi-pan-horizontal:before{content:"\F0BB8"}.mdi-pan-left:before{content:"\F0BB9"}.mdi-pan-right:before{content:"\F0BBA"}.mdi-pan-top-left:before{content:"\F0BBB"}.mdi-pan-top-right:before{content:"\F0BBC"}.mdi-pan-up:before{content:"\F0BBD"}.mdi-pan-vertical:before{content:"\F0BBE"}.mdi-panda:before{content:"\F03DA"}.mdi-pandora:before{content:"\F03DB"}.mdi-panorama:before{content:"\F03DC"}.mdi-panorama-fisheye:before{content:"\F03DD"}.mdi-panorama-horizontal:before{content:"\F1928"}.mdi-panorama-horizontal-outline:before{content:"\F03DE"}.mdi-panorama-outline:before{content:"\F198C"}.mdi-panorama-sphere:before{content:"\F198D"}.mdi-panorama-sphere-outline:before{content:"\F198E"}.mdi-panorama-variant:before{content:"\F198F"}.mdi-panorama-variant-outline:before{content:"\F1990"}.mdi-panorama-vertical:before{content:"\F1929"}.mdi-panorama-vertical-outline:before{content:"\F03DF"}.mdi-panorama-wide-angle:before{content:"\F195F"}.mdi-panorama-wide-angle-outline:before{content:"\F03E0"}.mdi-paper-cut-vertical:before{content:"\F03E1"}.mdi-paper-roll:before{content:"\F1157"}.mdi-paper-roll-outline:before{content:"\F1158"}.mdi-paperclip:before{content:"\F03E2"}.mdi-paperclip-check:before{content:"\F1AC6"}.mdi-paperclip-lock:before{content:"\F19DA"}.mdi-paperclip-minus:before{content:"\F1AC7"}.mdi-paperclip-off:before{content:"\F1AC8"}.mdi-paperclip-plus:before{content:"\F1AC9"}.mdi-paperclip-remove:before{content:"\F1ACA"}.mdi-parachute:before{content:"\F0CB4"}.mdi-parachute-outline:before{content:"\F0CB5"}.mdi-paragliding:before{content:"\F1745"}.mdi-parking:before{content:"\F03E3"}.mdi-party-popper:before{content:"\F1056"}.mdi-passport:before{content:"\F07E3"}.mdi-passport-alert:before{content:"\F1CB8"}.mdi-passport-biometric:before{content:"\F0DE1"}.mdi-passport-cancel:before{content:"\F1CB9"}.mdi-passport-check:before{content:"\F1CBA"}.mdi-passport-minus:before{content:"\F1CBB"}.mdi-passport-plus:before{content:"\F1CBC"}.mdi-passport-remove:before{content:"\F1CBD"}.mdi-pasta:before{content:"\F1160"}.mdi-patio-heater:before{content:"\F0F80"}.mdi-patreon:before{content:"\F0882"}.mdi-pause:before{content:"\F03E4"}.mdi-pause-box:before{content:"\F00BC"}.mdi-pause-box-outline:before{content:"\F1B7A"}.mdi-pause-circle:before{content:"\F03E5"}.mdi-pause-circle-outline:before{content:"\F03E6"}.mdi-pause-octagon:before{content:"\F03E7"}.mdi-pause-octagon-outline:before{content:"\F03E8"}.mdi-paw:before{content:"\F03E9"}.mdi-paw-off:before{content:"\F0657"}.mdi-paw-off-outline:before{content:"\F1676"}.mdi-paw-outline:before{content:"\F1675"}.mdi-peace:before{content:"\F0884"}.mdi-peanut:before{content:"\F0FFC"}.mdi-peanut-off:before{content:"\F0FFD"}.mdi-peanut-off-outline:before{content:"\F0FFF"}.mdi-peanut-outline:before{content:"\F0FFE"}.mdi-pen:before{content:"\F03EA"}.mdi-pen-lock:before{content:"\F0DE2"}.mdi-pen-minus:before{content:"\F0DE3"}.mdi-pen-off:before{content:"\F0DE4"}.mdi-pen-plus:before{content:"\F0DE5"}.mdi-pen-remove:before{content:"\F0DE6"}.mdi-pencil:before{content:"\F03EB"}.mdi-pencil-box:before{content:"\F03EC"}.mdi-pencil-box-multiple:before{content:"\F1144"}.mdi-pencil-box-multiple-outline:before{content:"\F1145"}.mdi-pencil-box-outline:before{content:"\F03ED"}.mdi-pencil-circle:before{content:"\F06FF"}.mdi-pencil-circle-outline:before{content:"\F0776"}.mdi-pencil-lock:before{content:"\F03EE"}.mdi-pencil-lock-outline:before{content:"\F0DE7"}.mdi-pencil-minus:before{content:"\F0DE8"}.mdi-pencil-minus-outline:before{content:"\F0DE9"}.mdi-pencil-off:before{content:"\F03EF"}.mdi-pencil-off-outline:before{content:"\F0DEA"}.mdi-pencil-outline:before{content:"\F0CB6"}.mdi-pencil-plus:before{content:"\F0DEB"}.mdi-pencil-plus-outline:before{content:"\F0DEC"}.mdi-pencil-remove:before{content:"\F0DED"}.mdi-pencil-remove-outline:before{content:"\F0DEE"}.mdi-pencil-ruler:before{content:"\F1353"}.mdi-pencil-ruler-outline:before{content:"\F1C11"}.mdi-penguin:before{content:"\F0EC0"}.mdi-pentagon:before{content:"\F0701"}.mdi-pentagon-outline:before{content:"\F0700"}.mdi-pentagram:before{content:"\F1667"}.mdi-percent:before{content:"\F03F0"}.mdi-percent-box:before{content:"\F1A02"}.mdi-percent-box-outline:before{content:"\F1A03"}.mdi-percent-circle:before{content:"\F1A04"}.mdi-percent-circle-outline:before{content:"\F1A05"}.mdi-percent-outline:before{content:"\F1278"}.mdi-periodic-table:before{content:"\F08B6"}.mdi-perspective-less:before{content:"\F0D23"}.mdi-perspective-more:before{content:"\F0D24"}.mdi-ph:before{content:"\F17C5"}.mdi-phone:before{content:"\F03F2"}.mdi-phone-alert:before{content:"\F0F1A"}.mdi-phone-alert-outline:before{content:"\F118E"}.mdi-phone-bluetooth:before{content:"\F03F3"}.mdi-phone-bluetooth-outline:before{content:"\F118F"}.mdi-phone-cancel:before{content:"\F10BC"}.mdi-phone-cancel-outline:before{content:"\F1190"}.mdi-phone-check:before{content:"\F11A9"}.mdi-phone-check-outline:before{content:"\F11AA"}.mdi-phone-classic:before{content:"\F0602"}.mdi-phone-classic-off:before{content:"\F1279"}.mdi-phone-clock:before{content:"\F19DB"}.mdi-phone-dial:before{content:"\F1559"}.mdi-phone-dial-outline:before{content:"\F155A"}.mdi-phone-forward:before{content:"\F03F4"}.mdi-phone-forward-outline:before{content:"\F1191"}.mdi-phone-hangup:before{content:"\F03F5"}.mdi-phone-hangup-outline:before{content:"\F1192"}.mdi-phone-in-talk:before{content:"\F03F6"}.mdi-phone-in-talk-outline:before{content:"\F1182"}.mdi-phone-incoming:before{content:"\F03F7"}.mdi-phone-incoming-outgoing:before{content:"\F1B3F"}.mdi-phone-incoming-outgoing-outline:before{content:"\F1B40"}.mdi-phone-incoming-outline:before{content:"\F1193"}.mdi-phone-lock:before{content:"\F03F8"}.mdi-phone-lock-outline:before{content:"\F1194"}.mdi-phone-log:before{content:"\F03F9"}.mdi-phone-log-outline:before{content:"\F1195"}.mdi-phone-message:before{content:"\F1196"}.mdi-phone-message-outline:before{content:"\F1197"}.mdi-phone-minus:before{content:"\F0658"}.mdi-phone-minus-outline:before{content:"\F1198"}.mdi-phone-missed:before{content:"\F03FA"}.mdi-phone-missed-outline:before{content:"\F11A5"}.mdi-phone-off:before{content:"\F0DEF"}.mdi-phone-off-outline:before{content:"\F11A6"}.mdi-phone-outgoing:before{content:"\F03FB"}.mdi-phone-outgoing-outline:before{content:"\F1199"}.mdi-phone-outline:before{content:"\F0DF0"}.mdi-phone-paused:before{content:"\F03FC"}.mdi-phone-paused-outline:before{content:"\F119A"}.mdi-phone-plus:before{content:"\F0659"}.mdi-phone-plus-outline:before{content:"\F119B"}.mdi-phone-refresh:before{content:"\F1993"}.mdi-phone-refresh-outline:before{content:"\F1994"}.mdi-phone-remove:before{content:"\F152F"}.mdi-phone-remove-outline:before{content:"\F1530"}.mdi-phone-return:before{content:"\F082F"}.mdi-phone-return-outline:before{content:"\F119C"}.mdi-phone-ring:before{content:"\F11AB"}.mdi-phone-ring-outline:before{content:"\F11AC"}.mdi-phone-rotate-landscape:before{content:"\F0885"}.mdi-phone-rotate-portrait:before{content:"\F0886"}.mdi-phone-settings:before{content:"\F03FD"}.mdi-phone-settings-outline:before{content:"\F119D"}.mdi-phone-sync:before{content:"\F1995"}.mdi-phone-sync-outline:before{content:"\F1996"}.mdi-phone-voip:before{content:"\F03FE"}.mdi-pi:before{content:"\F03FF"}.mdi-pi-box:before{content:"\F0400"}.mdi-pi-hole:before{content:"\F0DF1"}.mdi-piano:before{content:"\F067D"}.mdi-piano-off:before{content:"\F0698"}.mdi-pickaxe:before{content:"\F08B7"}.mdi-picture-in-picture-bottom-right:before{content:"\F0E57"}.mdi-picture-in-picture-bottom-right-outline:before{content:"\F0E58"}.mdi-picture-in-picture-top-right:before{content:"\F0E59"}.mdi-picture-in-picture-top-right-outline:before{content:"\F0E5A"}.mdi-pier:before{content:"\F0887"}.mdi-pier-crane:before{content:"\F0888"}.mdi-pig:before{content:"\F0401"}.mdi-pig-variant:before{content:"\F1006"}.mdi-pig-variant-outline:before{content:"\F1678"}.mdi-piggy-bank:before{content:"\F1007"}.mdi-piggy-bank-outline:before{content:"\F1679"}.mdi-pill:before{content:"\F0402"}.mdi-pill-multiple:before{content:"\F1B4C"}.mdi-pill-off:before{content:"\F1A5C"}.mdi-pillar:before{content:"\F0702"}.mdi-pin:before{content:"\F0403"}.mdi-pin-off:before{content:"\F0404"}.mdi-pin-off-outline:before{content:"\F0930"}.mdi-pin-outline:before{content:"\F0931"}.mdi-pine-tree:before{content:"\F0405"}.mdi-pine-tree-box:before{content:"\F0406"}.mdi-pine-tree-fire:before{content:"\F141A"}.mdi-pine-tree-variant:before{content:"\F1C73"}.mdi-pine-tree-variant-outline:before{content:"\F1C74"}.mdi-pinterest:before{content:"\F0407"}.mdi-pinwheel:before{content:"\F0AD5"}.mdi-pinwheel-outline:before{content:"\F0AD6"}.mdi-pipe:before{content:"\F07E5"}.mdi-pipe-disconnected:before{content:"\F07E6"}.mdi-pipe-leak:before{content:"\F0889"}.mdi-pipe-valve:before{content:"\F184D"}.mdi-pipe-wrench:before{content:"\F1354"}.mdi-pirate:before{content:"\F0A08"}.mdi-pistol:before{content:"\F0703"}.mdi-piston:before{content:"\F088A"}.mdi-pitchfork:before{content:"\F1553"}.mdi-pizza:before{content:"\F0409"}.mdi-plane-car:before{content:"\F1AFF"}.mdi-plane-train:before{content:"\F1B00"}.mdi-play:before{content:"\F040A"}.mdi-play-box:before{content:"\F127A"}.mdi-play-box-edit-outline:before{content:"\F1C3A"}.mdi-play-box-lock:before{content:"\F1A16"}.mdi-play-box-lock-open:before{content:"\F1A17"}.mdi-play-box-lock-open-outline:before{content:"\F1A18"}.mdi-play-box-lock-outline:before{content:"\F1A19"}.mdi-play-box-multiple:before{content:"\F0D19"}.mdi-play-box-multiple-outline:before{content:"\F13E6"}.mdi-play-box-outline:before{content:"\F040B"}.mdi-play-circle:before{content:"\F040C"}.mdi-play-circle-outline:before{content:"\F040D"}.mdi-play-network:before{content:"\F088B"}.mdi-play-network-outline:before{content:"\F0CB7"}.mdi-play-outline:before{content:"\F0F1B"}.mdi-play-pause:before{content:"\F040E"}.mdi-play-protected-content:before{content:"\F040F"}.mdi-play-speed:before{content:"\F08FF"}.mdi-playlist-check:before{content:"\F05C7"}.mdi-playlist-edit:before{content:"\F0900"}.mdi-playlist-minus:before{content:"\F0410"}.mdi-playlist-music:before{content:"\F0CB8"}.mdi-playlist-music-outline:before{content:"\F0CB9"}.mdi-playlist-play:before{content:"\F0411"}.mdi-playlist-plus:before{content:"\F0412"}.mdi-playlist-remove:before{content:"\F0413"}.mdi-playlist-star:before{content:"\F0DF2"}.mdi-plex:before{content:"\F06BA"}.mdi-pliers:before{content:"\F19A4"}.mdi-plus:before{content:"\F0415"}.mdi-plus-box:before{content:"\F0416"}.mdi-plus-box-multiple:before{content:"\F0334"}.mdi-plus-box-multiple-outline:before{content:"\F1143"}.mdi-plus-box-outline:before{content:"\F0704"}.mdi-plus-circle:before{content:"\F0417"}.mdi-plus-circle-multiple:before{content:"\F034C"}.mdi-plus-circle-multiple-outline:before{content:"\F0418"}.mdi-plus-circle-outline:before{content:"\F0419"}.mdi-plus-lock:before{content:"\F1A5D"}.mdi-plus-lock-open:before{content:"\F1A5E"}.mdi-plus-minus:before{content:"\F0992"}.mdi-plus-minus-box:before{content:"\F0993"}.mdi-plus-minus-variant:before{content:"\F14C9"}.mdi-plus-network:before{content:"\F041A"}.mdi-plus-network-outline:before{content:"\F0CBA"}.mdi-plus-outline:before{content:"\F0705"}.mdi-plus-thick:before{content:"\F11EC"}.mdi-pocket:before{content:"\F1CBE"}.mdi-podcast:before{content:"\F0994"}.mdi-podium:before{content:"\F0D25"}.mdi-podium-bronze:before{content:"\F0D26"}.mdi-podium-gold:before{content:"\F0D27"}.mdi-podium-silver:before{content:"\F0D28"}.mdi-point-of-sale:before{content:"\F0D92"}.mdi-pokeball:before{content:"\F041D"}.mdi-pokemon-go:before{content:"\F0A09"}.mdi-poker-chip:before{content:"\F0830"}.mdi-polaroid:before{content:"\F041E"}.mdi-police-badge:before{content:"\F1167"}.mdi-police-badge-outline:before{content:"\F1168"}.mdi-police-station:before{content:"\F1839"}.mdi-poll:before{content:"\F041F"}.mdi-polo:before{content:"\F14C3"}.mdi-polymer:before{content:"\F0421"}.mdi-pool:before{content:"\F0606"}.mdi-pool-thermometer:before{content:"\F1A5F"}.mdi-popcorn:before{content:"\F0422"}.mdi-post:before{content:"\F1008"}.mdi-post-lamp:before{content:"\F1A60"}.mdi-post-outline:before{content:"\F1009"}.mdi-postage-stamp:before{content:"\F0CBB"}.mdi-pot:before{content:"\F02E5"}.mdi-pot-mix:before{content:"\F065B"}.mdi-pot-mix-outline:before{content:"\F0677"}.mdi-pot-outline:before{content:"\F02FF"}.mdi-pot-steam:before{content:"\F065A"}.mdi-pot-steam-outline:before{content:"\F0326"}.mdi-pound:before{content:"\F0423"}.mdi-pound-box:before{content:"\F0424"}.mdi-pound-box-outline:before{content:"\F117F"}.mdi-power:before{content:"\F0425"}.mdi-power-cycle:before{content:"\F0901"}.mdi-power-off:before{content:"\F0902"}.mdi-power-on:before{content:"\F0903"}.mdi-power-plug:before{content:"\F06A5"}.mdi-power-plug-battery:before{content:"\F1C3B"}.mdi-power-plug-battery-outline:before{content:"\F1C3C"}.mdi-power-plug-off:before{content:"\F06A6"}.mdi-power-plug-off-outline:before{content:"\F1424"}.mdi-power-plug-outline:before{content:"\F1425"}.mdi-power-settings:before{content:"\F0426"}.mdi-power-sleep:before{content:"\F0904"}.mdi-power-socket:before{content:"\F0427"}.mdi-power-socket-au:before{content:"\F0905"}.mdi-power-socket-ch:before{content:"\F0FB3"}.mdi-power-socket-de:before{content:"\F1107"}.mdi-power-socket-eu:before{content:"\F07E7"}.mdi-power-socket-fr:before{content:"\F1108"}.mdi-power-socket-it:before{content:"\F14FF"}.mdi-power-socket-jp:before{content:"\F1109"}.mdi-power-socket-uk:before{content:"\F07E8"}.mdi-power-socket-us:before{content:"\F07E9"}.mdi-power-standby:before{content:"\F0906"}.mdi-powershell:before{content:"\F0A0A"}.mdi-prescription:before{content:"\F0706"}.mdi-presentation:before{content:"\F0428"}.mdi-presentation-play:before{content:"\F0429"}.mdi-pretzel:before{content:"\F1562"}.mdi-printer:before{content:"\F042A"}.mdi-printer-3d:before{content:"\F042B"}.mdi-printer-3d-nozzle:before{content:"\F0E5B"}.mdi-printer-3d-nozzle-alert:before{content:"\F11C0"}.mdi-printer-3d-nozzle-alert-outline:before{content:"\F11C1"}.mdi-printer-3d-nozzle-heat:before{content:"\F18B8"}.mdi-printer-3d-nozzle-heat-outline:before{content:"\F18B9"}.mdi-printer-3d-nozzle-off:before{content:"\F1B19"}.mdi-printer-3d-nozzle-off-outline:before{content:"\F1B1A"}.mdi-printer-3d-nozzle-outline:before{content:"\F0E5C"}.mdi-printer-3d-off:before{content:"\F1B0E"}.mdi-printer-alert:before{content:"\F042C"}.mdi-printer-check:before{content:"\F1146"}.mdi-printer-eye:before{content:"\F1458"}.mdi-printer-off:before{content:"\F0E5D"}.mdi-printer-off-outline:before{content:"\F1785"}.mdi-printer-outline:before{content:"\F1786"}.mdi-printer-pos:before{content:"\F1057"}.mdi-printer-pos-alert:before{content:"\F1BBC"}.mdi-printer-pos-alert-outline:before{content:"\F1BBD"}.mdi-printer-pos-cancel:before{content:"\F1BBE"}.mdi-printer-pos-cancel-outline:before{content:"\F1BBF"}.mdi-printer-pos-check:before{content:"\F1BC0"}.mdi-printer-pos-check-outline:before{content:"\F1BC1"}.mdi-printer-pos-cog:before{content:"\F1BC2"}.mdi-printer-pos-cog-outline:before{content:"\F1BC3"}.mdi-printer-pos-edit:before{content:"\F1BC4"}.mdi-printer-pos-edit-outline:before{content:"\F1BC5"}.mdi-printer-pos-minus:before{content:"\F1BC6"}.mdi-printer-pos-minus-outline:before{content:"\F1BC7"}.mdi-printer-pos-network:before{content:"\F1BC8"}.mdi-printer-pos-network-outline:before{content:"\F1BC9"}.mdi-printer-pos-off:before{content:"\F1BCA"}.mdi-printer-pos-off-outline:before{content:"\F1BCB"}.mdi-printer-pos-outline:before{content:"\F1BCC"}.mdi-printer-pos-pause:before{content:"\F1BCD"}.mdi-printer-pos-pause-outline:before{content:"\F1BCE"}.mdi-printer-pos-play:before{content:"\F1BCF"}.mdi-printer-pos-play-outline:before{content:"\F1BD0"}.mdi-printer-pos-plus:before{content:"\F1BD1"}.mdi-printer-pos-plus-outline:before{content:"\F1BD2"}.mdi-printer-pos-refresh:before{content:"\F1BD3"}.mdi-printer-pos-refresh-outline:before{content:"\F1BD4"}.mdi-printer-pos-remove:before{content:"\F1BD5"}.mdi-printer-pos-remove-outline:before{content:"\F1BD6"}.mdi-printer-pos-star:before{content:"\F1BD7"}.mdi-printer-pos-star-outline:before{content:"\F1BD8"}.mdi-printer-pos-stop:before{content:"\F1BD9"}.mdi-printer-pos-stop-outline:before{content:"\F1BDA"}.mdi-printer-pos-sync:before{content:"\F1BDB"}.mdi-printer-pos-sync-outline:before{content:"\F1BDC"}.mdi-printer-pos-wrench:before{content:"\F1BDD"}.mdi-printer-pos-wrench-outline:before{content:"\F1BDE"}.mdi-printer-search:before{content:"\F1457"}.mdi-printer-settings:before{content:"\F0707"}.mdi-printer-wireless:before{content:"\F0A0B"}.mdi-priority-high:before{content:"\F0603"}.mdi-priority-low:before{content:"\F0604"}.mdi-professional-hexagon:before{content:"\F042D"}.mdi-progress-alert:before{content:"\F0CBC"}.mdi-progress-check:before{content:"\F0995"}.mdi-progress-clock:before{content:"\F0996"}.mdi-progress-close:before{content:"\F110A"}.mdi-progress-download:before{content:"\F0997"}.mdi-progress-helper:before{content:"\F1BA2"}.mdi-progress-pencil:before{content:"\F1787"}.mdi-progress-question:before{content:"\F1522"}.mdi-progress-star:before{content:"\F1788"}.mdi-progress-star-four-points:before{content:"\F1C3D"}.mdi-progress-tag:before{content:"\F1D0D"}.mdi-progress-upload:before{content:"\F0998"}.mdi-progress-wrench:before{content:"\F0CBD"}.mdi-projector:before{content:"\F042E"}.mdi-projector-off:before{content:"\F1A23"}.mdi-projector-screen:before{content:"\F042F"}.mdi-projector-screen-off:before{content:"\F180D"}.mdi-projector-screen-off-outline:before{content:"\F180E"}.mdi-projector-screen-outline:before{content:"\F1724"}.mdi-projector-screen-variant:before{content:"\F180F"}.mdi-projector-screen-variant-off:before{content:"\F1810"}.mdi-projector-screen-variant-off-outline:before{content:"\F1811"}.mdi-projector-screen-variant-outline:before{content:"\F1812"}.mdi-propane-tank:before{content:"\F1357"}.mdi-propane-tank-outline:before{content:"\F1358"}.mdi-protocol:before{content:"\F0FD8"}.mdi-publish:before{content:"\F06A7"}.mdi-publish-off:before{content:"\F1945"}.mdi-pulse:before{content:"\F0430"}.mdi-pump:before{content:"\F1402"}.mdi-pump-off:before{content:"\F1B22"}.mdi-pumpkin:before{content:"\F0BBF"}.mdi-purse:before{content:"\F0F1C"}.mdi-purse-outline:before{content:"\F0F1D"}.mdi-puzzle:before{content:"\F0431"}.mdi-puzzle-check:before{content:"\F1426"}.mdi-puzzle-check-outline:before{content:"\F1427"}.mdi-puzzle-edit:before{content:"\F14D3"}.mdi-puzzle-edit-outline:before{content:"\F14D9"}.mdi-puzzle-heart:before{content:"\F14D4"}.mdi-puzzle-heart-outline:before{content:"\F14DA"}.mdi-puzzle-minus:before{content:"\F14D1"}.mdi-puzzle-minus-outline:before{content:"\F14D7"}.mdi-puzzle-outline:before{content:"\F0A66"}.mdi-puzzle-plus:before{content:"\F14D0"}.mdi-puzzle-plus-outline:before{content:"\F14D6"}.mdi-puzzle-remove:before{content:"\F14D2"}.mdi-puzzle-remove-outline:before{content:"\F14D8"}.mdi-puzzle-star:before{content:"\F14D5"}.mdi-puzzle-star-outline:before{content:"\F14DB"}.mdi-pyramid:before{content:"\F1952"}.mdi-pyramid-off:before{content:"\F1953"}.mdi-qi:before{content:"\F0999"}.mdi-qqchat:before{content:"\F0605"}.mdi-qrcode:before{content:"\F0432"}.mdi-qrcode-edit:before{content:"\F08B8"}.mdi-qrcode-minus:before{content:"\F118C"}.mdi-qrcode-plus:before{content:"\F118B"}.mdi-qrcode-remove:before{content:"\F118D"}.mdi-qrcode-scan:before{content:"\F0433"}.mdi-quadcopter:before{content:"\F0434"}.mdi-quality-high:before{content:"\F0435"}.mdi-quality-low:before{content:"\F0A0C"}.mdi-quality-medium:before{content:"\F0A0D"}.mdi-queue-first-in-last-out:before{content:"\F1CAF"}.mdi-quora:before{content:"\F0D29"}.mdi-rabbit:before{content:"\F0907"}.mdi-rabbit-variant:before{content:"\F1A61"}.mdi-rabbit-variant-outline:before{content:"\F1A62"}.mdi-racing-helmet:before{content:"\F0D93"}.mdi-racquetball:before{content:"\F0D94"}.mdi-radar:before{content:"\F0437"}.mdi-radiator:before{content:"\F0438"}.mdi-radiator-disabled:before{content:"\F0AD7"}.mdi-radiator-off:before{content:"\F0AD8"}.mdi-radio:before{content:"\F0439"}.mdi-radio-am:before{content:"\F0CBE"}.mdi-radio-fm:before{content:"\F0CBF"}.mdi-radio-handheld:before{content:"\F043A"}.mdi-radio-off:before{content:"\F121C"}.mdi-radio-tower:before{content:"\F043B"}.mdi-radioactive:before{content:"\F043C"}.mdi-radioactive-circle:before{content:"\F185D"}.mdi-radioactive-circle-outline:before{content:"\F185E"}.mdi-radioactive-off:before{content:"\F0EC1"}.mdi-radiobox-blank:before{content:"\F043D"}.mdi-radiobox-indeterminate-variant:before{content:"\F1C5E"}.mdi-radiobox-marked:before{content:"\F043E"}.mdi-radiology-box:before{content:"\F14C5"}.mdi-radiology-box-outline:before{content:"\F14C6"}.mdi-radius:before{content:"\F0CC0"}.mdi-radius-outline:before{content:"\F0CC1"}.mdi-railroad-light:before{content:"\F0F1E"}.mdi-rake:before{content:"\F1544"}.mdi-raspberry-pi:before{content:"\F043F"}.mdi-raw:before{content:"\F1A0F"}.mdi-raw-off:before{content:"\F1A10"}.mdi-ray-end:before{content:"\F0440"}.mdi-ray-end-arrow:before{content:"\F0441"}.mdi-ray-start:before{content:"\F0442"}.mdi-ray-start-arrow:before{content:"\F0443"}.mdi-ray-start-end:before{content:"\F0444"}.mdi-ray-start-vertex-end:before{content:"\F15D8"}.mdi-ray-vertex:before{content:"\F0445"}.mdi-razor-double-edge:before{content:"\F1997"}.mdi-razor-single-edge:before{content:"\F1998"}.mdi-react:before{content:"\F0708"}.mdi-read:before{content:"\F0447"}.mdi-receipt:before{content:"\F0824"}.mdi-receipt-clock:before{content:"\F1C3E"}.mdi-receipt-clock-outline:before{content:"\F1C3F"}.mdi-receipt-outline:before{content:"\F04F7"}.mdi-receipt-send:before{content:"\F1C40"}.mdi-receipt-send-outline:before{content:"\F1C41"}.mdi-receipt-text:before{content:"\F0449"}.mdi-receipt-text-arrow-left:before{content:"\F1C42"}.mdi-receipt-text-arrow-left-outline:before{content:"\F1C43"}.mdi-receipt-text-arrow-right:before{content:"\F1C44"}.mdi-receipt-text-arrow-right-outline:before{content:"\F1C45"}.mdi-receipt-text-check:before{content:"\F1A63"}.mdi-receipt-text-check-outline:before{content:"\F1A64"}.mdi-receipt-text-clock:before{content:"\F1C46"}.mdi-receipt-text-clock-outline:before{content:"\F1C47"}.mdi-receipt-text-edit:before{content:"\F1C48"}.mdi-receipt-text-edit-outline:before{content:"\F1C49"}.mdi-receipt-text-minus:before{content:"\F1A65"}.mdi-receipt-text-minus-outline:before{content:"\F1A66"}.mdi-receipt-text-outline:before{content:"\F19DC"}.mdi-receipt-text-plus:before{content:"\F1A67"}.mdi-receipt-text-plus-outline:before{content:"\F1A68"}.mdi-receipt-text-remove:before{content:"\F1A69"}.mdi-receipt-text-remove-outline:before{content:"\F1A6A"}.mdi-receipt-text-send:before{content:"\F1C4A"}.mdi-receipt-text-send-outline:before{content:"\F1C4B"}.mdi-record:before{content:"\F044A"}.mdi-record-circle:before{content:"\F0EC2"}.mdi-record-circle-outline:before{content:"\F0EC3"}.mdi-record-player:before{content:"\F099A"}.mdi-record-rec:before{content:"\F044B"}.mdi-rectangle:before{content:"\F0E5E"}.mdi-rectangle-outline:before{content:"\F0E5F"}.mdi-recycle:before{content:"\F044C"}.mdi-recycle-variant:before{content:"\F139D"}.mdi-reddit:before{content:"\F044D"}.mdi-redhat:before{content:"\F111B"}.mdi-redo:before{content:"\F044E"}.mdi-redo-variant:before{content:"\F044F"}.mdi-reflect-horizontal:before{content:"\F0A0E"}.mdi-reflect-vertical:before{content:"\F0A0F"}.mdi-refresh:before{content:"\F0450"}.mdi-refresh-auto:before{content:"\F18F2"}.mdi-refresh-circle:before{content:"\F1377"}.mdi-regex:before{content:"\F0451"}.mdi-registered-trademark:before{content:"\F0A67"}.mdi-reiterate:before{content:"\F1588"}.mdi-relation-many-to-many:before{content:"\F1496"}.mdi-relation-many-to-one:before{content:"\F1497"}.mdi-relation-many-to-one-or-many:before{content:"\F1498"}.mdi-relation-many-to-only-one:before{content:"\F1499"}.mdi-relation-many-to-zero-or-many:before{content:"\F149A"}.mdi-relation-many-to-zero-or-one:before{content:"\F149B"}.mdi-relation-one-or-many-to-many:before{content:"\F149C"}.mdi-relation-one-or-many-to-one:before{content:"\F149D"}.mdi-relation-one-or-many-to-one-or-many:before{content:"\F149E"}.mdi-relation-one-or-many-to-only-one:before{content:"\F149F"}.mdi-relation-one-or-many-to-zero-or-many:before{content:"\F14A0"}.mdi-relation-one-or-many-to-zero-or-one:before{content:"\F14A1"}.mdi-relation-one-to-many:before{content:"\F14A2"}.mdi-relation-one-to-one:before{content:"\F14A3"}.mdi-relation-one-to-one-or-many:before{content:"\F14A4"}.mdi-relation-one-to-only-one:before{content:"\F14A5"}.mdi-relation-one-to-zero-or-many:before{content:"\F14A6"}.mdi-relation-one-to-zero-or-one:before{content:"\F14A7"}.mdi-relation-only-one-to-many:before{content:"\F14A8"}.mdi-relation-only-one-to-one:before{content:"\F14A9"}.mdi-relation-only-one-to-one-or-many:before{content:"\F14AA"}.mdi-relation-only-one-to-only-one:before{content:"\F14AB"}.mdi-relation-only-one-to-zero-or-many:before{content:"\F14AC"}.mdi-relation-only-one-to-zero-or-one:before{content:"\F14AD"}.mdi-relation-zero-or-many-to-many:before{content:"\F14AE"}.mdi-relation-zero-or-many-to-one:before{content:"\F14AF"}.mdi-relation-zero-or-many-to-one-or-many:before{content:"\F14B0"}.mdi-relation-zero-or-many-to-only-one:before{content:"\F14B1"}.mdi-relation-zero-or-many-to-zero-or-many:before{content:"\F14B2"}.mdi-relation-zero-or-many-to-zero-or-one:before{content:"\F14B3"}.mdi-relation-zero-or-one-to-many:before{content:"\F14B4"}.mdi-relation-zero-or-one-to-one:before{content:"\F14B5"}.mdi-relation-zero-or-one-to-one-or-many:before{content:"\F14B6"}.mdi-relation-zero-or-one-to-only-one:before{content:"\F14B7"}.mdi-relation-zero-or-one-to-zero-or-many:before{content:"\F14B8"}.mdi-relation-zero-or-one-to-zero-or-one:before{content:"\F14B9"}.mdi-relative-scale:before{content:"\F0452"}.mdi-reload:before{content:"\F0453"}.mdi-reload-alert:before{content:"\F110B"}.mdi-reminder:before{content:"\F088C"}.mdi-remote:before{content:"\F0454"}.mdi-remote-desktop:before{content:"\F08B9"}.mdi-remote-off:before{content:"\F0EC4"}.mdi-remote-tv:before{content:"\F0EC5"}.mdi-remote-tv-off:before{content:"\F0EC6"}.mdi-rename:before{content:"\F1C18"}.mdi-rename-box:before{content:"\F0455"}.mdi-rename-box-outline:before{content:"\F1C19"}.mdi-rename-outline:before{content:"\F1C1A"}.mdi-reorder-horizontal:before{content:"\F0688"}.mdi-reorder-vertical:before{content:"\F0689"}.mdi-repeat:before{content:"\F0456"}.mdi-repeat-off:before{content:"\F0457"}.mdi-repeat-once:before{content:"\F0458"}.mdi-repeat-variant:before{content:"\F0547"}.mdi-replay:before{content:"\F0459"}.mdi-reply:before{content:"\F045A"}.mdi-reply-all:before{content:"\F045B"}.mdi-reply-all-outline:before{content:"\F0F1F"}.mdi-reply-circle:before{content:"\F11AE"}.mdi-reply-outline:before{content:"\F0F20"}.mdi-reproduction:before{content:"\F045C"}.mdi-resistor:before{content:"\F0B44"}.mdi-resistor-nodes:before{content:"\F0B45"}.mdi-resize:before{content:"\F0A68"}.mdi-resize-bottom-right:before{content:"\F045D"}.mdi-responsive:before{content:"\F045E"}.mdi-restart:before{content:"\F0709"}.mdi-restart-alert:before{content:"\F110C"}.mdi-restart-off:before{content:"\F0D95"}.mdi-restore:before{content:"\F099B"}.mdi-restore-alert:before{content:"\F110D"}.mdi-rewind:before{content:"\F045F"}.mdi-rewind-10:before{content:"\F0D2A"}.mdi-rewind-15:before{content:"\F1946"}.mdi-rewind-30:before{content:"\F0D96"}.mdi-rewind-45:before{content:"\F1B13"}.mdi-rewind-5:before{content:"\F11F9"}.mdi-rewind-60:before{content:"\F160C"}.mdi-rewind-outline:before{content:"\F070A"}.mdi-rhombus:before{content:"\F070B"}.mdi-rhombus-medium:before{content:"\F0A10"}.mdi-rhombus-medium-outline:before{content:"\F14DC"}.mdi-rhombus-outline:before{content:"\F070C"}.mdi-rhombus-split:before{content:"\F0A11"}.mdi-rhombus-split-outline:before{content:"\F14DD"}.mdi-ribbon:before{content:"\F0460"}.mdi-rice:before{content:"\F07EA"}.mdi-rickshaw:before{content:"\F15BB"}.mdi-rickshaw-electric:before{content:"\F15BC"}.mdi-ring:before{content:"\F07EB"}.mdi-rivet:before{content:"\F0E60"}.mdi-road:before{content:"\F0461"}.mdi-road-variant:before{content:"\F0462"}.mdi-robber:before{content:"\F1058"}.mdi-robot:before{content:"\F06A9"}.mdi-robot-angry:before{content:"\F169D"}.mdi-robot-angry-outline:before{content:"\F169E"}.mdi-robot-confused:before{content:"\F169F"}.mdi-robot-confused-outline:before{content:"\F16A0"}.mdi-robot-dead:before{content:"\F16A1"}.mdi-robot-dead-outline:before{content:"\F16A2"}.mdi-robot-excited:before{content:"\F16A3"}.mdi-robot-excited-outline:before{content:"\F16A4"}.mdi-robot-happy:before{content:"\F1719"}.mdi-robot-happy-outline:before{content:"\F171A"}.mdi-robot-industrial:before{content:"\F0B46"}.mdi-robot-industrial-outline:before{content:"\F1A1A"}.mdi-robot-love:before{content:"\F16A5"}.mdi-robot-love-outline:before{content:"\F16A6"}.mdi-robot-mower:before{content:"\F11F7"}.mdi-robot-mower-outline:before{content:"\F11F3"}.mdi-robot-off:before{content:"\F16A7"}.mdi-robot-off-outline:before{content:"\F167B"}.mdi-robot-outline:before{content:"\F167A"}.mdi-robot-vacuum:before{content:"\F070D"}.mdi-robot-vacuum-alert:before{content:"\F1B5D"}.mdi-robot-vacuum-off:before{content:"\F1C01"}.mdi-robot-vacuum-variant:before{content:"\F0908"}.mdi-robot-vacuum-variant-alert:before{content:"\F1B5E"}.mdi-robot-vacuum-variant-off:before{content:"\F1C02"}.mdi-rocket:before{content:"\F0463"}.mdi-rocket-launch:before{content:"\F14DE"}.mdi-rocket-launch-outline:before{content:"\F14DF"}.mdi-rocket-outline:before{content:"\F13AF"}.mdi-rodent:before{content:"\F1327"}.mdi-roller-shade:before{content:"\F1A6B"}.mdi-roller-shade-closed:before{content:"\F1A6C"}.mdi-roller-skate:before{content:"\F0D2B"}.mdi-roller-skate-off:before{content:"\F0145"}.mdi-rollerblade:before{content:"\F0D2C"}.mdi-rollerblade-off:before{content:"\F002E"}.mdi-rollupjs:before{content:"\F0BC0"}.mdi-rolodex:before{content:"\F1AB9"}.mdi-rolodex-outline:before{content:"\F1ABA"}.mdi-roman-numeral-1:before{content:"\F1088"}.mdi-roman-numeral-10:before{content:"\F1091"}.mdi-roman-numeral-2:before{content:"\F1089"}.mdi-roman-numeral-3:before{content:"\F108A"}.mdi-roman-numeral-4:before{content:"\F108B"}.mdi-roman-numeral-5:before{content:"\F108C"}.mdi-roman-numeral-6:before{content:"\F108D"}.mdi-roman-numeral-7:before{content:"\F108E"}.mdi-roman-numeral-8:before{content:"\F108F"}.mdi-roman-numeral-9:before{content:"\F1090"}.mdi-room-service:before{content:"\F088D"}.mdi-room-service-outline:before{content:"\F0D97"}.mdi-rotate-360:before{content:"\F1999"}.mdi-rotate-3d:before{content:"\F0EC7"}.mdi-rotate-3d-variant:before{content:"\F0464"}.mdi-rotate-left:before{content:"\F0465"}.mdi-rotate-left-variant:before{content:"\F0466"}.mdi-rotate-orbit:before{content:"\F0D98"}.mdi-rotate-right:before{content:"\F0467"}.mdi-rotate-right-variant:before{content:"\F0468"}.mdi-rounded-corner:before{content:"\F0607"}.mdi-router:before{content:"\F11E2"}.mdi-router-network:before{content:"\F1087"}.mdi-router-network-wireless:before{content:"\F1C97"}.mdi-router-wireless:before{content:"\F0469"}.mdi-router-wireless-off:before{content:"\F15A3"}.mdi-router-wireless-settings:before{content:"\F0A69"}.mdi-routes:before{content:"\F046A"}.mdi-routes-clock:before{content:"\F1059"}.mdi-rowing:before{content:"\F0608"}.mdi-rss:before{content:"\F046B"}.mdi-rss-box:before{content:"\F046C"}.mdi-rss-off:before{content:"\F0F21"}.mdi-rug:before{content:"\F1475"}.mdi-rugby:before{content:"\F0D99"}.mdi-ruler:before{content:"\F046D"}.mdi-ruler-square:before{content:"\F0CC2"}.mdi-ruler-square-compass:before{content:"\F0EBE"}.mdi-run:before{content:"\F070E"}.mdi-run-fast:before{content:"\F046E"}.mdi-rv-truck:before{content:"\F11D4"}.mdi-sack:before{content:"\F0D2E"}.mdi-sack-outline:before{content:"\F1C4C"}.mdi-sack-percent:before{content:"\F0D2F"}.mdi-safe:before{content:"\F0A6A"}.mdi-safe-square:before{content:"\F127C"}.mdi-safe-square-outline:before{content:"\F127D"}.mdi-safety-goggles:before{content:"\F0D30"}.mdi-sail-boat:before{content:"\F0EC8"}.mdi-sail-boat-sink:before{content:"\F1AEF"}.mdi-sale:before{content:"\F046F"}.mdi-sale-outline:before{content:"\F1A06"}.mdi-salesforce:before{content:"\F088E"}.mdi-sass:before{content:"\F07EC"}.mdi-satellite:before{content:"\F0470"}.mdi-satellite-uplink:before{content:"\F0909"}.mdi-satellite-variant:before{content:"\F0471"}.mdi-sausage:before{content:"\F08BA"}.mdi-sausage-off:before{content:"\F1789"}.mdi-saw-blade:before{content:"\F0E61"}.mdi-sawtooth-wave:before{content:"\F147A"}.mdi-saxophone:before{content:"\F0609"}.mdi-scale:before{content:"\F0472"}.mdi-scale-balance:before{content:"\F05D1"}.mdi-scale-bathroom:before{content:"\F0473"}.mdi-scale-off:before{content:"\F105A"}.mdi-scale-unbalanced:before{content:"\F19B8"}.mdi-scan-helper:before{content:"\F13D8"}.mdi-scanner:before{content:"\F06AB"}.mdi-scanner-off:before{content:"\F090A"}.mdi-scatter-plot:before{content:"\F0EC9"}.mdi-scatter-plot-outline:before{content:"\F0ECA"}.mdi-scent:before{content:"\F1958"}.mdi-scent-off:before{content:"\F1959"}.mdi-school:before{content:"\F0474"}.mdi-school-outline:before{content:"\F1180"}.mdi-scissors-cutting:before{content:"\F0A6B"}.mdi-scooter:before{content:"\F15BD"}.mdi-scooter-electric:before{content:"\F15BE"}.mdi-scoreboard:before{content:"\F127E"}.mdi-scoreboard-outline:before{content:"\F127F"}.mdi-screen-rotation:before{content:"\F0475"}.mdi-screen-rotation-lock:before{content:"\F0478"}.mdi-screw-flat-top:before{content:"\F0DF3"}.mdi-screw-lag:before{content:"\F0DF4"}.mdi-screw-machine-flat-top:before{content:"\F0DF5"}.mdi-screw-machine-round-top:before{content:"\F0DF6"}.mdi-screw-round-top:before{content:"\F0DF7"}.mdi-screwdriver:before{content:"\F0476"}.mdi-script:before{content:"\F0BC1"}.mdi-script-outline:before{content:"\F0477"}.mdi-script-text:before{content:"\F0BC2"}.mdi-script-text-key:before{content:"\F1725"}.mdi-script-text-key-outline:before{content:"\F1726"}.mdi-script-text-outline:before{content:"\F0BC3"}.mdi-script-text-play:before{content:"\F1727"}.mdi-script-text-play-outline:before{content:"\F1728"}.mdi-sd:before{content:"\F0479"}.mdi-seal:before{content:"\F047A"}.mdi-seal-variant:before{content:"\F0FD9"}.mdi-search-web:before{content:"\F070F"}.mdi-seat:before{content:"\F0CC3"}.mdi-seat-flat:before{content:"\F047B"}.mdi-seat-flat-angled:before{content:"\F047C"}.mdi-seat-individual-suite:before{content:"\F047D"}.mdi-seat-legroom-extra:before{content:"\F047E"}.mdi-seat-legroom-normal:before{content:"\F047F"}.mdi-seat-legroom-reduced:before{content:"\F0480"}.mdi-seat-outline:before{content:"\F0CC4"}.mdi-seat-passenger:before{content:"\F1249"}.mdi-seat-recline-extra:before{content:"\F0481"}.mdi-seat-recline-normal:before{content:"\F0482"}.mdi-seatbelt:before{content:"\F0CC5"}.mdi-security:before{content:"\F0483"}.mdi-security-network:before{content:"\F0484"}.mdi-seed:before{content:"\F0E62"}.mdi-seed-off:before{content:"\F13FD"}.mdi-seed-off-outline:before{content:"\F13FE"}.mdi-seed-outline:before{content:"\F0E63"}.mdi-seed-plus:before{content:"\F1A6D"}.mdi-seed-plus-outline:before{content:"\F1A6E"}.mdi-seesaw:before{content:"\F15A4"}.mdi-segment:before{content:"\F0ECB"}.mdi-select:before{content:"\F0485"}.mdi-select-all:before{content:"\F0486"}.mdi-select-arrow-down:before{content:"\F1B59"}.mdi-select-arrow-up:before{content:"\F1B58"}.mdi-select-color:before{content:"\F0D31"}.mdi-select-compare:before{content:"\F0AD9"}.mdi-select-drag:before{content:"\F0A6C"}.mdi-select-group:before{content:"\F0F82"}.mdi-select-inverse:before{content:"\F0487"}.mdi-select-marker:before{content:"\F1280"}.mdi-select-multiple:before{content:"\F1281"}.mdi-select-multiple-marker:before{content:"\F1282"}.mdi-select-off:before{content:"\F0488"}.mdi-select-place:before{content:"\F0FDA"}.mdi-select-remove:before{content:"\F17C1"}.mdi-select-search:before{content:"\F1204"}.mdi-selection:before{content:"\F0489"}.mdi-selection-drag:before{content:"\F0A6D"}.mdi-selection-ellipse:before{content:"\F0D32"}.mdi-selection-ellipse-arrow-inside:before{content:"\F0F22"}.mdi-selection-ellipse-remove:before{content:"\F17C2"}.mdi-selection-marker:before{content:"\F1283"}.mdi-selection-multiple:before{content:"\F1285"}.mdi-selection-multiple-marker:before{content:"\F1284"}.mdi-selection-off:before{content:"\F0777"}.mdi-selection-remove:before{content:"\F17C3"}.mdi-selection-search:before{content:"\F1205"}.mdi-semantic-web:before{content:"\F1316"}.mdi-send:before{content:"\F048A"}.mdi-send-check:before{content:"\F1161"}.mdi-send-check-outline:before{content:"\F1162"}.mdi-send-circle:before{content:"\F0DF8"}.mdi-send-circle-outline:before{content:"\F0DF9"}.mdi-send-clock:before{content:"\F1163"}.mdi-send-clock-outline:before{content:"\F1164"}.mdi-send-lock:before{content:"\F07ED"}.mdi-send-lock-outline:before{content:"\F1166"}.mdi-send-outline:before{content:"\F1165"}.mdi-send-variant:before{content:"\F1C4D"}.mdi-send-variant-clock:before{content:"\F1C7E"}.mdi-send-variant-clock-outline:before{content:"\F1C7F"}.mdi-send-variant-outline:before{content:"\F1C4E"}.mdi-serial-port:before{content:"\F065C"}.mdi-server:before{content:"\F048B"}.mdi-server-minus:before{content:"\F048C"}.mdi-server-minus-outline:before{content:"\F1C98"}.mdi-server-network:before{content:"\F048D"}.mdi-server-network-off:before{content:"\F048E"}.mdi-server-network-outline:before{content:"\F1C99"}.mdi-server-off:before{content:"\F048F"}.mdi-server-outline:before{content:"\F1C9A"}.mdi-server-plus:before{content:"\F0490"}.mdi-server-plus-outline:before{content:"\F1C9B"}.mdi-server-remove:before{content:"\F0491"}.mdi-server-security:before{content:"\F0492"}.mdi-set-all:before{content:"\F0778"}.mdi-set-center:before{content:"\F0779"}.mdi-set-center-right:before{content:"\F077A"}.mdi-set-left:before{content:"\F077B"}.mdi-set-left-center:before{content:"\F077C"}.mdi-set-left-right:before{content:"\F077D"}.mdi-set-merge:before{content:"\F14E0"}.mdi-set-none:before{content:"\F077E"}.mdi-set-right:before{content:"\F077F"}.mdi-set-split:before{content:"\F14E1"}.mdi-set-square:before{content:"\F145D"}.mdi-set-top-box:before{content:"\F099F"}.mdi-settings-helper:before{content:"\F0A6E"}.mdi-shaker:before{content:"\F110E"}.mdi-shaker-outline:before{content:"\F110F"}.mdi-shape:before{content:"\F0831"}.mdi-shape-circle-plus:before{content:"\F065D"}.mdi-shape-outline:before{content:"\F0832"}.mdi-shape-oval-plus:before{content:"\F11FA"}.mdi-shape-plus:before{content:"\F0495"}.mdi-shape-plus-outline:before{content:"\F1C4F"}.mdi-shape-polygon-plus:before{content:"\F065E"}.mdi-shape-rectangle-plus:before{content:"\F065F"}.mdi-shape-square-plus:before{content:"\F0660"}.mdi-shape-square-rounded-plus:before{content:"\F14FA"}.mdi-share:before{content:"\F0496"}.mdi-share-all:before{content:"\F11F4"}.mdi-share-all-outline:before{content:"\F11F5"}.mdi-share-circle:before{content:"\F11AD"}.mdi-share-off:before{content:"\F0F23"}.mdi-share-off-outline:before{content:"\F0F24"}.mdi-share-outline:before{content:"\F0932"}.mdi-share-variant:before{content:"\F0497"}.mdi-share-variant-outline:before{content:"\F1514"}.mdi-shark:before{content:"\F18BA"}.mdi-shark-fin:before{content:"\F1673"}.mdi-shark-fin-outline:before{content:"\F1674"}.mdi-shark-off:before{content:"\F18BB"}.mdi-sheep:before{content:"\F0CC6"}.mdi-shield:before{content:"\F0498"}.mdi-shield-account:before{content:"\F088F"}.mdi-shield-account-outline:before{content:"\F0A12"}.mdi-shield-account-variant:before{content:"\F15A7"}.mdi-shield-account-variant-outline:before{content:"\F15A8"}.mdi-shield-airplane:before{content:"\F06BB"}.mdi-shield-airplane-outline:before{content:"\F0CC7"}.mdi-shield-alert:before{content:"\F0ECC"}.mdi-shield-alert-outline:before{content:"\F0ECD"}.mdi-shield-bug:before{content:"\F13DA"}.mdi-shield-bug-outline:before{content:"\F13DB"}.mdi-shield-car:before{content:"\F0F83"}.mdi-shield-check:before{content:"\F0565"}.mdi-shield-check-outline:before{content:"\F0CC8"}.mdi-shield-cross:before{content:"\F0CC9"}.mdi-shield-cross-outline:before{content:"\F0CCA"}.mdi-shield-crown:before{content:"\F18BC"}.mdi-shield-crown-outline:before{content:"\F18BD"}.mdi-shield-edit:before{content:"\F11A0"}.mdi-shield-edit-outline:before{content:"\F11A1"}.mdi-shield-half:before{content:"\F1360"}.mdi-shield-half-full:before{content:"\F0780"}.mdi-shield-home:before{content:"\F068A"}.mdi-shield-home-outline:before{content:"\F0CCB"}.mdi-shield-key:before{content:"\F0BC4"}.mdi-shield-key-outline:before{content:"\F0BC5"}.mdi-shield-link-variant:before{content:"\F0D33"}.mdi-shield-link-variant-outline:before{content:"\F0D34"}.mdi-shield-lock:before{content:"\F099D"}.mdi-shield-lock-open:before{content:"\F199A"}.mdi-shield-lock-open-outline:before{content:"\F199B"}.mdi-shield-lock-outline:before{content:"\F0CCC"}.mdi-shield-moon:before{content:"\F1828"}.mdi-shield-moon-outline:before{content:"\F1829"}.mdi-shield-off:before{content:"\F099E"}.mdi-shield-off-outline:before{content:"\F099C"}.mdi-shield-outline:before{content:"\F0499"}.mdi-shield-plus:before{content:"\F0ADA"}.mdi-shield-plus-outline:before{content:"\F0ADB"}.mdi-shield-refresh:before{content:"\F00AA"}.mdi-shield-refresh-outline:before{content:"\F01E0"}.mdi-shield-remove:before{content:"\F0ADC"}.mdi-shield-remove-outline:before{content:"\F0ADD"}.mdi-shield-search:before{content:"\F0D9A"}.mdi-shield-star:before{content:"\F113B"}.mdi-shield-star-outline:before{content:"\F113C"}.mdi-shield-sun:before{content:"\F105D"}.mdi-shield-sun-outline:before{content:"\F105E"}.mdi-shield-sword:before{content:"\F18BE"}.mdi-shield-sword-outline:before{content:"\F18BF"}.mdi-shield-sync:before{content:"\F11A2"}.mdi-shield-sync-outline:before{content:"\F11A3"}.mdi-shimmer:before{content:"\F1545"}.mdi-ship-wheel:before{content:"\F0833"}.mdi-shipping-pallet:before{content:"\F184E"}.mdi-shoe-ballet:before{content:"\F15CA"}.mdi-shoe-cleat:before{content:"\F15C7"}.mdi-shoe-formal:before{content:"\F0B47"}.mdi-shoe-heel:before{content:"\F0B48"}.mdi-shoe-print:before{content:"\F0DFA"}.mdi-shoe-sneaker:before{content:"\F15C8"}.mdi-shopping:before{content:"\F049A"}.mdi-shopping-music:before{content:"\F049B"}.mdi-shopping-outline:before{content:"\F11D5"}.mdi-shopping-search:before{content:"\F0F84"}.mdi-shopping-search-outline:before{content:"\F1A6F"}.mdi-shore:before{content:"\F14F9"}.mdi-shovel:before{content:"\F0710"}.mdi-shovel-off:before{content:"\F0711"}.mdi-shower:before{content:"\F09A0"}.mdi-shower-head:before{content:"\F09A1"}.mdi-shredder:before{content:"\F049C"}.mdi-shuffle:before{content:"\F049D"}.mdi-shuffle-disabled:before{content:"\F049E"}.mdi-shuffle-variant:before{content:"\F049F"}.mdi-shuriken:before{content:"\F137F"}.mdi-sickle:before{content:"\F18C0"}.mdi-sigma:before{content:"\F04A0"}.mdi-sigma-lower:before{content:"\F062B"}.mdi-sign-caution:before{content:"\F04A1"}.mdi-sign-direction:before{content:"\F0781"}.mdi-sign-direction-minus:before{content:"\F1000"}.mdi-sign-direction-plus:before{content:"\F0FDC"}.mdi-sign-direction-remove:before{content:"\F0FDD"}.mdi-sign-language:before{content:"\F1B4D"}.mdi-sign-language-outline:before{content:"\F1B4E"}.mdi-sign-pole:before{content:"\F14F8"}.mdi-sign-real-estate:before{content:"\F1118"}.mdi-sign-text:before{content:"\F0782"}.mdi-sign-yield:before{content:"\F1BAF"}.mdi-signal:before{content:"\F04A2"}.mdi-signal-2g:before{content:"\F0712"}.mdi-signal-3g:before{content:"\F0713"}.mdi-signal-4g:before{content:"\F0714"}.mdi-signal-5g:before{content:"\F0A6F"}.mdi-signal-cellular-1:before{content:"\F08BC"}.mdi-signal-cellular-2:before{content:"\F08BD"}.mdi-signal-cellular-3:before{content:"\F08BE"}.mdi-signal-cellular-outline:before{content:"\F08BF"}.mdi-signal-distance-variant:before{content:"\F0E64"}.mdi-signal-hspa:before{content:"\F0715"}.mdi-signal-hspa-plus:before{content:"\F0716"}.mdi-signal-off:before{content:"\F0783"}.mdi-signal-variant:before{content:"\F060A"}.mdi-signature:before{content:"\F0DFB"}.mdi-signature-freehand:before{content:"\F0DFC"}.mdi-signature-image:before{content:"\F0DFD"}.mdi-signature-text:before{content:"\F0DFE"}.mdi-silo:before{content:"\F1B9F"}.mdi-silo-outline:before{content:"\F0B49"}.mdi-silverware:before{content:"\F04A3"}.mdi-silverware-clean:before{content:"\F0FDE"}.mdi-silverware-fork:before{content:"\F04A4"}.mdi-silverware-fork-knife:before{content:"\F0A70"}.mdi-silverware-spoon:before{content:"\F04A5"}.mdi-silverware-variant:before{content:"\F04A6"}.mdi-sim:before{content:"\F04A7"}.mdi-sim-alert:before{content:"\F04A8"}.mdi-sim-alert-outline:before{content:"\F15D3"}.mdi-sim-off:before{content:"\F04A9"}.mdi-sim-off-outline:before{content:"\F15D4"}.mdi-sim-outline:before{content:"\F15D5"}.mdi-simple-icons:before{content:"\F131D"}.mdi-sina-weibo:before{content:"\F0ADF"}.mdi-sine-wave:before{content:"\F095B"}.mdi-sitemap:before{content:"\F04AA"}.mdi-sitemap-outline:before{content:"\F199C"}.mdi-size-l:before{content:"\F13A6"}.mdi-size-m:before{content:"\F13A5"}.mdi-size-s:before{content:"\F13A4"}.mdi-size-xl:before{content:"\F13A7"}.mdi-size-xs:before{content:"\F13A3"}.mdi-size-xxl:before{content:"\F13A8"}.mdi-size-xxs:before{content:"\F13A2"}.mdi-size-xxxl:before{content:"\F13A9"}.mdi-skate:before{content:"\F0D35"}.mdi-skate-off:before{content:"\F0699"}.mdi-skateboard:before{content:"\F14C2"}.mdi-skateboarding:before{content:"\F0501"}.mdi-skew-less:before{content:"\F0D36"}.mdi-skew-more:before{content:"\F0D37"}.mdi-ski:before{content:"\F1304"}.mdi-ski-cross-country:before{content:"\F1305"}.mdi-ski-water:before{content:"\F1306"}.mdi-skip-backward:before{content:"\F04AB"}.mdi-skip-backward-outline:before{content:"\F0F25"}.mdi-skip-forward:before{content:"\F04AC"}.mdi-skip-forward-outline:before{content:"\F0F26"}.mdi-skip-next:before{content:"\F04AD"}.mdi-skip-next-circle:before{content:"\F0661"}.mdi-skip-next-circle-outline:before{content:"\F0662"}.mdi-skip-next-outline:before{content:"\F0F27"}.mdi-skip-previous:before{content:"\F04AE"}.mdi-skip-previous-circle:before{content:"\F0663"}.mdi-skip-previous-circle-outline:before{content:"\F0664"}.mdi-skip-previous-outline:before{content:"\F0F28"}.mdi-skull:before{content:"\F068C"}.mdi-skull-crossbones:before{content:"\F0BC6"}.mdi-skull-crossbones-outline:before{content:"\F0BC7"}.mdi-skull-outline:before{content:"\F0BC8"}.mdi-skull-scan:before{content:"\F14C7"}.mdi-skull-scan-outline:before{content:"\F14C8"}.mdi-skype:before{content:"\F04AF"}.mdi-skype-business:before{content:"\F04B0"}.mdi-slack:before{content:"\F04B1"}.mdi-slash-forward:before{content:"\F0FDF"}.mdi-slash-forward-box:before{content:"\F0FE0"}.mdi-sledding:before{content:"\F041B"}.mdi-sleep:before{content:"\F04B2"}.mdi-sleep-off:before{content:"\F04B3"}.mdi-slide:before{content:"\F15A5"}.mdi-slope-downhill:before{content:"\F0DFF"}.mdi-slope-uphill:before{content:"\F0E00"}.mdi-slot-machine:before{content:"\F1114"}.mdi-slot-machine-outline:before{content:"\F1115"}.mdi-smart-card:before{content:"\F10BD"}.mdi-smart-card-off:before{content:"\F18F7"}.mdi-smart-card-off-outline:before{content:"\F18F8"}.mdi-smart-card-outline:before{content:"\F10BE"}.mdi-smart-card-reader:before{content:"\F10BF"}.mdi-smart-card-reader-outline:before{content:"\F10C0"}.mdi-smog:before{content:"\F0A71"}.mdi-smoke:before{content:"\F1799"}.mdi-smoke-detector:before{content:"\F0392"}.mdi-smoke-detector-alert:before{content:"\F192E"}.mdi-smoke-detector-alert-outline:before{content:"\F192F"}.mdi-smoke-detector-off:before{content:"\F1809"}.mdi-smoke-detector-off-outline:before{content:"\F180A"}.mdi-smoke-detector-outline:before{content:"\F1808"}.mdi-smoke-detector-variant:before{content:"\F180B"}.mdi-smoke-detector-variant-alert:before{content:"\F1930"}.mdi-smoke-detector-variant-off:before{content:"\F180C"}.mdi-smoking:before{content:"\F04B4"}.mdi-smoking-off:before{content:"\F04B5"}.mdi-smoking-pipe:before{content:"\F140D"}.mdi-smoking-pipe-off:before{content:"\F1428"}.mdi-snail:before{content:"\F1677"}.mdi-snake:before{content:"\F150E"}.mdi-snapchat:before{content:"\F04B6"}.mdi-snowboard:before{content:"\F1307"}.mdi-snowflake:before{content:"\F0717"}.mdi-snowflake-alert:before{content:"\F0F29"}.mdi-snowflake-check:before{content:"\F1A70"}.mdi-snowflake-melt:before{content:"\F12CB"}.mdi-snowflake-off:before{content:"\F14E3"}.mdi-snowflake-thermometer:before{content:"\F1A71"}.mdi-snowflake-variant:before{content:"\F0F2A"}.mdi-snowman:before{content:"\F04B7"}.mdi-snowmobile:before{content:"\F06DD"}.mdi-snowshoeing:before{content:"\F1A72"}.mdi-soccer:before{content:"\F04B8"}.mdi-soccer-field:before{content:"\F0834"}.mdi-social-distance-2-meters:before{content:"\F1579"}.mdi-social-distance-6-feet:before{content:"\F157A"}.mdi-sofa:before{content:"\F04B9"}.mdi-sofa-outline:before{content:"\F156D"}.mdi-sofa-single:before{content:"\F156E"}.mdi-sofa-single-outline:before{content:"\F156F"}.mdi-solar-panel:before{content:"\F0D9B"}.mdi-solar-panel-large:before{content:"\F0D9C"}.mdi-solar-power:before{content:"\F0A72"}.mdi-solar-power-variant:before{content:"\F1A73"}.mdi-solar-power-variant-outline:before{content:"\F1A74"}.mdi-soldering-iron:before{content:"\F1092"}.mdi-solid:before{content:"\F068D"}.mdi-sony-playstation:before{content:"\F0414"}.mdi-sort:before{content:"\F04BA"}.mdi-sort-alphabetical-ascending:before{content:"\F05BD"}.mdi-sort-alphabetical-ascending-variant:before{content:"\F1148"}.mdi-sort-alphabetical-descending:before{content:"\F05BF"}.mdi-sort-alphabetical-descending-variant:before{content:"\F1149"}.mdi-sort-alphabetical-variant:before{content:"\F04BB"}.mdi-sort-ascending:before{content:"\F04BC"}.mdi-sort-bool-ascending:before{content:"\F1385"}.mdi-sort-bool-ascending-variant:before{content:"\F1386"}.mdi-sort-bool-descending:before{content:"\F1387"}.mdi-sort-bool-descending-variant:before{content:"\F1388"}.mdi-sort-calendar-ascending:before{content:"\F1547"}.mdi-sort-calendar-descending:before{content:"\F1548"}.mdi-sort-clock-ascending:before{content:"\F1549"}.mdi-sort-clock-ascending-outline:before{content:"\F154A"}.mdi-sort-clock-descending:before{content:"\F154B"}.mdi-sort-clock-descending-outline:before{content:"\F154C"}.mdi-sort-descending:before{content:"\F04BD"}.mdi-sort-numeric-ascending:before{content:"\F1389"}.mdi-sort-numeric-ascending-variant:before{content:"\F090D"}.mdi-sort-numeric-descending:before{content:"\F138A"}.mdi-sort-numeric-descending-variant:before{content:"\F0AD2"}.mdi-sort-numeric-variant:before{content:"\F04BE"}.mdi-sort-reverse-variant:before{content:"\F033C"}.mdi-sort-variant:before{content:"\F04BF"}.mdi-sort-variant-lock:before{content:"\F0CCD"}.mdi-sort-variant-lock-open:before{content:"\F0CCE"}.mdi-sort-variant-off:before{content:"\F1ABB"}.mdi-sort-variant-remove:before{content:"\F1147"}.mdi-soundbar:before{content:"\F17DB"}.mdi-soundcloud:before{content:"\F04C0"}.mdi-source-branch:before{content:"\F062C"}.mdi-source-branch-check:before{content:"\F14CF"}.mdi-source-branch-minus:before{content:"\F14CB"}.mdi-source-branch-plus:before{content:"\F14CA"}.mdi-source-branch-refresh:before{content:"\F14CD"}.mdi-source-branch-remove:before{content:"\F14CC"}.mdi-source-branch-sync:before{content:"\F14CE"}.mdi-source-commit:before{content:"\F0718"}.mdi-source-commit-end:before{content:"\F0719"}.mdi-source-commit-end-local:before{content:"\F071A"}.mdi-source-commit-local:before{content:"\F071B"}.mdi-source-commit-next-local:before{content:"\F071C"}.mdi-source-commit-start:before{content:"\F071D"}.mdi-source-commit-start-next-local:before{content:"\F071E"}.mdi-source-fork:before{content:"\F04C1"}.mdi-source-merge:before{content:"\F062D"}.mdi-source-pull:before{content:"\F04C2"}.mdi-source-repository:before{content:"\F0CCF"}.mdi-source-repository-multiple:before{content:"\F0CD0"}.mdi-soy-sauce:before{content:"\F07EE"}.mdi-soy-sauce-off:before{content:"\F13FC"}.mdi-spa:before{content:"\F0CD1"}.mdi-spa-outline:before{content:"\F0CD2"}.mdi-space-invaders:before{content:"\F0BC9"}.mdi-space-station:before{content:"\F1383"}.mdi-spade:before{content:"\F0E65"}.mdi-speaker:before{content:"\F04C3"}.mdi-speaker-bluetooth:before{content:"\F09A2"}.mdi-speaker-message:before{content:"\F1B11"}.mdi-speaker-multiple:before{content:"\F0D38"}.mdi-speaker-off:before{content:"\F04C4"}.mdi-speaker-pause:before{content:"\F1B73"}.mdi-speaker-play:before{content:"\F1B72"}.mdi-speaker-stop:before{content:"\F1B74"}.mdi-speaker-wireless:before{content:"\F071F"}.mdi-spear:before{content:"\F1845"}.mdi-speedometer:before{content:"\F04C5"}.mdi-speedometer-medium:before{content:"\F0F85"}.mdi-speedometer-slow:before{content:"\F0F86"}.mdi-spellcheck:before{content:"\F04C6"}.mdi-sphere:before{content:"\F1954"}.mdi-sphere-off:before{content:"\F1955"}.mdi-spider:before{content:"\F11EA"}.mdi-spider-outline:before{content:"\F1C75"}.mdi-spider-thread:before{content:"\F11EB"}.mdi-spider-web:before{content:"\F0BCA"}.mdi-spirit-level:before{content:"\F14F1"}.mdi-spoon-sugar:before{content:"\F1429"}.mdi-spotify:before{content:"\F04C7"}.mdi-spotlight:before{content:"\F04C8"}.mdi-spotlight-beam:before{content:"\F04C9"}.mdi-spray:before{content:"\F0665"}.mdi-spray-bottle:before{content:"\F0AE0"}.mdi-sprinkler:before{content:"\F105F"}.mdi-sprinkler-fire:before{content:"\F199D"}.mdi-sprinkler-variant:before{content:"\F1060"}.mdi-sprout:before{content:"\F0E66"}.mdi-sprout-outline:before{content:"\F0E67"}.mdi-square:before{content:"\F0764"}.mdi-square-circle:before{content:"\F1500"}.mdi-square-circle-outline:before{content:"\F1C50"}.mdi-square-edit-outline:before{content:"\F090C"}.mdi-square-medium:before{content:"\F0A13"}.mdi-square-medium-outline:before{content:"\F0A14"}.mdi-square-off:before{content:"\F12EE"}.mdi-square-off-outline:before{content:"\F12EF"}.mdi-square-opacity:before{content:"\F1854"}.mdi-square-outline:before{content:"\F0763"}.mdi-square-root:before{content:"\F0784"}.mdi-square-root-box:before{content:"\F09A3"}.mdi-square-rounded:before{content:"\F14FB"}.mdi-square-rounded-badge:before{content:"\F1A07"}.mdi-square-rounded-badge-outline:before{content:"\F1A08"}.mdi-square-rounded-outline:before{content:"\F14FC"}.mdi-square-small:before{content:"\F0A15"}.mdi-square-wave:before{content:"\F147B"}.mdi-squeegee:before{content:"\F0AE1"}.mdi-ssh:before{content:"\F08C0"}.mdi-stack-exchange:before{content:"\F060B"}.mdi-stack-overflow:before{content:"\F04CC"}.mdi-stackpath:before{content:"\F0359"}.mdi-stadium:before{content:"\F0FF9"}.mdi-stadium-outline:before{content:"\F1B03"}.mdi-stadium-variant:before{content:"\F0720"}.mdi-stairs:before{content:"\F04CD"}.mdi-stairs-box:before{content:"\F139E"}.mdi-stairs-down:before{content:"\F12BE"}.mdi-stairs-up:before{content:"\F12BD"}.mdi-stamper:before{content:"\F0D39"}.mdi-standard-definition:before{content:"\F07EF"}.mdi-star:before{content:"\F04CE"}.mdi-star-box:before{content:"\F0A73"}.mdi-star-box-multiple:before{content:"\F1286"}.mdi-star-box-multiple-outline:before{content:"\F1287"}.mdi-star-box-outline:before{content:"\F0A74"}.mdi-star-check:before{content:"\F1566"}.mdi-star-check-outline:before{content:"\F156A"}.mdi-star-circle:before{content:"\F04CF"}.mdi-star-circle-outline:before{content:"\F09A4"}.mdi-star-cog:before{content:"\F1668"}.mdi-star-cog-outline:before{content:"\F1669"}.mdi-star-crescent:before{content:"\F0979"}.mdi-star-david:before{content:"\F097A"}.mdi-star-face:before{content:"\F09A5"}.mdi-star-four-points:before{content:"\F0AE2"}.mdi-star-four-points-box:before{content:"\F1C51"}.mdi-star-four-points-box-outline:before{content:"\F1C52"}.mdi-star-four-points-circle:before{content:"\F1C53"}.mdi-star-four-points-circle-outline:before{content:"\F1C54"}.mdi-star-four-points-outline:before{content:"\F0AE3"}.mdi-star-four-points-small:before{content:"\F1C55"}.mdi-star-half:before{content:"\F0246"}.mdi-star-half-full:before{content:"\F04D0"}.mdi-star-minus:before{content:"\F1564"}.mdi-star-minus-outline:before{content:"\F1568"}.mdi-star-off:before{content:"\F04D1"}.mdi-star-off-outline:before{content:"\F155B"}.mdi-star-outline:before{content:"\F04D2"}.mdi-star-plus:before{content:"\F1563"}.mdi-star-plus-outline:before{content:"\F1567"}.mdi-star-remove:before{content:"\F1565"}.mdi-star-remove-outline:before{content:"\F1569"}.mdi-star-settings:before{content:"\F166A"}.mdi-star-settings-outline:before{content:"\F166B"}.mdi-star-shooting:before{content:"\F1741"}.mdi-star-shooting-outline:before{content:"\F1742"}.mdi-star-three-points:before{content:"\F0AE4"}.mdi-star-three-points-outline:before{content:"\F0AE5"}.mdi-state-machine:before{content:"\F11EF"}.mdi-steam:before{content:"\F04D3"}.mdi-steering:before{content:"\F04D4"}.mdi-steering-off:before{content:"\F090E"}.mdi-step-backward:before{content:"\F04D5"}.mdi-step-backward-2:before{content:"\F04D6"}.mdi-step-forward:before{content:"\F04D7"}.mdi-step-forward-2:before{content:"\F04D8"}.mdi-stethoscope:before{content:"\F04D9"}.mdi-sticker:before{content:"\F1364"}.mdi-sticker-alert:before{content:"\F1365"}.mdi-sticker-alert-outline:before{content:"\F1366"}.mdi-sticker-check:before{content:"\F1367"}.mdi-sticker-check-outline:before{content:"\F1368"}.mdi-sticker-circle-outline:before{content:"\F05D0"}.mdi-sticker-emoji:before{content:"\F0785"}.mdi-sticker-minus:before{content:"\F1369"}.mdi-sticker-minus-outline:before{content:"\F136A"}.mdi-sticker-outline:before{content:"\F136B"}.mdi-sticker-plus:before{content:"\F136C"}.mdi-sticker-plus-outline:before{content:"\F136D"}.mdi-sticker-remove:before{content:"\F136E"}.mdi-sticker-remove-outline:before{content:"\F136F"}.mdi-sticker-text:before{content:"\F178E"}.mdi-sticker-text-outline:before{content:"\F178F"}.mdi-stocking:before{content:"\F04DA"}.mdi-stomach:before{content:"\F1093"}.mdi-stool:before{content:"\F195D"}.mdi-stool-outline:before{content:"\F195E"}.mdi-stop:before{content:"\F04DB"}.mdi-stop-circle:before{content:"\F0666"}.mdi-stop-circle-outline:before{content:"\F0667"}.mdi-storage-tank:before{content:"\F1A75"}.mdi-storage-tank-outline:before{content:"\F1A76"}.mdi-store:before{content:"\F04DC"}.mdi-store-24-hour:before{content:"\F04DD"}.mdi-store-alert:before{content:"\F18C1"}.mdi-store-alert-outline:before{content:"\F18C2"}.mdi-store-check:before{content:"\F18C3"}.mdi-store-check-outline:before{content:"\F18C4"}.mdi-store-clock:before{content:"\F18C5"}.mdi-store-clock-outline:before{content:"\F18C6"}.mdi-store-cog:before{content:"\F18C7"}.mdi-store-cog-outline:before{content:"\F18C8"}.mdi-store-edit:before{content:"\F18C9"}.mdi-store-edit-outline:before{content:"\F18CA"}.mdi-store-marker:before{content:"\F18CB"}.mdi-store-marker-outline:before{content:"\F18CC"}.mdi-store-minus:before{content:"\F165E"}.mdi-store-minus-outline:before{content:"\F18CD"}.mdi-store-off:before{content:"\F18CE"}.mdi-store-off-outline:before{content:"\F18CF"}.mdi-store-outline:before{content:"\F1361"}.mdi-store-plus:before{content:"\F165F"}.mdi-store-plus-outline:before{content:"\F18D0"}.mdi-store-remove:before{content:"\F1660"}.mdi-store-remove-outline:before{content:"\F18D1"}.mdi-store-search:before{content:"\F18D2"}.mdi-store-search-outline:before{content:"\F18D3"}.mdi-store-settings:before{content:"\F18D4"}.mdi-store-settings-outline:before{content:"\F18D5"}.mdi-storefront:before{content:"\F07C7"}.mdi-storefront-check:before{content:"\F1B7D"}.mdi-storefront-check-outline:before{content:"\F1B7E"}.mdi-storefront-edit:before{content:"\F1B7F"}.mdi-storefront-edit-outline:before{content:"\F1B80"}.mdi-storefront-minus:before{content:"\F1B83"}.mdi-storefront-minus-outline:before{content:"\F1B84"}.mdi-storefront-outline:before{content:"\F10C1"}.mdi-storefront-plus:before{content:"\F1B81"}.mdi-storefront-plus-outline:before{content:"\F1B82"}.mdi-storefront-remove:before{content:"\F1B85"}.mdi-storefront-remove-outline:before{content:"\F1B86"}.mdi-stove:before{content:"\F04DE"}.mdi-strategy:before{content:"\F11D6"}.mdi-stretch-to-page:before{content:"\F0F2B"}.mdi-stretch-to-page-outline:before{content:"\F0F2C"}.mdi-string-lights:before{content:"\F12BA"}.mdi-string-lights-off:before{content:"\F12BB"}.mdi-subdirectory-arrow-left:before{content:"\F060C"}.mdi-subdirectory-arrow-right:before{content:"\F060D"}.mdi-submarine:before{content:"\F156C"}.mdi-subtitles:before{content:"\F0A16"}.mdi-subtitles-outline:before{content:"\F0A17"}.mdi-subway:before{content:"\F06AC"}.mdi-subway-alert-variant:before{content:"\F0D9D"}.mdi-subway-variant:before{content:"\F04DF"}.mdi-summit:before{content:"\F0786"}.mdi-sun-angle:before{content:"\F1B27"}.mdi-sun-angle-outline:before{content:"\F1B28"}.mdi-sun-clock:before{content:"\F1A77"}.mdi-sun-clock-outline:before{content:"\F1A78"}.mdi-sun-compass:before{content:"\F19A5"}.mdi-sun-snowflake:before{content:"\F1796"}.mdi-sun-snowflake-variant:before{content:"\F1A79"}.mdi-sun-thermometer:before{content:"\F18D6"}.mdi-sun-thermometer-outline:before{content:"\F18D7"}.mdi-sun-wireless:before{content:"\F17FE"}.mdi-sun-wireless-outline:before{content:"\F17FF"}.mdi-sunglasses:before{content:"\F04E0"}.mdi-surfing:before{content:"\F1746"}.mdi-surround-sound:before{content:"\F05C5"}.mdi-surround-sound-2-0:before{content:"\F07F0"}.mdi-surround-sound-2-1:before{content:"\F1729"}.mdi-surround-sound-3-1:before{content:"\F07F1"}.mdi-surround-sound-5-1:before{content:"\F07F2"}.mdi-surround-sound-5-1-2:before{content:"\F172A"}.mdi-surround-sound-7-1:before{content:"\F07F3"}.mdi-svg:before{content:"\F0721"}.mdi-swap-horizontal:before{content:"\F04E1"}.mdi-swap-horizontal-bold:before{content:"\F0BCD"}.mdi-swap-horizontal-circle:before{content:"\F0FE1"}.mdi-swap-horizontal-circle-outline:before{content:"\F0FE2"}.mdi-swap-horizontal-hidden:before{content:"\F1D0E"}.mdi-swap-horizontal-variant:before{content:"\F08C1"}.mdi-swap-vertical:before{content:"\F04E2"}.mdi-swap-vertical-bold:before{content:"\F0BCE"}.mdi-swap-vertical-circle:before{content:"\F0FE3"}.mdi-swap-vertical-circle-outline:before{content:"\F0FE4"}.mdi-swap-vertical-variant:before{content:"\F08C2"}.mdi-swim:before{content:"\F04E3"}.mdi-switch:before{content:"\F04E4"}.mdi-sword:before{content:"\F04E5"}.mdi-sword-cross:before{content:"\F0787"}.mdi-syllabary-hangul:before{content:"\F1333"}.mdi-syllabary-hiragana:before{content:"\F1334"}.mdi-syllabary-katakana:before{content:"\F1335"}.mdi-syllabary-katakana-halfwidth:before{content:"\F1336"}.mdi-symbol:before{content:"\F1501"}.mdi-symfony:before{content:"\F0AE6"}.mdi-synagogue:before{content:"\F1B04"}.mdi-synagogue-outline:before{content:"\F1B05"}.mdi-sync:before{content:"\F04E6"}.mdi-sync-alert:before{content:"\F04E7"}.mdi-sync-circle:before{content:"\F1378"}.mdi-sync-off:before{content:"\F04E8"}.mdi-tab:before{content:"\F04E9"}.mdi-tab-minus:before{content:"\F0B4B"}.mdi-tab-plus:before{content:"\F075C"}.mdi-tab-remove:before{content:"\F0B4C"}.mdi-tab-search:before{content:"\F199E"}.mdi-tab-unselected:before{content:"\F04EA"}.mdi-table:before{content:"\F04EB"}.mdi-table-account:before{content:"\F13B9"}.mdi-table-alert:before{content:"\F13BA"}.mdi-table-arrow-down:before{content:"\F13BB"}.mdi-table-arrow-left:before{content:"\F13BC"}.mdi-table-arrow-right:before{content:"\F13BD"}.mdi-table-arrow-up:before{content:"\F13BE"}.mdi-table-border:before{content:"\F0A18"}.mdi-table-cancel:before{content:"\F13BF"}.mdi-table-chair:before{content:"\F1061"}.mdi-table-check:before{content:"\F13C0"}.mdi-table-clock:before{content:"\F13C1"}.mdi-table-cog:before{content:"\F13C2"}.mdi-table-column:before{content:"\F0835"}.mdi-table-column-plus-after:before{content:"\F04EC"}.mdi-table-column-plus-before:before{content:"\F04ED"}.mdi-table-column-remove:before{content:"\F04EE"}.mdi-table-column-width:before{content:"\F04EF"}.mdi-table-edit:before{content:"\F04F0"}.mdi-table-eye:before{content:"\F1094"}.mdi-table-eye-off:before{content:"\F13C3"}.mdi-table-filter:before{content:"\F1B8C"}.mdi-table-furniture:before{content:"\F05BC"}.mdi-table-headers-eye:before{content:"\F121D"}.mdi-table-headers-eye-off:before{content:"\F121E"}.mdi-table-heart:before{content:"\F13C4"}.mdi-table-key:before{content:"\F13C5"}.mdi-table-large:before{content:"\F04F1"}.mdi-table-large-plus:before{content:"\F0F87"}.mdi-table-large-remove:before{content:"\F0F88"}.mdi-table-lock:before{content:"\F13C6"}.mdi-table-merge-cells:before{content:"\F09A6"}.mdi-table-minus:before{content:"\F13C7"}.mdi-table-multiple:before{content:"\F13C8"}.mdi-table-network:before{content:"\F13C9"}.mdi-table-of-contents:before{content:"\F0836"}.mdi-table-off:before{content:"\F13CA"}.mdi-table-picnic:before{content:"\F1743"}.mdi-table-pivot:before{content:"\F183C"}.mdi-table-plus:before{content:"\F0A75"}.mdi-table-question:before{content:"\F1B21"}.mdi-table-refresh:before{content:"\F13A0"}.mdi-table-remove:before{content:"\F0A76"}.mdi-table-row:before{content:"\F0837"}.mdi-table-row-height:before{content:"\F04F2"}.mdi-table-row-plus-after:before{content:"\F04F3"}.mdi-table-row-plus-before:before{content:"\F04F4"}.mdi-table-row-remove:before{content:"\F04F5"}.mdi-table-search:before{content:"\F090F"}.mdi-table-settings:before{content:"\F0838"}.mdi-table-split-cell:before{content:"\F142A"}.mdi-table-star:before{content:"\F13CB"}.mdi-table-sync:before{content:"\F13A1"}.mdi-table-tennis:before{content:"\F0E68"}.mdi-tablet:before{content:"\F04F6"}.mdi-tablet-cellphone:before{content:"\F09A7"}.mdi-tablet-dashboard:before{content:"\F0ECE"}.mdi-taco:before{content:"\F0762"}.mdi-tag:before{content:"\F04F9"}.mdi-tag-arrow-down:before{content:"\F172B"}.mdi-tag-arrow-down-outline:before{content:"\F172C"}.mdi-tag-arrow-left:before{content:"\F172D"}.mdi-tag-arrow-left-outline:before{content:"\F172E"}.mdi-tag-arrow-right:before{content:"\F172F"}.mdi-tag-arrow-right-outline:before{content:"\F1730"}.mdi-tag-arrow-up:before{content:"\F1731"}.mdi-tag-arrow-up-outline:before{content:"\F1732"}.mdi-tag-check:before{content:"\F1A7A"}.mdi-tag-check-outline:before{content:"\F1A7B"}.mdi-tag-edit:before{content:"\F1C9C"}.mdi-tag-edit-outline:before{content:"\F1C9D"}.mdi-tag-faces:before{content:"\F04FA"}.mdi-tag-heart:before{content:"\F068B"}.mdi-tag-heart-outline:before{content:"\F0BCF"}.mdi-tag-hidden:before{content:"\F1C76"}.mdi-tag-minus:before{content:"\F0910"}.mdi-tag-minus-outline:before{content:"\F121F"}.mdi-tag-multiple:before{content:"\F04FB"}.mdi-tag-multiple-outline:before{content:"\F12F7"}.mdi-tag-off:before{content:"\F1220"}.mdi-tag-off-outline:before{content:"\F1221"}.mdi-tag-outline:before{content:"\F04FC"}.mdi-tag-plus:before{content:"\F0722"}.mdi-tag-plus-outline:before{content:"\F1222"}.mdi-tag-remove:before{content:"\F0723"}.mdi-tag-remove-outline:before{content:"\F1223"}.mdi-tag-search:before{content:"\F1907"}.mdi-tag-search-outline:before{content:"\F1908"}.mdi-tag-text:before{content:"\F1224"}.mdi-tag-text-outline:before{content:"\F04FD"}.mdi-tailwind:before{content:"\F13FF"}.mdi-tally-mark-1:before{content:"\F1ABC"}.mdi-tally-mark-2:before{content:"\F1ABD"}.mdi-tally-mark-3:before{content:"\F1ABE"}.mdi-tally-mark-4:before{content:"\F1ABF"}.mdi-tally-mark-5:before{content:"\F1AC0"}.mdi-tangram:before{content:"\F04F8"}.mdi-tank:before{content:"\F0D3A"}.mdi-tanker-truck:before{content:"\F0FE5"}.mdi-tape-drive:before{content:"\F16DF"}.mdi-tape-measure:before{content:"\F0B4D"}.mdi-target:before{content:"\F04FE"}.mdi-target-account:before{content:"\F0BD0"}.mdi-target-variant:before{content:"\F0A77"}.mdi-taxi:before{content:"\F04FF"}.mdi-tea:before{content:"\F0D9E"}.mdi-tea-outline:before{content:"\F0D9F"}.mdi-teamviewer:before{content:"\F0500"}.mdi-teddy-bear:before{content:"\F18FB"}.mdi-telescope:before{content:"\F0B4E"}.mdi-television:before{content:"\F0502"}.mdi-television-ambient-light:before{content:"\F1356"}.mdi-television-box:before{content:"\F0839"}.mdi-television-classic:before{content:"\F07F4"}.mdi-television-classic-off:before{content:"\F083A"}.mdi-television-guide:before{content:"\F0503"}.mdi-television-off:before{content:"\F083B"}.mdi-television-pause:before{content:"\F0F89"}.mdi-television-play:before{content:"\F0ECF"}.mdi-television-shimmer:before{content:"\F1110"}.mdi-television-speaker:before{content:"\F1B1B"}.mdi-television-speaker-off:before{content:"\F1B1C"}.mdi-television-stop:before{content:"\F0F8A"}.mdi-temperature-celsius:before{content:"\F0504"}.mdi-temperature-fahrenheit:before{content:"\F0505"}.mdi-temperature-kelvin:before{content:"\F0506"}.mdi-temple-buddhist:before{content:"\F1B06"}.mdi-temple-buddhist-outline:before{content:"\F1B07"}.mdi-temple-hindu:before{content:"\F1B08"}.mdi-temple-hindu-outline:before{content:"\F1B09"}.mdi-tennis:before{content:"\F0DA0"}.mdi-tennis-ball:before{content:"\F0507"}.mdi-tennis-ball-outline:before{content:"\F1C5F"}.mdi-tent:before{content:"\F0508"}.mdi-terraform:before{content:"\F1062"}.mdi-terrain:before{content:"\F0509"}.mdi-test-tube:before{content:"\F0668"}.mdi-test-tube-empty:before{content:"\F0911"}.mdi-test-tube-off:before{content:"\F0912"}.mdi-text:before{content:"\F09A8"}.mdi-text-account:before{content:"\F1570"}.mdi-text-box:before{content:"\F021A"}.mdi-text-box-check:before{content:"\F0EA6"}.mdi-text-box-check-outline:before{content:"\F0EA7"}.mdi-text-box-edit:before{content:"\F1A7C"}.mdi-text-box-edit-outline:before{content:"\F1A7D"}.mdi-text-box-minus:before{content:"\F0EA8"}.mdi-text-box-minus-outline:before{content:"\F0EA9"}.mdi-text-box-multiple:before{content:"\F0AB7"}.mdi-text-box-multiple-outline:before{content:"\F0AB8"}.mdi-text-box-outline:before{content:"\F09ED"}.mdi-text-box-plus:before{content:"\F0EAA"}.mdi-text-box-plus-outline:before{content:"\F0EAB"}.mdi-text-box-remove:before{content:"\F0EAC"}.mdi-text-box-remove-outline:before{content:"\F0EAD"}.mdi-text-box-search:before{content:"\F0EAE"}.mdi-text-box-search-outline:before{content:"\F0EAF"}.mdi-text-long:before{content:"\F09AA"}.mdi-text-recognition:before{content:"\F113D"}.mdi-text-search:before{content:"\F13B8"}.mdi-text-search-variant:before{content:"\F1A7E"}.mdi-text-shadow:before{content:"\F0669"}.mdi-text-short:before{content:"\F09A9"}.mdi-texture:before{content:"\F050C"}.mdi-texture-box:before{content:"\F0FE6"}.mdi-theater:before{content:"\F050D"}.mdi-theme-light-dark:before{content:"\F050E"}.mdi-thermometer:before{content:"\F050F"}.mdi-thermometer-alert:before{content:"\F0E01"}.mdi-thermometer-auto:before{content:"\F1B0F"}.mdi-thermometer-bluetooth:before{content:"\F1895"}.mdi-thermometer-check:before{content:"\F1A7F"}.mdi-thermometer-chevron-down:before{content:"\F0E02"}.mdi-thermometer-chevron-up:before{content:"\F0E03"}.mdi-thermometer-high:before{content:"\F10C2"}.mdi-thermometer-lines:before{content:"\F0510"}.mdi-thermometer-low:before{content:"\F10C3"}.mdi-thermometer-minus:before{content:"\F0E04"}.mdi-thermometer-off:before{content:"\F1531"}.mdi-thermometer-plus:before{content:"\F0E05"}.mdi-thermometer-probe:before{content:"\F1B2B"}.mdi-thermometer-probe-off:before{content:"\F1B2C"}.mdi-thermometer-water:before{content:"\F1A80"}.mdi-thermostat:before{content:"\F0393"}.mdi-thermostat-auto:before{content:"\F1B17"}.mdi-thermostat-box:before{content:"\F0891"}.mdi-thermostat-box-auto:before{content:"\F1B18"}.mdi-thermostat-cog:before{content:"\F1C80"}.mdi-thought-bubble:before{content:"\F07F6"}.mdi-thought-bubble-outline:before{content:"\F07F7"}.mdi-thumb-down:before{content:"\F0511"}.mdi-thumb-down-outline:before{content:"\F0512"}.mdi-thumb-up:before{content:"\F0513"}.mdi-thumb-up-outline:before{content:"\F0514"}.mdi-thumbs-up-down:before{content:"\F0515"}.mdi-thumbs-up-down-outline:before{content:"\F1914"}.mdi-ticket:before{content:"\F0516"}.mdi-ticket-account:before{content:"\F0517"}.mdi-ticket-confirmation:before{content:"\F0518"}.mdi-ticket-confirmation-outline:before{content:"\F13AA"}.mdi-ticket-outline:before{content:"\F0913"}.mdi-ticket-percent:before{content:"\F0724"}.mdi-ticket-percent-outline:before{content:"\F142B"}.mdi-tie:before{content:"\F0519"}.mdi-tilde:before{content:"\F0725"}.mdi-tilde-off:before{content:"\F18F3"}.mdi-timelapse:before{content:"\F051A"}.mdi-timeline:before{content:"\F0BD1"}.mdi-timeline-alert:before{content:"\F0F95"}.mdi-timeline-alert-outline:before{content:"\F0F98"}.mdi-timeline-check:before{content:"\F1532"}.mdi-timeline-check-outline:before{content:"\F1533"}.mdi-timeline-clock:before{content:"\F11FB"}.mdi-timeline-clock-outline:before{content:"\F11FC"}.mdi-timeline-minus:before{content:"\F1534"}.mdi-timeline-minus-outline:before{content:"\F1535"}.mdi-timeline-outline:before{content:"\F0BD2"}.mdi-timeline-plus:before{content:"\F0F96"}.mdi-timeline-plus-outline:before{content:"\F0F97"}.mdi-timeline-question:before{content:"\F0F99"}.mdi-timeline-question-outline:before{content:"\F0F9A"}.mdi-timeline-remove:before{content:"\F1536"}.mdi-timeline-remove-outline:before{content:"\F1537"}.mdi-timeline-text:before{content:"\F0BD3"}.mdi-timeline-text-outline:before{content:"\F0BD4"}.mdi-timer:before{content:"\F13AB"}.mdi-timer-10:before{content:"\F051C"}.mdi-timer-3:before{content:"\F051D"}.mdi-timer-alert:before{content:"\F1ACC"}.mdi-timer-alert-outline:before{content:"\F1ACD"}.mdi-timer-cancel:before{content:"\F1ACE"}.mdi-timer-cancel-outline:before{content:"\F1ACF"}.mdi-timer-check:before{content:"\F1AD0"}.mdi-timer-check-outline:before{content:"\F1AD1"}.mdi-timer-cog:before{content:"\F1925"}.mdi-timer-cog-outline:before{content:"\F1926"}.mdi-timer-edit:before{content:"\F1AD2"}.mdi-timer-edit-outline:before{content:"\F1AD3"}.mdi-timer-lock:before{content:"\F1AD4"}.mdi-timer-lock-open:before{content:"\F1AD5"}.mdi-timer-lock-open-outline:before{content:"\F1AD6"}.mdi-timer-lock-outline:before{content:"\F1AD7"}.mdi-timer-marker:before{content:"\F1AD8"}.mdi-timer-marker-outline:before{content:"\F1AD9"}.mdi-timer-minus:before{content:"\F1ADA"}.mdi-timer-minus-outline:before{content:"\F1ADB"}.mdi-timer-music:before{content:"\F1ADC"}.mdi-timer-music-outline:before{content:"\F1ADD"}.mdi-timer-off:before{content:"\F13AC"}.mdi-timer-off-outline:before{content:"\F051E"}.mdi-timer-outline:before{content:"\F051B"}.mdi-timer-pause:before{content:"\F1ADE"}.mdi-timer-pause-outline:before{content:"\F1ADF"}.mdi-timer-play:before{content:"\F1AE0"}.mdi-timer-play-outline:before{content:"\F1AE1"}.mdi-timer-plus:before{content:"\F1AE2"}.mdi-timer-plus-outline:before{content:"\F1AE3"}.mdi-timer-refresh:before{content:"\F1AE4"}.mdi-timer-refresh-outline:before{content:"\F1AE5"}.mdi-timer-remove:before{content:"\F1AE6"}.mdi-timer-remove-outline:before{content:"\F1AE7"}.mdi-timer-sand:before{content:"\F051F"}.mdi-timer-sand-complete:before{content:"\F199F"}.mdi-timer-sand-empty:before{content:"\F06AD"}.mdi-timer-sand-full:before{content:"\F078C"}.mdi-timer-sand-paused:before{content:"\F19A0"}.mdi-timer-settings:before{content:"\F1923"}.mdi-timer-settings-outline:before{content:"\F1924"}.mdi-timer-star:before{content:"\F1AE8"}.mdi-timer-star-outline:before{content:"\F1AE9"}.mdi-timer-stop:before{content:"\F1AEA"}.mdi-timer-stop-outline:before{content:"\F1AEB"}.mdi-timer-sync:before{content:"\F1AEC"}.mdi-timer-sync-outline:before{content:"\F1AED"}.mdi-timetable:before{content:"\F0520"}.mdi-tire:before{content:"\F1896"}.mdi-toaster:before{content:"\F1063"}.mdi-toaster-off:before{content:"\F11B7"}.mdi-toaster-oven:before{content:"\F0CD3"}.mdi-toggle-switch:before{content:"\F0521"}.mdi-toggle-switch-off:before{content:"\F0522"}.mdi-toggle-switch-off-outline:before{content:"\F0A19"}.mdi-toggle-switch-outline:before{content:"\F0A1A"}.mdi-toggle-switch-variant:before{content:"\F1A25"}.mdi-toggle-switch-variant-off:before{content:"\F1A26"}.mdi-toilet:before{content:"\F09AB"}.mdi-toolbox:before{content:"\F09AC"}.mdi-toolbox-outline:before{content:"\F09AD"}.mdi-tools:before{content:"\F1064"}.mdi-tooltip:before{content:"\F0523"}.mdi-tooltip-account:before{content:"\F000C"}.mdi-tooltip-cellphone:before{content:"\F183B"}.mdi-tooltip-check:before{content:"\F155C"}.mdi-tooltip-check-outline:before{content:"\F155D"}.mdi-tooltip-edit:before{content:"\F0524"}.mdi-tooltip-edit-outline:before{content:"\F12C5"}.mdi-tooltip-image:before{content:"\F0525"}.mdi-tooltip-image-outline:before{content:"\F0BD5"}.mdi-tooltip-minus:before{content:"\F155E"}.mdi-tooltip-minus-outline:before{content:"\F155F"}.mdi-tooltip-outline:before{content:"\F0526"}.mdi-tooltip-plus:before{content:"\F0BD6"}.mdi-tooltip-plus-outline:before{content:"\F0527"}.mdi-tooltip-question:before{content:"\F1BBA"}.mdi-tooltip-question-outline:before{content:"\F1BBB"}.mdi-tooltip-remove:before{content:"\F1560"}.mdi-tooltip-remove-outline:before{content:"\F1561"}.mdi-tooltip-text:before{content:"\F0528"}.mdi-tooltip-text-outline:before{content:"\F0BD7"}.mdi-tooth:before{content:"\F08C3"}.mdi-tooth-outline:before{content:"\F0529"}.mdi-toothbrush:before{content:"\F1129"}.mdi-toothbrush-electric:before{content:"\F112C"}.mdi-toothbrush-paste:before{content:"\F112A"}.mdi-torch:before{content:"\F1606"}.mdi-tortoise:before{content:"\F0D3B"}.mdi-toslink:before{content:"\F12B8"}.mdi-touch-text-outline:before{content:"\F1C60"}.mdi-tournament:before{content:"\F09AE"}.mdi-tow-truck:before{content:"\F083C"}.mdi-tower-beach:before{content:"\F0681"}.mdi-tower-fire:before{content:"\F0682"}.mdi-town-hall:before{content:"\F1875"}.mdi-toy-brick:before{content:"\F1288"}.mdi-toy-brick-marker:before{content:"\F1289"}.mdi-toy-brick-marker-outline:before{content:"\F128A"}.mdi-toy-brick-minus:before{content:"\F128B"}.mdi-toy-brick-minus-outline:before{content:"\F128C"}.mdi-toy-brick-outline:before{content:"\F128D"}.mdi-toy-brick-plus:before{content:"\F128E"}.mdi-toy-brick-plus-outline:before{content:"\F128F"}.mdi-toy-brick-remove:before{content:"\F1290"}.mdi-toy-brick-remove-outline:before{content:"\F1291"}.mdi-toy-brick-search:before{content:"\F1292"}.mdi-toy-brick-search-outline:before{content:"\F1293"}.mdi-track-light:before{content:"\F0914"}.mdi-track-light-off:before{content:"\F1B01"}.mdi-trackpad:before{content:"\F07F8"}.mdi-trackpad-lock:before{content:"\F0933"}.mdi-tractor:before{content:"\F0892"}.mdi-tractor-variant:before{content:"\F14C4"}.mdi-trademark:before{content:"\F0A78"}.mdi-traffic-cone:before{content:"\F137C"}.mdi-traffic-light:before{content:"\F052B"}.mdi-traffic-light-outline:before{content:"\F182A"}.mdi-train:before{content:"\F052C"}.mdi-train-bus:before{content:"\F1CC7"}.mdi-train-car:before{content:"\F0BD8"}.mdi-train-car-autorack:before{content:"\F1B2D"}.mdi-train-car-box:before{content:"\F1B2E"}.mdi-train-car-box-full:before{content:"\F1B2F"}.mdi-train-car-box-open:before{content:"\F1B30"}.mdi-train-car-caboose:before{content:"\F1B31"}.mdi-train-car-centerbeam:before{content:"\F1B32"}.mdi-train-car-centerbeam-full:before{content:"\F1B33"}.mdi-train-car-container:before{content:"\F1B34"}.mdi-train-car-flatbed:before{content:"\F1B35"}.mdi-train-car-flatbed-car:before{content:"\F1B36"}.mdi-train-car-flatbed-tank:before{content:"\F1B37"}.mdi-train-car-gondola:before{content:"\F1B38"}.mdi-train-car-gondola-full:before{content:"\F1B39"}.mdi-train-car-hopper:before{content:"\F1B3A"}.mdi-train-car-hopper-covered:before{content:"\F1B3B"}.mdi-train-car-hopper-full:before{content:"\F1B3C"}.mdi-train-car-intermodal:before{content:"\F1B3D"}.mdi-train-car-passenger:before{content:"\F1733"}.mdi-train-car-passenger-door:before{content:"\F1734"}.mdi-train-car-passenger-door-open:before{content:"\F1735"}.mdi-train-car-passenger-variant:before{content:"\F1736"}.mdi-train-car-tank:before{content:"\F1B3E"}.mdi-train-variant:before{content:"\F08C4"}.mdi-tram:before{content:"\F052D"}.mdi-tram-side:before{content:"\F0FE7"}.mdi-transcribe:before{content:"\F052E"}.mdi-transcribe-close:before{content:"\F052F"}.mdi-transfer:before{content:"\F1065"}.mdi-transfer-down:before{content:"\F0DA1"}.mdi-transfer-left:before{content:"\F0DA2"}.mdi-transfer-right:before{content:"\F0530"}.mdi-transfer-up:before{content:"\F0DA3"}.mdi-transit-connection:before{content:"\F0D3C"}.mdi-transit-connection-horizontal:before{content:"\F1546"}.mdi-transit-connection-variant:before{content:"\F0D3D"}.mdi-transit-detour:before{content:"\F0F8B"}.mdi-transit-skip:before{content:"\F1515"}.mdi-transit-transfer:before{content:"\F06AE"}.mdi-transition:before{content:"\F0915"}.mdi-transition-masked:before{content:"\F0916"}.mdi-translate:before{content:"\F05CA"}.mdi-translate-off:before{content:"\F0E06"}.mdi-translate-variant:before{content:"\F1B99"}.mdi-transmission-tower:before{content:"\F0D3E"}.mdi-transmission-tower-export:before{content:"\F192C"}.mdi-transmission-tower-import:before{content:"\F192D"}.mdi-transmission-tower-off:before{content:"\F19DD"}.mdi-trash-can:before{content:"\F0A79"}.mdi-trash-can-outline:before{content:"\F0A7A"}.mdi-tray:before{content:"\F1294"}.mdi-tray-alert:before{content:"\F1295"}.mdi-tray-arrow-down:before{content:"\F0120"}.mdi-tray-arrow-up:before{content:"\F011D"}.mdi-tray-full:before{content:"\F1296"}.mdi-tray-minus:before{content:"\F1297"}.mdi-tray-plus:before{content:"\F1298"}.mdi-tray-remove:before{content:"\F1299"}.mdi-treasure-chest:before{content:"\F0726"}.mdi-treasure-chest-outline:before{content:"\F1C77"}.mdi-tree:before{content:"\F0531"}.mdi-tree-outline:before{content:"\F0E69"}.mdi-trello:before{content:"\F0532"}.mdi-trending-down:before{content:"\F0533"}.mdi-trending-neutral:before{content:"\F0534"}.mdi-trending-up:before{content:"\F0535"}.mdi-triangle:before{content:"\F0536"}.mdi-triangle-down:before{content:"\F1C56"}.mdi-triangle-down-outline:before{content:"\F1C57"}.mdi-triangle-outline:before{content:"\F0537"}.mdi-triangle-small-down:before{content:"\F1A09"}.mdi-triangle-small-up:before{content:"\F1A0A"}.mdi-triangle-wave:before{content:"\F147C"}.mdi-triforce:before{content:"\F0BD9"}.mdi-trophy:before{content:"\F0538"}.mdi-trophy-award:before{content:"\F0539"}.mdi-trophy-broken:before{content:"\F0DA4"}.mdi-trophy-outline:before{content:"\F053A"}.mdi-trophy-variant:before{content:"\F053B"}.mdi-trophy-variant-outline:before{content:"\F053C"}.mdi-truck:before{content:"\F053D"}.mdi-truck-alert:before{content:"\F19DE"}.mdi-truck-alert-outline:before{content:"\F19DF"}.mdi-truck-cargo-container:before{content:"\F18D8"}.mdi-truck-check:before{content:"\F0CD4"}.mdi-truck-check-outline:before{content:"\F129A"}.mdi-truck-delivery:before{content:"\F053E"}.mdi-truck-delivery-outline:before{content:"\F129B"}.mdi-truck-fast:before{content:"\F0788"}.mdi-truck-fast-outline:before{content:"\F129C"}.mdi-truck-flatbed:before{content:"\F1891"}.mdi-truck-minus:before{content:"\F19AE"}.mdi-truck-minus-outline:before{content:"\F19BD"}.mdi-truck-off-road:before{content:"\F1C9E"}.mdi-truck-off-road-off:before{content:"\F1C9F"}.mdi-truck-outline:before{content:"\F129D"}.mdi-truck-plus:before{content:"\F19AD"}.mdi-truck-plus-outline:before{content:"\F19BC"}.mdi-truck-remove:before{content:"\F19AF"}.mdi-truck-remove-outline:before{content:"\F19BE"}.mdi-truck-snowflake:before{content:"\F19A6"}.mdi-truck-trailer:before{content:"\F0727"}.mdi-trumpet:before{content:"\F1096"}.mdi-tshirt-crew:before{content:"\F0A7B"}.mdi-tshirt-crew-outline:before{content:"\F053F"}.mdi-tshirt-v:before{content:"\F0A7C"}.mdi-tshirt-v-outline:before{content:"\F0540"}.mdi-tsunami:before{content:"\F1A81"}.mdi-tumble-dryer:before{content:"\F0917"}.mdi-tumble-dryer-alert:before{content:"\F11BA"}.mdi-tumble-dryer-off:before{content:"\F11BB"}.mdi-tune:before{content:"\F062E"}.mdi-tune-variant:before{content:"\F1542"}.mdi-tune-vertical:before{content:"\F066A"}.mdi-tune-vertical-variant:before{content:"\F1543"}.mdi-tunnel:before{content:"\F183D"}.mdi-tunnel-outline:before{content:"\F183E"}.mdi-turbine:before{content:"\F1A82"}.mdi-turkey:before{content:"\F171B"}.mdi-turnstile:before{content:"\F0CD5"}.mdi-turnstile-outline:before{content:"\F0CD6"}.mdi-turtle:before{content:"\F0CD7"}.mdi-twitch:before{content:"\F0543"}.mdi-twitter:before{content:"\F0544"}.mdi-two-factor-authentication:before{content:"\F09AF"}.mdi-typewriter:before{content:"\F0F2D"}.mdi-ubisoft:before{content:"\F0BDA"}.mdi-ubuntu:before{content:"\F0548"}.mdi-ufo:before{content:"\F10C4"}.mdi-ufo-outline:before{content:"\F10C5"}.mdi-ultra-high-definition:before{content:"\F07F9"}.mdi-umbraco:before{content:"\F0549"}.mdi-umbrella:before{content:"\F054A"}.mdi-umbrella-beach:before{content:"\F188A"}.mdi-umbrella-beach-outline:before{content:"\F188B"}.mdi-umbrella-closed:before{content:"\F09B0"}.mdi-umbrella-closed-outline:before{content:"\F13E2"}.mdi-umbrella-closed-variant:before{content:"\F13E1"}.mdi-umbrella-outline:before{content:"\F054B"}.mdi-underwear-outline:before{content:"\F1D0F"}.mdi-undo:before{content:"\F054C"}.mdi-undo-variant:before{content:"\F054D"}.mdi-unfold-less-horizontal:before{content:"\F054E"}.mdi-unfold-less-vertical:before{content:"\F0760"}.mdi-unfold-more-horizontal:before{content:"\F054F"}.mdi-unfold-more-vertical:before{content:"\F0761"}.mdi-ungroup:before{content:"\F0550"}.mdi-unicode:before{content:"\F0ED0"}.mdi-unicorn:before{content:"\F15C2"}.mdi-unicorn-variant:before{content:"\F15C3"}.mdi-unicycle:before{content:"\F15E5"}.mdi-unity:before{content:"\F06AF"}.mdi-unreal:before{content:"\F09B1"}.mdi-update:before{content:"\F06B0"}.mdi-upload:before{content:"\F0552"}.mdi-upload-box:before{content:"\F1D10"}.mdi-upload-box-outline:before{content:"\F1D11"}.mdi-upload-circle:before{content:"\F1D12"}.mdi-upload-circle-outline:before{content:"\F1D13"}.mdi-upload-lock:before{content:"\F1373"}.mdi-upload-lock-outline:before{content:"\F1374"}.mdi-upload-multiple:before{content:"\F083D"}.mdi-upload-multiple-outline:before{content:"\F1D14"}.mdi-upload-network:before{content:"\F06F6"}.mdi-upload-network-outline:before{content:"\F0CD8"}.mdi-upload-off:before{content:"\F10C6"}.mdi-upload-off-outline:before{content:"\F10C7"}.mdi-upload-outline:before{content:"\F0E07"}.mdi-usb:before{content:"\F0553"}.mdi-usb-c-port:before{content:"\F1CBF"}.mdi-usb-flash-drive:before{content:"\F129E"}.mdi-usb-flash-drive-outline:before{content:"\F129F"}.mdi-usb-port:before{content:"\F11F0"}.mdi-vacuum:before{content:"\F19A1"}.mdi-vacuum-outline:before{content:"\F19A2"}.mdi-valve:before{content:"\F1066"}.mdi-valve-closed:before{content:"\F1067"}.mdi-valve-open:before{content:"\F1068"}.mdi-van-passenger:before{content:"\F07FA"}.mdi-van-utility:before{content:"\F07FB"}.mdi-vanish:before{content:"\F07FC"}.mdi-vanish-quarter:before{content:"\F1554"}.mdi-vanity-light:before{content:"\F11E1"}.mdi-variable:before{content:"\F0AE7"}.mdi-variable-box:before{content:"\F1111"}.mdi-vector-arrange-above:before{content:"\F0554"}.mdi-vector-arrange-below:before{content:"\F0555"}.mdi-vector-bezier:before{content:"\F0AE8"}.mdi-vector-circle:before{content:"\F0556"}.mdi-vector-circle-variant:before{content:"\F0557"}.mdi-vector-combine:before{content:"\F0558"}.mdi-vector-curve:before{content:"\F0559"}.mdi-vector-difference:before{content:"\F055A"}.mdi-vector-difference-ab:before{content:"\F055B"}.mdi-vector-difference-ba:before{content:"\F055C"}.mdi-vector-ellipse:before{content:"\F0893"}.mdi-vector-intersection:before{content:"\F055D"}.mdi-vector-line:before{content:"\F055E"}.mdi-vector-link:before{content:"\F0FE8"}.mdi-vector-point:before{content:"\F01C4"}.mdi-vector-point-edit:before{content:"\F09E8"}.mdi-vector-point-minus:before{content:"\F1B78"}.mdi-vector-point-plus:before{content:"\F1B79"}.mdi-vector-point-select:before{content:"\F055F"}.mdi-vector-polygon:before{content:"\F0560"}.mdi-vector-polygon-variant:before{content:"\F1856"}.mdi-vector-polyline:before{content:"\F0561"}.mdi-vector-polyline-edit:before{content:"\F1225"}.mdi-vector-polyline-minus:before{content:"\F1226"}.mdi-vector-polyline-plus:before{content:"\F1227"}.mdi-vector-polyline-remove:before{content:"\F1228"}.mdi-vector-radius:before{content:"\F074A"}.mdi-vector-rectangle:before{content:"\F05C6"}.mdi-vector-selection:before{content:"\F0562"}.mdi-vector-square:before{content:"\F0001"}.mdi-vector-square-close:before{content:"\F1857"}.mdi-vector-square-edit:before{content:"\F18D9"}.mdi-vector-square-minus:before{content:"\F18DA"}.mdi-vector-square-open:before{content:"\F1858"}.mdi-vector-square-plus:before{content:"\F18DB"}.mdi-vector-square-remove:before{content:"\F18DC"}.mdi-vector-triangle:before{content:"\F0563"}.mdi-vector-union:before{content:"\F0564"}.mdi-vhs:before{content:"\F0A1B"}.mdi-vibrate:before{content:"\F0566"}.mdi-vibrate-off:before{content:"\F0CD9"}.mdi-video:before{content:"\F0567"}.mdi-video-2d:before{content:"\F1A1C"}.mdi-video-3d:before{content:"\F07FD"}.mdi-video-3d-off:before{content:"\F13D9"}.mdi-video-3d-variant:before{content:"\F0ED1"}.mdi-video-4k-box:before{content:"\F083E"}.mdi-video-account:before{content:"\F0919"}.mdi-video-box:before{content:"\F00FD"}.mdi-video-box-off:before{content:"\F00FE"}.mdi-video-check:before{content:"\F1069"}.mdi-video-check-outline:before{content:"\F106A"}.mdi-video-high-definition:before{content:"\F152E"}.mdi-video-image:before{content:"\F091A"}.mdi-video-input-antenna:before{content:"\F083F"}.mdi-video-input-component:before{content:"\F0840"}.mdi-video-input-hdmi:before{content:"\F0841"}.mdi-video-input-scart:before{content:"\F0F8C"}.mdi-video-input-svideo:before{content:"\F0842"}.mdi-video-marker:before{content:"\F19A9"}.mdi-video-marker-outline:before{content:"\F19AA"}.mdi-video-minus:before{content:"\F09B2"}.mdi-video-minus-outline:before{content:"\F02BA"}.mdi-video-off:before{content:"\F0568"}.mdi-video-off-outline:before{content:"\F0BDB"}.mdi-video-outline:before{content:"\F0BDC"}.mdi-video-plus:before{content:"\F09B3"}.mdi-video-plus-outline:before{content:"\F01D3"}.mdi-video-stabilization:before{content:"\F091B"}.mdi-video-standard-definition:before{content:"\F1CA0"}.mdi-video-switch:before{content:"\F0569"}.mdi-video-switch-outline:before{content:"\F0790"}.mdi-video-vintage:before{content:"\F0A1C"}.mdi-video-wireless:before{content:"\F0ED2"}.mdi-video-wireless-outline:before{content:"\F0ED3"}.mdi-view-agenda:before{content:"\F056A"}.mdi-view-agenda-outline:before{content:"\F11D8"}.mdi-view-array:before{content:"\F056B"}.mdi-view-array-outline:before{content:"\F1485"}.mdi-view-carousel:before{content:"\F056C"}.mdi-view-carousel-outline:before{content:"\F1486"}.mdi-view-column:before{content:"\F056D"}.mdi-view-column-outline:before{content:"\F1487"}.mdi-view-comfy:before{content:"\F0E6A"}.mdi-view-comfy-outline:before{content:"\F1488"}.mdi-view-compact:before{content:"\F0E6B"}.mdi-view-compact-outline:before{content:"\F0E6C"}.mdi-view-dashboard:before{content:"\F056E"}.mdi-view-dashboard-edit:before{content:"\F1947"}.mdi-view-dashboard-edit-outline:before{content:"\F1948"}.mdi-view-dashboard-outline:before{content:"\F0A1D"}.mdi-view-dashboard-variant:before{content:"\F0843"}.mdi-view-dashboard-variant-outline:before{content:"\F1489"}.mdi-view-day:before{content:"\F056F"}.mdi-view-day-outline:before{content:"\F148A"}.mdi-view-gallery:before{content:"\F1888"}.mdi-view-gallery-outline:before{content:"\F1889"}.mdi-view-grid:before{content:"\F0570"}.mdi-view-grid-compact:before{content:"\F1C61"}.mdi-view-grid-outline:before{content:"\F11D9"}.mdi-view-grid-plus:before{content:"\F0F8D"}.mdi-view-grid-plus-outline:before{content:"\F11DA"}.mdi-view-headline:before{content:"\F0571"}.mdi-view-list:before{content:"\F0572"}.mdi-view-list-outline:before{content:"\F148B"}.mdi-view-module:before{content:"\F0573"}.mdi-view-module-outline:before{content:"\F148C"}.mdi-view-parallel:before{content:"\F0728"}.mdi-view-parallel-outline:before{content:"\F148D"}.mdi-view-quilt:before{content:"\F0574"}.mdi-view-quilt-outline:before{content:"\F148E"}.mdi-view-sequential:before{content:"\F0729"}.mdi-view-sequential-outline:before{content:"\F148F"}.mdi-view-split-horizontal:before{content:"\F0BCB"}.mdi-view-split-vertical:before{content:"\F0BCC"}.mdi-view-stream:before{content:"\F0575"}.mdi-view-stream-outline:before{content:"\F1490"}.mdi-view-week:before{content:"\F0576"}.mdi-view-week-outline:before{content:"\F1491"}.mdi-vimeo:before{content:"\F0577"}.mdi-violin:before{content:"\F060F"}.mdi-virtual-reality:before{content:"\F0894"}.mdi-virus:before{content:"\F13B6"}.mdi-virus-off:before{content:"\F18E1"}.mdi-virus-off-outline:before{content:"\F18E2"}.mdi-virus-outline:before{content:"\F13B7"}.mdi-vlc:before{content:"\F057C"}.mdi-voicemail:before{content:"\F057D"}.mdi-volcano:before{content:"\F1A83"}.mdi-volcano-outline:before{content:"\F1A84"}.mdi-volleyball:before{content:"\F09B4"}.mdi-volume-equal:before{content:"\F1B10"}.mdi-volume-high:before{content:"\F057E"}.mdi-volume-low:before{content:"\F057F"}.mdi-volume-medium:before{content:"\F0580"}.mdi-volume-minus:before{content:"\F075E"}.mdi-volume-mute:before{content:"\F075F"}.mdi-volume-off:before{content:"\F0581"}.mdi-volume-plus:before{content:"\F075D"}.mdi-volume-source:before{content:"\F1120"}.mdi-volume-variant-off:before{content:"\F0E08"}.mdi-volume-vibrate:before{content:"\F1121"}.mdi-vote:before{content:"\F0A1F"}.mdi-vote-outline:before{content:"\F0A20"}.mdi-vpn:before{content:"\F0582"}.mdi-vuejs:before{content:"\F0844"}.mdi-vuetify:before{content:"\F0E6D"}.mdi-walk:before{content:"\F0583"}.mdi-wall:before{content:"\F07FE"}.mdi-wall-fire:before{content:"\F1A11"}.mdi-wall-sconce:before{content:"\F091C"}.mdi-wall-sconce-flat:before{content:"\F091D"}.mdi-wall-sconce-flat-outline:before{content:"\F17C9"}.mdi-wall-sconce-flat-variant:before{content:"\F041C"}.mdi-wall-sconce-flat-variant-outline:before{content:"\F17CA"}.mdi-wall-sconce-outline:before{content:"\F17CB"}.mdi-wall-sconce-round:before{content:"\F0748"}.mdi-wall-sconce-round-outline:before{content:"\F17CC"}.mdi-wall-sconce-round-variant:before{content:"\F091E"}.mdi-wall-sconce-round-variant-outline:before{content:"\F17CD"}.mdi-wallet:before{content:"\F0584"}.mdi-wallet-bifold:before{content:"\F1C58"}.mdi-wallet-bifold-outline:before{content:"\F1C59"}.mdi-wallet-giftcard:before{content:"\F0585"}.mdi-wallet-membership:before{content:"\F0586"}.mdi-wallet-outline:before{content:"\F0BDD"}.mdi-wallet-plus:before{content:"\F0F8E"}.mdi-wallet-plus-outline:before{content:"\F0F8F"}.mdi-wallet-travel:before{content:"\F0587"}.mdi-wallpaper:before{content:"\F0E09"}.mdi-wan:before{content:"\F0588"}.mdi-wardrobe:before{content:"\F0F90"}.mdi-wardrobe-outline:before{content:"\F0F91"}.mdi-warehouse:before{content:"\F0F81"}.mdi-washing-machine:before{content:"\F072A"}.mdi-washing-machine-alert:before{content:"\F11BC"}.mdi-washing-machine-off:before{content:"\F11BD"}.mdi-watch:before{content:"\F0589"}.mdi-watch-export:before{content:"\F058A"}.mdi-watch-export-variant:before{content:"\F0895"}.mdi-watch-import:before{content:"\F058B"}.mdi-watch-import-variant:before{content:"\F0896"}.mdi-watch-variant:before{content:"\F0897"}.mdi-watch-vibrate:before{content:"\F06B1"}.mdi-watch-vibrate-off:before{content:"\F0CDA"}.mdi-water:before{content:"\F058C"}.mdi-water-alert:before{content:"\F1502"}.mdi-water-alert-outline:before{content:"\F1503"}.mdi-water-boiler:before{content:"\F0F92"}.mdi-water-boiler-alert:before{content:"\F11B3"}.mdi-water-boiler-auto:before{content:"\F1B98"}.mdi-water-boiler-off:before{content:"\F11B4"}.mdi-water-check:before{content:"\F1504"}.mdi-water-check-outline:before{content:"\F1505"}.mdi-water-circle:before{content:"\F1806"}.mdi-water-minus:before{content:"\F1506"}.mdi-water-minus-outline:before{content:"\F1507"}.mdi-water-off:before{content:"\F058D"}.mdi-water-off-outline:before{content:"\F1508"}.mdi-water-opacity:before{content:"\F1855"}.mdi-water-outline:before{content:"\F0E0A"}.mdi-water-percent:before{content:"\F058E"}.mdi-water-percent-alert:before{content:"\F1509"}.mdi-water-plus:before{content:"\F150A"}.mdi-water-plus-outline:before{content:"\F150B"}.mdi-water-polo:before{content:"\F12A0"}.mdi-water-pump:before{content:"\F058F"}.mdi-water-pump-off:before{content:"\F0F93"}.mdi-water-remove:before{content:"\F150C"}.mdi-water-remove-outline:before{content:"\F150D"}.mdi-water-sync:before{content:"\F17C6"}.mdi-water-thermometer:before{content:"\F1A85"}.mdi-water-thermometer-outline:before{content:"\F1A86"}.mdi-water-well:before{content:"\F106B"}.mdi-water-well-outline:before{content:"\F106C"}.mdi-waterfall:before{content:"\F1849"}.mdi-watering-can:before{content:"\F1481"}.mdi-watering-can-outline:before{content:"\F1482"}.mdi-watermark:before{content:"\F0612"}.mdi-wave:before{content:"\F0F2E"}.mdi-wave-arrow-down:before{content:"\F1CB0"}.mdi-wave-arrow-up:before{content:"\F1CB1"}.mdi-wave-undercurrent:before{content:"\F1CC0"}.mdi-waveform:before{content:"\F147D"}.mdi-waves:before{content:"\F078D"}.mdi-waves-arrow-left:before{content:"\F1859"}.mdi-waves-arrow-right:before{content:"\F185A"}.mdi-waves-arrow-up:before{content:"\F185B"}.mdi-waze:before{content:"\F0BDE"}.mdi-weather-cloudy:before{content:"\F0590"}.mdi-weather-cloudy-alert:before{content:"\F0F2F"}.mdi-weather-cloudy-arrow-right:before{content:"\F0E6E"}.mdi-weather-cloudy-clock:before{content:"\F18F6"}.mdi-weather-dust:before{content:"\F1B5A"}.mdi-weather-fog:before{content:"\F0591"}.mdi-weather-hail:before{content:"\F0592"}.mdi-weather-hazy:before{content:"\F0F30"}.mdi-weather-hurricane:before{content:"\F0898"}.mdi-weather-hurricane-outline:before{content:"\F1C78"}.mdi-weather-lightning:before{content:"\F0593"}.mdi-weather-lightning-rainy:before{content:"\F067E"}.mdi-weather-moonset:before{content:"\F1D15"}.mdi-weather-moonset-down:before{content:"\F1D16"}.mdi-weather-moonset-up:before{content:"\F1D17"}.mdi-weather-night:before{content:"\F0594"}.mdi-weather-night-partly-cloudy:before{content:"\F0F31"}.mdi-weather-partly-cloudy:before{content:"\F0595"}.mdi-weather-partly-lightning:before{content:"\F0F32"}.mdi-weather-partly-rainy:before{content:"\F0F33"}.mdi-weather-partly-snowy:before{content:"\F0F34"}.mdi-weather-partly-snowy-rainy:before{content:"\F0F35"}.mdi-weather-pouring:before{content:"\F0596"}.mdi-weather-rainy:before{content:"\F0597"}.mdi-weather-snowy:before{content:"\F0598"}.mdi-weather-snowy-heavy:before{content:"\F0F36"}.mdi-weather-snowy-rainy:before{content:"\F067F"}.mdi-weather-sunny:before{content:"\F0599"}.mdi-weather-sunny-alert:before{content:"\F0F37"}.mdi-weather-sunny-off:before{content:"\F14E4"}.mdi-weather-sunset:before{content:"\F059A"}.mdi-weather-sunset-down:before{content:"\F059B"}.mdi-weather-sunset-up:before{content:"\F059C"}.mdi-weather-tornado:before{content:"\F0F38"}.mdi-weather-windy:before{content:"\F059D"}.mdi-weather-windy-variant:before{content:"\F059E"}.mdi-web:before{content:"\F059F"}.mdi-web-box:before{content:"\F0F94"}.mdi-web-cancel:before{content:"\F1790"}.mdi-web-check:before{content:"\F0789"}.mdi-web-clock:before{content:"\F124A"}.mdi-web-minus:before{content:"\F10A0"}.mdi-web-off:before{content:"\F0A8E"}.mdi-web-plus:before{content:"\F0033"}.mdi-web-refresh:before{content:"\F1791"}.mdi-web-remove:before{content:"\F0551"}.mdi-web-sync:before{content:"\F1792"}.mdi-webcam:before{content:"\F05A0"}.mdi-webcam-off:before{content:"\F1737"}.mdi-webhook:before{content:"\F062F"}.mdi-webpack:before{content:"\F072B"}.mdi-webrtc:before{content:"\F1248"}.mdi-wechat:before{content:"\F0611"}.mdi-weight:before{content:"\F05A1"}.mdi-weight-gram:before{content:"\F0D3F"}.mdi-weight-kilogram:before{content:"\F05A2"}.mdi-weight-lifter:before{content:"\F115D"}.mdi-weight-pound:before{content:"\F09B5"}.mdi-whatsapp:before{content:"\F05A3"}.mdi-wheel-barrow:before{content:"\F14F2"}.mdi-wheelchair:before{content:"\F1A87"}.mdi-wheelchair-accessibility:before{content:"\F05A4"}.mdi-whistle:before{content:"\F09B6"}.mdi-whistle-outline:before{content:"\F12BC"}.mdi-white-balance-auto:before{content:"\F05A5"}.mdi-white-balance-incandescent:before{content:"\F05A6"}.mdi-white-balance-iridescent:before{content:"\F05A7"}.mdi-white-balance-sunny:before{content:"\F05A8"}.mdi-widgets:before{content:"\F072C"}.mdi-widgets-outline:before{content:"\F1355"}.mdi-wifi:before{content:"\F05A9"}.mdi-wifi-alert:before{content:"\F16B5"}.mdi-wifi-arrow-down:before{content:"\F16B6"}.mdi-wifi-arrow-left:before{content:"\F16B7"}.mdi-wifi-arrow-left-right:before{content:"\F16B8"}.mdi-wifi-arrow-right:before{content:"\F16B9"}.mdi-wifi-arrow-up:before{content:"\F16BA"}.mdi-wifi-arrow-up-down:before{content:"\F16BB"}.mdi-wifi-cancel:before{content:"\F16BC"}.mdi-wifi-check:before{content:"\F16BD"}.mdi-wifi-cog:before{content:"\F16BE"}.mdi-wifi-lock:before{content:"\F16BF"}.mdi-wifi-lock-open:before{content:"\F16C0"}.mdi-wifi-marker:before{content:"\F16C1"}.mdi-wifi-minus:before{content:"\F16C2"}.mdi-wifi-off:before{content:"\F05AA"}.mdi-wifi-plus:before{content:"\F16C3"}.mdi-wifi-refresh:before{content:"\F16C4"}.mdi-wifi-remove:before{content:"\F16C5"}.mdi-wifi-settings:before{content:"\F16C6"}.mdi-wifi-star:before{content:"\F0E0B"}.mdi-wifi-strength-1:before{content:"\F091F"}.mdi-wifi-strength-1-alert:before{content:"\F0920"}.mdi-wifi-strength-1-lock:before{content:"\F0921"}.mdi-wifi-strength-1-lock-open:before{content:"\F16CB"}.mdi-wifi-strength-2:before{content:"\F0922"}.mdi-wifi-strength-2-alert:before{content:"\F0923"}.mdi-wifi-strength-2-lock:before{content:"\F0924"}.mdi-wifi-strength-2-lock-open:before{content:"\F16CC"}.mdi-wifi-strength-3:before{content:"\F0925"}.mdi-wifi-strength-3-alert:before{content:"\F0926"}.mdi-wifi-strength-3-lock:before{content:"\F0927"}.mdi-wifi-strength-3-lock-open:before{content:"\F16CD"}.mdi-wifi-strength-4:before{content:"\F0928"}.mdi-wifi-strength-4-alert:before{content:"\F0929"}.mdi-wifi-strength-4-lock:before{content:"\F092A"}.mdi-wifi-strength-4-lock-open:before{content:"\F16CE"}.mdi-wifi-strength-alert-outline:before{content:"\F092B"}.mdi-wifi-strength-lock-open-outline:before{content:"\F16CF"}.mdi-wifi-strength-lock-outline:before{content:"\F092C"}.mdi-wifi-strength-off:before{content:"\F092D"}.mdi-wifi-strength-off-outline:before{content:"\F092E"}.mdi-wifi-strength-outline:before{content:"\F092F"}.mdi-wifi-sync:before{content:"\F16C7"}.mdi-wikipedia:before{content:"\F05AC"}.mdi-wind-power:before{content:"\F1A88"}.mdi-wind-power-outline:before{content:"\F1A89"}.mdi-wind-turbine:before{content:"\F0DA5"}.mdi-wind-turbine-alert:before{content:"\F19AB"}.mdi-wind-turbine-check:before{content:"\F19AC"}.mdi-window-close:before{content:"\F05AD"}.mdi-window-closed:before{content:"\F05AE"}.mdi-window-closed-variant:before{content:"\F11DB"}.mdi-window-maximize:before{content:"\F05AF"}.mdi-window-minimize:before{content:"\F05B0"}.mdi-window-open:before{content:"\F05B1"}.mdi-window-open-variant:before{content:"\F11DC"}.mdi-window-restore:before{content:"\F05B2"}.mdi-window-shutter:before{content:"\F111C"}.mdi-window-shutter-alert:before{content:"\F111D"}.mdi-window-shutter-auto:before{content:"\F1BA3"}.mdi-window-shutter-cog:before{content:"\F1A8A"}.mdi-window-shutter-open:before{content:"\F111E"}.mdi-window-shutter-settings:before{content:"\F1A8B"}.mdi-windsock:before{content:"\F15FA"}.mdi-wiper:before{content:"\F0AE9"}.mdi-wiper-wash:before{content:"\F0DA6"}.mdi-wiper-wash-alert:before{content:"\F18DF"}.mdi-wizard-hat:before{content:"\F1477"}.mdi-wordpress:before{content:"\F05B4"}.mdi-wrap:before{content:"\F05B6"}.mdi-wrap-disabled:before{content:"\F0BDF"}.mdi-wrench:before{content:"\F05B7"}.mdi-wrench-check:before{content:"\F1B8F"}.mdi-wrench-check-outline:before{content:"\F1B90"}.mdi-wrench-clock:before{content:"\F19A3"}.mdi-wrench-clock-outline:before{content:"\F1B93"}.mdi-wrench-cog:before{content:"\F1B91"}.mdi-wrench-cog-outline:before{content:"\F1B92"}.mdi-wrench-outline:before{content:"\F0BE0"}.mdi-xamarin:before{content:"\F0845"}.mdi-xml:before{content:"\F05C0"}.mdi-xmpp:before{content:"\F07FF"}.mdi-yahoo:before{content:"\F0B4F"}.mdi-yeast:before{content:"\F05C1"}.mdi-yin-yang:before{content:"\F0680"}.mdi-yoga:before{content:"\F117C"}.mdi-youtube:before{content:"\F05C3"}.mdi-youtube-gaming:before{content:"\F0848"}.mdi-youtube-studio:before{content:"\F0847"}.mdi-youtube-subscription:before{content:"\F0D40"}.mdi-youtube-tv:before{content:"\F0448"}.mdi-yurt:before{content:"\F1516"}.mdi-z-wave:before{content:"\F0AEA"}.mdi-zend:before{content:"\F0AEB"}.mdi-zigbee:before{content:"\F0D41"}.mdi-zip-box:before{content:"\F05C4"}.mdi-zip-box-outline:before{content:"\F0FFA"}.mdi-zip-disk:before{content:"\F0A23"}.mdi-zodiac-aquarius:before{content:"\F0A7D"}.mdi-zodiac-aries:before{content:"\F0A7E"}.mdi-zodiac-cancer:before{content:"\F0A7F"}.mdi-zodiac-capricorn:before{content:"\F0A80"}.mdi-zodiac-gemini:before{content:"\F0A81"}.mdi-zodiac-leo:before{content:"\F0A82"}.mdi-zodiac-libra:before{content:"\F0A83"}.mdi-zodiac-pisces:before{content:"\F0A84"}.mdi-zodiac-sagittarius:before{content:"\F0A85"}.mdi-zodiac-scorpio:before{content:"\F0A86"}.mdi-zodiac-taurus:before{content:"\F0A87"}.mdi-zodiac-virgo:before{content:"\F0A88"}.mdi-blank:before{content:"\F68C";visibility:hidden}.mdi-18px.mdi-set,.mdi-18px.mdi:before{font-size:18px}.mdi-24px.mdi-set,.mdi-24px.mdi:before{font-size:24px}.mdi-36px.mdi-set,.mdi-36px.mdi:before{font-size:36px}.mdi-48px.mdi-set,.mdi-48px.mdi:before{font-size:48px}.mdi-dark:before{color:rgba(0,0,0,.54)}.mdi-dark.mdi-inactive:before{color:rgba(0,0,0,.26)}.mdi-light:before{color:#fff}.mdi-light.mdi-inactive:before{color:hsla(0,0%,100%,.3)}.mdi-rotate-45:before{transform:rotate(45deg)}.mdi-rotate-90:before{transform:rotate(90deg)}.mdi-rotate-135:before{transform:rotate(135deg)}.mdi-rotate-180:before{transform:rotate(180deg)}.mdi-rotate-225:before{transform:rotate(225deg)}.mdi-rotate-270:before{transform:rotate(270deg)}.mdi-rotate-315:before{transform:rotate(315deg)}.mdi-flip-h:before{transform:scaleX(-1);filter:FlipH;-ms-filter:"FlipH"}.mdi-flip-v:before{transform:scaleY(-1);filter:FlipV;-ms-filter:"FlipV"}.mdi-spin:before{animation:mdi-spin 2s linear infinite}@keyframes mdi-spin{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.container{width:100%;padding:12px;margin-right:auto;margin-left:auto}@media(min-width:960px){.container{max-width:900px}}@media(min-width:1264px){.container{max-width:1185px}}@media(min-width:1904px){.container{max-width:1785px}}.container--fluid{max-width:100%}.row{display:flex;flex-wrap:wrap;flex:1 1 auto;margin:-12px}.row+.row{margin-top:12px}.row+.row--dense{margin-top:4px}.row--dense{margin:-4px}.row--dense>.col,.row--dense>[class*=col-]{padding:4px}.row.no-gutters{margin:0}.row.no-gutters>.col,.row.no-gutters>[class*=col-]{padding:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{width:100%;padding:12px}.col{flex-basis:0;flex-grow:1;max-width:100%}.col-auto{flex:0 0 auto;width:auto;max-width:100%}.col-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-12{flex:0 0 100%;max-width:100%}.v-application--is-ltr .offset-1{margin-left:8.3333333333%}.v-application--is-rtl .offset-1{margin-right:8.3333333333%}.v-application--is-ltr .offset-2{margin-left:16.6666666667%}.v-application--is-rtl .offset-2{margin-right:16.6666666667%}.v-application--is-ltr .offset-3{margin-left:25%}.v-application--is-rtl .offset-3{margin-right:25%}.v-application--is-ltr .offset-4{margin-left:33.3333333333%}.v-application--is-rtl .offset-4{margin-right:33.3333333333%}.v-application--is-ltr .offset-5{margin-left:41.6666666667%}.v-application--is-rtl .offset-5{margin-right:41.6666666667%}.v-application--is-ltr .offset-6{margin-left:50%}.v-application--is-rtl .offset-6{margin-right:50%}.v-application--is-ltr .offset-7{margin-left:58.3333333333%}.v-application--is-rtl .offset-7{margin-right:58.3333333333%}.v-application--is-ltr .offset-8{margin-left:66.6666666667%}.v-application--is-rtl .offset-8{margin-right:66.6666666667%}.v-application--is-ltr .offset-9{margin-left:75%}.v-application--is-rtl .offset-9{margin-right:75%}.v-application--is-ltr .offset-10{margin-left:83.3333333333%}.v-application--is-rtl .offset-10{margin-right:83.3333333333%}.v-application--is-ltr .offset-11{margin-left:91.6666666667%}.v-application--is-rtl .offset-11{margin-right:91.6666666667%}@media(min-width:600px){.col-sm{flex-basis:0;flex-grow:1;max-width:100%}.col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-sm-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-sm-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-sm-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-sm-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-sm-12{flex:0 0 100%;max-width:100%}.v-application--is-ltr .offset-sm-0{margin-left:0}.v-application--is-rtl .offset-sm-0{margin-right:0}.v-application--is-ltr .offset-sm-1{margin-left:8.3333333333%}.v-application--is-rtl .offset-sm-1{margin-right:8.3333333333%}.v-application--is-ltr .offset-sm-2{margin-left:16.6666666667%}.v-application--is-rtl .offset-sm-2{margin-right:16.6666666667%}.v-application--is-ltr .offset-sm-3{margin-left:25%}.v-application--is-rtl .offset-sm-3{margin-right:25%}.v-application--is-ltr .offset-sm-4{margin-left:33.3333333333%}.v-application--is-rtl .offset-sm-4{margin-right:33.3333333333%}.v-application--is-ltr .offset-sm-5{margin-left:41.6666666667%}.v-application--is-rtl .offset-sm-5{margin-right:41.6666666667%}.v-application--is-ltr .offset-sm-6{margin-left:50%}.v-application--is-rtl .offset-sm-6{margin-right:50%}.v-application--is-ltr .offset-sm-7{margin-left:58.3333333333%}.v-application--is-rtl .offset-sm-7{margin-right:58.3333333333%}.v-application--is-ltr .offset-sm-8{margin-left:66.6666666667%}.v-application--is-rtl .offset-sm-8{margin-right:66.6666666667%}.v-application--is-ltr .offset-sm-9{margin-left:75%}.v-application--is-rtl .offset-sm-9{margin-right:75%}.v-application--is-ltr .offset-sm-10{margin-left:83.3333333333%}.v-application--is-rtl .offset-sm-10{margin-right:83.3333333333%}.v-application--is-ltr .offset-sm-11{margin-left:91.6666666667%}.v-application--is-rtl .offset-sm-11{margin-right:91.6666666667%}}@media(min-width:960px){.col-md{flex-basis:0;flex-grow:1;max-width:100%}.col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.col-md-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-md-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-md-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-md-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-md-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-md-12{flex:0 0 100%;max-width:100%}.v-application--is-ltr .offset-md-0{margin-left:0}.v-application--is-rtl .offset-md-0{margin-right:0}.v-application--is-ltr .offset-md-1{margin-left:8.3333333333%}.v-application--is-rtl .offset-md-1{margin-right:8.3333333333%}.v-application--is-ltr .offset-md-2{margin-left:16.6666666667%}.v-application--is-rtl .offset-md-2{margin-right:16.6666666667%}.v-application--is-ltr .offset-md-3{margin-left:25%}.v-application--is-rtl .offset-md-3{margin-right:25%}.v-application--is-ltr .offset-md-4{margin-left:33.3333333333%}.v-application--is-rtl .offset-md-4{margin-right:33.3333333333%}.v-application--is-ltr .offset-md-5{margin-left:41.6666666667%}.v-application--is-rtl .offset-md-5{margin-right:41.6666666667%}.v-application--is-ltr .offset-md-6{margin-left:50%}.v-application--is-rtl .offset-md-6{margin-right:50%}.v-application--is-ltr .offset-md-7{margin-left:58.3333333333%}.v-application--is-rtl .offset-md-7{margin-right:58.3333333333%}.v-application--is-ltr .offset-md-8{margin-left:66.6666666667%}.v-application--is-rtl .offset-md-8{margin-right:66.6666666667%}.v-application--is-ltr .offset-md-9{margin-left:75%}.v-application--is-rtl .offset-md-9{margin-right:75%}.v-application--is-ltr .offset-md-10{margin-left:83.3333333333%}.v-application--is-rtl .offset-md-10{margin-right:83.3333333333%}.v-application--is-ltr .offset-md-11{margin-left:91.6666666667%}.v-application--is-rtl .offset-md-11{margin-right:91.6666666667%}}@media(min-width:1264px){.col-lg{flex-basis:0;flex-grow:1;max-width:100%}.col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-lg-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-lg-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-lg-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-lg-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-lg-12{flex:0 0 100%;max-width:100%}.v-application--is-ltr .offset-lg-0{margin-left:0}.v-application--is-rtl .offset-lg-0{margin-right:0}.v-application--is-ltr .offset-lg-1{margin-left:8.3333333333%}.v-application--is-rtl .offset-lg-1{margin-right:8.3333333333%}.v-application--is-ltr .offset-lg-2{margin-left:16.6666666667%}.v-application--is-rtl .offset-lg-2{margin-right:16.6666666667%}.v-application--is-ltr .offset-lg-3{margin-left:25%}.v-application--is-rtl .offset-lg-3{margin-right:25%}.v-application--is-ltr .offset-lg-4{margin-left:33.3333333333%}.v-application--is-rtl .offset-lg-4{margin-right:33.3333333333%}.v-application--is-ltr .offset-lg-5{margin-left:41.6666666667%}.v-application--is-rtl .offset-lg-5{margin-right:41.6666666667%}.v-application--is-ltr .offset-lg-6{margin-left:50%}.v-application--is-rtl .offset-lg-6{margin-right:50%}.v-application--is-ltr .offset-lg-7{margin-left:58.3333333333%}.v-application--is-rtl .offset-lg-7{margin-right:58.3333333333%}.v-application--is-ltr .offset-lg-8{margin-left:66.6666666667%}.v-application--is-rtl .offset-lg-8{margin-right:66.6666666667%}.v-application--is-ltr .offset-lg-9{margin-left:75%}.v-application--is-rtl .offset-lg-9{margin-right:75%}.v-application--is-ltr .offset-lg-10{margin-left:83.3333333333%}.v-application--is-rtl .offset-lg-10{margin-right:83.3333333333%}.v-application--is-ltr .offset-lg-11{margin-left:91.6666666667%}.v-application--is-rtl .offset-lg-11{margin-right:91.6666666667%}}@media(min-width:1904px){.col-xl{flex-basis:0;flex-grow:1;max-width:100%}.col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-xl-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-xl-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-xl-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-xl-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-xl-12{flex:0 0 100%;max-width:100%}.v-application--is-ltr .offset-xl-0{margin-left:0}.v-application--is-rtl .offset-xl-0{margin-right:0}.v-application--is-ltr .offset-xl-1{margin-left:8.3333333333%}.v-application--is-rtl .offset-xl-1{margin-right:8.3333333333%}.v-application--is-ltr .offset-xl-2{margin-left:16.6666666667%}.v-application--is-rtl .offset-xl-2{margin-right:16.6666666667%}.v-application--is-ltr .offset-xl-3{margin-left:25%}.v-application--is-rtl .offset-xl-3{margin-right:25%}.v-application--is-ltr .offset-xl-4{margin-left:33.3333333333%}.v-application--is-rtl .offset-xl-4{margin-right:33.3333333333%}.v-application--is-ltr .offset-xl-5{margin-left:41.6666666667%}.v-application--is-rtl .offset-xl-5{margin-right:41.6666666667%}.v-application--is-ltr .offset-xl-6{margin-left:50%}.v-application--is-rtl .offset-xl-6{margin-right:50%}.v-application--is-ltr .offset-xl-7{margin-left:58.3333333333%}.v-application--is-rtl .offset-xl-7{margin-right:58.3333333333%}.v-application--is-ltr .offset-xl-8{margin-left:66.6666666667%}.v-application--is-rtl .offset-xl-8{margin-right:66.6666666667%}.v-application--is-ltr .offset-xl-9{margin-left:75%}.v-application--is-rtl .offset-xl-9{margin-right:75%}.v-application--is-ltr .offset-xl-10{margin-left:83.3333333333%}.v-application--is-rtl .offset-xl-10{margin-right:83.3333333333%}.v-application--is-ltr .offset-xl-11{margin-left:91.6666666667%}.v-application--is-rtl .offset-xl-11{margin-right:91.6666666667%}}.container.grow-shrink-0{flex-grow:0;flex-shrink:0}.container.fill-height{align-items:center;display:flex;flex-wrap:wrap}.container.fill-height>.row{flex:1 1 100%;max-width:calc(100% + 24px)}.container.fill-height>.layout{height:100%;flex:1 1 auto}.container.fill-height>.layout.grow-shrink-0{flex-grow:0;flex-shrink:0}.container.grid-list-xs .layout .flex{padding:1px}.container.grid-list-xs .layout:only-child{margin:-1px}.container.grid-list-xs .layout:not(:only-child){margin:auto -1px}.container.grid-list-xs :not(:only-child) .layout:first-child{margin-top:-1px}.container.grid-list-xs :not(:only-child) .layout:last-child{margin-bottom:-1px}.container.grid-list-sm .layout .flex{padding:2px}.container.grid-list-sm .layout:only-child{margin:-2px}.container.grid-list-sm .layout:not(:only-child){margin:auto -2px}.container.grid-list-sm :not(:only-child) .layout:first-child{margin-top:-2px}.container.grid-list-sm :not(:only-child) .layout:last-child{margin-bottom:-2px}.container.grid-list-md .layout .flex{padding:4px}.container.grid-list-md .layout:only-child{margin:-4px}.container.grid-list-md .layout:not(:only-child){margin:auto -4px}.container.grid-list-md :not(:only-child) .layout:first-child{margin-top:-4px}.container.grid-list-md :not(:only-child) .layout:last-child{margin-bottom:-4px}.container.grid-list-lg .layout .flex{padding:8px}.container.grid-list-lg .layout:only-child{margin:-8px}.container.grid-list-lg .layout:not(:only-child){margin:auto -8px}.container.grid-list-lg :not(:only-child) .layout:first-child{margin-top:-8px}.container.grid-list-lg :not(:only-child) .layout:last-child{margin-bottom:-8px}.container.grid-list-xl .layout .flex{padding:12px}.container.grid-list-xl .layout:only-child{margin:-12px}.container.grid-list-xl .layout:not(:only-child){margin:auto -12px}.container.grid-list-xl :not(:only-child) .layout:first-child{margin-top:-12px}.container.grid-list-xl :not(:only-child) .layout:last-child{margin-bottom:-12px}.layout{display:flex;flex:1 1 auto;flex-wrap:nowrap;min-width:0}.layout.reverse{flex-direction:row-reverse}.layout.column{flex-direction:column}.layout.column.reverse{flex-direction:column-reverse}.layout.column>.flex{max-width:100%}.layout.wrap{flex-wrap:wrap}.layout.grow-shrink-0{flex-grow:0;flex-shrink:0}@media (min-width:0){.flex.xs12{flex-basis:100%;flex-grow:0;max-width:100%}.flex.order-xs12{order:12}.flex.xs11{flex-basis:91.6666666667%;flex-grow:0;max-width:91.6666666667%}.flex.order-xs11{order:11}.flex.xs10{flex-basis:83.3333333333%;flex-grow:0;max-width:83.3333333333%}.flex.order-xs10{order:10}.flex.xs9{flex-basis:75%;flex-grow:0;max-width:75%}.flex.order-xs9{order:9}.flex.xs8{flex-basis:66.6666666667%;flex-grow:0;max-width:66.6666666667%}.flex.order-xs8{order:8}.flex.xs7{flex-basis:58.3333333333%;flex-grow:0;max-width:58.3333333333%}.flex.order-xs7{order:7}.flex.xs6{flex-basis:50%;flex-grow:0;max-width:50%}.flex.order-xs6{order:6}.flex.xs5{flex-basis:41.6666666667%;flex-grow:0;max-width:41.6666666667%}.flex.order-xs5{order:5}.flex.xs4{flex-basis:33.3333333333%;flex-grow:0;max-width:33.3333333333%}.flex.order-xs4{order:4}.flex.xs3{flex-basis:25%;flex-grow:0;max-width:25%}.flex.order-xs3{order:3}.flex.xs2{flex-basis:16.6666666667%;flex-grow:0;max-width:16.6666666667%}.flex.order-xs2{order:2}.flex.xs1{flex-basis:8.3333333333%;flex-grow:0;max-width:8.3333333333%}.flex.order-xs1{order:1}.v-application--is-ltr .flex.offset-xs12{margin-left:100%}.v-application--is-rtl .flex.offset-xs12{margin-right:100%}.v-application--is-ltr .flex.offset-xs11{margin-left:91.6666666667%}.v-application--is-rtl .flex.offset-xs11{margin-right:91.6666666667%}.v-application--is-ltr .flex.offset-xs10{margin-left:83.3333333333%}.v-application--is-rtl .flex.offset-xs10{margin-right:83.3333333333%}.v-application--is-ltr .flex.offset-xs9{margin-left:75%}.v-application--is-rtl .flex.offset-xs9{margin-right:75%}.v-application--is-ltr .flex.offset-xs8{margin-left:66.6666666667%}.v-application--is-rtl .flex.offset-xs8{margin-right:66.6666666667%}.v-application--is-ltr .flex.offset-xs7{margin-left:58.3333333333%}.v-application--is-rtl .flex.offset-xs7{margin-right:58.3333333333%}.v-application--is-ltr .flex.offset-xs6{margin-left:50%}.v-application--is-rtl .flex.offset-xs6{margin-right:50%}.v-application--is-ltr .flex.offset-xs5{margin-left:41.6666666667%}.v-application--is-rtl .flex.offset-xs5{margin-right:41.6666666667%}.v-application--is-ltr .flex.offset-xs4{margin-left:33.3333333333%}.v-application--is-rtl .flex.offset-xs4{margin-right:33.3333333333%}.v-application--is-ltr .flex.offset-xs3{margin-left:25%}.v-application--is-rtl .flex.offset-xs3{margin-right:25%}.v-application--is-ltr .flex.offset-xs2{margin-left:16.6666666667%}.v-application--is-rtl .flex.offset-xs2{margin-right:16.6666666667%}.v-application--is-ltr .flex.offset-xs1{margin-left:8.3333333333%}.v-application--is-rtl .flex.offset-xs1{margin-right:8.3333333333%}.v-application--is-ltr .flex.offset-xs0{margin-left:0}.v-application--is-rtl .flex.offset-xs0{margin-right:0}}@media (min-width:600px){.flex.sm12{flex-basis:100%;flex-grow:0;max-width:100%}.flex.order-sm12{order:12}.flex.sm11{flex-basis:91.6666666667%;flex-grow:0;max-width:91.6666666667%}.flex.order-sm11{order:11}.flex.sm10{flex-basis:83.3333333333%;flex-grow:0;max-width:83.3333333333%}.flex.order-sm10{order:10}.flex.sm9{flex-basis:75%;flex-grow:0;max-width:75%}.flex.order-sm9{order:9}.flex.sm8{flex-basis:66.6666666667%;flex-grow:0;max-width:66.6666666667%}.flex.order-sm8{order:8}.flex.sm7{flex-basis:58.3333333333%;flex-grow:0;max-width:58.3333333333%}.flex.order-sm7{order:7}.flex.sm6{flex-basis:50%;flex-grow:0;max-width:50%}.flex.order-sm6{order:6}.flex.sm5{flex-basis:41.6666666667%;flex-grow:0;max-width:41.6666666667%}.flex.order-sm5{order:5}.flex.sm4{flex-basis:33.3333333333%;flex-grow:0;max-width:33.3333333333%}.flex.order-sm4{order:4}.flex.sm3{flex-basis:25%;flex-grow:0;max-width:25%}.flex.order-sm3{order:3}.flex.sm2{flex-basis:16.6666666667%;flex-grow:0;max-width:16.6666666667%}.flex.order-sm2{order:2}.flex.sm1{flex-basis:8.3333333333%;flex-grow:0;max-width:8.3333333333%}.flex.order-sm1{order:1}.v-application--is-ltr .flex.offset-sm12{margin-left:100%}.v-application--is-rtl .flex.offset-sm12{margin-right:100%}.v-application--is-ltr .flex.offset-sm11{margin-left:91.6666666667%}.v-application--is-rtl .flex.offset-sm11{margin-right:91.6666666667%}.v-application--is-ltr .flex.offset-sm10{margin-left:83.3333333333%}.v-application--is-rtl .flex.offset-sm10{margin-right:83.3333333333%}.v-application--is-ltr .flex.offset-sm9{margin-left:75%}.v-application--is-rtl .flex.offset-sm9{margin-right:75%}.v-application--is-ltr .flex.offset-sm8{margin-left:66.6666666667%}.v-application--is-rtl .flex.offset-sm8{margin-right:66.6666666667%}.v-application--is-ltr .flex.offset-sm7{margin-left:58.3333333333%}.v-application--is-rtl .flex.offset-sm7{margin-right:58.3333333333%}.v-application--is-ltr .flex.offset-sm6{margin-left:50%}.v-application--is-rtl .flex.offset-sm6{margin-right:50%}.v-application--is-ltr .flex.offset-sm5{margin-left:41.6666666667%}.v-application--is-rtl .flex.offset-sm5{margin-right:41.6666666667%}.v-application--is-ltr .flex.offset-sm4{margin-left:33.3333333333%}.v-application--is-rtl .flex.offset-sm4{margin-right:33.3333333333%}.v-application--is-ltr .flex.offset-sm3{margin-left:25%}.v-application--is-rtl .flex.offset-sm3{margin-right:25%}.v-application--is-ltr .flex.offset-sm2{margin-left:16.6666666667%}.v-application--is-rtl .flex.offset-sm2{margin-right:16.6666666667%}.v-application--is-ltr .flex.offset-sm1{margin-left:8.3333333333%}.v-application--is-rtl .flex.offset-sm1{margin-right:8.3333333333%}.v-application--is-ltr .flex.offset-sm0{margin-left:0}.v-application--is-rtl .flex.offset-sm0{margin-right:0}}@media (min-width:960px){.flex.md12{flex-basis:100%;flex-grow:0;max-width:100%}.flex.order-md12{order:12}.flex.md11{flex-basis:91.6666666667%;flex-grow:0;max-width:91.6666666667%}.flex.order-md11{order:11}.flex.md10{flex-basis:83.3333333333%;flex-grow:0;max-width:83.3333333333%}.flex.order-md10{order:10}.flex.md9{flex-basis:75%;flex-grow:0;max-width:75%}.flex.order-md9{order:9}.flex.md8{flex-basis:66.6666666667%;flex-grow:0;max-width:66.6666666667%}.flex.order-md8{order:8}.flex.md7{flex-basis:58.3333333333%;flex-grow:0;max-width:58.3333333333%}.flex.order-md7{order:7}.flex.md6{flex-basis:50%;flex-grow:0;max-width:50%}.flex.order-md6{order:6}.flex.md5{flex-basis:41.6666666667%;flex-grow:0;max-width:41.6666666667%}.flex.order-md5{order:5}.flex.md4{flex-basis:33.3333333333%;flex-grow:0;max-width:33.3333333333%}.flex.order-md4{order:4}.flex.md3{flex-basis:25%;flex-grow:0;max-width:25%}.flex.order-md3{order:3}.flex.md2{flex-basis:16.6666666667%;flex-grow:0;max-width:16.6666666667%}.flex.order-md2{order:2}.flex.md1{flex-basis:8.3333333333%;flex-grow:0;max-width:8.3333333333%}.flex.order-md1{order:1}.v-application--is-ltr .flex.offset-md12{margin-left:100%}.v-application--is-rtl .flex.offset-md12{margin-right:100%}.v-application--is-ltr .flex.offset-md11{margin-left:91.6666666667%}.v-application--is-rtl .flex.offset-md11{margin-right:91.6666666667%}.v-application--is-ltr .flex.offset-md10{margin-left:83.3333333333%}.v-application--is-rtl .flex.offset-md10{margin-right:83.3333333333%}.v-application--is-ltr .flex.offset-md9{margin-left:75%}.v-application--is-rtl .flex.offset-md9{margin-right:75%}.v-application--is-ltr .flex.offset-md8{margin-left:66.6666666667%}.v-application--is-rtl .flex.offset-md8{margin-right:66.6666666667%}.v-application--is-ltr .flex.offset-md7{margin-left:58.3333333333%}.v-application--is-rtl .flex.offset-md7{margin-right:58.3333333333%}.v-application--is-ltr .flex.offset-md6{margin-left:50%}.v-application--is-rtl .flex.offset-md6{margin-right:50%}.v-application--is-ltr .flex.offset-md5{margin-left:41.6666666667%}.v-application--is-rtl .flex.offset-md5{margin-right:41.6666666667%}.v-application--is-ltr .flex.offset-md4{margin-left:33.3333333333%}.v-application--is-rtl .flex.offset-md4{margin-right:33.3333333333%}.v-application--is-ltr .flex.offset-md3{margin-left:25%}.v-application--is-rtl .flex.offset-md3{margin-right:25%}.v-application--is-ltr .flex.offset-md2{margin-left:16.6666666667%}.v-application--is-rtl .flex.offset-md2{margin-right:16.6666666667%}.v-application--is-ltr .flex.offset-md1{margin-left:8.3333333333%}.v-application--is-rtl .flex.offset-md1{margin-right:8.3333333333%}.v-application--is-ltr .flex.offset-md0{margin-left:0}.v-application--is-rtl .flex.offset-md0{margin-right:0}}@media (min-width:1264px){.flex.lg12{flex-basis:100%;flex-grow:0;max-width:100%}.flex.order-lg12{order:12}.flex.lg11{flex-basis:91.6666666667%;flex-grow:0;max-width:91.6666666667%}.flex.order-lg11{order:11}.flex.lg10{flex-basis:83.3333333333%;flex-grow:0;max-width:83.3333333333%}.flex.order-lg10{order:10}.flex.lg9{flex-basis:75%;flex-grow:0;max-width:75%}.flex.order-lg9{order:9}.flex.lg8{flex-basis:66.6666666667%;flex-grow:0;max-width:66.6666666667%}.flex.order-lg8{order:8}.flex.lg7{flex-basis:58.3333333333%;flex-grow:0;max-width:58.3333333333%}.flex.order-lg7{order:7}.flex.lg6{flex-basis:50%;flex-grow:0;max-width:50%}.flex.order-lg6{order:6}.flex.lg5{flex-basis:41.6666666667%;flex-grow:0;max-width:41.6666666667%}.flex.order-lg5{order:5}.flex.lg4{flex-basis:33.3333333333%;flex-grow:0;max-width:33.3333333333%}.flex.order-lg4{order:4}.flex.lg3{flex-basis:25%;flex-grow:0;max-width:25%}.flex.order-lg3{order:3}.flex.lg2{flex-basis:16.6666666667%;flex-grow:0;max-width:16.6666666667%}.flex.order-lg2{order:2}.flex.lg1{flex-basis:8.3333333333%;flex-grow:0;max-width:8.3333333333%}.flex.order-lg1{order:1}.v-application--is-ltr .flex.offset-lg12{margin-left:100%}.v-application--is-rtl .flex.offset-lg12{margin-right:100%}.v-application--is-ltr .flex.offset-lg11{margin-left:91.6666666667%}.v-application--is-rtl .flex.offset-lg11{margin-right:91.6666666667%}.v-application--is-ltr .flex.offset-lg10{margin-left:83.3333333333%}.v-application--is-rtl .flex.offset-lg10{margin-right:83.3333333333%}.v-application--is-ltr .flex.offset-lg9{margin-left:75%}.v-application--is-rtl .flex.offset-lg9{margin-right:75%}.v-application--is-ltr .flex.offset-lg8{margin-left:66.6666666667%}.v-application--is-rtl .flex.offset-lg8{margin-right:66.6666666667%}.v-application--is-ltr .flex.offset-lg7{margin-left:58.3333333333%}.v-application--is-rtl .flex.offset-lg7{margin-right:58.3333333333%}.v-application--is-ltr .flex.offset-lg6{margin-left:50%}.v-application--is-rtl .flex.offset-lg6{margin-right:50%}.v-application--is-ltr .flex.offset-lg5{margin-left:41.6666666667%}.v-application--is-rtl .flex.offset-lg5{margin-right:41.6666666667%}.v-application--is-ltr .flex.offset-lg4{margin-left:33.3333333333%}.v-application--is-rtl .flex.offset-lg4{margin-right:33.3333333333%}.v-application--is-ltr .flex.offset-lg3{margin-left:25%}.v-application--is-rtl .flex.offset-lg3{margin-right:25%}.v-application--is-ltr .flex.offset-lg2{margin-left:16.6666666667%}.v-application--is-rtl .flex.offset-lg2{margin-right:16.6666666667%}.v-application--is-ltr .flex.offset-lg1{margin-left:8.3333333333%}.v-application--is-rtl .flex.offset-lg1{margin-right:8.3333333333%}.v-application--is-ltr .flex.offset-lg0{margin-left:0}.v-application--is-rtl .flex.offset-lg0{margin-right:0}}@media (min-width:1904px){.flex.xl12{flex-basis:100%;flex-grow:0;max-width:100%}.flex.order-xl12{order:12}.flex.xl11{flex-basis:91.6666666667%;flex-grow:0;max-width:91.6666666667%}.flex.order-xl11{order:11}.flex.xl10{flex-basis:83.3333333333%;flex-grow:0;max-width:83.3333333333%}.flex.order-xl10{order:10}.flex.xl9{flex-basis:75%;flex-grow:0;max-width:75%}.flex.order-xl9{order:9}.flex.xl8{flex-basis:66.6666666667%;flex-grow:0;max-width:66.6666666667%}.flex.order-xl8{order:8}.flex.xl7{flex-basis:58.3333333333%;flex-grow:0;max-width:58.3333333333%}.flex.order-xl7{order:7}.flex.xl6{flex-basis:50%;flex-grow:0;max-width:50%}.flex.order-xl6{order:6}.flex.xl5{flex-basis:41.6666666667%;flex-grow:0;max-width:41.6666666667%}.flex.order-xl5{order:5}.flex.xl4{flex-basis:33.3333333333%;flex-grow:0;max-width:33.3333333333%}.flex.order-xl4{order:4}.flex.xl3{flex-basis:25%;flex-grow:0;max-width:25%}.flex.order-xl3{order:3}.flex.xl2{flex-basis:16.6666666667%;flex-grow:0;max-width:16.6666666667%}.flex.order-xl2{order:2}.flex.xl1{flex-basis:8.3333333333%;flex-grow:0;max-width:8.3333333333%}.flex.order-xl1{order:1}.v-application--is-ltr .flex.offset-xl12{margin-left:100%}.v-application--is-rtl .flex.offset-xl12{margin-right:100%}.v-application--is-ltr .flex.offset-xl11{margin-left:91.6666666667%}.v-application--is-rtl .flex.offset-xl11{margin-right:91.6666666667%}.v-application--is-ltr .flex.offset-xl10{margin-left:83.3333333333%}.v-application--is-rtl .flex.offset-xl10{margin-right:83.3333333333%}.v-application--is-ltr .flex.offset-xl9{margin-left:75%}.v-application--is-rtl .flex.offset-xl9{margin-right:75%}.v-application--is-ltr .flex.offset-xl8{margin-left:66.6666666667%}.v-application--is-rtl .flex.offset-xl8{margin-right:66.6666666667%}.v-application--is-ltr .flex.offset-xl7{margin-left:58.3333333333%}.v-application--is-rtl .flex.offset-xl7{margin-right:58.3333333333%}.v-application--is-ltr .flex.offset-xl6{margin-left:50%}.v-application--is-rtl .flex.offset-xl6{margin-right:50%}.v-application--is-ltr .flex.offset-xl5{margin-left:41.6666666667%}.v-application--is-rtl .flex.offset-xl5{margin-right:41.6666666667%}.v-application--is-ltr .flex.offset-xl4{margin-left:33.3333333333%}.v-application--is-rtl .flex.offset-xl4{margin-right:33.3333333333%}.v-application--is-ltr .flex.offset-xl3{margin-left:25%}.v-application--is-rtl .flex.offset-xl3{margin-right:25%}.v-application--is-ltr .flex.offset-xl2{margin-left:16.6666666667%}.v-application--is-rtl .flex.offset-xl2{margin-right:16.6666666667%}.v-application--is-ltr .flex.offset-xl1{margin-left:8.3333333333%}.v-application--is-rtl .flex.offset-xl1{margin-right:8.3333333333%}.v-application--is-ltr .flex.offset-xl0{margin-left:0}.v-application--is-rtl .flex.offset-xl0{margin-right:0}}.child-flex>*,.flex{flex:1 1 auto;max-width:100%}.child-flex>.grow-shrink-0,.flex.grow-shrink-0{flex-grow:0;flex-shrink:0}.grow,.spacer{flex-grow:1!important}.grow{flex-shrink:0!important}.shrink{flex-grow:0!important;flex-shrink:1!important}.fill-height{height:100%}.v-btn:not(.v-btn--outlined).accent,.v-btn:not(.v-btn--outlined).error,.v-btn:not(.v-btn--outlined).info,.v-btn:not(.v-btn--outlined).primary,.v-btn:not(.v-btn--outlined).secondary,.v-btn:not(.v-btn--outlined).success,.v-btn:not(.v-btn--outlined).warning{color:#fff}.theme--light.v-btn{color:rgba(0,0,0,.87)}.theme--light.v-btn.v-btn--disabled,.theme--light.v-btn.v-btn--disabled .v-btn__loading,.theme--light.v-btn.v-btn--disabled .v-icon{color:rgba(0,0,0,.26)!important}.theme--light.v-btn.v-btn--disabled.v-btn--has-bg{background-color:rgba(0,0,0,.12)!important}.theme--light.v-btn.v-btn--has-bg{background-color:#f5f5f5}.theme--light.v-btn.v-btn--outlined.v-btn--text{border-color:rgba(0,0,0,.12)}.theme--light.v-btn.v-btn--icon{color:rgba(0,0,0,.54)}.theme--light.v-btn:hover:before{opacity:.08}.theme--light.v-btn:focus:before{opacity:.24}.theme--light.v-btn--active:before,.theme--light.v-btn--active:hover:before{opacity:.18}.theme--light.v-btn--active:focus:before{opacity:.16}.theme--dark.v-btn{color:#fff}.theme--dark.v-btn.v-btn--disabled,.theme--dark.v-btn.v-btn--disabled .v-btn__loading,.theme--dark.v-btn.v-btn--disabled .v-icon{color:hsla(0,0%,100%,.3)!important}.theme--dark.v-btn.v-btn--disabled.v-btn--has-bg{background-color:hsla(0,0%,100%,.12)!important}.theme--dark.v-btn.v-btn--has-bg{background-color:#272727}.theme--dark.v-btn.v-btn--outlined.v-btn--text{border-color:hsla(0,0%,100%,.12)}.theme--dark.v-btn.v-btn--icon{color:#fff}.theme--dark.v-btn:hover:before{opacity:.08}.theme--dark.v-btn:focus:before{opacity:.24}.theme--dark.v-btn--active:before,.theme--dark.v-btn--active:hover:before{opacity:.18}.theme--dark.v-btn--active:focus:before{opacity:.32}.v-btn{align-items:center;border-radius:4px;display:inline-flex;flex:0 0 auto;font-weight:500;letter-spacing:.0892857143em;justify-content:center;outline:0;position:relative;text-decoration:none;text-indent:.0892857143em;text-transform:uppercase;transition-duration:.28s;transition-property:box-shadow,transform,opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;white-space:nowrap}.v-btn.v-size--x-small{font-size:.625rem}.v-btn.v-size--small{font-size:.75rem}.v-btn.v-size--default,.v-btn.v-size--large{font-size:.875rem}.v-btn.v-size--x-large{font-size:1rem}.v-btn:before{background-color:currentColor;border-radius:inherit;bottom:0;color:inherit;content:"";left:0;opacity:0;pointer-events:none;position:absolute;right:0;top:0;transition:opacity .2s cubic-bezier(.4,0,.6,1)}.v-btn:not(.v-btn--round).v-size--x-small{height:20px;min-width:36px;padding:0 8.8888888889px}.v-btn:not(.v-btn--round).v-size--small{height:28px;min-width:50px;padding:0 12.4444444444px}.v-btn:not(.v-btn--round).v-size--default{height:36px;min-width:64px;padding:0 16px}.v-btn:not(.v-btn--round).v-size--large{height:44px;min-width:78px;padding:0 19.5555555556px}.v-btn:not(.v-btn--round).v-size--x-large{height:52px;min-width:92px;padding:0 23.1111111111px}.v-btn>.v-btn__content .v-icon{color:inherit}.v-btn__content{align-items:center;color:inherit;display:flex;flex:1 0 auto;justify-content:inherit;line-height:normal;position:relative;transition:inherit;transition-property:opacity}.v-btn__content .v-icon.v-icon--left,.v-btn__content .v-icon.v-icon--right{font-size:18px;height:18px;width:18px}.v-application--is-ltr .v-btn__content .v-icon--left{margin-left:-4px;margin-right:8px}.v-application--is-ltr .v-btn__content .v-icon--right,.v-application--is-rtl .v-btn__content .v-icon--left{margin-left:8px;margin-right:-4px}.v-application--is-rtl .v-btn__content .v-icon--right{margin-left:-4px;margin-right:8px}.v-btn__loader{align-items:center;display:flex;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%}.v-btn--absolute.v-btn--right,.v-btn--fixed.v-btn--right{right:16px}.v-btn--absolute.v-btn--left,.v-btn--fixed.v-btn--left{left:16px}.v-btn--absolute.v-btn--top,.v-btn--fixed.v-btn--top{top:16px}.v-btn--absolute.v-btn--bottom,.v-btn--fixed.v-btn--bottom{bottom:16px}.v-btn--absolute{position:absolute}.v-btn--fixed{position:fixed}.v-btn--block{display:flex;flex:1 0 auto;min-width:100%!important;max-width:none}.v-btn--is-elevated{box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.v-btn--is-elevated:after{box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)}.v-btn--is-elevated:active{box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}.v-btn--is-elevated.v-btn--fab{box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12)}.v-btn--is-elevated.v-btn--fab:after{box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}.v-btn--is-elevated.v-btn--fab:active{box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12)}.v-btn--disabled{pointer-events:none}.v-btn--fab,.v-btn--icon{min-height:0;min-width:0;padding:0}.v-btn--fab.v-size--x-small .v-icon,.v-btn--icon.v-size--x-small .v-icon{height:18px;font-size:18px;width:18px}.v-btn--fab.v-size--default .v-icon,.v-btn--fab.v-size--small .v-icon,.v-btn--icon.v-size--default .v-icon,.v-btn--icon.v-size--small .v-icon{height:24px;font-size:24px;width:24px}.v-btn--fab.v-size--large .v-icon,.v-btn--icon.v-size--large .v-icon{height:28px;font-size:28px;width:28px}.v-btn--fab.v-size--x-large .v-icon,.v-btn--icon.v-size--x-large .v-icon{height:32px;font-size:32px;width:32px}.v-btn--icon.v-size--x-small{height:20px;width:20px}.v-btn--icon.v-size--small{height:28px;width:28px}.v-btn--icon.v-size--default{height:36px;width:36px}.v-btn--icon.v-size--large{height:44px;width:44px}.v-btn--icon.v-size--x-large{height:52px;width:52px}.v-btn--fab.v-btn--absolute,.v-btn--fab.v-btn--fixed{z-index:4}.v-btn--fab.v-size--x-small{height:32px;width:32px}.v-btn--fab.v-size--x-small.v-btn--absolute.v-btn--bottom{bottom:-16px}.v-btn--fab.v-size--x-small.v-btn--absolute.v-btn--top{top:-16px}.v-btn--fab.v-size--small{height:40px;width:40px}.v-btn--fab.v-size--small.v-btn--absolute.v-btn--bottom{bottom:-20px}.v-btn--fab.v-size--small.v-btn--absolute.v-btn--top{top:-20px}.v-btn--fab.v-size--default{height:56px;width:56px}.v-btn--fab.v-size--default.v-btn--absolute.v-btn--bottom{bottom:-28px}.v-btn--fab.v-size--default.v-btn--absolute.v-btn--top{top:-28px}.v-btn--fab.v-size--large{height:64px;width:64px}.v-btn--fab.v-size--large.v-btn--absolute.v-btn--bottom{bottom:-32px}.v-btn--fab.v-size--large.v-btn--absolute.v-btn--top{top:-32px}.v-btn--fab.v-size--x-large{height:72px;width:72px}.v-btn--fab.v-size--x-large.v-btn--absolute.v-btn--bottom{bottom:-36px}.v-btn--fab.v-size--x-large.v-btn--absolute.v-btn--top{top:-36px}.v-btn--loading{pointer-events:none;transition:none}.v-btn--loading .v-btn__content{opacity:0}.v-btn--outlined{border:thin solid currentColor}.v-btn--plain:before{display:none}.v-btn--plain:not(.v-btn--active):not(.v-btn--loading):not(:focus):not(:hover) .v-btn__content{opacity:.62}.v-btn--round{border-radius:50%}.v-btn--rounded{border-radius:28px}.v-btn--tile{border-radius:0}.v-progress-circular{position:relative;display:inline-flex;vertical-align:middle;justify-content:center;align-items:center}.v-progress-circular>svg{width:100%;height:100%;margin:auto;position:absolute;top:0;bottom:0;left:0;right:0;z-index:0}.v-progress-circular--indeterminate>svg{animation:progress-circular-rotate 1.4s linear infinite;transform-origin:center center;transition:all .2s ease-in-out}.v-progress-circular--indeterminate .v-progress-circular__overlay{animation:progress-circular-dash 1.4s ease-in-out infinite;stroke-linecap:round;stroke-dasharray:80,200;stroke-dashoffset:0px}.v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay,.v-progress-circular--indeterminate:not(.v-progress-circular--visible)>svg{animation-play-state:paused!important}.v-progress-circular__info{align-items:center;display:flex;justify-content:center}.v-progress-circular__underlay{stroke:hsla(0,0%,62%,.4);z-index:1}.v-progress-circular__overlay{stroke:currentColor;z-index:2;transition:all .6s ease-in-out}@keyframes progress-circular-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0px}50%{stroke-dasharray:100,200;stroke-dashoffset:-15px}to{stroke-dasharray:100,200;stroke-dashoffset:-124px}}@keyframes progress-circular-rotate{to{transform:rotate(1turn)}}.theme--light.v-text-field>.v-input__control>.v-input__slot:before{border-color:rgba(0,0,0,.42)}.theme--light.v-text-field:not(.v-input--has-state):hover>.v-input__control>.v-input__slot:before{border-color:rgba(0,0,0,.87)}.theme--light.v-text-field.v-input--is-disabled .v-input__slot:before{-o-border-image:repeating-linear-gradient(90deg,rgba(0,0,0,.38) 0,rgba(0,0,0,.38) 2px,transparent 0,transparent 4px) 1 repeat;border-image:repeating-linear-gradient(90deg,rgba(0,0,0,.38) 0,rgba(0,0,0,.38) 2px,transparent 0,transparent 4px) 1 repeat}.theme--light.v-text-field--filled>.v-input__control>.v-input__slot{background:rgba(0,0,0,.06)}.theme--light.v-text-field--filled:not(.v-input--is-focused):not(.v-input--has-state)>.v-input__control>.v-input__slot:hover{background:rgba(0,0,0,.12)}.theme--light.v-text-field--solo>.v-input__control>.v-input__slot{background:#fff}.theme--light.v-text-field--solo-inverted>.v-input__control>.v-input__slot{background:rgba(0,0,0,.06)}.theme--light.v-text-field--solo-inverted.v-input--is-focused>.v-input__control>.v-input__slot{background:#424242}.theme--light.v-text-field--solo-inverted.v-input--is-focused>.v-input__control>.v-input__slot input{color:#fff}.theme--light.v-text-field--solo-inverted.v-input--is-focused>.v-input__control>.v-input__slot input::-moz-placeholder{color:hsla(0,0%,100%,.5)}.theme--light.v-text-field--solo-inverted.v-input--is-focused>.v-input__control>.v-input__slot input::placeholder{color:hsla(0,0%,100%,.5)}.theme--light.v-text-field--solo-inverted.v-input--is-focused>.v-input__control>.v-input__slot .v-label{color:hsla(0,0%,100%,.7)}.theme--light.v-text-field--outlined:not(.v-input--is-focused):not(.v-input--has-state)>.v-input__control>.v-input__slot fieldset{color:rgba(0,0,0,.38)}.theme--light.v-text-field--outlined:not(.v-input--is-focused):not(.v-input--has-state):not(.v-input--is-disabled)>.v-input__control>.v-input__slot:hover fieldset{color:rgba(0,0,0,.86)}.theme--light.v-text-field--outlined:not(.v-input--is-focused).v-input--is-disabled>.v-input__control>.v-input__slot fieldset{color:rgba(0,0,0,.26)}.theme--dark.v-text-field>.v-input__control>.v-input__slot:before{border-color:hsla(0,0%,100%,.7)}.theme--dark.v-text-field:not(.v-input--has-state):hover>.v-input__control>.v-input__slot:before{border-color:#fff}.theme--dark.v-text-field.v-input--is-disabled .v-input__slot:before{-o-border-image:repeating-linear-gradient(90deg,hsla(0,0%,100%,.5) 0,hsla(0,0%,100%,.5) 2px,transparent 0,transparent 4px) 1 repeat;border-image:repeating-linear-gradient(90deg,hsla(0,0%,100%,.5) 0,hsla(0,0%,100%,.5) 2px,transparent 0,transparent 4px) 1 repeat}.theme--dark.v-text-field--filled>.v-input__control>.v-input__slot{background:hsla(0,0%,100%,.08)}.theme--dark.v-text-field--filled:not(.v-input--is-focused):not(.v-input--has-state)>.v-input__control>.v-input__slot:hover{background:hsla(0,0%,100%,.16)}.theme--dark.v-text-field--solo>.v-input__control>.v-input__slot{background:#1e1e1e}.theme--dark.v-text-field--solo-inverted>.v-input__control>.v-input__slot{background:hsla(0,0%,100%,.16)}.theme--dark.v-text-field--solo-inverted.v-input--is-focused>.v-input__control>.v-input__slot{background:#fff}.theme--dark.v-text-field--solo-inverted.v-input--is-focused>.v-input__control>.v-input__slot input{color:rgba(0,0,0,.87)}.theme--dark.v-text-field--solo-inverted.v-input--is-focused>.v-input__control>.v-input__slot input::-moz-placeholder{color:rgba(0,0,0,.38)}.theme--dark.v-text-field--solo-inverted.v-input--is-focused>.v-input__control>.v-input__slot input::placeholder{color:rgba(0,0,0,.38)}.theme--dark.v-text-field--solo-inverted.v-input--is-focused>.v-input__control>.v-input__slot .v-label{color:rgba(0,0,0,.6)}.theme--dark.v-text-field--outlined:not(.v-input--is-focused):not(.v-input--has-state)>.v-input__control>.v-input__slot fieldset{color:hsla(0,0%,100%,.24)}.theme--dark.v-text-field--outlined:not(.v-input--is-focused):not(.v-input--has-state):not(.v-input--is-disabled)>.v-input__control>.v-input__slot:hover fieldset{color:#fff}.theme--dark.v-text-field--outlined:not(.v-input--is-focused).v-input--is-disabled>.v-input__control>.v-input__slot fieldset{color:hsla(0,0%,100%,.16)}.v-text-field{padding-top:12px;margin-top:4px}.v-text-field__prefix,.v-text-field__suffix{line-height:20px}.v-text-field input{flex:1 1 auto;line-height:20px;padding:8px 0 8px;max-width:100%;min-width:0;width:100%}.v-text-field .v-input__control,.v-text-field .v-input__slot,.v-text-field fieldset{border-radius:inherit}.v-text-field .v-input__control,.v-text-field fieldset,.v-text-field.v-input--has-state .v-input__control>.v-text-field__details>.v-counter,.v-text-field.v-input--is-disabled .v-input__control>.v-text-field__details>.v-counter,.v-text-field.v-input--is-disabled .v-input__control>.v-text-field__details>.v-messages{color:currentColor}.v-text-field.v-input--dense{padding-top:0}.v-text-field.v-input--dense .v-label{top:4px}.v-text-field.v-input--dense:not(.v-text-field--outlined) .v-text-field__prefix,.v-text-field.v-input--dense:not(.v-text-field--outlined) .v-text-field__suffix,.v-text-field.v-input--dense:not(.v-text-field--outlined) input{padding:4px 0 2px}.v-text-field.v-input--dense:not(.v-text-field--outlined) .v-text-field__prefix{padding-right:4px}.v-text-field.v-input--dense:not(.v-text-field--outlined) .v-text-field__suffix{padding-left:4px}.v-text-field.v-input--dense[type=text]::-ms-clear{display:none}.v-text-field.v-input--dense .v-input__append-inner,.v-text-field.v-input--dense .v-input__prepend-inner{margin-top:0}.v-text-field .v-input__append-inner,.v-text-field .v-input__prepend-inner{align-self:flex-start;display:inline-flex;margin-top:4px;line-height:1;-webkit-user-select:none;-moz-user-select:none;user-select:none}.v-application--is-ltr .v-text-field .v-input__prepend-inner{margin-right:auto;padding-right:4px}.v-application--is-ltr .v-text-field .v-input__append-inner,.v-application--is-rtl .v-text-field .v-input__prepend-inner{margin-left:auto;padding-left:4px}.v-application--is-rtl .v-text-field .v-input__append-inner{margin-right:auto;padding-right:4px}.v-text-field .v-counter{white-space:nowrap}.v-application--is-ltr .v-text-field .v-counter{margin-left:8px}.v-application--is-rtl .v-text-field .v-counter{margin-right:8px}.v-text-field .v-label{max-width:90%;overflow:hidden;text-overflow:ellipsis;top:6px;white-space:nowrap;pointer-events:none}.v-application--is-ltr .v-text-field .v-label{transform-origin:top left}.v-application--is-rtl .v-text-field .v-label{transform-origin:top right}.v-text-field .v-label--active{max-width:133%;transform:translateY(-18px) scale(.75);pointer-events:auto}.v-text-field>.v-input__control>.v-input__slot{cursor:text}.v-text-field>.v-input__control>.v-input__slot:after,.v-text-field>.v-input__control>.v-input__slot:before{bottom:-1px;content:"";left:0;position:absolute;transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-text-field>.v-input__control>.v-input__slot:before{border-color:inherit;border-style:solid;border-width:thin 0 0 0}.v-text-field>.v-input__control>.v-input__slot:after{background-color:currentColor;border-color:currentColor;border-style:solid;border-width:thin 0 thin 0;transform:scaleX(0)}.v-text-field__details{display:flex;flex:1 0 auto;max-width:100%;min-height:14px;overflow:hidden}.v-text-field__prefix,.v-text-field__suffix{align-self:center;cursor:default;transition:color .3s cubic-bezier(.25,.8,.5,1);white-space:nowrap}.v-application--is-ltr .v-text-field__prefix{text-align:right;padding-right:4px}.v-application--is-rtl .v-text-field__prefix{text-align:left;padding-left:4px}.v-text-field__suffix{white-space:nowrap}.v-application--is-ltr .v-text-field__suffix{padding-left:4px}.v-application--is-rtl .v-text-field__suffix{padding-right:4px}.v-application--is-ltr .v-text-field--reverse .v-text-field__prefix{text-align:left;padding-right:0;padding-left:4px}.v-application--is-rtl .v-text-field--reverse .v-text-field__prefix{text-align:right;padding-right:4px;padding-left:0}.v-application--is-ltr .v-text-field--reverse .v-text-field__suffix{padding-left:0;padding-right:4px}.v-application--is-rtl .v-text-field--reverse .v-text-field__suffix{padding-left:4px;padding-right:0}.v-text-field>.v-input__control>.v-input__slot>.v-text-field__slot{display:flex;flex:1 1 auto;position:relative}.v-text-field:not(.v-text-field--is-booted) .v-label,.v-text-field:not(.v-text-field--is-booted) legend{transition:none}.v-text-field--filled,.v-text-field--full-width,.v-text-field--outlined{position:relative}.v-text-field--filled>.v-input__control>.v-input__slot,.v-text-field--full-width>.v-input__control>.v-input__slot,.v-text-field--outlined>.v-input__control>.v-input__slot{align-items:stretch;min-height:56px}.v-text-field--filled.v-input--dense>.v-input__control>.v-input__slot,.v-text-field--full-width.v-input--dense>.v-input__control>.v-input__slot,.v-text-field--outlined.v-input--dense>.v-input__control>.v-input__slot{min-height:52px}.v-text-field--filled.v-input--dense.v-text-field--outlined.v-text-field--filled>.v-input__control>.v-input__slot,.v-text-field--filled.v-input--dense.v-text-field--outlined>.v-input__control>.v-input__slot,.v-text-field--filled.v-input--dense.v-text-field--single-line>.v-input__control>.v-input__slot,.v-text-field--full-width.v-input--dense.v-text-field--outlined.v-text-field--filled>.v-input__control>.v-input__slot,.v-text-field--full-width.v-input--dense.v-text-field--outlined>.v-input__control>.v-input__slot,.v-text-field--full-width.v-input--dense.v-text-field--single-line>.v-input__control>.v-input__slot,.v-text-field--outlined.v-input--dense.v-text-field--outlined.v-text-field--filled>.v-input__control>.v-input__slot,.v-text-field--outlined.v-input--dense.v-text-field--outlined>.v-input__control>.v-input__slot,.v-text-field--outlined.v-input--dense.v-text-field--single-line>.v-input__control>.v-input__slot{min-height:40px}.v-text-field--outlined{border-radius:4px}.v-text-field--enclosed .v-input__append-inner,.v-text-field--enclosed .v-input__append-outer,.v-text-field--enclosed .v-input__prepend-inner,.v-text-field--enclosed .v-input__prepend-outer,.v-text-field--full-width .v-input__append-inner,.v-text-field--full-width .v-input__append-outer,.v-text-field--full-width .v-input__prepend-inner,.v-text-field--full-width .v-input__prepend-outer{margin-top:17px}.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo) .v-input__append-inner,.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo) .v-input__append-outer,.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo) .v-input__prepend-inner,.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo) .v-input__prepend-outer,.v-text-field--full-width.v-input--dense:not(.v-text-field--solo) .v-input__append-inner,.v-text-field--full-width.v-input--dense:not(.v-text-field--solo) .v-input__append-outer,.v-text-field--full-width.v-input--dense:not(.v-text-field--solo) .v-input__prepend-inner,.v-text-field--full-width.v-input--dense:not(.v-text-field--solo) .v-input__prepend-outer{margin-top:14px}.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo).v-text-field--single-line .v-input__append-inner,.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo).v-text-field--single-line .v-input__append-outer,.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo).v-text-field--single-line .v-input__prepend-inner,.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo).v-text-field--single-line .v-input__prepend-outer,.v-text-field--full-width.v-input--dense:not(.v-text-field--solo).v-text-field--single-line .v-input__append-inner,.v-text-field--full-width.v-input--dense:not(.v-text-field--solo).v-text-field--single-line .v-input__append-outer,.v-text-field--full-width.v-input--dense:not(.v-text-field--solo).v-text-field--single-line .v-input__prepend-inner,.v-text-field--full-width.v-input--dense:not(.v-text-field--solo).v-text-field--single-line .v-input__prepend-outer{margin-top:9px}.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo).v-text-field--outlined .v-input__append-inner,.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo).v-text-field--outlined .v-input__append-outer,.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo).v-text-field--outlined .v-input__prepend-inner,.v-text-field--enclosed.v-input--dense:not(.v-text-field--solo).v-text-field--outlined .v-input__prepend-outer,.v-text-field--full-width.v-input--dense:not(.v-text-field--solo).v-text-field--outlined .v-input__append-inner,.v-text-field--full-width.v-input--dense:not(.v-text-field--solo).v-text-field--outlined .v-input__append-outer,.v-text-field--full-width.v-input--dense:not(.v-text-field--solo).v-text-field--outlined .v-input__prepend-inner,.v-text-field--full-width.v-input--dense:not(.v-text-field--solo).v-text-field--outlined .v-input__prepend-outer{margin-top:8px}.v-text-field--filled .v-label,.v-text-field--full-width .v-label{top:18px}.v-text-field--filled .v-label--active,.v-text-field--full-width .v-label--active{transform:translateY(-6px) scale(.75)}.v-text-field--filled.v-input--dense .v-label,.v-text-field--full-width.v-input--dense .v-label{top:17px}.v-text-field--filled.v-input--dense .v-label--active,.v-text-field--full-width.v-input--dense .v-label--active{transform:translateY(-10px) scale(.75)}.v-text-field--filled.v-input--dense.v-text-field--single-line .v-label,.v-text-field--full-width.v-input--dense.v-text-field--single-line .v-label{top:11px}.v-text-field--filled{border-radius:4px 4px 0 0}.v-text-field--filled:not(.v-text-field--single-line) input{margin-top:22px}.v-text-field--filled.v-input--dense:not(.v-text-field--single-line).v-text-field--outlined input{margin-top:0}.v-text-field--filled .v-text-field__prefix,.v-text-field--filled .v-text-field__suffix{max-height:32px;margin-top:20px}.v-text-field--full-width{border-radius:0}.v-text-field--outlined .v-text-field__slot,.v-text-field--single-line .v-text-field__slot{align-items:center}.v-text-field.v-text-field--enclosed{margin:0;padding:0}.v-text-field.v-text-field--enclosed.v-text-field--single-line .v-text-field__prefix,.v-text-field.v-text-field--enclosed.v-text-field--single-line .v-text-field__suffix{margin-top:0}.v-text-field.v-text-field--enclosed:not(.v-text-field--filled) .v-progress-linear__background{display:none}.v-text-field.v-text-field--enclosed .v-text-field__details,.v-text-field.v-text-field--enclosed:not(.v-text-field--rounded)>.v-input__control>.v-input__slot{padding:0 12px}.v-text-field.v-text-field--enclosed .v-text-field__details{padding-top:0;margin-bottom:8px}.v-application--is-ltr .v-text-field--reverse input,.v-application--is-ltr .v-text-field--reverse textarea{text-align:right}.v-application--is-rtl .v-text-field--reverse input,.v-application--is-rtl .v-text-field--reverse textarea{text-align:left}.v-application--is-ltr .v-text-field--reverse .v-label{transform-origin:top right}.v-application--is-rtl .v-text-field--reverse .v-label{transform-origin:top left}.v-text-field--reverse .v-text-field__slot,.v-text-field--reverse>.v-input__control>.v-input__slot{flex-direction:row-reverse}.v-text-field--outlined>.v-input__control>.v-input__slot:after,.v-text-field--outlined>.v-input__control>.v-input__slot:before,.v-text-field--rounded>.v-input__control>.v-input__slot:after,.v-text-field--rounded>.v-input__control>.v-input__slot:before,.v-text-field--solo>.v-input__control>.v-input__slot:after,.v-text-field--solo>.v-input__control>.v-input__slot:before{display:none}.v-text-field--outlined,.v-text-field--solo{border-radius:4px}.v-text-field--outlined{margin-bottom:16px;transition:border .3s cubic-bezier(.25,.8,.5,1)}.v-text-field--outlined .v-label{top:18px}.v-text-field--outlined .v-label--active{transform:translateY(-24px) scale(.75)}.v-text-field--outlined.v-input--dense .v-label{top:10px}.v-text-field--outlined.v-input--dense .v-label--active{transform:translateY(-16px) scale(.75)}.v-text-field--outlined fieldset{border-collapse:collapse;border-color:currentColor;border-style:solid;border-width:1px;bottom:0;left:0;pointer-events:none;position:absolute;right:0;top:-5px;transition-duration:.15s;transition-property:color;transition-timing-function:cubic-bezier(.25,.8,.25,1)}.v-application--is-ltr .v-text-field--outlined fieldset{padding-left:8px}.v-application--is-ltr .v-text-field--outlined.v-text-field--reverse fieldset,.v-application--is-rtl .v-text-field--outlined fieldset{padding-right:8px}.v-application--is-rtl .v-text-field--outlined.v-text-field--reverse fieldset{padding-left:8px}.v-text-field--outlined legend{line-height:11px;padding:0;transition:width .3s cubic-bezier(.25,.8,.5,1)}.v-application--is-ltr .v-text-field--outlined legend{text-align:left}.v-application--is-rtl .v-text-field--outlined legend{text-align:right}.v-application--is-ltr .v-text-field--outlined.v-text-field--reverse legend{margin-left:auto}.v-application--is-rtl .v-text-field--outlined.v-text-field--reverse legend{margin-right:auto}.v-application--is-ltr .v-text-field--outlined.v-text-field--rounded legend{margin-left:12px}.v-application--is-rtl .v-text-field--outlined.v-text-field--rounded legend{margin-right:12px}.v-text-field--outlined>.v-input__control>.v-input__slot{background:transparent}.v-text-field--outlined .v-text-field__prefix{max-height:32px}.v-text-field--outlined .v-input__append-outer,.v-text-field--outlined .v-input__prepend-outer{margin-top:18px}.v-text-field--outlined.v-input--has-state fieldset,.v-text-field--outlined.v-input--is-focused fieldset{border:2px solid currentColor}.v-text-field--rounded{border-radius:28px}.v-text-field--rounded>.v-input__control>.v-input__slot{padding:0 24px}.v-text-field--shaped{border-radius:16px 16px 0 0}.v-text-field.v-text-field--solo .v-label{top:calc(50% - 9px)}.v-text-field.v-text-field--solo .v-input__control{min-height:48px;padding:0}.v-text-field.v-text-field--solo .v-input__control input{caret-color:auto}.v-text-field.v-text-field--solo.v-input--dense>.v-input__control{min-height:38px}.v-text-field.v-text-field--solo:not(.v-text-field--solo-flat)>.v-input__control>.v-input__slot{box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.v-text-field.v-text-field--solo .v-input__append-inner,.v-text-field.v-text-field--solo .v-input__prepend-inner{align-self:center;margin-top:0}.v-text-field.v-text-field--solo .v-input__append-outer,.v-text-field.v-text-field--solo .v-input__prepend-outer{margin-top:12px}.v-text-field.v-text-field--solo.v-input--dense .v-input__append-outer,.v-text-field.v-text-field--solo.v-input--dense .v-input__prepend-outer{margin-top:7px}.v-text-field.v-input--is-focused>.v-input__control>.v-input__slot:after{transform:scaleX(1)}.v-text-field.v-input--has-state>.v-input__control>.v-input__slot:before{border-color:currentColor}.v-text-field .v-input__icon--clear{opacity:0;transition:opacity .3s cubic-bezier(.25,.8,.5,1)}.v-text-field.v-input--is-dirty:hover .v-input__icon--clear,.v-text-field.v-input--is-focused .v-input__icon--clear{opacity:1}.theme--light.v-select .v-select__selections{color:rgba(0,0,0,.87)}.theme--light.v-select .v-select__selection--disabled,.theme--light.v-select.v-input--is-disabled .v-select__selections{color:rgba(0,0,0,.38)}.theme--dark.v-select .v-select__selections,.theme--light.v-select.v-text-field--solo-inverted.v-input--is-focused .v-select__selections{color:#fff}.theme--dark.v-select .v-select__selection--disabled,.theme--dark.v-select.v-input--is-disabled .v-select__selections{color:hsla(0,0%,100%,.5)}.theme--dark.v-select.v-text-field--solo-inverted.v-input--is-focused .v-select__selections{color:rgba(0,0,0,.87)}.v-select{position:relative}.v-select:not(.v-select--is-multi).v-text-field--single-line .v-select__selections{flex-wrap:nowrap}.v-select>.v-input__control>.v-input__slot{cursor:pointer}.v-select .v-chip{flex:0 1 auto;margin:4px}.v-select .v-chip--selected:after{opacity:.22}.v-select .fade-transition-leave-active{position:absolute;left:0}.v-select.v-input--is-dirty ::-moz-placeholder{color:transparent!important}.v-select.v-input--is-dirty ::placeholder{color:transparent!important}.v-select:not(.v-input--is-dirty):not(.v-input--is-focused) .v-text-field__prefix{line-height:20px;top:7px;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-select.v-text-field--enclosed:not(.v-text-field--single-line):not(.v-text-field--outlined) .v-select__selections{padding-top:20px}.v-select.v-text-field--outlined:not(.v-text-field--single-line) .v-select__selections{padding:8px 0}.v-select.v-text-field--outlined:not(.v-text-field--single-line).v-input--dense .v-select__selections{padding:4px 0}.v-select.v-text-field input{flex:1 1;min-width:0;position:relative}.v-select.v-text-field:not(.v-text-field--single-line) input{margin-top:0}.v-select.v-select--is-menu-active .v-input__icon--append .v-icon{transform:rotate(180deg)}.v-select.v-select--chips input{margin:0}.v-select.v-select--chips .v-select__selections{min-height:42px}.v-select.v-select--chips.v-input--dense .v-select__selections{min-height:40px}.v-select.v-select--chips .v-chip--select.v-chip--active:before{opacity:.2}.v-select.v-select--chips.v-select--chips--small .v-select__selections{min-height:26px}.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box .v-select__selections,.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed .v-select__selections{min-height:68px}.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box.v-input--dense .v-select__selections,.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed.v-input--dense .v-select__selections{min-height:40px}.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box.v-select--chips--small .v-select__selections,.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed.v-select--chips--small .v-select__selections{min-height:26px}.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--box.v-select--chips--small.v-input--dense .v-select__selections,.v-select.v-select--chips:not(.v-text-field--single-line).v-text-field--enclosed.v-select--chips--small.v-input--dense .v-select__selections{min-height:38px}.v-select.v-text-field--reverse .v-select__selections,.v-select.v-text-field--reverse .v-select__slot{flex-direction:row-reverse}.v-select.v-input--is-disabled:not(.v-input--is-readonly):not(.v-autocomplete){pointer-events:none}.v-select__selections{align-items:center;display:flex;flex:1 1;flex-wrap:wrap;line-height:18px;max-width:100%;min-width:0}.v-select__selection{max-width:90%}.v-select__selection--comma{margin:7px 4px 7px 0;min-height:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.v-select.v-input--dense .v-select__selection--comma{margin:5px 4px 3px 0}.v-select.v-input--dense .v-chip{margin:0 4px 0 4px}.v-select__slot{position:relative;align-items:center;display:flex;max-width:100%;min-width:0;width:100%}.v-select:not(.v-text-field--single-line):not(.v-text-field--outlined) .v-select__slot>input{align-self:flex-end}.v-chip:not(.v-chip--outlined).accent,.v-chip:not(.v-chip--outlined).error,.v-chip:not(.v-chip--outlined).info,.v-chip:not(.v-chip--outlined).primary,.v-chip:not(.v-chip--outlined).secondary,.v-chip:not(.v-chip--outlined).success,.v-chip:not(.v-chip--outlined).warning{color:#fff}.theme--light.v-chip{border-color:rgba(0,0,0,.12);color:rgba(0,0,0,.87)}.theme--light.v-chip:not(.v-chip--active){background:#e0e0e0}.theme--light.v-chip:hover:before{opacity:.04}.theme--light.v-chip--active:before,.theme--light.v-chip--active:hover:before,.theme--light.v-chip:focus:before{opacity:.12}.theme--light.v-chip--active:focus:before{opacity:.16}.theme--dark.v-chip{border-color:hsla(0,0%,100%,.12);color:#fff}.theme--dark.v-chip:not(.v-chip--active){background:#555}.theme--dark.v-chip:hover:before{opacity:.08}.theme--dark.v-chip--active:before,.theme--dark.v-chip--active:hover:before,.theme--dark.v-chip:focus:before{opacity:.24}.theme--dark.v-chip--active:focus:before{opacity:.32}.v-chip{align-items:center;cursor:default;display:inline-flex;line-height:20px;max-width:100%;outline:none;overflow:hidden;padding:0 12px;position:relative;text-decoration:none;transition-duration:.28s;transition-property:box-shadow,opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);vertical-align:middle;white-space:nowrap}.v-chip:before{background-color:currentColor;bottom:0;border-radius:inherit;content:"";left:0;opacity:0;position:absolute;pointer-events:none;right:0;top:0}.v-chip .v-avatar{height:24px!important;min-width:24px!important;width:24px!important}.v-chip .v-icon{font-size:24px}.v-application--is-ltr .v-chip .v-avatar--left,.v-application--is-ltr .v-chip .v-icon--left{margin-left:-6px;margin-right:6px}.v-application--is-ltr .v-chip .v-avatar--right,.v-application--is-ltr .v-chip .v-icon--right,.v-application--is-rtl .v-chip .v-avatar--left,.v-application--is-rtl .v-chip .v-icon--left{margin-left:6px;margin-right:-6px}.v-application--is-rtl .v-chip .v-avatar--right,.v-application--is-rtl .v-chip .v-icon--right{margin-left:-6px;margin-right:6px}.v-chip:not(.v-chip--no-color) .v-icon{color:inherit}.v-chip .v-chip__close.v-icon{font-size:18px;max-height:18px;max-width:18px;-webkit-user-select:none;-moz-user-select:none;user-select:none}.v-application--is-ltr .v-chip .v-chip__close.v-icon.v-icon--right{margin-right:-4px}.v-application--is-rtl .v-chip .v-chip__close.v-icon.v-icon--right{margin-left:-4px}.v-chip .v-chip__close.v-icon:active,.v-chip .v-chip__close.v-icon:focus,.v-chip .v-chip__close.v-icon:hover{opacity:.72}.v-chip .v-chip__content{align-items:center;display:inline-flex;height:100%;max-width:100%}.v-chip--active .v-icon{color:inherit}.v-chip--link:before{transition:opacity .3s cubic-bezier(.25,.8,.5,1)}.v-chip--link:focus:before{opacity:.32}.v-chip--clickable{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none}.v-chip--clickable:active{box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.v-chip--disabled{opacity:.4;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.v-chip__filter{max-width:24px}.v-chip__filter.v-icon{color:inherit}.v-chip__filter.expand-x-transition-enter,.v-chip__filter.expand-x-transition-leave-active{margin:0}.v-chip--pill .v-chip__filter{margin:0 16px 0 0}.v-chip--pill .v-avatar{height:32px!important;width:32px!important}.v-application--is-ltr .v-chip--pill .v-avatar--left{margin-left:-12px}.v-application--is-ltr .v-chip--pill .v-avatar--right,.v-application--is-rtl .v-chip--pill .v-avatar--left{margin-right:-12px}.v-application--is-rtl .v-chip--pill .v-avatar--right{margin-left:-12px}.v-chip--label{border-radius:4px!important}.v-chip.v-chip--outlined{border-width:thin;border-style:solid}.v-chip.v-chip--outlined.v-chip--active:before{opacity:.08}.v-chip.v-chip--outlined .v-icon{color:inherit}.v-chip.v-chip--outlined.v-chip.v-chip{background-color:transparent!important}.v-chip.v-chip--selected{background:transparent}.v-chip.v-chip--selected:after{opacity:.28}.v-chip.v-size--x-small{border-radius:8px;font-size:10px;height:16px}.v-chip.v-size--small{border-radius:12px;font-size:12px;height:24px}.v-chip.v-size--default{border-radius:16px;font-size:14px;height:32px}.v-chip.v-size--large{border-radius:27px;font-size:16px;height:54px}.v-chip.v-size--x-large{border-radius:33px;font-size:18px;height:66px}.theme--light.v-icon{color:rgba(0,0,0,.54)}.theme--light.v-icon:focus:after{opacity:.12}.theme--light.v-icon.v-icon.v-icon--disabled{color:rgba(0,0,0,.38)!important}.theme--dark.v-icon{color:#fff}.theme--dark.v-icon:focus:after{opacity:.24}.theme--dark.v-icon.v-icon.v-icon--disabled{color:hsla(0,0%,100%,.5)!important}.v-icon.v-icon{align-items:center;display:inline-flex;font-feature-settings:"liga";font-size:24px;justify-content:center;letter-spacing:normal;line-height:1;position:relative;text-indent:0;transition:.3s cubic-bezier(.25,.8,.5,1),visibility 0s;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;user-select:none}.v-icon.v-icon:after{background-color:currentColor;border-radius:50%;content:"";display:inline-block;height:100%;left:0;opacity:0;pointer-events:none;position:absolute;top:0;transform:scale(1.3);width:100%;transition:opacity .2s cubic-bezier(.4,0,.6,1)}.v-icon.v-icon--dense{font-size:20px}.v-icon--right{margin-left:8px}.v-icon--left{margin-right:8px}.v-icon.v-icon.v-icon--link{cursor:pointer;outline:none}.v-icon--disabled{pointer-events:none}.v-icon--dense .v-icon__component,.v-icon--dense .v-icon__svg{height:20px}.v-icon__component,.v-icon__svg{height:24px;width:24px}.v-icon__svg{fill:currentColor}.v-menu{display:none}.v-menu--attached{display:inline}.v-menu__content{position:absolute;display:inline-block;max-width:80%;overflow-y:auto;overflow-x:hidden;contain:content;box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12);border-radius:4px}.v-menu__content--active{pointer-events:none}.v-menu__content--auto .v-list-item{transition-property:transform,opacity;transition-duration:.3s;transition-timing-function:cubic-bezier(.25,.8,.25,1)}.v-menu__content--fixed{position:fixed}.v-menu__content>.card{contain:content;backface-visibility:hidden}.v-menu>.v-menu__content{max-width:none}.v-menu-transition-enter .v-list-item{min-width:0;pointer-events:none}.v-menu-transition-enter-to .v-list-item{transition-delay:.1s}.v-menu-transition-leave-active,.v-menu-transition-leave-to{pointer-events:none}.v-menu-transition-enter,.v-menu-transition-leave-to{opacity:0}.v-menu-transition-enter-active,.v-menu-transition-leave-active{transition:all .3s cubic-bezier(.25,.8,.25,1)}.v-menu-transition-enter.v-menu__content--auto{transition:none!important}.v-menu-transition-enter.v-menu__content--auto .v-list-item{opacity:0;transform:translateY(-15px)}.v-menu-transition-enter.v-menu__content--auto .v-list-item--active{opacity:1;transform:none!important;pointer-events:auto}.v-simple-checkbox{align-self:center;line-height:normal;position:relative;-webkit-user-select:none;-moz-user-select:none;user-select:none}.v-simple-checkbox .v-icon{cursor:pointer}.v-simple-checkbox--disabled{cursor:default}.theme--light.v-divider{border-color:rgba(0,0,0,.12)}.theme--dark.v-divider{border-color:hsla(0,0%,100%,.12)}.v-divider{display:block;flex:1 1 0px;max-width:100%;height:0;max-height:0;border:solid;border-width:thin 0 0 0;transition:inherit}.v-divider--inset:not(.v-divider--vertical){max-width:calc(100% - 72px)}.v-application--is-ltr .v-divider--inset:not(.v-divider--vertical){margin-left:72px}.v-application--is-rtl .v-divider--inset:not(.v-divider--vertical){margin-right:72px}.v-divider--vertical{align-self:stretch;border:solid;border-width:0 thin 0 0;display:inline-flex;height:inherit;min-height:100%;max-height:100%;max-width:0;width:0;vertical-align:text-bottom;margin:0 -1px}.v-divider--vertical.v-divider--inset{margin-top:8px;min-height:0;max-height:calc(100% - 16px)}.theme--light.v-subheader{color:rgba(0,0,0,.6)}.theme--dark.v-subheader{color:hsla(0,0%,100%,.7)}.v-subheader{align-items:center;display:flex;height:48px;font-size:.875rem;font-weight:400;padding:0 16px 0 16px}.v-subheader--inset{margin-left:56px}.v-list.accent>.v-list-item,.v-list.error>.v-list-item,.v-list.info>.v-list-item,.v-list.primary>.v-list-item,.v-list.secondary>.v-list-item,.v-list.success>.v-list-item,.v-list.warning>.v-list-item{color:#fff}.theme--light.v-list{background:#fff;color:rgba(0,0,0,.87)}.theme--light.v-list .v-list--disabled{color:rgba(0,0,0,.38)}.theme--light.v-list .v-list-group--active:after,.theme--light.v-list .v-list-group--active:before{background:rgba(0,0,0,.12)}.theme--dark.v-list{background:#1e1e1e;color:#fff}.theme--dark.v-list .v-list--disabled{color:hsla(0,0%,100%,.5)}.theme--dark.v-list .v-list-group--active:after,.theme--dark.v-list .v-list-group--active:before{background:hsla(0,0%,100%,.12)}.v-sheet.v-list{border-radius:0}.v-sheet.v-list:not(.v-sheet--outlined){box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.v-sheet.v-list.v-sheet--shaped{border-radius:0}.v-list{display:block;padding:8px 0;position:static;transition:box-shadow .28s cubic-bezier(.4,0,.2,1)}.v-list--disabled{pointer-events:none}.v-list--flat .v-list-item:before{display:none}.v-list--dense .v-subheader{font-size:.75rem;height:40px;padding:0 8px}.v-list--nav .v-list-item:not(:last-child):not(:only-child),.v-list--rounded .v-list-item:not(:last-child):not(:only-child){margin-bottom:8px}.v-list--nav .v-list-item--dense:not(:last-child):not(:only-child),.v-list--nav.v-list--dense .v-list-item:not(:last-child):not(:only-child),.v-list--rounded .v-list-item--dense:not(:last-child):not(:only-child),.v-list--rounded.v-list--dense .v-list-item:not(:last-child):not(:only-child){margin-bottom:4px}.v-list--nav{padding-left:8px;padding-right:8px}.v-list--nav .v-list-item{padding:0 8px}.v-list--nav .v-list-item,.v-list--nav .v-list-item:before{border-radius:4px}.v-application--is-ltr .v-list.v-sheet--shaped .v-list-item,.v-application--is-ltr .v-list.v-sheet--shaped .v-list-item:before,.v-application--is-ltr .v-list.v-sheet--shaped .v-list-item>.v-ripple__container{border-bottom-right-radius:32px!important;border-top-right-radius:32px!important}.v-application--is-rtl .v-list.v-sheet--shaped .v-list-item,.v-application--is-rtl .v-list.v-sheet--shaped .v-list-item:before,.v-application--is-rtl .v-list.v-sheet--shaped .v-list-item>.v-ripple__container{border-bottom-left-radius:32px!important;border-top-left-radius:32px!important}.v-application--is-ltr .v-list.v-sheet--shaped.v-list--two-line .v-list-item,.v-application--is-ltr .v-list.v-sheet--shaped.v-list--two-line .v-list-item:before,.v-application--is-ltr .v-list.v-sheet--shaped.v-list--two-line .v-list-item>.v-ripple__container{border-bottom-right-radius:42.6666666667px!important;border-top-right-radius:42.6666666667px!important}.v-application--is-rtl .v-list.v-sheet--shaped.v-list--two-line .v-list-item,.v-application--is-rtl .v-list.v-sheet--shaped.v-list--two-line .v-list-item:before,.v-application--is-rtl .v-list.v-sheet--shaped.v-list--two-line .v-list-item>.v-ripple__container{border-bottom-left-radius:42.6666666667px!important;border-top-left-radius:42.6666666667px!important}.v-application--is-ltr .v-list.v-sheet--shaped.v-list--three-line .v-list-item,.v-application--is-ltr .v-list.v-sheet--shaped.v-list--three-line .v-list-item:before,.v-application--is-ltr .v-list.v-sheet--shaped.v-list--three-line .v-list-item>.v-ripple__container{border-bottom-right-radius:58.6666666667px!important;border-top-right-radius:58.6666666667px!important}.v-application--is-rtl .v-list.v-sheet--shaped.v-list--three-line .v-list-item,.v-application--is-rtl .v-list.v-sheet--shaped.v-list--three-line .v-list-item:before,.v-application--is-rtl .v-list.v-sheet--shaped.v-list--three-line .v-list-item>.v-ripple__container{border-bottom-left-radius:58.6666666667px!important;border-top-left-radius:58.6666666667px!important}.v-application--is-ltr .v-list.v-sheet--shaped{padding-right:8px}.v-application--is-rtl .v-list.v-sheet--shaped{padding-left:8px}.v-list--rounded{padding:8px}.v-list--rounded .v-list-item,.v-list--rounded .v-list-item:before,.v-list--rounded .v-list-item>.v-ripple__container{border-radius:32px!important}.v-list--rounded.v-list--two-line .v-list-item,.v-list--rounded.v-list--two-line .v-list-item:before,.v-list--rounded.v-list--two-line .v-list-item>.v-ripple__container{border-radius:42.6666666667px!important}.v-list--rounded.v-list--three-line .v-list-item,.v-list--rounded.v-list--three-line .v-list-item:before,.v-list--rounded.v-list--three-line .v-list-item>.v-ripple__container{border-radius:58.6666666667px!important}.v-list--subheader{padding-top:0}.v-list-group .v-list-group__header .v-list-item__icon.v-list-group__header__append-icon{align-self:center;margin:0;min-width:48px;justify-content:flex-end}.v-list-group--sub-group{align-items:center;display:flex;flex-wrap:wrap}.v-list-group__header.v-list-item--active:not(:hover):not(:focus):before{opacity:0}.v-list-group__items{flex:1 1 auto}.v-list-group__items .v-list-group__items,.v-list-group__items .v-list-item{overflow:hidden}.v-list-group--active>.v-list-group__header.v-list-group__header--sub-group>.v-list-group__header__prepend-icon .v-icon,.v-list-group--active>.v-list-group__header>.v-list-group__header__append-icon .v-icon{transform:rotate(-180deg)}.v-list-group--active>.v-list-group__header .v-list-group__header__prepend-icon .v-icon,.v-list-group--active>.v-list-group__header .v-list-item,.v-list-group--active>.v-list-group__header .v-list-item__content{color:inherit}.v-application--is-ltr .v-list-group--sub-group .v-list-item__action:first-child,.v-application--is-ltr .v-list-group--sub-group .v-list-item__avatar:first-child,.v-application--is-ltr .v-list-group--sub-group .v-list-item__icon:first-child{margin-right:16px}.v-application--is-rtl .v-list-group--sub-group .v-list-item__action:first-child,.v-application--is-rtl .v-list-group--sub-group .v-list-item__avatar:first-child,.v-application--is-rtl .v-list-group--sub-group .v-list-item__icon:first-child{margin-left:16px}.v-application--is-ltr .v-list-group--sub-group .v-list-group__header{padding-left:32px}.v-application--is-rtl .v-list-group--sub-group .v-list-group__header{padding-right:32px}.v-application--is-ltr .v-list-group--sub-group .v-list-group__items .v-list-item{padding-left:40px}.v-application--is-rtl .v-list-group--sub-group .v-list-group__items .v-list-item{padding-right:40px}.v-list-group--sub-group.v-list-group--active .v-list-item__icon.v-list-group__header__prepend-icon .v-icon{transform:rotate(-180deg)}.v-application--is-ltr .v-list-group--no-action>.v-list-group__items>.v-list-item{padding-left:72px}.v-application--is-rtl .v-list-group--no-action>.v-list-group__items>.v-list-item{padding-right:72px}.v-application--is-ltr .v-list-group--no-action.v-list-group--sub-group>.v-list-group__items>.v-list-item{padding-left:88px}.v-application--is-rtl .v-list-group--no-action.v-list-group--sub-group>.v-list-group__items>.v-list-item{padding-right:88px}.v-application--is-ltr .v-list--dense .v-list-group--sub-group .v-list-group__header{padding-left:24px}.v-application--is-rtl .v-list--dense .v-list-group--sub-group .v-list-group__header{padding-right:24px}.v-application--is-ltr .v-list--dense.v-list--nav .v-list-group--no-action>.v-list-group__items>.v-list-item{padding-left:64px}.v-application--is-rtl .v-list--dense.v-list--nav .v-list-group--no-action>.v-list-group__items>.v-list-item{padding-right:64px}.v-application--is-ltr .v-list--dense.v-list--nav .v-list-group--no-action.v-list-group--sub-group>.v-list-group__items>.v-list-item{padding-left:80px}.v-application--is-rtl .v-list--dense.v-list--nav .v-list-group--no-action.v-list-group--sub-group>.v-list-group__items>.v-list-item{padding-right:80px}.theme--light.v-list-item--disabled{color:rgba(0,0,0,.38)}.theme--light.v-list-item:not(.v-list-item--active):not(.v-list-item--disabled){color:rgba(0,0,0,.87)}.theme--light.v-list-item .v-list-item__mask{color:rgba(0,0,0,.38);background:#eee}.theme--light.v-list-item:not(.v-list-item--disabled) .v-list-item__action-text,.theme--light.v-list-item:not(.v-list-item--disabled) .v-list-item__subtitle{color:rgba(0,0,0,.6)}.theme--light.v-list-item:hover:before{opacity:.04}.theme--light.v-list-item--active:before,.theme--light.v-list-item--active:hover:before,.theme--light.v-list-item:focus:before{opacity:.12}.theme--light.v-list-item--active:focus:before,.theme--light.v-list-item.v-list-item--highlighted:before{opacity:.16}.theme--dark.v-list-item--disabled{color:hsla(0,0%,100%,.5)}.theme--dark.v-list-item:not(.v-list-item--active):not(.v-list-item--disabled){color:#fff}.theme--dark.v-list-item .v-list-item__mask{color:hsla(0,0%,100%,.5);background:#494949}.theme--dark.v-list-item:not(.v-list-item--disabled) .v-list-item__action-text,.theme--dark.v-list-item:not(.v-list-item--disabled) .v-list-item__subtitle{color:hsla(0,0%,100%,.7)}.theme--dark.v-list-item:hover:before{opacity:.08}.theme--dark.v-list-item--active:before,.theme--dark.v-list-item--active:hover:before,.theme--dark.v-list-item:focus:before{opacity:.24}.theme--dark.v-list-item--active:focus:before,.theme--dark.v-list-item.v-list-item--highlighted:before{opacity:.32}.v-list-item{align-items:center;display:flex;flex:1 1 100%;letter-spacing:normal;min-height:48px;outline:none;padding:0 16px;position:relative;text-decoration:none}.v-list-item--disabled{pointer-events:none}.v-list-item--selectable{-webkit-user-select:auto;-moz-user-select:auto;user-select:auto}.v-list-item:after{content:"";min-height:inherit;font-size:0}.v-list-item__action{align-self:center;margin:12px 0}.v-list-item__action .v-input,.v-list-item__action .v-input--selection-controls__input,.v-list-item__action .v-input__control,.v-list-item__action .v-input__slot{margin:0!important}.v-list-item__action .v-input{padding:0}.v-list-item__action .v-input .v-messages{display:none}.v-list-item__action-text{font-size:.75rem}.v-list-item__avatar{align-self:center;justify-content:flex-start}.v-list-item__avatar,.v-list-item__avatar.v-list-item__avatar--horizontal{margin-bottom:8px;margin-top:8px}.v-application--is-ltr .v-list-item__avatar.v-list-item__avatar--horizontal:first-child{margin-left:-16px}.v-application--is-rtl .v-list-item__avatar.v-list-item__avatar--horizontal:first-child{margin-right:-16px}.v-application--is-ltr .v-list-item__avatar.v-list-item__avatar--horizontal:last-child{margin-left:-16px}.v-application--is-rtl .v-list-item__avatar.v-list-item__avatar--horizontal:last-child{margin-right:-16px}.v-list-item__content{align-items:center;align-self:center;display:flex;flex-wrap:wrap;flex:1 1;overflow:hidden;padding:12px 0}.v-list-item__content>*{line-height:1.1;flex:1 0 100%}.v-list-item__content>:not(:last-child){margin-bottom:2px}.v-list-item__icon{align-self:flex-start;margin:16px 0}.v-application--is-ltr .v-list-item__action:last-of-type:not(:only-child),.v-application--is-ltr .v-list-item__avatar:last-of-type:not(:only-child),.v-application--is-ltr .v-list-item__icon:last-of-type:not(:only-child){margin-left:16px}.v-application--is-ltr .v-list-item__avatar:first-child,.v-application--is-rtl .v-list-item__action:last-of-type:not(:only-child),.v-application--is-rtl .v-list-item__avatar:last-of-type:not(:only-child),.v-application--is-rtl .v-list-item__icon:last-of-type:not(:only-child){margin-right:16px}.v-application--is-rtl .v-list-item__avatar:first-child{margin-left:16px}.v-application--is-ltr .v-list-item__action:first-child,.v-application--is-ltr .v-list-item__icon:first-child{margin-right:32px}.v-application--is-rtl .v-list-item__action:first-child,.v-application--is-rtl .v-list-item__icon:first-child{margin-left:32px}.v-list-item__action,.v-list-item__avatar,.v-list-item__icon{display:inline-flex;min-width:24px}.v-list-item .v-list-item__subtitle,.v-list-item .v-list-item__title{line-height:1.2}.v-list-item__subtitle,.v-list-item__title{flex:1 1 100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.v-list-item__title{align-self:center;font-size:1rem}.v-list-item__title>.v-badge{margin-top:16px}.v-list-item__subtitle{font-size:.875rem}.v-list--dense .v-list-item,.v-list-item--dense{min-height:40px}.v-list--dense .v-list-item .v-list-item__icon,.v-list-item--dense .v-list-item__icon{height:24px;margin-top:8px;margin-bottom:8px}.v-list--dense .v-list-item .v-list-item__content,.v-list-item--dense .v-list-item__content{padding:8px 0}.v-list--dense .v-list-item .v-list-item__subtitle,.v-list--dense .v-list-item .v-list-item__title,.v-list-item--dense .v-list-item__subtitle,.v-list-item--dense .v-list-item__title{font-size:.8125rem;font-weight:500;line-height:1rem}.v-list--dense .v-list-item.v-list-item--two-line,.v-list-item--dense.v-list-item--two-line{min-height:60px}.v-list--dense .v-list-item.v-list-item--three-line,.v-list-item--dense.v-list-item--three-line{min-height:76px}.v-list-item--link{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none}.v-list-item--link:before{background-color:currentColor;bottom:0;content:"";left:0;opacity:0;pointer-events:none;position:absolute;right:0;top:0;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-list .v-list-item--active,.v-list .v-list-item--active .v-icon{color:inherit}.v-list-item__action--stack{align-items:flex-end;align-self:stretch;justify-content:space-between;white-space:nowrap;flex-direction:column}.v-list--three-line .v-list-item .v-list-item__avatar:not(.v-list-item__avatar--horizontal),.v-list--three-line .v-list-item .v-list-item__icon,.v-list--two-line .v-list-item .v-list-item__avatar:not(.v-list-item__avatar--horizontal),.v-list--two-line .v-list-item .v-list-item__icon,.v-list-item--three-line .v-list-item__avatar:not(.v-list-item__avatar--horizontal),.v-list-item--three-line .v-list-item__icon,.v-list-item--two-line .v-list-item__avatar:not(.v-list-item__avatar--horizontal),.v-list-item--two-line .v-list-item__icon{margin-bottom:16px;margin-top:16px}.v-list--two-line .v-list-item,.v-list-item--two-line{min-height:64px}.v-list--two-line .v-list-item .v-list-item__icon,.v-list-item--two-line .v-list-item__icon{margin-bottom:32px}.v-list--three-line .v-list-item,.v-list-item--three-line{min-height:88px}.v-list--three-line .v-list-item .v-list-item__action,.v-list--three-line .v-list-item .v-list-item__avatar,.v-list-item--three-line .v-list-item__action,.v-list-item--three-line .v-list-item__avatar{align-self:flex-start;margin-top:16px;margin-bottom:16px}.v-list--three-line .v-list-item .v-list-item__content,.v-list-item--three-line .v-list-item__content{align-self:stretch}.v-list--three-line .v-list-item .v-list-item__subtitle,.v-list-item--three-line .v-list-item__subtitle{white-space:normal;-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box}.v-list-item-group .v-list-item--active{color:inherit}.v-item-group{flex:0 1 auto;position:relative;max-width:100%;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-avatar{align-items:center;border-radius:50%;display:inline-flex;justify-content:center;line-height:normal;position:relative;text-align:center;vertical-align:middle;overflow:hidden}.v-avatar .v-icon,.v-avatar .v-image,.v-avatar .v-responsive__content,.v-avatar img,.v-avatar svg{border-radius:inherit;display:inline-flex;height:inherit;width:inherit}.theme--light.v-input,.theme--light.v-input input,.theme--light.v-input textarea{color:rgba(0,0,0,.87)}.theme--light.v-input input::-moz-placeholder,.theme--light.v-input textarea::-moz-placeholder{color:rgba(0,0,0,.38)}.theme--light.v-input input::placeholder,.theme--light.v-input textarea::placeholder{color:rgba(0,0,0,.38)}.theme--light.v-input--is-disabled,.theme--light.v-input--is-disabled input,.theme--light.v-input--is-disabled textarea{color:rgba(0,0,0,.38)}.theme--dark.v-input,.theme--dark.v-input input,.theme--dark.v-input textarea{color:#fff}.theme--dark.v-input input::-moz-placeholder,.theme--dark.v-input textarea::-moz-placeholder{color:hsla(0,0%,100%,.5)}.theme--dark.v-input input::placeholder,.theme--dark.v-input textarea::placeholder{color:hsla(0,0%,100%,.5)}.theme--dark.v-input--is-disabled,.theme--dark.v-input--is-disabled input,.theme--dark.v-input--is-disabled textarea{color:hsla(0,0%,100%,.5)}.v-input{align-items:flex-start;display:flex;flex:1 1 auto;font-size:16px;letter-spacing:normal;max-width:100%;text-align:left}.v-input .v-progress-linear{top:calc(100% - 1px);left:0}.v-input input{max-height:32px}.v-input input:invalid,.v-input textarea:invalid{box-shadow:none}.v-input input:active,.v-input input:focus,.v-input textarea:active,.v-input textarea:focus{outline:none}.v-input .v-label{height:20px;line-height:20px;letter-spacing:normal}.v-input__append-outer,.v-input__prepend-outer{display:inline-flex;margin-bottom:4px;margin-top:4px;line-height:1}.v-input__append-outer .v-icon,.v-input__prepend-outer .v-icon{-webkit-user-select:none;-moz-user-select:none;user-select:none}.v-application--is-ltr .v-input__append-outer{margin-left:9px}.v-application--is-ltr .v-input__prepend-outer,.v-application--is-rtl .v-input__append-outer{margin-right:9px}.v-application--is-rtl .v-input__prepend-outer{margin-left:9px}.v-input__control{display:flex;flex-direction:column;height:auto;flex-grow:1;flex-wrap:wrap;min-width:0;width:100%}.v-input__icon{align-items:center;display:inline-flex;height:24px;flex:1 0 auto;justify-content:center;min-width:24px;width:24px}.v-input__icon--clear{border-radius:50%}.v-input__icon--clear .v-icon--disabled{visibility:hidden}.v-input__slot{align-items:center;display:flex;margin-bottom:8px;min-height:inherit;position:relative;transition:.3s cubic-bezier(.25,.8,.5,1);transition-property:height,min-height;width:100%}.v-input--dense>.v-input__control>.v-input__slot{margin-bottom:4px}.v-input--is-loading>.v-input__control>.v-input__slot:after,.v-input--is-loading>.v-input__control>.v-input__slot:before{display:none}.v-input--hide-details>.v-input__control>.v-input__slot{margin-bottom:0}.v-input--has-state.error--text .v-label{animation:v-shake .6s cubic-bezier(.25,.8,.5,1)}.v-input--hide-spin-buttons input::-webkit-inner-spin-button,.v-input--hide-spin-buttons input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.v-input--hide-spin-buttons input[type=number]{-moz-appearance:textfield}.theme--light.v-label{color:rgba(0,0,0,.6)}.theme--light.v-label--is-disabled{color:rgba(0,0,0,.38)}.theme--dark.v-label{color:hsla(0,0%,100%,.7)}.theme--dark.v-label--is-disabled{color:hsla(0,0%,100%,.5)}.v-label{font-size:16px;line-height:1;min-height:8px;transition:.3s cubic-bezier(.25,.8,.5,1)}.theme--light.v-messages{color:rgba(0,0,0,.6)}.theme--dark.v-messages{color:hsla(0,0%,100%,.7)}.v-messages{flex:1 1 auto;font-size:12px;min-height:14px;min-width:1px;position:relative}.v-application--is-ltr .v-messages{text-align:left}.v-application--is-rtl .v-messages{text-align:right}.v-messages__message{line-height:12px;word-break:break-word;overflow-wrap:break-word;word-wrap:break-word;hyphens:auto}.theme--light.v-counter{color:rgba(0,0,0,.6)}.theme--dark.v-counter{color:hsla(0,0%,100%,.7)}.v-counter{flex:0 1 auto;font-size:12px;min-height:12px;line-height:12px}.theme--light.v-alert .v-alert--prominent .v-alert__icon:after{background:rgba(0,0,0,.12)}.theme--dark.v-alert .v-alert--prominent .v-alert__icon:after{background:hsla(0,0%,100%,.12)}.v-sheet.v-alert{border-radius:4px}.v-sheet.v-alert:not(.v-sheet--outlined){box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.v-sheet.v-alert.v-sheet--shaped{border-radius:16px 4px}.v-alert{display:block;font-size:16px;margin-bottom:16px;padding:16px;position:relative;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-alert:not(.v-sheet--tile){border-radius:4px}.v-application--is-ltr .v-alert>.v-alert__content,.v-application--is-ltr .v-alert>.v-icon{margin-right:16px}.v-application--is-rtl .v-alert>.v-alert__content,.v-application--is-rtl .v-alert>.v-icon{margin-left:16px}.v-application--is-ltr .v-alert>.v-icon+.v-alert__content{margin-right:0}.v-application--is-rtl .v-alert>.v-icon+.v-alert__content{margin-left:0}.v-application--is-ltr .v-alert>.v-alert__content+.v-icon{margin-right:0}.v-application--is-rtl .v-alert>.v-alert__content+.v-icon{margin-left:0}.v-alert__border{border-style:solid;border-width:4px;content:"";position:absolute}.v-alert__border:not(.v-alert__border--has-color){opacity:.26}.v-alert__border--left,.v-alert__border--right{bottom:0;top:0}.v-alert__border--bottom,.v-alert__border--top{left:0;right:0}.v-alert__border--bottom{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit;bottom:0}.v-application--is-ltr .v-alert__border--left{border-top-left-radius:inherit;border-bottom-left-radius:inherit;left:0}.v-application--is-ltr .v-alert__border--right,.v-application--is-rtl .v-alert__border--left{border-top-right-radius:inherit;border-bottom-right-radius:inherit;right:0}.v-application--is-rtl .v-alert__border--right{border-top-left-radius:inherit;border-bottom-left-radius:inherit;left:0}.v-alert__border--top{border-top-left-radius:inherit;border-top-right-radius:inherit;top:0}.v-alert__content{flex:1 1 auto}.v-application--is-ltr .v-alert__dismissible{margin:-16px -8px -16px 8px}.v-application--is-rtl .v-alert__dismissible{margin:-16px 8px -16px -8px}.v-alert__icon{align-self:flex-start;border-radius:50%;height:24px;min-width:24px;position:relative}.v-application--is-ltr .v-alert__icon{margin-right:16px}.v-application--is-rtl .v-alert__icon{margin-left:16px}.v-alert__icon.v-icon{font-size:24px}.v-alert__wrapper{align-items:center;border-radius:inherit;display:flex}.v-application--is-ltr .v-alert--border.v-alert--prominent .v-alert__icon{margin-left:8px}.v-application--is-rtl .v-alert--border.v-alert--prominent .v-alert__icon{margin-right:8px}.v-alert--dense{padding-top:8px;padding-bottom:8px}.v-alert--dense .v-alert__border{border-width:medium}.v-alert--outlined{background:transparent!important;border:thin solid currentColor!important}.v-alert--outlined .v-alert__icon{color:inherit!important}.v-alert--prominent .v-alert__icon{align-self:center;height:48px;min-width:48px}.v-alert--prominent .v-alert__icon.v-icon{font-size:32px}.v-alert--prominent .v-alert__icon.v-icon:after{background:currentColor!important;border-radius:50%;bottom:0;content:"";left:0;opacity:.16;position:absolute;right:0;top:0}.v-alert--prominent.v-alert--dense .v-alert__icon.v-icon:after{transform:scale(1)}.v-alert--text{background:transparent!important}.v-alert--text:before{background-color:currentColor;border-radius:inherit;bottom:0;content:"";left:0;opacity:.12;position:absolute;pointer-events:none;right:0;top:0}.v-autocomplete.v-input>.v-input__control>.v-input__slot{cursor:text}.v-autocomplete input{align-self:center}.v-autocomplete.v-select.v-input--is-focused input{min-width:64px}.v-autocomplete:not(.v-input--is-focused).v-select--chips input{max-height:0;padding:0}.v-autocomplete--is-selecting-index input{opacity:0}.v-autocomplete.v-text-field--enclosed:not(.v-text-field--solo):not(.v-text-field--single-line):not(.v-text-field--outlined) .v-select__slot>input{margin-top:24px}.v-autocomplete.v-text-field--enclosed:not(.v-text-field--solo):not(.v-text-field--single-line):not(.v-text-field--outlined).v-input--dense .v-select__slot>input{margin-top:20px}.v-autocomplete__content.v-menu__content,.v-autocomplete__content.v-menu__content .v-card{border-radius:0}.v-input--checkbox.v-input--indeterminate.v-input--is-disabled{opacity:.6}.v-input--checkbox.v-input--dense{margin-top:4px}.v-input--selection-controls{margin-top:16px;padding-top:4px}.v-input--selection-controls>.v-input__append-outer,.v-input--selection-controls>.v-input__prepend-outer{margin-top:0;margin-bottom:0}.v-input--selection-controls:not(.v-input--hide-details)>.v-input__slot{margin-bottom:12px}.v-input--selection-controls .v-input__slot,.v-input--selection-controls .v-radio{cursor:pointer}.v-input--selection-controls .v-input__slot>.v-label,.v-input--selection-controls .v-radio>.v-label{align-items:center;display:inline-flex;flex:1 1 auto;height:auto}.v-input--selection-controls__input{color:inherit;display:inline-flex;flex:0 0 auto;height:24px;position:relative;transition:.3s cubic-bezier(.25,.8,.5,1);transition-property:transform;width:24px;-webkit-user-select:none;-moz-user-select:none;user-select:none}.v-input--selection-controls__input .v-icon{width:100%}.v-application--is-ltr .v-input--selection-controls__input{margin-right:8px}.v-application--is-rtl .v-input--selection-controls__input{margin-left:8px}.v-input--selection-controls__input input[role=checkbox],.v-input--selection-controls__input input[role=radio],.v-input--selection-controls__input input[role=switch]{position:absolute;opacity:0;width:100%;height:100%;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none}.v-input--selection-controls__input+.v-label{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none}.v-input--selection-controls__ripple{border-radius:50%;cursor:pointer;height:34px;position:absolute;transition:inherit;width:34px;left:-12px;top:calc(50% - 24px);margin:7px}.v-input--selection-controls__ripple:before{border-radius:inherit;bottom:0;content:"";position:absolute;opacity:.2;left:0;right:0;top:0;transform-origin:center center;transform:scale(.2);transition:inherit}.v-input--selection-controls__ripple>.v-ripple__container{transform:scale(1.2)}.v-input--selection-controls.v-input--dense .v-input--selection-controls__ripple{width:28px;height:28px;left:-9px}.v-input--selection-controls.v-input--dense:not(.v-input--switch) .v-input--selection-controls__ripple{top:calc(50% - 21px)}.v-input--selection-controls.v-input{flex:0 1 auto}.v-input--selection-controls .v-radio--is-focused .v-input--selection-controls__ripple:before,.v-input--selection-controls.v-input--is-focused .v-input--selection-controls__ripple:before{background:currentColor;transform:scale(1.2)}.v-input--selection-controls.v-input--is-disabled:not(.v-input--indeterminate) .v-icon{color:inherit}.v-input--selection-controls.v-input--is-disabled:not(.v-input--is-readonly){pointer-events:none}.v-input--selection-controls__input:hover .v-input--selection-controls__ripple:before{background:currentColor;transform:scale(1.2);transition:none}.theme--light.v-color-picker .v-color-picker__input input{border:thin solid rgba(0,0,0,.12);color:rgba(0,0,0,.87)}.theme--light.v-color-picker span{color:rgba(0,0,0,.6)}.theme--light.v-color-picker .v-color-picker__color,.theme--light.v-color-picker .v-color-picker__dot{background-color:hsla(0,0%,100%,0)}.theme--dark.v-color-picker .v-color-picker__input input{border:thin solid hsla(0,0%,100%,.12);color:#fff}.theme--dark.v-color-picker span{color:hsla(0,0%,100%,.7)}.theme--dark.v-color-picker .v-color-picker__color,.theme--dark.v-color-picker .v-color-picker__dot{background-color:hsla(0,0%,100%,.12)}.v-color-picker{align-self:flex-start;border-radius:4px;contain:content;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.v-color-picker__controls{display:flex;flex-direction:column;padding:16px}.v-color-picker--flat,.v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb{box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.v-color-picker .v-input__slider{border-radius:5px}.v-color-picker .v-input__slider .v-slider{margin:0}.v-color-picker__alpha:not(.v-input--is-disabled) .v-slider{border-radius:5px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGElEQVQYlWNgYGCQwoKxgqGgcJA5h3yFAAs8BRWVSwooAAAAAElFTkSuQmCC) repeat}.v-color-picker__sliders{display:flex;flex:1 0 auto;flex-direction:column}.v-color-picker__dot{position:relative;height:30px;width:30px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGElEQVQYlWNgYGCQwoKxgqGgcJA5h3yFAAs8BRWVSwooAAAAAElFTkSuQmCC) repeat;border-radius:50%;overflow:hidden}.v-application--is-ltr .v-color-picker__dot{margin-right:24px}.v-application--is-rtl .v-color-picker__dot{margin-left:24px}.v-color-picker__dot>div{width:100%;height:100%}.v-application--is-ltr .v-color-picker__hue:not(.v-input--is-disabled){background:linear-gradient(90deg,red 0,#ff0 16.66%,#0f0 33.33%,#0ff 50%,#00f 66.66%,#f0f 83.33%,red)}.v-application--is-rtl .v-color-picker__hue:not(.v-input--is-disabled){background:linear-gradient(270deg,red 0,#ff0 16.66%,#0f0 33.33%,#0ff 50%,#00f 66.66%,#f0f 83.33%,red)}.v-color-picker__track{position:relative;width:100%}.v-color-picker__preview{align-items:center;display:flex}.v-color-picker__preview .v-slider{min-height:10px}.v-color-picker__preview .v-slider:not(.v-slider--disabled) .v-slider__thumb{box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12)}.v-color-picker__preview .v-slider:not(.v-slider--disabled) .v-slider__track-container{opacity:0}.v-color-picker__preview:not(.v-color-picker__preview--hide-alpha) .v-color-picker__hue{margin-bottom:24px}.theme--light.v-slider .v-slider__thumb,.theme--light.v-slider .v-slider__track-background,.theme--light.v-slider .v-slider__track-fill{background:rgba(0,0,0,.26)}.theme--dark.v-slider .v-slider__thumb,.theme--dark.v-slider .v-slider__track-background,.theme--dark.v-slider .v-slider__track-fill{background:hsla(0,0%,100%,.2)}.v-slider{cursor:default;display:flex;align-items:center;position:relative;flex:1;-webkit-user-select:none;-moz-user-select:none;user-select:none}.v-slider input{cursor:default;padding:0;width:100%;display:none}.v-slider__track-container{position:absolute;border-radius:0}.v-slider__thumb-container,.v-slider__track-background,.v-slider__track-fill{position:absolute;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-slider__thumb-container{outline:none;top:50%}.v-slider__thumb-container:hover .v-slider__thumb:before{transform:scale(1)}.v-slider__thumb{width:12px;height:12px;left:-6px;top:50%;transform:translateY(-50%);-webkit-user-select:none;-moz-user-select:none;user-select:none}.v-slider__thumb,.v-slider__thumb:before{position:absolute;border-radius:50%;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-slider__thumb:before{content:"";color:inherit;width:36px;height:36px;background:currentColor;opacity:.3;left:-12px;top:-12px;transform:scale(.1);pointer-events:none}.v-slider__thumb:after{content:"";width:42px;height:42px;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.v-slider__tick,.v-slider__ticks-container{position:absolute}.v-slider__tick{opacity:0;background-color:rgba(0,0,0,.5);transition:.3s cubic-bezier(.25,.8,.5,1);border-radius:0}.v-slider__tick--filled{background-color:hsla(0,0%,100%,.5)}.v-application--is-ltr .v-slider__tick:first-child .v-slider__tick-label{transform:none}.v-application--is-rtl .v-slider__tick:first-child .v-slider__tick-label{transform:translateX(100%)}.v-application--is-ltr .v-slider__tick:last-child .v-slider__tick-label{transform:translateX(-100%)}.v-application--is-rtl .v-slider__tick:last-child .v-slider__tick-label{transform:none}.v-slider__tick-label{position:absolute;-webkit-user-select:none;-moz-user-select:none;user-select:none;white-space:nowrap}.v-slider__thumb-label-container{top:0}.v-slider__thumb-label,.v-slider__thumb-label-container{position:absolute;left:0;transition:.3s cubic-bezier(.25,.8,.25,1)}.v-slider__thumb-label{display:flex;align-items:center;justify-content:center;font-size:.75rem;color:#fff;width:32px;height:32px;border-radius:50% 50% 0;bottom:100%;-webkit-user-select:none;-moz-user-select:none;user-select:none}.v-slider--horizontal{min-height:32px;margin-left:8px;margin-right:8px}.v-slider--horizontal .v-slider__track-container{width:100%;height:2px;left:0;top:50%;transform:translateY(-50%)}.v-slider--horizontal .v-slider__track-background,.v-slider--horizontal .v-slider__track-fill{height:100%}.v-slider--horizontal .v-slider__ticks-container{left:0;height:2px;width:100%}.v-application--is-ltr .v-slider--horizontal .v-slider__tick:first-child .v-slider__tick-label,.v-application--is-rtl .v-slider--horizontal .v-slider__tick:first-child .v-slider__tick-label{transform:translateX(0)}.v-application--is-ltr .v-slider--horizontal .v-slider__tick:last-child .v-slider__tick-label{transform:translateX(-100%)}.v-application--is-rtl .v-slider--horizontal .v-slider__tick:last-child .v-slider__tick-label{transform:translateX(100%)}.v-slider--horizontal .v-slider__tick .v-slider__tick-label{top:8px}.v-application--is-ltr .v-slider--horizontal .v-slider__tick .v-slider__tick-label{transform:translateX(-50%)}.v-application--is-rtl .v-slider--horizontal .v-slider__tick .v-slider__tick-label{transform:translateX(50%)}.v-slider--horizontal .v-slider__thumb-label{transform:translateY(-20%) translateY(-12px) translateX(-50%) rotate(45deg)}.v-slider--horizontal .v-slider__thumb-label>*{transform:rotate(-45deg)}.v-slider--vertical{min-height:150px;margin-top:12px;margin-bottom:12px}.v-slider--vertical .v-slider__track-container{height:100%;width:2px;left:50%;top:0;transform:translateX(-50%)}.v-slider--vertical .v-slider__track-background,.v-slider--vertical .v-slider__track-fill{width:100%}.v-slider--vertical .v-slider__thumb-container{left:50%}.v-slider--vertical .v-slider__ticks-container{top:0;width:2px;height:100%;left:50%;transform:translateX(-50%)}.v-application--is-ltr .v-slider--vertical .v-slider__tick .v-slider__tick-label,.v-application--is-ltr .v-slider--vertical .v-slider__tick:first-child .v-slider__tick-label,.v-application--is-ltr .v-slider--vertical .v-slider__tick:last-child .v-slider__tick-label{transform:translateY(-50%);left:12px}.v-application--is-rtl .v-slider--vertical .v-slider__tick .v-slider__tick-label,.v-application--is-rtl .v-slider--vertical .v-slider__tick:first-child .v-slider__tick-label,.v-application--is-rtl .v-slider--vertical .v-slider__tick:last-child .v-slider__tick-label{transform:translateY(-50%);right:12px}.v-slider--vertical .v-slider__thumb-label>*{transform:rotate(-135deg)}.v-slider__thumb-container--focused .v-slider__thumb:before{transform:scale(1)}.v-slider--active .v-slider__tick{opacity:1}.v-slider__thumb-container--active .v-slider__thumb:before{transform:scale(1.5)!important}.v-slider--disabled{pointer-events:none}.v-slider--disabled .v-slider__thumb{width:8px;height:8px;left:-4px}.v-slider--disabled .v-slider__thumb:before{display:none}.v-slider__ticks-container--always-show .v-slider__tick{opacity:1}.v-input__slider.v-input--is-readonly>.v-input__control{pointer-events:none}.v-application--is-ltr .v-input__slider .v-input__slot .v-label{margin-left:0;margin-right:12px}.v-application--is-ltr .v-input__slider--inverse-label .v-input__slot .v-label,.v-application--is-rtl .v-input__slider .v-input__slot .v-label{margin-right:0;margin-left:12px}.v-application--is-rtl .v-input__slider--inverse-label .v-input__slot .v-label{margin-left:0;margin-right:12px}.v-input__slider--vertical{align-items:center}.v-application--is-ltr .v-input__slider--vertical{flex-direction:column-reverse}.v-application--is-rtl .v-input__slider--vertical{flex-direction:column}.v-input__slider--vertical .v-input__append-outer,.v-input__slider--vertical .v-input__prepend-outer,.v-input__slider--vertical .v-input__slot{margin:0}.v-input__slider--vertical .v-messages{display:none}.v-input--has-state .v-slider__track-background{opacity:.4}.v-color-picker__canvas{position:relative;overflow:hidden;contain:strict}.v-color-picker__canvas-dot{position:absolute;top:0;left:0;width:15px;height:15px;background:transparent;border-radius:50%;box-shadow:0 0 0 1.5px #fff,inset 0 0 1px 1.5px rgba(0,0,0,.3)}.v-color-picker__canvas-dot--disabled{box-shadow:0 0 0 1.5px hsla(0,0%,100%,.7),inset 0 0 1px 1.5px rgba(0,0,0,.3)}.v-color-picker__canvas:hover .v-color-picker__canvas-dot{will-change:transform}.v-color-picker__edit{margin-top:24px;display:flex}.v-color-picker__input{width:100%;display:flex;flex-wrap:wrap;justify-content:center;text-align:center}.v-application--is-ltr .v-color-picker__input:not(:last-child){margin-right:8px}.v-application--is-rtl .v-color-picker__input:not(:last-child){margin-left:8px}.v-color-picker__input input{border-radius:4px;margin-bottom:8px;min-width:0;outline:none;text-align:center;width:100%;height:28px}.v-color-picker__input span{font-size:.75rem}.v-color-picker__swatches{overflow-y:auto}.v-color-picker__swatches>div{display:flex;flex-wrap:wrap;justify-content:center;padding:8px}.v-color-picker__swatch{display:flex;flex-direction:column;margin-bottom:10px}.v-color-picker__color{position:relative;height:18px;max-height:18px;width:45px;margin:2px 4px;border-radius:2px;-webkit-user-select:none;-moz-user-select:none;user-select:none;overflow:hidden;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGElEQVQYlWNgYGCQwoKxgqGgcJA5h3yFAAs8BRWVSwooAAAAAElFTkSuQmCC) repeat;cursor:pointer}.v-color-picker__color>div{display:flex;align-items:center;justify-content:center;width:100%;height:100%}.v-date-picker-title{display:flex;justify-content:space-between;flex-direction:column;flex-wrap:wrap;line-height:1}.v-application--is-ltr .v-date-picker-title .v-picker__title__btn{text-align:left}.v-application--is-rtl .v-date-picker-title .v-picker__title__btn{text-align:right}.v-date-picker-title__year{align-items:center;display:inline-flex;font-size:14px;font-weight:500;margin-bottom:8px}.v-date-picker-title__date{font-size:34px;text-align:left;font-weight:500;position:relative;overflow:hidden;padding-bottom:8px;margin-bottom:-8px}.v-date-picker-title__date>div{position:relative}.v-date-picker-title--disabled{pointer-events:none}.theme--light.v-date-picker-header .v-date-picker-header__value:not(.v-date-picker-header__value--disabled) button:not(:hover):not(:focus){color:rgba(0,0,0,.87)}.theme--light.v-date-picker-header .v-date-picker-header__value--disabled button{color:rgba(0,0,0,.38)}.theme--dark.v-date-picker-header .v-date-picker-header__value:not(.v-date-picker-header__value--disabled) button:not(:hover):not(:focus){color:#fff}.theme--dark.v-date-picker-header .v-date-picker-header__value--disabled button{color:hsla(0,0%,100%,.5)}.v-date-picker-header{padding:4px 16px;align-items:center;display:flex;justify-content:space-between;position:relative}.v-date-picker-header .v-btn{margin:0;z-index:auto}.v-date-picker-header .v-icon{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none}.v-date-picker-header__value{flex:1;text-align:center;position:relative;overflow:hidden}.v-date-picker-header__value div{transition:.3s cubic-bezier(.25,.8,.5,1);width:100%}.v-date-picker-header__value button{cursor:pointer;font-weight:700;outline:none;padding:.5rem;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-date-picker-header--disabled{pointer-events:none}.theme--light.v-date-picker-table .v-date-picker-table--date__week,.theme--light.v-date-picker-table th{color:rgba(0,0,0,.38)}.theme--dark.v-date-picker-table .v-date-picker-table--date__week,.theme--dark.v-date-picker-table th{color:hsla(0,0%,100%,.5)}.v-date-picker-table{position:relative;padding:0 12px;height:242px}.v-date-picker-table table{transition:.3s cubic-bezier(.25,.8,.5,1);top:0;table-layout:fixed;width:100%}.v-date-picker-table td,.v-date-picker-table th{text-align:center;position:relative}.v-date-picker-table th{font-size:12px}.v-date-picker-table--date .v-btn{height:32px;width:32px}.v-date-picker-table .v-btn{z-index:auto;margin:0;font-size:12px}.v-date-picker-table .v-btn.v-btn--active{color:#fff}.v-date-picker-table--month td{width:33.333333%;height:56px;vertical-align:middle;text-align:center}.v-date-picker-table--month td .v-btn{margin:0 auto;max-width:140px;min-width:40px;width:100%}.v-date-picker-table--date th{padding:8px 0;font-weight:600}.v-date-picker-table--date td{width:45px}.v-date-picker-table__events{height:8px;left:0;position:absolute;text-align:center;white-space:pre;width:100%}.v-date-picker-table__events>div{border-radius:50%;display:inline-block;height:8px;margin:0 1px;width:8px}.v-date-picker-table--date .v-date-picker-table__events{bottom:6px}.v-date-picker-table--month .v-date-picker-table__events{bottom:8px}.v-date-picker-table__current .v-date-picker-table__events{margin-bottom:-1px}.v-date-picker-table--disabled{pointer-events:none}.v-date-picker-years{font-size:16px;font-weight:400;height:290px;list-style-type:none;overflow:auto;text-align:center}.v-date-picker-years.v-date-picker-years{padding:0}.v-date-picker-years li{cursor:pointer;padding:8px 0;transition:none}.v-date-picker-years li.active{font-size:26px;font-weight:500;padding:10px 0}.v-date-picker-years li:hover{background:rgba(0,0,0,.12)}.v-picker--landscape .v-date-picker-years{padding:0;height:290px}.theme--light.v-picker__title{background:#e0e0e0}.theme--dark.v-picker__title{background:#616161}.theme--light.v-picker__body{background:#fff}.theme--dark.v-picker__body{background:#424242}.v-picker{border-radius:4px;contain:layout style;display:inline-flex;flex-direction:column;font-size:1rem;vertical-align:top;position:relative}.v-picker--full-width{display:flex;width:100%}.v-picker--full-width>.v-picker__body{margin:initial}.v-picker__title{color:#fff;border-top-left-radius:4px;border-top-right-radius:4px;padding:16px}.v-picker__title__btn{transition:.3s cubic-bezier(.25,.8,.5,1)}.v-picker__title__btn:not(.v-picker__title__btn--active){opacity:.6;cursor:pointer}.v-picker__title__btn:not(.v-picker__title__btn--active):hover:not(:focus){opacity:1}.v-picker__title__btn--readonly{pointer-events:none}.v-picker__title__btn--active{opacity:1}.v-picker__body{height:auto;overflow:hidden;position:relative;z-index:0;flex:1 0 auto;display:flex;flex-direction:column;align-items:center;margin:0 auto}.v-picker__body>div{width:100%}.v-picker__body>div.fade-transition-leave-active{position:absolute}.v-picker--landscape .v-picker__title{border-top-right-radius:0;border-bottom-right-radius:0;width:170px;position:absolute;top:0;height:100%;z-index:1}.v-application--is-ltr .v-picker--landscape .v-picker__title{left:0}.v-application--is-rtl .v-picker--landscape .v-picker__title{right:0}.v-application--is-ltr .v-picker--landscape .v-picker__actions:not(.v-picker__actions--no-title),.v-application--is-ltr .v-picker--landscape .v-picker__body:not(.v-picker__body--no-title){margin-left:170px;margin-right:0}.v-application--is-rtl .v-picker--landscape .v-picker__actions:not(.v-picker__actions--no-title),.v-application--is-rtl .v-picker--landscape .v-picker__body:not(.v-picker__body--no-title){margin-right:170px;margin-left:0}.v-picker--flat{box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.v-dialog{border-radius:4px;margin:24px;overflow-y:auto;pointer-events:auto;transition:.3s cubic-bezier(.25,.8,.25,1);width:100%;z-index:inherit;outline:none;box-shadow:0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12)}.v-dialog:not(.v-dialog--fullscreen){max-height:90%}.v-dialog>*{width:100%}.v-dialog>.v-card>.v-card__title{font-size:1.25rem;font-weight:500;letter-spacing:.0125em;padding:16px 24px 10px}.v-dialog>.v-card>.v-card__subtitle,.v-dialog>.v-card>.v-card__text{padding:0 24px 20px}.v-dialog>.v-card>.v-card__actions{padding:8px 16px}.v-dialog__content{align-items:center;display:flex;height:100%;justify-content:center;left:0;pointer-events:none;position:fixed;top:0;transition:.2s cubic-bezier(.25,.8,.25,1),z-index 1ms;width:100%;z-index:6}.v-dialog__container{display:none}.v-dialog__container--attached{display:inline}.v-dialog--animated{animation-duration:.15s;animation-name:animate-dialog;animation-timing-function:cubic-bezier(.25,.8,.25,1)}.v-dialog--fullscreen{border-radius:0;margin:0;height:100%;position:fixed;overflow-y:auto;top:0;left:0}.v-dialog--fullscreen>.v-card{min-height:100%;min-width:100%;margin:0!important;padding:0!important}.v-dialog--scrollable,.v-dialog--scrollable>form{display:flex}.v-dialog--scrollable>.v-card,.v-dialog--scrollable>form>.v-card{display:flex;flex:1 1 100%;flex-direction:column;max-height:100%;max-width:100%}.v-dialog--scrollable>.v-card>.v-card__actions,.v-dialog--scrollable>.v-card>.v-card__title,.v-dialog--scrollable>form>.v-card>.v-card__actions,.v-dialog--scrollable>form>.v-card>.v-card__title{flex:0 0 auto}.v-dialog--scrollable>.v-card>.v-card__text,.v-dialog--scrollable>form>.v-card>.v-card__text{backface-visibility:hidden;flex:1 1 auto;overflow-y:auto}@keyframes animate-dialog{0%{transform:scale(1)}50%{transform:scale(1.03)}to{transform:scale(1)}}.theme--light.v-overlay{color:rgba(0,0,0,.87)}.theme--dark.v-overlay{color:#fff}.v-overlay{align-items:center;border-radius:inherit;display:flex;justify-content:center;position:fixed;top:0;left:0;right:0;bottom:0;pointer-events:none;transition:.3s cubic-bezier(.25,.8,.5,1),z-index 1ms}.v-overlay__content{position:relative}.v-overlay__scrim{border-radius:inherit;bottom:0;height:100%;left:0;position:absolute;right:0;top:0;transition:inherit;width:100%;will-change:opacity}.v-overlay--absolute{position:absolute}.v-overlay--active{pointer-events:auto}.theme--light.v-expansion-panels .v-expansion-panel{background-color:#fff;color:rgba(0,0,0,.87)}.theme--light.v-expansion-panels .v-expansion-panel--disabled{color:rgba(0,0,0,.38)}.theme--light.v-expansion-panels .v-expansion-panel:not(:first-child):after{border-color:rgba(0,0,0,.12)}.theme--light.v-expansion-panels .v-expansion-panel-header .v-expansion-panel-header__icon .v-icon{color:rgba(0,0,0,.54)}.theme--light.v-expansion-panels.v-expansion-panels--focusable .v-expansion-panel-header:hover:before{opacity:.04}.theme--light.v-expansion-panels.v-expansion-panels--focusable .v-expansion-panel-header--active:before,.theme--light.v-expansion-panels.v-expansion-panels--focusable .v-expansion-panel-header--active:hover:before,.theme--light.v-expansion-panels.v-expansion-panels--focusable .v-expansion-panel-header:focus:before{opacity:.12}.theme--light.v-expansion-panels.v-expansion-panels--focusable .v-expansion-panel-header--active:focus:before{opacity:.16}.theme--light.v-expansion-panels.v-expansion-panels--hover>.v-expansion-panel>.v-expansion-panel-header:hover:before{opacity:.04}.theme--dark.v-expansion-panels .v-expansion-panel{background-color:#1e1e1e;color:#fff}.theme--dark.v-expansion-panels .v-expansion-panel--disabled{color:hsla(0,0%,100%,.5)}.theme--dark.v-expansion-panels .v-expansion-panel:not(:first-child):after{border-color:hsla(0,0%,100%,.12)}.theme--dark.v-expansion-panels .v-expansion-panel-header .v-expansion-panel-header__icon .v-icon{color:#fff}.theme--dark.v-expansion-panels.v-expansion-panels--focusable .v-expansion-panel-header:hover:before{opacity:.08}.theme--dark.v-expansion-panels.v-expansion-panels--focusable .v-expansion-panel-header--active:before,.theme--dark.v-expansion-panels.v-expansion-panels--focusable .v-expansion-panel-header--active:hover:before,.theme--dark.v-expansion-panels.v-expansion-panels--focusable .v-expansion-panel-header:focus:before{opacity:.24}.theme--dark.v-expansion-panels.v-expansion-panels--focusable .v-expansion-panel-header--active:focus:before{opacity:.32}.theme--dark.v-expansion-panels.v-expansion-panels--hover>.v-expansion-panel>.v-expansion-panel-header:hover:before{opacity:.08}.v-expansion-panels{border-radius:4px;display:flex;flex-wrap:wrap;justify-content:center;list-style-type:none;padding:0;width:100%;z-index:1}.v-expansion-panels>*{cursor:auto}.v-expansion-panels>:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.v-expansion-panels>:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.v-expansion-panels:not(.v-expansion-panels--accordion):not(.v-expansion-panels--tile)>.v-expansion-panel--active{border-radius:4px}.v-expansion-panels:not(.v-expansion-panels--accordion):not(.v-expansion-panels--tile)>.v-expansion-panel--active+.v-expansion-panel{border-top-left-radius:4px;border-top-right-radius:4px}.v-expansion-panels:not(.v-expansion-panels--accordion):not(.v-expansion-panels--tile)>.v-expansion-panel--next-active{border-bottom-left-radius:4px;border-bottom-right-radius:4px}.v-expansion-panels:not(.v-expansion-panels--accordion):not(.v-expansion-panels--tile)>.v-expansion-panel--next-active .v-expansion-panel-header{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.v-expansion-panel{flex:1 0 100%;max-width:100%;position:relative;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-expansion-panel:before{border-radius:inherit;bottom:0;content:"";left:0;position:absolute;right:0;top:0;z-index:-1;transition:box-shadow .28s cubic-bezier(.4,0,.2,1);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.v-expansion-panel:not(:first-child):after{border-top:thin solid;content:"";left:0;position:absolute;right:0;top:0;transition:border-color .2s cubic-bezier(.4,0,.2,1),opacity .2s cubic-bezier(.4,0,.2,1)}.v-expansion-panel--disabled .v-expansion-panel-header{pointer-events:none}.v-expansion-panel--active+.v-expansion-panel,.v-expansion-panel--active:not(:first-child){margin-top:16px}.v-expansion-panel--active+.v-expansion-panel:after,.v-expansion-panel--active:not(:first-child):after{opacity:0}.v-expansion-panel--active>.v-expansion-panel-header{min-height:64px}.v-expansion-panel--active>.v-expansion-panel-header--active .v-expansion-panel-header__icon:not(.v-expansion-panel-header__icon--disable-rotate) .v-icon{transform:rotate(-180deg)}.v-expansion-panel-header__icon{display:inline-flex;margin-bottom:-4px;margin-top:-4px;-webkit-user-select:none;-moz-user-select:none;user-select:none}.v-application--is-ltr .v-expansion-panel-header__icon{margin-left:auto}.v-application--is-rtl .v-expansion-panel-header__icon{margin-right:auto}.v-expansion-panel-header{align-items:center;border-top-left-radius:inherit;border-top-right-radius:inherit;display:flex;font-size:.9375rem;line-height:1;min-height:48px;outline:none;padding:16px 24px;position:relative;transition:min-height .3s cubic-bezier(.25,.8,.5,1);width:100%}.v-application--is-ltr .v-expansion-panel-header{text-align:left}.v-application--is-rtl .v-expansion-panel-header{text-align:right}.v-expansion-panel-header:not(.v-expansion-panel-header--mousedown):focus:before{opacity:.12}.v-expansion-panel-header:before{background-color:currentColor;border-radius:inherit;bottom:0;content:"";left:0;opacity:0;pointer-events:none;position:absolute;right:0;top:0;transition:opacity .3s cubic-bezier(.25,.8,.5,1)}.v-expansion-panel-header>:not(.v-expansion-panel-header__icon){flex:1 1 auto}.v-expansion-panel-content{display:flex}.v-expansion-panel-content__wrap{padding:0 24px 16px;flex:1 1 auto;max-width:100%}.v-expansion-panels--accordion>.v-expansion-panel{margin-top:0}.v-expansion-panels--accordion>.v-expansion-panel:after{opacity:1}.v-expansion-panels--popout>.v-expansion-panel{max-width:calc(100% - 32px)}.v-expansion-panels--popout>.v-expansion-panel--active{max-width:calc(100% + 16px)}.v-expansion-panels--inset>.v-expansion-panel{max-width:100%}.v-expansion-panels--inset>.v-expansion-panel--active{max-width:calc(100% - 32px)}.v-expansion-panels--flat>.v-expansion-panel:after{border-top:none}.v-expansion-panels--flat>.v-expansion-panel:before{box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.v-expansion-panels--tile,.v-expansion-panels--tile>.v-expansion-panel:before{border-radius:0}.theme--light.v-file-input .v-file-input__text{color:rgba(0,0,0,.87)}.theme--light.v-file-input .v-file-input__text--placeholder{color:rgba(0,0,0,.6)}.theme--light.v-file-input.v-input--is-disabled .v-file-input__text,.theme--light.v-file-input.v-input--is-disabled .v-file-input__text .v-file-input__text--placeholder{color:rgba(0,0,0,.38)}.theme--dark.v-file-input .v-file-input__text{color:#fff}.theme--dark.v-file-input .v-file-input__text--placeholder{color:hsla(0,0%,100%,.7)}.theme--dark.v-file-input.v-input--is-disabled .v-file-input__text,.theme--dark.v-file-input.v-input--is-disabled .v-file-input__text .v-file-input__text--placeholder{color:hsla(0,0%,100%,.5)}.v-file-input input[type=file]{left:0;opacity:0;pointer-events:none;position:absolute;max-width:0;width:0}.v-file-input .v-file-input__text{align-items:center;align-self:stretch;display:flex;flex-wrap:wrap;width:100%}.v-file-input .v-file-input__text.v-file-input__text--chips{flex-wrap:wrap}.v-file-input .v-file-input__text .v-chip{margin:4px}.v-file-input .v-text-field__slot{min-height:32px}.v-file-input.v-input--dense .v-text-field__slot{min-height:26px}.v-file-input.v-text-field--filled:not(.v-text-field--single-line) .v-file-input__text{padding-top:22px}.v-file-input.v-text-field--outlined .v-text-field__slot{padding:6px 0}.v-file-input.v-text-field--outlined.v-input--dense .v-text-field__slot{padding:3px 0}.theme--light.v-radio--is-disabled label{color:rgba(0,0,0,.38)}.theme--dark.v-radio--is-disabled label{color:hsla(0,0%,100%,.5)}.v-radio{align-items:center;display:flex;height:auto;outline:none}.v-radio--is-disabled{pointer-events:none;cursor:default}.v-input--radio-group.v-input--radio-group--row .v-radio{margin-right:16px}.v-input--radio-group legend.v-label{cursor:text;font-size:14px;height:auto}.v-input--radio-group__input{border:none;cursor:default;display:flex;width:100%}.v-input--radio-group--column .v-input--radio-group__input>.v-label{padding-bottom:8px}.v-input--radio-group--row .v-input--radio-group__input>.v-label{padding-right:8px}.v-input--radio-group--row legend{align-self:center;display:inline-block}.v-input--radio-group--row .v-input--radio-group__input{flex-direction:row;flex-wrap:wrap}.v-input--radio-group--column legend{padding-bottom:8px}.v-input--radio-group--column .v-radio:not(:last-child):not(:only-child){margin-bottom:8px}.v-input--radio-group--column .v-input--radio-group__input{flex-direction:column}.theme--light.v-stepper{background:#fff}.theme--light.v-stepper .v-stepper__step:not(.v-stepper__step--active):not(.v-stepper__step--complete):not(.v-stepper__step--error) .v-stepper__step__step{background:rgba(0,0,0,.38)}.theme--light.v-stepper .v-stepper__step__step,.theme--light.v-stepper .v-stepper__step__step .v-icon{color:#fff}.theme--light.v-stepper .v-stepper__header .v-divider{border-color:rgba(0,0,0,.12)}.theme--light.v-stepper .v-stepper__step--active .v-stepper__label{text-shadow:0 0 0 #000}.theme--light.v-stepper .v-stepper__step--editable:hover{background:rgba(0,0,0,.06)}.theme--light.v-stepper .v-stepper__step--editable:hover .v-stepper__label{text-shadow:0 0 0 #000}.theme--light.v-stepper .v-stepper__step--complete .v-stepper__label{color:rgba(0,0,0,.87)}.theme--light.v-stepper .v-stepper__step--inactive.v-stepper__step--editable:not(.v-stepper__step--error):hover .v-stepper__step__step{background:rgba(0,0,0,.54)}.theme--light.v-stepper .v-stepper__label{color:rgba(0,0,0,.38)}.theme--light.v-stepper .v-stepper__label small,.theme--light.v-stepper--non-linear .v-stepper__step:not(.v-stepper__step--complete):not(.v-stepper__step--error) .v-stepper__label{color:rgba(0,0,0,.6)}.v-application--is-ltr .theme--light.v-stepper--vertical .v-stepper__content:not(:last-child){border-left:1px solid rgba(0,0,0,.12)}.v-application--is-rtl .theme--light.v-stepper--vertical .v-stepper__content:not(:last-child){border-right:1px solid rgba(0,0,0,.12)}.theme--dark.v-stepper{background:#303030}.theme--dark.v-stepper .v-stepper__step:not(.v-stepper__step--active):not(.v-stepper__step--complete):not(.v-stepper__step--error) .v-stepper__step__step{background:hsla(0,0%,100%,.5)}.theme--dark.v-stepper .v-stepper__step__step,.theme--dark.v-stepper .v-stepper__step__step .v-icon{color:#fff}.theme--dark.v-stepper .v-stepper__header .v-divider{border-color:hsla(0,0%,100%,.12)}.theme--dark.v-stepper .v-stepper__step--active .v-stepper__label{text-shadow:0 0 0 #fff}.theme--dark.v-stepper .v-stepper__step--editable:hover{background:hsla(0,0%,100%,.06)}.theme--dark.v-stepper .v-stepper__step--editable:hover .v-stepper__label{text-shadow:0 0 0 #fff}.theme--dark.v-stepper .v-stepper__step--complete .v-stepper__label{color:hsla(0,0%,100%,.87)}.theme--dark.v-stepper .v-stepper__step--inactive.v-stepper__step--editable:not(.v-stepper__step--error):hover .v-stepper__step__step{background:hsla(0,0%,100%,.75)}.theme--dark.v-stepper .v-stepper__label{color:hsla(0,0%,100%,.5)}.theme--dark.v-stepper .v-stepper__label small,.theme--dark.v-stepper--non-linear .v-stepper__step:not(.v-stepper__step--complete):not(.v-stepper__step--error) .v-stepper__label{color:hsla(0,0%,100%,.7)}.v-application--is-ltr .theme--dark.v-stepper--vertical .v-stepper__content:not(:last-child){border-left:1px solid hsla(0,0%,100%,.12)}.v-application--is-rtl .theme--dark.v-stepper--vertical .v-stepper__content:not(:last-child){border-right:1px solid hsla(0,0%,100%,.12)}.v-sheet.v-stepper{border-radius:4px}.v-sheet.v-stepper:not(.v-sheet--outlined){box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.v-sheet.v-stepper.v-sheet--shaped{border-radius:16px 4px}.v-stepper{border-radius:4px;overflow:hidden;position:relative}.v-stepper__header{height:72px;align-items:stretch;display:flex;flex-wrap:wrap;justify-content:space-between;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.v-stepper__header .v-divider{align-self:center;margin:0 -16px}.v-stepper__items{position:relative;overflow:hidden}.v-stepper__step__step{align-items:center;border-radius:50%;display:inline-flex;font-size:.75rem;justify-content:center;height:24px;min-width:24px;width:24px;transition:.3s cubic-bezier(.25,.8,.25,1)}.v-application--is-ltr .v-stepper__step__step{margin-right:8px}.v-application--is-rtl .v-stepper__step__step{margin-left:8px}.v-stepper__step__step .v-icon.v-icon{font-size:1.25rem}.v-stepper__step__step .v-icon.v-icon.v-icon--svg{height:1.25rem;width:1.25rem}.v-stepper__step{align-items:center;display:flex;flex-direction:row;padding:24px;position:relative}.v-stepper__step--active .v-stepper__label{transition:.3s cubic-bezier(.4,0,.6,1)}.v-stepper__step--editable{cursor:pointer}.v-stepper__step.v-stepper__step--error .v-stepper__step__step{background:transparent;color:inherit}.v-stepper__step.v-stepper__step--error .v-stepper__step__step .v-icon{font-size:1.5rem;color:inherit}.v-stepper .v-stepper__step.v-stepper__step--error .v-stepper__label{color:inherit;text-shadow:none;font-weight:500}.v-stepper .v-stepper__step.v-stepper__step--error .v-stepper__label small{color:inherit}.v-stepper__label{display:block;flex-grow:1;line-height:1}.v-application--is-ltr .v-stepper__label{text-align:left}.v-application--is-rtl .v-stepper__label{text-align:right}.v-stepper__label small{display:block;font-size:.75rem;font-weight:300;text-shadow:none}.v-stepper__wrapper{overflow:hidden;transition:none}.v-stepper__content{top:0;padding:24px 24px 16px 24px;flex:1 0 auto;width:100%}.v-stepper__content>.v-btn{margin:24px 8px 8px 0}.v-stepper--flat{box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)!important}.v-stepper--is-booted .v-stepper__content,.v-stepper--is-booted .v-stepper__wrapper{transition:.3s cubic-bezier(.25,.8,.5,1)}.v-stepper--vertical{padding-bottom:36px}.v-stepper--vertical .v-stepper__content{width:auto}.v-application--is-ltr .v-stepper--vertical .v-stepper__content{padding:16px 60px 16px 23px}.v-application--is-rtl .v-stepper--vertical .v-stepper__content{padding:16px 23px 16px 60px}.v-application--is-ltr .v-stepper--vertical .v-stepper__content{margin:-8px -36px -16px 36px}.v-application--is-rtl .v-stepper--vertical .v-stepper__content{margin:-8px 36px -16px -36px}.v-stepper--vertical .v-stepper__step{padding:24px 24px 16px}.v-application--is-ltr .v-stepper--vertical .v-stepper__step__step{margin-right:12px}.v-application--is-rtl .v-stepper--vertical .v-stepper__step__step{margin-left:12px}.v-stepper--alt-labels .v-stepper__header{height:auto}.v-stepper--alt-labels .v-stepper__header .v-divider{margin:35px -67px 0;align-self:flex-start}.v-stepper--alt-labels .v-stepper__step{flex-direction:column;justify-content:flex-start;align-items:center;flex-basis:175px}.v-stepper--alt-labels .v-stepper__step small{text-align:center}.v-stepper--alt-labels .v-stepper__step__step{margin-bottom:11px;margin-left:0;margin-right:0}@media only screen and (max-width:959.98px){.v-stepper:not(.v-stepper--vertical) .v-stepper__label{display:none}.v-stepper:not(.v-stepper--vertical) .v-stepper__step__step{margin-left:0;margin-right:0}}.theme--light.v-input--switch .v-input--switch__thumb{color:#fff}.theme--light.v-input--switch .v-input--switch__track{color:rgba(0,0,0,.38)}.theme--light.v-input--switch.v-input--is-disabled:not(.v-input--is-dirty) .v-input--switch__thumb{color:#fafafa!important}.theme--light.v-input--switch.v-input--is-disabled:not(.v-input--is-dirty) .v-input--switch__track{color:rgba(0,0,0,.12)!important}.theme--dark.v-input--switch .v-input--switch__thumb{color:#bdbdbd}.theme--dark.v-input--switch .v-input--switch__track{color:hsla(0,0%,100%,.3)}.theme--dark.v-input--switch.v-input--is-disabled:not(.v-input--is-dirty) .v-input--switch__thumb{color:#424242!important}.theme--dark.v-input--switch.v-input--is-disabled:not(.v-input--is-dirty) .v-input--switch__track{color:hsla(0,0%,100%,.1)!important}.v-input--switch__thumb,.v-input--switch__track{background-color:currentColor;pointer-events:none;transition:inherit}.v-input--switch__track{border-radius:8px;width:36px;height:14px;left:2px;position:absolute;opacity:.6;right:2px;top:calc(50% - 7px)}.v-input--switch__thumb{border-radius:50%;top:calc(50% - 10px);height:20px;position:relative;width:20px;display:flex;justify-content:center;align-items:center;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-input--switch .v-input--selection-controls__input{width:38px;transition:opacity .3s cubic-bezier(.25,.8,.5,1)}.v-input--switch .v-input--selection-controls__ripple{top:calc(50% - 24px)}.v-input--switch.v-input--dense .v-input--switch__thumb{width:18px;height:18px}.v-input--switch.v-input--dense .v-input--switch__track{height:12px;width:32px}.v-input--switch.v-input--dense.v-input--switch--inset .v-input--switch__track{height:22px;width:44px;top:calc(50% - 12px);left:-3px}.v-input--switch.v-input--dense .v-input--selection-controls__ripple{top:calc(50% - 22px)}.v-input--switch.v-input--is-dirty.v-input--is-disabled .v-input--selection-controls__input{opacity:.6}.v-application--is-ltr .v-input--switch .v-input--selection-controls__ripple{left:-14px}.v-application--is-ltr .v-input--switch.v-input--dense .v-input--selection-controls__ripple{left:-12px}.v-application--is-ltr .v-input--switch.v-input--is-dirty .v-input--selection-controls__ripple,.v-application--is-ltr .v-input--switch.v-input--is-dirty .v-input--switch__thumb{transform:translate(20px)}.v-application--is-rtl .v-input--switch .v-input--selection-controls__ripple{right:-14px}.v-application--is-rtl .v-input--switch.v-input--dense .v-input--selection-controls__ripple{right:-12px}.v-application--is-rtl .v-input--switch.v-input--is-dirty .v-input--selection-controls__ripple,.v-application--is-rtl .v-input--switch.v-input--is-dirty .v-input--switch__thumb{transform:translate(-20px)}.v-input--switch:not(.v-input--switch--flat):not(.v-input--switch--inset) .v-input--switch__thumb{box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)}.v-input--switch--inset .v-input--selection-controls__input,.v-input--switch--inset .v-input--switch__track{width:48px}.v-input--switch--inset .v-input--switch__track{border-radius:14px;height:28px;left:-4px;opacity:.32;top:calc(50% - 14px)}.v-application--is-ltr .v-input--switch--inset .v-input--selection-controls__ripple,.v-application--is-ltr .v-input--switch--inset .v-input--switch__thumb{transform:translate(0)!important}.v-application--is-rtl .v-input--switch--inset .v-input--selection-controls__ripple,.v-application--is-rtl .v-input--switch--inset .v-input--switch__thumb{transform:translate(-6px)!important}.v-application--is-ltr .v-input--switch--inset.v-input--is-dirty .v-input--selection-controls__ripple,.v-application--is-ltr .v-input--switch--inset.v-input--is-dirty .v-input--switch__thumb{transform:translate(20px)!important}.v-application--is-rtl .v-input--switch--inset.v-input--is-dirty .v-input--selection-controls__ripple,.v-application--is-rtl .v-input--switch--inset.v-input--is-dirty .v-input--switch__thumb{transform:translate(-26px)!important}.theme--light.v-tabs>.v-tabs-bar{background-color:#fff}.theme--light.v-tabs>.v-tabs-bar .v-tab--disabled,.theme--light.v-tabs>.v-tabs-bar .v-tab:not(.v-tab--active),.theme--light.v-tabs>.v-tabs-bar .v-tab:not(.v-tab--active)>.v-btn,.theme--light.v-tabs>.v-tabs-bar .v-tab:not(.v-tab--active)>.v-icon{color:rgba(0,0,0,.54)}.theme--light.v-tabs .v-tab:hover:before{opacity:.04}.theme--light.v-tabs .v-tab--active:before,.theme--light.v-tabs .v-tab--active:hover:before,.theme--light.v-tabs .v-tab:focus:before{opacity:.12}.theme--light.v-tabs .v-tab--active:focus:before{opacity:.16}.theme--dark.v-tabs>.v-tabs-bar{background-color:#1e1e1e}.theme--dark.v-tabs>.v-tabs-bar .v-tab--disabled,.theme--dark.v-tabs>.v-tabs-bar .v-tab:not(.v-tab--active),.theme--dark.v-tabs>.v-tabs-bar .v-tab:not(.v-tab--active)>.v-btn,.theme--dark.v-tabs>.v-tabs-bar .v-tab:not(.v-tab--active)>.v-icon{color:hsla(0,0%,100%,.6)}.theme--dark.v-tabs .v-tab:hover:before{opacity:.08}.theme--dark.v-tabs .v-tab--active:before,.theme--dark.v-tabs .v-tab--active:hover:before,.theme--dark.v-tabs .v-tab:focus:before{opacity:.24}.theme--dark.v-tabs .v-tab--active:focus:before{opacity:.32}.theme--light.v-tabs-items{background-color:#fff}.theme--dark.v-tabs-items{background-color:#1e1e1e}.v-tabs-bar.accent .v-tab,.v-tabs-bar.accent .v-tabs-slider,.v-tabs-bar.error .v-tab,.v-tabs-bar.error .v-tabs-slider,.v-tabs-bar.info .v-tab,.v-tabs-bar.info .v-tabs-slider,.v-tabs-bar.primary .v-tab,.v-tabs-bar.primary .v-tabs-slider,.v-tabs-bar.secondary .v-tab,.v-tabs-bar.secondary .v-tabs-slider,.v-tabs-bar.success .v-tab,.v-tabs-bar.success .v-tabs-slider,.v-tabs-bar.warning .v-tab,.v-tabs-bar.warning .v-tabs-slider{color:#fff}.v-tabs{flex:1 1 auto;width:100%}.v-tabs .v-menu__activator{height:100%}.v-tabs.v.tabs--vertical.v-tabs--right{flex-direction:row-reverse}.v-tabs:not(.v-tabs--vertical) .v-tab{white-space:normal}.v-tabs:not(.v-tabs--vertical).v-tabs--right>.v-slide-group--is-overflowing.v-tabs-bar--is-mobile:not(.v-slide-group--has-affixes) .v-slide-group__next,.v-tabs:not(.v-tabs--vertical):not(.v-tabs--right)>.v-slide-group--is-overflowing.v-tabs-bar--is-mobile:not(.v-slide-group--has-affixes) .v-slide-group__prev{display:initial;visibility:hidden}.v-tabs-bar{border-radius:inherit;height:48px}.v-tabs-bar.v-item-group>*{cursor:auto}.v-tab{align-items:center;cursor:pointer;display:flex;flex:0 1 auto;font-size:.875rem;font-weight:500;justify-content:center;letter-spacing:.0892857143em;line-height:normal;min-width:90px;max-width:360px;outline:none;padding:0 16px;position:relative;text-align:center;text-decoration:none;text-transform:uppercase;transition:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.v-tab.v-tab{color:inherit}.v-tab:before{bottom:0;content:"";left:0;opacity:0;pointer-events:none;position:absolute;right:0;top:0;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-tab:before,.v-tabs-slider{background-color:currentColor}.v-tabs-slider{height:100%;width:100%}.v-tabs-slider-wrapper{bottom:0;margin:0!important;position:absolute;transition:.3s cubic-bezier(.25,.8,.5,1);z-index:1}.v-application--is-ltr .v-tabs--align-with-title>.v-tabs-bar:not(.v-tabs-bar--show-arrows):not(.v-slide-group--is-overflowing)>.v-slide-group__wrapper>.v-tabs-bar__content>.v-tab:first-child,.v-application--is-ltr .v-tabs--align-with-title>.v-tabs-bar:not(.v-tabs-bar--show-arrows):not(.v-slide-group--is-overflowing)>.v-slide-group__wrapper>.v-tabs-bar__content>.v-tabs-slider-wrapper+.v-tab{margin-left:42px}.v-application--is-rtl .v-tabs--align-with-title>.v-tabs-bar:not(.v-tabs-bar--show-arrows):not(.v-slide-group--is-overflowing)>.v-slide-group__wrapper>.v-tabs-bar__content>.v-tab:first-child,.v-application--is-rtl .v-tabs--align-with-title>.v-tabs-bar:not(.v-tabs-bar--show-arrows):not(.v-slide-group--is-overflowing)>.v-slide-group__wrapper>.v-tabs-bar__content>.v-tabs-slider-wrapper+.v-tab{margin-right:42px}.v-application--is-ltr .v-tabs--centered>.v-tabs-bar .v-tabs-bar__content>:last-child,.v-application--is-ltr .v-tabs--fixed-tabs>.v-tabs-bar .v-tabs-bar__content>:last-child{margin-right:auto}.v-application--is-ltr .v-tabs--centered>.v-tabs-bar .v-tabs-bar__content>:first-child:not(.v-tabs-slider-wrapper),.v-application--is-ltr .v-tabs--centered>.v-tabs-bar .v-tabs-slider-wrapper+*,.v-application--is-ltr .v-tabs--fixed-tabs>.v-tabs-bar .v-tabs-bar__content>:first-child:not(.v-tabs-slider-wrapper),.v-application--is-ltr .v-tabs--fixed-tabs>.v-tabs-bar .v-tabs-slider-wrapper+*,.v-application--is-rtl .v-tabs--centered>.v-tabs-bar .v-tabs-bar__content>:last-child,.v-application--is-rtl .v-tabs--fixed-tabs>.v-tabs-bar .v-tabs-bar__content>:last-child{margin-left:auto}.v-application--is-rtl .v-tabs--centered>.v-tabs-bar .v-tabs-bar__content>:first-child:not(.v-tabs-slider-wrapper),.v-application--is-rtl .v-tabs--centered>.v-tabs-bar .v-tabs-slider-wrapper+*,.v-application--is-rtl .v-tabs--fixed-tabs>.v-tabs-bar .v-tabs-bar__content>:first-child:not(.v-tabs-slider-wrapper),.v-application--is-rtl .v-tabs--fixed-tabs>.v-tabs-bar .v-tabs-slider-wrapper+*{margin-right:auto}.v-tabs--fixed-tabs>.v-tabs-bar .v-tab{flex:1 1 auto;width:100%}.v-tabs--grow>.v-tabs-bar .v-tab{flex:1 0 auto;max-width:none}.v-tabs--icons-and-text>.v-tabs-bar{height:72px}.v-tabs--icons-and-text>.v-tabs-bar .v-tab{flex-direction:column-reverse}.v-tabs--icons-and-text>.v-tabs-bar .v-tab>:first-child{margin-bottom:6px}.v-tabs--overflow>.v-tabs-bar .v-tab{flex:1 0 auto}.v-application--is-ltr .v-tabs--right>.v-tabs-bar .v-tab:first-child,.v-application--is-ltr .v-tabs--right>.v-tabs-bar .v-tabs-slider-wrapper+.v-tab{margin-left:auto}.v-application--is-rtl .v-tabs--right>.v-tabs-bar .v-tab:first-child,.v-application--is-rtl .v-tabs--right>.v-tabs-bar .v-tabs-slider-wrapper+.v-tab{margin-right:auto}.v-application--is-ltr .v-tabs--right>.v-tabs-bar .v-tab:last-child{margin-right:0}.v-application--is-rtl .v-tabs--right>.v-tabs-bar .v-tab:last-child{margin-left:0}.v-tabs--vertical{display:flex}.v-tabs--vertical>.v-tabs-bar{flex:1 0 auto;height:auto}.v-tabs--vertical>.v-tabs-bar .v-slide-group__next,.v-tabs--vertical>.v-tabs-bar .v-slide-group__prev{display:none}.v-tabs--vertical>.v-tabs-bar .v-tabs-bar__content{flex-direction:column}.v-tabs--vertical>.v-tabs-bar .v-tab{height:48px}.v-tabs--vertical>.v-tabs-bar .v-tabs-slider{height:100%}.v-tabs--vertical>.v-window{flex:0 1 100%}.v-tabs--vertical.v-tabs--icons-and-text>.v-tabs-bar .v-tab{height:72px}.v-tab--active{color:inherit}.v-tab--active.v-tab:not(:focus):before{opacity:0}.v-tab--active .v-btn.v-btn--flat,.v-tab--active .v-icon{color:inherit}.v-tab--disabled{opacity:.5}.v-tab--disabled,.v-tab--disabled *{pointer-events:none}.v-slide-group{display:flex}.v-slide-group:not(.v-slide-group--has-affixes)>.v-slide-group__next,.v-slide-group:not(.v-slide-group--has-affixes)>.v-slide-group__prev{display:none}.v-slide-group.v-item-group>.v-slide-group__next,.v-slide-group.v-item-group>.v-slide-group__prev{cursor:pointer}.v-slide-item{display:inline-flex;flex:0 1 auto}.v-slide-group__next,.v-slide-group__prev{align-items:center;display:flex;flex:0 1 52px;justify-content:center;min-width:52px}.v-slide-group__content{display:flex;flex:1 0 auto;position:relative;transition:.3s cubic-bezier(.25,.8,.5,1);white-space:nowrap}.v-slide-group__wrapper{contain:content;display:flex;flex:1 1 auto;overflow:hidden}.v-slide-group__next--disabled,.v-slide-group__prev--disabled{pointer-events:none}.v-window{overflow:hidden}.v-window__container{display:flex;flex-direction:column;height:inherit;position:relative;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-window__container--is-active{overflow:hidden}.v-window__next,.v-window__prev{background:rgba(0,0,0,.3);border-radius:50%;position:absolute;margin:0 16px;top:calc(50% - 20px);z-index:1}.v-window__next .v-btn:hover,.v-window__prev .v-btn:hover{background:none}.v-application--is-ltr .v-window__prev{left:0}.v-application--is-ltr .v-window__next,.v-application--is-rtl .v-window__prev{right:0}.v-application--is-rtl .v-window__next{left:0}.v-window--show-arrows-on-hover{overflow:hidden}.v-window--show-arrows-on-hover .v-window__next,.v-window--show-arrows-on-hover .v-window__prev{transition:transform .2s cubic-bezier(.25,.8,.5,1)}.v-application--is-ltr .v-window--show-arrows-on-hover .v-window__prev{transform:translateX(-200%)}.v-application--is-ltr .v-window--show-arrows-on-hover .v-window__next,.v-application--is-rtl .v-window--show-arrows-on-hover .v-window__prev{transform:translateX(200%)}.v-application--is-rtl .v-window--show-arrows-on-hover .v-window__next{transform:translateX(-200%)}.v-window--show-arrows-on-hover:hover .v-window__next,.v-window--show-arrows-on-hover:hover .v-window__prev{transform:translateX(0)}.v-window-x-reverse-transition-enter-active,.v-window-x-reverse-transition-leave-active,.v-window-x-transition-enter-active,.v-window-x-transition-leave-active,.v-window-y-reverse-transition-enter-active,.v-window-y-reverse-transition-leave-active,.v-window-y-transition-enter-active,.v-window-y-transition-leave-active{transition:.3s cubic-bezier(.25,.8,.5,1)}.v-window-x-reverse-transition-leave,.v-window-x-reverse-transition-leave-to,.v-window-x-transition-leave,.v-window-x-transition-leave-to,.v-window-y-reverse-transition-leave,.v-window-y-reverse-transition-leave-to,.v-window-y-transition-leave,.v-window-y-transition-leave-to{position:absolute!important;top:0;width:100%}.v-window-x-transition-enter{transform:translateX(100%)}.v-window-x-reverse-transition-enter,.v-window-x-transition-leave-to{transform:translateX(-100%)}.v-window-x-reverse-transition-leave-to{transform:translateX(100%)}.v-window-y-transition-enter{transform:translateY(100%)}.v-window-y-reverse-transition-enter,.v-window-y-transition-leave-to{transform:translateY(-100%)}.v-window-y-reverse-transition-leave-to{transform:translateY(100%)}.theme--light.v-textarea.v-text-field--solo-inverted.v-input--is-focused textarea{color:#fff}.theme--light.v-textarea.v-text-field--solo-inverted.v-input--is-focused textarea::-moz-placeholder{color:hsla(0,0%,100%,.5)}.theme--light.v-textarea.v-text-field--solo-inverted.v-input--is-focused textarea::placeholder{color:hsla(0,0%,100%,.5)}.theme--dark.v-textarea.v-text-field--solo-inverted.v-input--is-focused textarea{color:rgba(0,0,0,.87)}.theme--dark.v-textarea.v-text-field--solo-inverted.v-input--is-focused textarea::-moz-placeholder{color:rgba(0,0,0,.38)}.theme--dark.v-textarea.v-text-field--solo-inverted.v-input--is-focused textarea::placeholder{color:rgba(0,0,0,.38)}.v-textarea textarea{align-self:stretch;flex:1 1 auto;line-height:1.75rem;max-width:100%;min-height:32px;outline:none;padding:0;width:100%}.v-textarea .v-text-field__prefix,.v-textarea .v-text-field__suffix{padding-top:2px;align-self:start}.v-textarea.v-text-field--box .v-text-field__prefix,.v-textarea.v-text-field--box textarea,.v-textarea.v-text-field--enclosed .v-text-field__prefix,.v-textarea.v-text-field--enclosed textarea{margin-top:24px}.v-textarea.v-text-field--box.v-text-field--outlined:not(.v-input--dense) .v-text-field__prefix,.v-textarea.v-text-field--box.v-text-field--outlined:not(.v-input--dense) .v-text-field__suffix,.v-textarea.v-text-field--box.v-text-field--outlined:not(.v-input--dense) textarea,.v-textarea.v-text-field--box.v-text-field--single-line:not(.v-input--dense) .v-text-field__prefix,.v-textarea.v-text-field--box.v-text-field--single-line:not(.v-input--dense) .v-text-field__suffix,.v-textarea.v-text-field--box.v-text-field--single-line:not(.v-input--dense) textarea,.v-textarea.v-text-field--enclosed.v-text-field--outlined:not(.v-input--dense) .v-text-field__prefix,.v-textarea.v-text-field--enclosed.v-text-field--outlined:not(.v-input--dense) .v-text-field__suffix,.v-textarea.v-text-field--enclosed.v-text-field--outlined:not(.v-input--dense) textarea,.v-textarea.v-text-field--enclosed.v-text-field--single-line:not(.v-input--dense) .v-text-field__prefix,.v-textarea.v-text-field--enclosed.v-text-field--single-line:not(.v-input--dense) .v-text-field__suffix,.v-textarea.v-text-field--enclosed.v-text-field--single-line:not(.v-input--dense) textarea{margin-top:10px}.v-textarea.v-text-field--box.v-text-field--outlined:not(.v-input--dense) .v-label,.v-textarea.v-text-field--box.v-text-field--single-line:not(.v-input--dense) .v-label,.v-textarea.v-text-field--enclosed.v-text-field--outlined:not(.v-input--dense) .v-label,.v-textarea.v-text-field--enclosed.v-text-field--single-line:not(.v-input--dense) .v-label{top:18px}.v-textarea.v-text-field--box.v-text-field--outlined.v-input--dense .v-text-field__prefix,.v-textarea.v-text-field--box.v-text-field--outlined.v-input--dense .v-text-field__suffix,.v-textarea.v-text-field--box.v-text-field--outlined.v-input--dense textarea,.v-textarea.v-text-field--box.v-text-field--single-line.v-input--dense .v-text-field__prefix,.v-textarea.v-text-field--box.v-text-field--single-line.v-input--dense .v-text-field__suffix,.v-textarea.v-text-field--box.v-text-field--single-line.v-input--dense textarea,.v-textarea.v-text-field--enclosed.v-text-field--outlined.v-input--dense .v-text-field__prefix,.v-textarea.v-text-field--enclosed.v-text-field--outlined.v-input--dense .v-text-field__suffix,.v-textarea.v-text-field--enclosed.v-text-field--outlined.v-input--dense textarea,.v-textarea.v-text-field--enclosed.v-text-field--single-line.v-input--dense .v-text-field__prefix,.v-textarea.v-text-field--enclosed.v-text-field--single-line.v-input--dense .v-text-field__suffix,.v-textarea.v-text-field--enclosed.v-text-field--single-line.v-input--dense textarea{margin-top:6px}.v-textarea.v-text-field--box.v-text-field--outlined.v-input--dense .v-input__append-inner,.v-textarea.v-text-field--box.v-text-field--outlined.v-input--dense .v-input__append-outer,.v-textarea.v-text-field--box.v-text-field--outlined.v-input--dense .v-input__prepend-inner,.v-textarea.v-text-field--box.v-text-field--outlined.v-input--dense .v-input__prepend-outer,.v-textarea.v-text-field--box.v-text-field--single-line.v-input--dense .v-input__append-inner,.v-textarea.v-text-field--box.v-text-field--single-line.v-input--dense .v-input__append-outer,.v-textarea.v-text-field--box.v-text-field--single-line.v-input--dense .v-input__prepend-inner,.v-textarea.v-text-field--box.v-text-field--single-line.v-input--dense .v-input__prepend-outer,.v-textarea.v-text-field--enclosed.v-text-field--outlined.v-input--dense .v-input__append-inner,.v-textarea.v-text-field--enclosed.v-text-field--outlined.v-input--dense .v-input__append-outer,.v-textarea.v-text-field--enclosed.v-text-field--outlined.v-input--dense .v-input__prepend-inner,.v-textarea.v-text-field--enclosed.v-text-field--outlined.v-input--dense .v-input__prepend-outer,.v-textarea.v-text-field--enclosed.v-text-field--single-line.v-input--dense .v-input__append-inner,.v-textarea.v-text-field--enclosed.v-text-field--single-line.v-input--dense .v-input__append-outer,.v-textarea.v-text-field--enclosed.v-text-field--single-line.v-input--dense .v-input__prepend-inner,.v-textarea.v-text-field--enclosed.v-text-field--single-line.v-input--dense .v-input__prepend-outer{align-self:flex-start;margin-top:8px}.v-textarea.v-text-field--solo{align-items:flex-start}.v-textarea.v-text-field--solo .v-input__control textarea{caret-color:auto}.v-textarea.v-text-field--solo .v-input__append-inner,.v-textarea.v-text-field--solo .v-input__append-outer,.v-textarea.v-text-field--solo .v-input__prepend-inner,.v-textarea.v-text-field--solo .v-input__prepend-outer{align-self:flex-start;margin-top:12px}.v-application--is-ltr .v-textarea.v-text-field--solo .v-input__append-inner{padding-left:12px}.v-application--is-rtl .v-textarea.v-text-field--solo .v-input__append-inner{padding-right:12px}.v-textarea--auto-grow textarea{overflow:hidden}.v-textarea--no-resize textarea{resize:none}.v-textarea.v-text-field--enclosed .v-text-field__slot{align-self:stretch}.v-application--is-ltr .v-textarea.v-text-field--enclosed .v-text-field__slot{margin-right:-12px}.v-application--is-rtl .v-textarea.v-text-field--enclosed .v-text-field__slot{margin-left:-12px}.v-application--is-ltr .v-textarea.v-text-field--enclosed .v-text-field__slot textarea{padding-right:12px}.v-application--is-rtl .v-textarea.v-text-field--enclosed .v-text-field__slot textarea{padding-left:12px}.v-application--is-ltr .v-textarea.v-text-field--enclosed.v-text-field--reverse .v-text-field__slot .v-label{margin-right:12px}.v-application--is-rtl .v-textarea.v-text-field--enclosed.v-text-field--reverse .v-text-field__slot .v-label{margin-left:12px}.v-time-picker-title{color:#fff;display:flex;line-height:1;justify-content:flex-end}.v-time-picker-title__time{white-space:nowrap;direction:ltr}.v-time-picker-title__time .v-picker__title__btn,.v-time-picker-title__time span{align-items:center;display:inline-flex;height:70px;font-size:70px;justify-content:center}.v-time-picker-title__ampm{align-self:flex-end;display:flex;flex-direction:column;font-size:16px;text-transform:uppercase}.v-application--is-ltr .v-time-picker-title__ampm{margin:0 0 6px 8px}.v-application--is-rtl .v-time-picker-title__ampm{margin:0 8px 6px 0}.v-time-picker-title__ampm div:only-child{flex-direction:row}.v-time-picker-title__ampm--readonly .v-picker__title__btn.v-picker__title__btn--active{opacity:.6}.v-picker__title--landscape .v-time-picker-title{flex-direction:column;justify-content:center;height:100%}.v-picker__title--landscape .v-time-picker-title__time{text-align:right}.v-picker__title--landscape .v-time-picker-title__time .v-picker__title__btn,.v-picker__title--landscape .v-time-picker-title__time span{height:55px;font-size:55px}.v-picker__title--landscape .v-time-picker-title__ampm{margin:16px 0 0;align-self:auto;text-align:center}.v-picker--time .v-picker__title--landscape{padding:0}.v-picker--time .v-picker__title--landscape .v-time-picker-title__time{text-align:center}.theme--light.v-time-picker-clock{background:#e0e0e0}.theme--light.v-time-picker-clock .v-time-picker-clock__item--disabled{color:rgba(0,0,0,.26)}.theme--light.v-time-picker-clock .v-time-picker-clock__item--disabled.v-time-picker-clock__item--active{color:hsla(0,0%,100%,.3)}.theme--light.v-time-picker-clock--indeterminate .v-time-picker-clock__hand{background-color:#bdbdbd}.theme--light.v-time-picker-clock--indeterminate:after{color:#bdbdbd}.theme--light.v-time-picker-clock--indeterminate .v-time-picker-clock__item--active{background-color:#bdbdbd}.theme--dark.v-time-picker-clock{background:#616161}.theme--dark.v-time-picker-clock .v-time-picker-clock__item--disabled,.theme--dark.v-time-picker-clock .v-time-picker-clock__item--disabled.v-time-picker-clock__item--active{color:hsla(0,0%,100%,.3)}.theme--dark.v-time-picker-clock--indeterminate .v-time-picker-clock__hand{background-color:#757575}.theme--dark.v-time-picker-clock--indeterminate:after{color:#757575}.theme--dark.v-time-picker-clock--indeterminate .v-time-picker-clock__item--active{background-color:#757575}.v-time-picker-clock{border-radius:100%;position:relative;transition:.3s cubic-bezier(.25,.8,.5,1);-webkit-user-select:none;-moz-user-select:none;user-select:none;width:100%;padding-top:100%;flex:1 0 auto}.v-time-picker-clock__container{display:flex;flex-direction:column;flex-basis:290px;justify-content:center;padding:10px}.v-time-picker-clock__ampm{display:flex;flex-direction:row;justify-content:space-between;align-items:flex-end;position:absolute;width:100%;height:100%;top:0;left:0;margin:0;padding:10px}.v-time-picker-clock__hand{height:calc(50% - 4px);width:2px;bottom:50%;left:calc(50% - 1px);transform-origin:center bottom;position:absolute;will-change:transform;z-index:1}.v-time-picker-clock__hand:before{background:transparent;border-width:2px;border-style:solid;border-color:inherit;width:10px;height:10px;top:-4px}.v-time-picker-clock__hand:after,.v-time-picker-clock__hand:before{border-radius:100%;content:"";position:absolute;left:50%;transform:translate(-50%,-50%)}.v-time-picker-clock__hand:after{height:8px;width:8px;top:100%;border-style:solid;border-color:inherit;background-color:inherit}.v-time-picker-clock__hand--inner:after{height:14px}.v-picker--full-width .v-time-picker-clock__container{max-width:290px}.v-time-picker-clock__inner{position:absolute;bottom:27px;left:27px;right:27px;top:27px}.v-time-picker-clock__item{align-items:center;border-radius:100%;cursor:default;display:flex;font-size:16px;justify-content:center;height:40px;position:absolute;text-align:center;width:40px;-webkit-user-select:none;-moz-user-select:none;user-select:none;transform:translate(-50%,-50%)}.v-time-picker-clock__item>span{z-index:1}.v-time-picker-clock__item:after,.v-time-picker-clock__item:before{content:"";border-radius:100%;position:absolute;top:50%;left:50%;height:14px;width:14px;transform:translate(-50%,-50%);height:40px;width:40px}.v-time-picker-clock__item--active{color:#fff;cursor:default;z-index:2}.v-time-picker-clock__item--disabled{pointer-events:none}.v-picker--landscape .v-time-picker-clock__container{flex-direction:row}.v-picker--landscape .v-time-picker-clock__ampm{flex-direction:column}.v-tooltip{display:none}.v-tooltip--attached{display:inline}.v-tooltip__content{background:rgba(97,97,97,.9);color:#fff;border-radius:4px;font-size:14px;line-height:22px;display:inline-block;padding:5px 16px;position:absolute;text-transform:none;width:auto;opacity:0;pointer-events:none}.v-tooltip__content.menuable__content__active{opacity:.9}.v-tooltip__content--fixed{position:fixed}.v-tooltip__content[class*=-active]{transition-timing-function:cubic-bezier(0,0,.2,1)}.v-tooltip__content[class*=enter-active]{transition-duration:.15s}.v-tooltip__content[class*=leave-active]{transition-duration:75ms}.vjsf-property .v-input--selection-controls{margin-top:0}.vjsf-tooltip p:last-child{margin-bottom:0}.vjsf-property .color-picker-trigger{width:36px;height:36px;border-radius:50%;cursor:pointer;display:inline-block;border:2px solid #ccc}.vjsf-property .color-picker-trigger-empty{background:linear-gradient(to top right,transparent,transparent calc(50% - 2.4px),#de080a 50%,transparent calc(50% + 2.4px),transparent)}.vjsf-date-time .v-picker.v-card{border-radius:0}.vjsf-property.read-only .theme--light.v-input--is-disabled .v-select__selection--disabled,.vjsf-property.read-only .theme--light.v-input--is-disabled input,.vjsf-property.read-only .theme--light.v-input--is-disabled textarea{color:rgba(0,0,0,.87)}.vjsf-property.read-only .theme--dark.v-input--is-disabled .v-select__selection--disabled,.vjsf-property.read-only .theme--dark.v-input--is-disabled input,.vjsf-property.read-only .theme--dark.v-input--is-disabled textarea{color:#fff}.vjsf-property.read-only .theme--light.v-text-field.v-input--is-disabled .v-input__slot{margin-bottom:0}.vjsf-property.read-only .theme--light.v-text-field.v-input--is-disabled .v-input__slot:before{-o-border-image:none;border-image:none;border-color:transparent}.vjsf-property .vjsf-markdown-input .v-input__slot{display:block}.vjsf-property .vjsf-markdown-input .EasyMDEContainer .editor-toolbar{border:none;padding:2px}.vjsf-property .vjsf-markdown-input .EasyMDEContainer .CodeMirror{border:none}.vjsf-property .vjsf-markdown-input p:last-child{margin-bottom:0}.vjsf-property .vjsf-invisible-alert{border-top-color:transparent!important;border-right-color:transparent!important;border-bottom-color:transparent!important;border-left-color:transparent!important}.vjsf-array-item .v-alert__content{max-width:100%} \ No newline at end of file diff --git a/dist/favicon-32x32.png b/dist/favicon-32x32.png new file mode 100644 index 0000000000000000000000000000000000000000..e15caac98cb9cc77f21736d068a24a88508f88ea GIT binary patch literal 1349 zcmZ{i2~d+q6o5CPMG)#}R0ILRiXs&9Cqad@9?(#eHaG||bpi-E{v1FOjvo}-(TEtd zMJs}ccvKyU_kmP9fCS4Z~cmo0bu+VFA~SnG)=)qQzS+9+w9Lfd%9ls4v*j?INo@* zEze|LBrck}1pAP`MyxH{cdV(qrytTiy#rrUG(3`Ts&NTe{obrp;p#2B4>$bOa{v5~xAg12o5o28-co5s*`VECcj>0*Jmr{x z)Qqq8_x2BxBzfROQ*6?v>YDnY;bDRxl=;G&V8#FI~~kSt~NK^efV@bHv{-5S01|9)!oMy6l5C@>ed|$7Zf~r++iDh^Vr%! zk_1JQmz(c;u`_^gN&>p|QG4g0eW-ZHsoo z|7c^?;RdO$!fm#k;h$nye_&{2q^jmpa7;eKHwE}61K*@cq3WFCnx5AK51(|DRMyI{ z>Uea!B)wd}{=oN*w?=RWEHg>b!#Ir-G)dD0-a**vDBC&GR!iCHXy*j>I?{HQ7`_J| zgcvwSSeTT>ld^b_7B@%tdWY>I(H=^+2a(n}q&0|W|G?3+l_Uo!+(O}xDEtr7@#^PK z&)k5o&X9k;j1M-C^Ao^@D<+JKb?tKVbPpV3zPuLx3dU3+KUy65iz01$p|Q+OfUy6R zG~K+?(tO*P$Z(zOwQwS9=4G%kKvEDWo3w(R?IxV3^**V(-f|-}IAq?5qsNbBXyn=c z8!IntJMF){#*n5_mIk(7Rm#&IwBt(>%{ zs2(>po6H@i%HJ=%c|S8B%g-A!Mz1lcw8ndbPNqhoXcZaZh8*>!R=<6ao$h4C znmnDH$Kx9mc{)^&@p$nN%?0cubOY-hM(B*f;|Wl$T7v<06lZBl_DaZjjf(Rx^MzK4 zX`D#g$-wat@g9Z5X>}-8kcEPOvSMZF)l1GvmcJ7xP7Eo)UdUO%;c(|iBJJTK21F)~ zij$}vYhz#zuJz@P!dKp~(AL>x#lFaYJy!G9Wnzd$p8|3k%pXkZVz zksy0PVCkp7|I=Uo{a^6n_y2)$|q|A3GH_y<+<`{(}$yVw0cF{|_c>kG%gn*IUh@PU8-ATD_Q{PF)H z2etn>7P9|46TSb(Dzp8cU6~Fw1LjIhlm7jM$hC&M{%;O(hAVh@?ZW@<^C!Xi*cdRk zeg5$Ff3iC7{~M({|3^u%RT7j0jYcd D=w`}Z literal 0 HcmV?d00001 diff --git a/dist/index.html b/dist/index.html index a13c0af..8a35cdc 100644 --- a/dist/index.html +++ b/dist/index.html @@ -1 +1 @@ -Vue App
\ No newline at end of file +Vue App
\ No newline at end of file diff --git a/dist/js/109.350c7c05.js b/dist/js/109.350c7c05.js new file mode 100644 index 0000000..2b3148d --- /dev/null +++ b/dist/js/109.350c7c05.js @@ -0,0 +1,2 @@ +(self["webpackChunkmobilitydcatap_ui"]=self["webpackChunkmobilitydcatap_ui"]||[]).push([[109],{5109:function(t,e,r){const i=r(19488),n=r(67234);class a extends i{constructor(t){super(n,t)}}t.exports=a},67234:function(t,e,r){const i=r(13943),{JsonLdParser:n}=r(38690),{Transform:a}=r(28399),o="null:";function s(t){return e=>"NamedNode"!==e.termType?null:e.value.startsWith(o)?t.namedNode(e.value.slice(o.length)):null}function l(t){const e=s(t);return r=>{const i=e(r.subject),n=e(r.predicate),a=e(r.object),o=e(r.graph);return i||n||a||o?t.quad(i||r.subject,n||r.predicate,a||r.object,o||r.graph):r}}class d{constructor(t,{baseIRI:e=o,context:r=null,factory:s=i}={}){const d=new n({baseIRI:e,context:r,dataFactory:s,streamingProfile:!1});t.pipe(d);const c=l(s),u=new a({objectMode:!0,transform:(t,e,r)=>{r(null,c(t))}});return d.on("context",(t=>{Object.entries(t).forEach((([t,e])=>{u.emit("prefix",t,s.namedNode(e))}))})),d.on("error",(t=>u.destroy(t))),d.pipe(u),u}}t.exports=d},13943:function(t,e,r){const i=r(82501);t.exports=i},14313:function(t){class e{constructor(t){this.value=t||"b"+ ++e.nextId}equals(t){return!!t&&t.termType===this.termType&&t.value===this.value}}e.prototype.termType="BlankNode",e.nextId=0,t.exports=e},82501:function(t,e,r){const i=r(14313),n=r(81856),a=r(4889),o=r(48736),s=r(84482),l=r(84200),d=r(46419);function c(t){return new s(t)}function u(t){return new i(t)}function h(t,e){return"string"===typeof e?-1===e.indexOf(":")?new o(t,e):new o(t,null,w.namedNode(e)):new o(t,null,e)}function f(t){return new d(t)}function p(){return w.defaultGraphInstance}function g(t,e,r){return w.quad(t,e,r)}function y(t,e,r,i){return new l(t,e,r,i||w.defaultGraphInstance)}function E(t){return a.call(w,t)}function C(t){return a.call(w,t)}const w={namedNode:c,blankNode:u,literal:h,variable:f,defaultGraph:p,triple:g,quad:y,fromTerm:E,fromQuad:C,defaultGraphInstance:new n};t.exports=w},81856:function(t){class e{equals(t){return!!t&&t.termType===this.termType}}e.prototype.termType="DefaultGraph",e.prototype.value="",t.exports=e},48736:function(t,e,r){const i=r(84482);class n{constructor(t,e,r){this.value=t,this.datatype=n.stringDatatype,this.language="",e?(this.language=e,this.datatype=n.langStringDatatype):r&&(this.datatype=r)}equals(t){return!!t&&t.termType===this.termType&&t.value===this.value&&t.language===this.language&&t.datatype.equals(this.datatype)}}n.prototype.termType="Literal",n.langStringDatatype=new i("http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"),n.stringDatatype=new i("http://www.w3.org/2001/XMLSchema#string"),t.exports=n},84482:function(t){class e{constructor(t){this.value=t}equals(t){return!!t&&t.termType===this.termType&&t.value===this.value}}e.prototype.termType="NamedNode",t.exports=e},84200:function(t,e,r){const i=r(81856);class n{constructor(t,e,r,n){this.subject=t,this.predicate=e,this.object=r,this.graph=n||new i}equals(t){return!!t&&("Quad"===t.termType||!t.termType)&&t.subject.equals(this.subject)&&t.predicate.equals(this.predicate)&&t.object.equals(this.object)&&t.graph.equals(this.graph)}}n.prototype.termType="Quad",n.prototype.value="",t.exports=n},46419:function(t){class e{constructor(t){this.value=t}equals(t){return!!t&&t.termType===this.termType&&t.value===this.value}}e.prototype.termType="Variable",t.exports=e},4889:function(t){function e(t){if(!t)return null;if("BlankNode"===t.termType)return this.blankNode(t.value);if("DefaultGraph"===t.termType)return this.defaultGraph();if("Literal"===t.termType)return this.literal(t.value,t.language||this.namedNode(t.datatype.value));if("NamedNode"===t.termType)return this.namedNode(t.value);if("Quad"===t.termType){const e=this.fromTerm(t.subject),r=this.fromTerm(t.predicate),i=this.fromTerm(t.object),n=this.fromTerm(t.graph);return this.quad(e,r,i,n)}if("Variable"===t.termType)return this.variable(t.value);throw new Error(`unknown termType ${t.termType}`)}t.exports=e},19488:function(t){class e{constructor(t,e){this.Impl=t,this.options=e}import(t,e){const r=new this.Impl(t,Object.assign({},this.options,e));return t.on("end",(()=>{r.readable||r.emit("end")})),t.on("error",(t=>{r.emit("error",t)})),r}}t.exports=e},86547:function(){(function(t){(function(e){var r={searchParams:"URLSearchParams"in t,iterable:"Symbol"in t&&"iterator"in Symbol,blob:"FileReader"in t&&"Blob"in t&&function(){try{return new Blob,!0}catch(t){return!1}}(),formData:"FormData"in t,arrayBuffer:"ArrayBuffer"in t};function i(t){return t&&DataView.prototype.isPrototypeOf(t)}if(r.arrayBuffer)var n=["[object Int8Array]","[object Uint8Array]","[object Uint8ClampedArray]","[object Int16Array]","[object Uint16Array]","[object Int32Array]","[object Uint32Array]","[object Float32Array]","[object Float64Array]"],a=ArrayBuffer.isView||function(t){return t&&n.indexOf(Object.prototype.toString.call(t))>-1};function o(t){if("string"!==typeof t&&(t=String(t)),/[^a-z0-9\-#$%&'*+.^_`|~]/i.test(t))throw new TypeError("Invalid character in header field name");return t.toLowerCase()}function s(t){return"string"!==typeof t&&(t=String(t)),t}function l(t){var e={next:function(){var e=t.shift();return{done:void 0===e,value:e}}};return r.iterable&&(e[Symbol.iterator]=function(){return e}),e}function d(t){this.map={},t instanceof d?t.forEach((function(t,e){this.append(e,t)}),this):Array.isArray(t)?t.forEach((function(t){this.append(t[0],t[1])}),this):t&&Object.getOwnPropertyNames(t).forEach((function(e){this.append(e,t[e])}),this)}function c(t){if(t.bodyUsed)return Promise.reject(new TypeError("Already read"));t.bodyUsed=!0}function u(t){return new Promise((function(e,r){t.onload=function(){e(t.result)},t.onerror=function(){r(t.error)}}))}function h(t){var e=new FileReader,r=u(e);return e.readAsArrayBuffer(t),r}function f(t){var e=new FileReader,r=u(e);return e.readAsText(t),r}function p(t){for(var e=new Uint8Array(t),r=new Array(e.length),i=0;i-1?e:t}function w(t,e){e=e||{};var r=e.body;if(t instanceof w){if(t.bodyUsed)throw new TypeError("Already read");this.url=t.url,this.credentials=t.credentials,e.headers||(this.headers=new d(t.headers)),this.method=t.method,this.mode=t.mode,this.signal=t.signal,r||null==t._bodyInit||(r=t._bodyInit,t.bodyUsed=!0)}else this.url=String(t);if(this.credentials=e.credentials||this.credentials||"same-origin",!e.headers&&this.headers||(this.headers=new d(e.headers)),this.method=C(e.method||this.method||"GET"),this.mode=e.mode||this.mode||null,this.signal=e.signal||this.signal,this.referrer=null,("GET"===this.method||"HEAD"===this.method)&&r)throw new TypeError("Body not allowed for GET or HEAD requests");this._initBody(r)}function I(t){var e=new FormData;return t.trim().split("&").forEach((function(t){if(t){var r=t.split("="),i=r.shift().replace(/\+/g," "),n=r.join("=").replace(/\+/g," ");e.append(decodeURIComponent(i),decodeURIComponent(n))}})),e}function _(t){var e=new d,r=t.replace(/\r?\n[\t ]+/g," ");return r.split(/\r?\n/).forEach((function(t){var r=t.split(":"),i=r.shift().trim();if(i){var n=r.join(":").trim();e.append(i,n)}})),e}function O(t,e){e||(e={}),this.type="default",this.status=void 0===e.status?200:e.status,this.ok=this.status>=200&&this.status<300,this.statusText="statusText"in e?e.statusText:"OK",this.headers=new d(e.headers),this.url=e.url||"",this._initBody(t)}w.prototype.clone=function(){return new w(this,{body:this._bodyInit})},y.call(w.prototype),y.call(O.prototype),O.prototype.clone=function(){return new O(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new d(this.headers),url:this.url})},O.error=function(){var t=new O(null,{status:0,statusText:""});return t.type="error",t};var R=[301,302,303,307,308];O.redirect=function(t,e){if(-1===R.indexOf(e))throw new RangeError("Invalid status code");return new O(null,{status:e,headers:{location:t}})},e.DOMException=t.DOMException;try{new e.DOMException}catch(b){e.DOMException=function(t,e){this.message=t,this.name=e;var r=Error(t);this.stack=r.stack},e.DOMException.prototype=Object.create(Error.prototype),e.DOMException.prototype.constructor=e.DOMException}function x(t,i){return new Promise((function(n,a){var o=new w(t,i);if(o.signal&&o.signal.aborted)return a(new e.DOMException("Aborted","AbortError"));var s=new XMLHttpRequest;function l(){s.abort()}s.onload=function(){var t={status:s.status,statusText:s.statusText,headers:_(s.getAllResponseHeaders()||"")};t.url="responseURL"in s?s.responseURL:t.headers.get("X-Request-URL");var e="response"in s?s.response:s.responseText;n(new O(e,t))},s.onerror=function(){a(new TypeError("Network request failed"))},s.ontimeout=function(){a(new TypeError("Network request failed"))},s.onabort=function(){a(new e.DOMException("Aborted","AbortError"))},s.open(o.method,o.url,!0),"include"===o.credentials?s.withCredentials=!0:"omit"===o.credentials&&(s.withCredentials=!1),"responseType"in s&&r.blob&&(s.responseType="blob"),o.headers.forEach((function(t,e){s.setRequestHeader(e,t)})),o.signal&&(o.signal.addEventListener("abort",l),s.onreadystatechange=function(){4===s.readyState&&o.signal.removeEventListener("abort",l)}),s.send("undefined"===typeof o._bodyInit?null:o._bodyInit)}))}x.polyfill=!0,t.fetch||(t.fetch=x,t.Headers=d,t.Request=w,t.Response=O),e.Headers=d,e.Request=w,e.Response=O,e.fetch=x,Object.defineProperty(e,"__esModule",{value:!0})})({})})("undefined"!==typeof self?self:this)},42395:function(t,e,r){"use strict";var i=this&&this.__createBinding||(Object.create?function(t,e,r,i){void 0===i&&(i=r);var n=Object.getOwnPropertyDescriptor(e,r);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[r]}}),Object.defineProperty(t,i,n)}:function(t,e,r,i){void 0===i&&(i=r),t[i]=e[r]}),n=this&&this.__exportStar||function(t,e){for(var r in t)"default"===r||Object.prototype.hasOwnProperty.call(e,r)||i(e,t,r)};Object.defineProperty(e,"__esModule",{value:!0}),n(r(72803),e),n(r(75094),e),n(r(60585),e),n(r(29146),e),n(r(45086),e),n(r(85215),e),n(r(94931),e)},72803:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.ContextParser=void 0,r(86547);const i=r(70742),n=r(75094),a=r(60585),o=r(85215),s=r(94931);class l{constructor(t){t=t||{},this.documentLoader=t.documentLoader||new a.FetchDocumentLoader,this.documentCache={},this.validateContext=!t.skipValidation,this.expandContentTypeToBase=!!t.expandContentTypeToBase,this.remoteContextsDepthLimit=t.remoteContextsDepthLimit||32,this.redirectSchemaOrgHttps=!("redirectSchemaOrgHttps"in t)||!!t.redirectSchemaOrgHttps}static validateLanguage(t,e,r){if("string"!==typeof t)throw new n.ErrorCoded(`The value of an '@language' must be a string, got '${JSON.stringify(t)}'`,r);if(!s.Util.REGEX_LANGUAGE_TAG.test(t)){if(e)throw new n.ErrorCoded(`The value of an '@language' must be a valid language tag, got '${JSON.stringify(t)}'`,r);return!1}return!0}static validateDirection(t,e){if("string"!==typeof t)throw new n.ErrorCoded(`The value of an '@direction' must be a string, got '${JSON.stringify(t)}'`,n.ERROR_CODES.INVALID_BASE_DIRECTION);if(!s.Util.REGEX_DIRECTION_TAG.test(t)){if(e)throw new n.ErrorCoded(`The value of an '@direction' must be 'ltr' or 'rtl', got '${JSON.stringify(t)}'`,n.ERROR_CODES.INVALID_BASE_DIRECTION);return!1}return!0}idifyReverseTerms(t){for(const e of Object.keys(t)){let r=t[e];if(r&&"object"===typeof r&&r["@reverse"]&&!r["@id"]){if("string"!==typeof r["@reverse"]||s.Util.isValidKeyword(r["@reverse"]))throw new n.ErrorCoded(`Invalid @reverse value, must be absolute IRI or blank node: '${r["@reverse"]}'`,n.ERROR_CODES.INVALID_IRI_MAPPING);r=t[e]=Object.assign(Object.assign({},r),{"@id":r["@reverse"]}),r["@id"]=r["@reverse"],s.Util.isPotentialKeyword(r["@reverse"])?delete r["@reverse"]:r["@reverse"]=!0}}return t}expandPrefixedTerms(t,e,r){const i=t.getContextRaw();for(const a of r||Object.keys(i))if(s.Util.EXPAND_KEYS_BLACKLIST.indexOf(a)<0&&!s.Util.isReservedInternalKeyword(a)){const r=i[a];if(s.Util.isPotentialKeyword(a)&&s.Util.ALIAS_DOMAIN_BLACKLIST.indexOf(a)>=0&&("@type"!==a||"object"===typeof i[a]&&!i[a]["@protected"]&&"@set"!==i[a]["@container"]))throw new n.ErrorCoded(`Keywords can not be aliased to something else.\nTried mapping ${a} to ${JSON.stringify(r)}`,n.ERROR_CODES.KEYWORD_REDEFINITION);if(s.Util.ALIAS_RANGE_BLACKLIST.indexOf(s.Util.getContextValueId(r))>=0)throw new n.ErrorCoded(`Aliasing to certain keywords is not allowed.\nTried mapping ${a} to ${JSON.stringify(r)}`,n.ERROR_CODES.INVALID_KEYWORD_ALIAS);if(r&&s.Util.isPotentialKeyword(s.Util.getContextValueId(r))&&!0===r["@prefix"])throw new n.ErrorCoded(`Tried to use keyword aliases as prefix: '${a}': '${JSON.stringify(r)}'`,n.ERROR_CODES.INVALID_TERM_DEFINITION);while(s.Util.isPrefixValue(i[a])){const r=i[a];let n=!1;if("string"===typeof r)i[a]=t.expandTerm(r,!0),n=n||r!==i[a];else{const o=r["@id"],l=r["@type"],d=!("@prefix"in r)||s.Util.isValidIri(a);if("@id"in r)void 0!==o&&null!==o&&"string"===typeof o&&(i[a]=Object.assign(Object.assign({},i[a]),{"@id":t.expandTerm(o,!0)}),n=n||o!==i[a]["@id"]);else if(!s.Util.isPotentialKeyword(a)&&d){const e=t.expandTerm(a,!0);e!==a&&(i[a]=Object.assign(Object.assign({},i[a]),{"@id":e}),n=!0)}if(l&&"string"===typeof l&&"@vocab"!==l&&(!r["@container"]||!r["@container"]["@type"])&&d){let r=t.expandTerm(l,!0);e&&l===r&&(r=t.expandTerm(l,!1)),r!==l&&(n=!0,i[a]=Object.assign(Object.assign({},i[a]),{"@type":r}))}}if(!n)break}}}normalize(t,{processingMode:e,normalizeLanguageTags:r}){if(r||1===e)for(const i of Object.keys(t))if("@language"===i&&"string"===typeof t[i])t[i]=t[i].toLowerCase();else{const e=t[i];if(e&&"object"===typeof e&&"string"===typeof e["@language"]){const r=e["@language"].toLowerCase();r!==e["@language"]&&(t[i]=Object.assign(Object.assign({},e),{"@language":r}))}}}containersToHash(t){for(const e of Object.keys(t)){const r=t[e];if(r&&"object"===typeof r)if("string"===typeof r["@container"])t[e]=Object.assign(Object.assign({},r),{"@container":{[r["@container"]]:!0}});else if(Array.isArray(r["@container"])){const i={};for(const t of r["@container"])i[t]=!0;t[e]=Object.assign(Object.assign({},r),{"@container":i})}}}applyScopedProtected(t,{processingMode:e},r){if(e&&e>=1.1&&t["@protected"]){for(const e of Object.keys(t))if(!s.Util.isReservedInternalKeyword(e)&&!s.Util.isPotentialKeyword(e)&&!s.Util.isTermProtected(t,e)){const i=t[e];i&&"object"===typeof i?"@protected"in t[e]||(t[e]=Object.assign(Object.assign({},t[e]),{"@protected":!0})):(t[e]={"@id":i,"@protected":!0},s.Util.isSimpleTermDefinitionPrefix(i,r)&&(t[e]=Object.assign(Object.assign({},t[e]),{"@prefix":!0})))}delete t["@protected"]}}validateKeywordRedefinitions(t,e,r,i){for(const a of null!==i&&void 0!==i?i:Object.keys(e))if(s.Util.isTermProtected(t,a)&&("string"===typeof e[a]?e[a]={"@id":e[a],"@protected":!0}:e[a]=Object.assign(Object.assign({},e[a]),{"@protected":!0}),!s.Util.deepEqual(t[a],e[a])))throw new n.ErrorCoded(`Attempted to override the protected keyword ${a} from ${JSON.stringify(s.Util.getContextValueId(t[a]))} to ${JSON.stringify(s.Util.getContextValueId(e[a]))}`,n.ERROR_CODES.PROTECTED_TERM_REDEFINITION)}validate(t,{processingMode:e}){for(const r of Object.keys(t)){if(s.Util.isReservedInternalKeyword(r))continue;if(""===r)throw new n.ErrorCoded(`The empty term is not allowed, got: '${r}': '${JSON.stringify(t[r])}'`,n.ERROR_CODES.INVALID_TERM_DEFINITION);const i=t[r],a=typeof i;if(s.Util.isPotentialKeyword(r)){switch(r.substr(1)){case"vocab":if(null!==i&&"string"!==a)throw new n.ErrorCoded(`Found an invalid @vocab IRI: ${i}`,n.ERROR_CODES.INVALID_VOCAB_MAPPING);break;case"base":if(null!==i&&"string"!==a)throw new n.ErrorCoded(`Found an invalid @base IRI: ${t[r]}`,n.ERROR_CODES.INVALID_BASE_IRI);break;case"language":null!==i&&l.validateLanguage(i,!0,n.ERROR_CODES.INVALID_DEFAULT_LANGUAGE);break;case"version":if(null!==i&&"number"!==a)throw new n.ErrorCoded(`Found an invalid @version number: ${i}`,n.ERROR_CODES.INVALID_VERSION_VALUE);break;case"direction":null!==i&&l.validateDirection(i,!0);break;case"propagate":if(1===e)throw new n.ErrorCoded(`Found an illegal @propagate keyword: ${i}`,n.ERROR_CODES.INVALID_CONTEXT_ENTRY);if(null!==i&&"boolean"!==a)throw new n.ErrorCoded(`Found an invalid @propagate value: ${i}`,n.ERROR_CODES.INVALID_PROPAGATE_VALUE);break}if(s.Util.isValidKeyword(r)&&s.Util.isValidKeyword(s.Util.getContextValueId(i)))throw new n.ErrorCoded(`Illegal keyword alias in term value, found: '${r}': '${s.Util.getContextValueId(i)}'`,n.ERROR_CODES.KEYWORD_REDEFINITION)}else if(null!==i)switch(a){case"string":if(s.Util.getPrefix(i,t)===r)throw new n.ErrorCoded(`Detected cyclical IRI mapping in context entry: '${r}': '${JSON.stringify(i)}'`,n.ERROR_CODES.CYCLIC_IRI_MAPPING);if(s.Util.isValidIriWeak(r)){if("@type"===i)throw new n.ErrorCoded(`IRIs can not be mapped to @type, found: '${r}': '${i}'`,n.ERROR_CODES.INVALID_IRI_MAPPING);if(s.Util.isValidIri(i)&&i!==new o.JsonLdContextNormalized(t).expandTerm(r))throw new n.ErrorCoded(`IRIs can not be mapped to other IRIs, found: '${r}': '${i}'`,n.ERROR_CODES.INVALID_IRI_MAPPING)}break;case"object":if(!s.Util.isCompactIri(r)&&!("@id"in i)&&("@id"===i["@type"]?!t["@base"]:!t["@vocab"]))throw new n.ErrorCoded(`Missing @id in context entry: '${r}': '${JSON.stringify(i)}'`,n.ERROR_CODES.INVALID_IRI_MAPPING);for(const d of Object.keys(i)){const c=i[d];if(c)switch(d){case"@id":if(s.Util.isValidKeyword(c)&&"@type"!==c&&"@id"!==c&&"@graph"!==c&&"@nest"!==c)throw new n.ErrorCoded(`Illegal keyword alias in term value, found: '${r}': '${JSON.stringify(i)}'`,n.ERROR_CODES.INVALID_IRI_MAPPING);if(s.Util.isValidIriWeak(r)){if("@type"===c)throw new n.ErrorCoded(`IRIs can not be mapped to @type, found: '${r}': '${JSON.stringify(i)}'`,n.ERROR_CODES.INVALID_IRI_MAPPING);if(s.Util.isValidIri(c)&&c!==new o.JsonLdContextNormalized(t).expandTerm(r))throw new n.ErrorCoded(`IRIs can not be mapped to other IRIs, found: '${r}': '${JSON.stringify(i)}'`,n.ERROR_CODES.INVALID_IRI_MAPPING)}if("string"!==typeof c)throw new n.ErrorCoded(`Detected non-string @id in context entry: '${r}': '${JSON.stringify(i)}'`,n.ERROR_CODES.INVALID_IRI_MAPPING);if(s.Util.getPrefix(c,t)===r)throw new n.ErrorCoded(`Detected cyclical IRI mapping in context entry: '${r}': '${JSON.stringify(i)}'`,n.ERROR_CODES.CYCLIC_IRI_MAPPING);break;case"@type":if("@type"===i["@container"]&&"@id"!==c&&"@vocab"!==c)throw new n.ErrorCoded(`@container: @type only allows @type: @id or @vocab, but got: '${r}': '${c}'`,n.ERROR_CODES.INVALID_TYPE_MAPPING);if("string"!==typeof c)throw new n.ErrorCoded(`The value of an '@type' must be a string, got '${JSON.stringify(a)}'`,n.ERROR_CODES.INVALID_TYPE_MAPPING);if("@id"!==c&&"@vocab"!==c&&(1===e||"@json"!==c)&&(1===e||"@none"!==c)&&("_"===c[0]||!s.Util.isValidIri(c)))throw new n.ErrorCoded(`A context @type must be an absolute IRI, found: '${r}': '${c}'`,n.ERROR_CODES.INVALID_TYPE_MAPPING);break;case"@reverse":if("string"===typeof c&&i["@id"]&&i["@id"]!==c)throw new n.ErrorCoded(`Found non-matching @id and @reverse term values in '${r}':'${c}' and '${i["@id"]}'`,n.ERROR_CODES.INVALID_REVERSE_PROPERTY);if("@nest"in i)throw new n.ErrorCoded(`@nest is not allowed in the reverse property '${r}'`,n.ERROR_CODES.INVALID_REVERSE_PROPERTY);break;case"@container":if(1===e&&(Object.keys(c).length>1||s.Util.CONTAINERS_1_0.indexOf(Object.keys(c)[0])<0))throw new n.ErrorCoded(`Invalid term @container for '${r}' ('${Object.keys(c)}') in 1.0, must be only one of ${s.Util.CONTAINERS_1_0.join(", ")}`,n.ERROR_CODES.INVALID_CONTAINER_MAPPING);for(const t of Object.keys(c)){if("@list"===t&&i["@reverse"])throw new n.ErrorCoded(`Term value can not be @container: @list and @reverse at the same time on '${r}'`,n.ERROR_CODES.INVALID_REVERSE_PROPERTY);if(s.Util.CONTAINERS.indexOf(t)<0)throw new n.ErrorCoded(`Invalid term @container for '${r}' ('${t}'), must be one of ${s.Util.CONTAINERS.join(", ")}`,n.ERROR_CODES.INVALID_CONTAINER_MAPPING)}break;case"@language":l.validateLanguage(c,!0,n.ERROR_CODES.INVALID_LANGUAGE_MAPPING);break;case"@direction":l.validateDirection(c,!0);break;case"@prefix":if(null!==c&&"boolean"!==typeof c)throw new n.ErrorCoded(`Found an invalid term @prefix boolean in: '${r}': '${JSON.stringify(i)}'`,n.ERROR_CODES.INVALID_PREFIX_VALUE);if(!("@id"in i)&&!s.Util.isValidIri(r))throw new n.ErrorCoded(`Invalid @prefix definition for '${r}' ('${JSON.stringify(i)}'`,n.ERROR_CODES.INVALID_TERM_DEFINITION);break;case"@index":if(1===e||!i["@container"]||!i["@container"]["@index"])throw new n.ErrorCoded(`Attempt to add illegal key to value object: '${r}': '${JSON.stringify(i)}'`,n.ERROR_CODES.INVALID_TERM_DEFINITION);break;case"@nest":if(s.Util.isPotentialKeyword(c)&&"@nest"!==c)throw new n.ErrorCoded(`Found an invalid term @nest value in: '${r}': '${JSON.stringify(i)}'`,n.ERROR_CODES.INVALID_NEST_VALUE)}}break;default:throw new n.ErrorCoded(`Found an invalid term value: '${r}': '${i}'`,n.ERROR_CODES.INVALID_TERM_DEFINITION)}}}applyBaseEntry(t,e,r){return"string"===typeof t||(r&&!("@base"in t)&&e.parentContext&&"object"===typeof e.parentContext&&"@base"in e.parentContext&&(t["@base"]=e.parentContext["@base"],e.parentContext["@__baseDocument"]&&(t["@__baseDocument"]=!0)),e.baseIRI&&!e.external&&("@base"in t?null===t["@base"]||"string"!==typeof t["@base"]||s.Util.isValidIri(t["@base"])||(t["@base"]=(0,i.resolve)(t["@base"],e.parentContext&&e.parentContext["@base"]||e.baseIRI)):(t["@base"]=e.baseIRI,t["@__baseDocument"]=!0))),t}normalizeContextIri(t,e){if(!s.Util.isValidIri(t))try{t=(0,i.resolve)(t,e)}catch(r){throw new Error(`Invalid context IRI: ${t}`)}return this.redirectSchemaOrgHttps&&t.startsWith("http://schema.org")&&(t="https://schema.org/"),t}async parseInnerContexts(t,e,r){for(const a of null!==r&&void 0!==r?r:Object.keys(t)){const r=t[a];if(r&&"object"===typeof r&&"@context"in r&&null!==r["@context"]&&!e.ignoreScopedContexts){if(this.validateContext)try{const i=Object.assign(Object.assign({},t),{[a]:Object.assign({},t[a])});delete i[a]["@context"],await this.parse(r["@context"],Object.assign(Object.assign({},e),{external:!1,parentContext:i,ignoreProtection:!0,ignoreRemoteScopedContexts:!0,ignoreScopedContexts:!0}))}catch(i){throw new n.ErrorCoded(i.message,n.ERROR_CODES.INVALID_SCOPED_CONTEXT)}t[a]=Object.assign(Object.assign({},r),{"@context":(await this.parse(r["@context"],Object.assign(Object.assign({},e),{external:!1,minimalProcessing:!0,ignoreRemoteScopedContexts:!0,parentContext:t}))).getContextRaw()})}}return t}async parse(t,e={},r={}){const{baseIRI:i,parentContext:a,external:d,processingMode:c=l.DEFAULT_PROCESSING_MODE,normalizeLanguageTags:u,ignoreProtection:h,minimalProcessing:f}=e,p=e.remoteContexts||{};if(Object.keys(p).length>=this.remoteContextsDepthLimit)throw new n.ErrorCoded("Detected an overflow in remote context inclusions: "+Object.keys(p),n.ERROR_CODES.CONTEXT_OVERFLOW);if(null===t||void 0===t){if(!h&&a&&s.Util.hasProtectedTerms(a))throw new n.ErrorCoded("Illegal context nullification when terms are protected",n.ERROR_CODES.INVALID_CONTEXT_NULLIFICATION);return new o.JsonLdContextNormalized(this.applyBaseEntry({},e,!1))}if("string"===typeof t){const r=this.normalizeContextIri(t,i),n=this.getOverriddenLoad(r,e);if(n)return new o.JsonLdContextNormalized(n);const a=await this.parse(await this.load(r),Object.assign(Object.assign({},e),{baseIRI:r,external:!0,remoteContexts:Object.assign(Object.assign({},p),{[r]:!0})}));return this.applyBaseEntry(a.getContextRaw(),e,!0),a}if(Array.isArray(t)){const r=[],n=await Promise.all(t.map(((t,n)=>{if("string"===typeof t){const a=this.normalizeContextIri(t,i);r[n]=a;const o=this.getOverriddenLoad(a,e);return o||this.load(a)}return t})));if(f)return new o.JsonLdContextNormalized(n);const s=await n.reduce(((t,i,a)=>t.then((t=>this.parse(i,Object.assign(Object.assign({},e),{baseIRI:r[a]||e.baseIRI,external:!!r[a]||e.external,parentContext:t.getContextRaw(),remoteContexts:r[a]?Object.assign(Object.assign({},p),{[r[a]]:!0}):p}),{skipValidation:a=1.1))throw new n.ErrorCoded("Context importing is not supported in JSON-LD 1.0",n.ERROR_CODES.INVALID_CONTEXT_ENTRY);if("string"!==typeof t["@import"])throw new n.ErrorCoded("An @import value must be a string, but got "+typeof t["@import"],n.ERROR_CODES.INVALID_IMPORT_VALUE);p=await this.loadImportContext(this.normalizeContextIri(t["@import"],i)),delete t["@import"]}this.applyScopedProtected(p,{processingMode:c},o.defaultExpandOptions);const g=Object.assign(p,t);this.idifyReverseTerms(g),this.normalize(g,{processingMode:c,normalizeLanguageTags:u}),this.applyScopedProtected(g,{processingMode:c},o.defaultExpandOptions);const y=Object.keys(g),E=[];if("object"===typeof a)for(const t in a)t in g?E.push(t):g[t]=a[t];await this.parseInnerContexts(g,e,y);const C=new o.JsonLdContextNormalized(g);return(g&&g["@version"]||l.DEFAULT_PROCESSING_MODE)>=1.1&&(t["@vocab"]&&"string"===typeof t["@vocab"]||""===t["@vocab"])&&(a&&"@vocab"in a&&t["@vocab"].indexOf(":")<0?g["@vocab"]=a["@vocab"]+t["@vocab"]:(s.Util.isCompactIri(t["@vocab"])||t["@vocab"]in g)&&(g["@vocab"]=C.expandTerm(t["@vocab"],!0))),this.expandPrefixedTerms(C,this.expandContentTypeToBase,y),!h&&a&&c>=1.1&&this.validateKeywordRedefinitions(a,g,o.defaultExpandOptions,E),this.validateContext&&!r.skipValidation&&this.validate(g,{processingMode:c}),C}throw new n.ErrorCoded(`Tried parsing a context that is not a string, array or object, but got ${t}`,n.ERROR_CODES.INVALID_LOCAL_CONTEXT)}async load(t){const e=this.documentCache[t];if(e)return e;let r;try{r=await this.documentLoader.load(t)}catch(i){throw new n.ErrorCoded(`Failed to load remote context ${t}: ${i.message}`,n.ERROR_CODES.LOADING_REMOTE_CONTEXT_FAILED)}if(!("@context"in r))throw new n.ErrorCoded(`Missing @context in remote context at ${t}`,n.ERROR_CODES.INVALID_REMOTE_CONTEXT);return this.documentCache[t]=r["@context"]}getOverriddenLoad(t,e){if(t in(e.remoteContexts||{})){if(e.ignoreRemoteScopedContexts)return t;throw new n.ErrorCoded("Detected a cyclic context inclusion of "+t,n.ERROR_CODES.RECURSIVE_CONTEXT_INCLUSION)}return null}async loadImportContext(t){let e=await this.load(t);if("object"!==typeof e||Array.isArray(e))throw new n.ErrorCoded("An imported context must be a single object: "+t,n.ERROR_CODES.INVALID_REMOTE_CONTEXT);if("@import"in e)throw new n.ErrorCoded("An imported context can not import another context: "+t,n.ERROR_CODES.INVALID_CONTEXT_ENTRY);return e=Object.assign({},e),this.containersToHash(e),e}}l.DEFAULT_PROCESSING_MODE=1.1,e.ContextParser=l},75094:function(t,e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.ERROR_CODES=e.ErrorCoded=void 0;class r extends Error{constructor(t,e){super(t),this.code=e}}e.ErrorCoded=r,function(t){t["COLLIDING_KEYWORDS"]="colliding keywords",t["CONFLICTING_INDEXES"]="conflicting indexes",t["CYCLIC_IRI_MAPPING"]="cyclic IRI mapping",t["INVALID_ID_VALUE"]="invalid @id value",t["INVALID_INDEX_VALUE"]="invalid @index value",t["INVALID_NEST_VALUE"]="invalid @nest value",t["INVALID_PREFIX_VALUE"]="invalid @prefix value",t["INVALID_PROPAGATE_VALUE"]="invalid @propagate value",t["INVALID_REVERSE_VALUE"]="invalid @reverse value",t["INVALID_IMPORT_VALUE"]="invalid @import value",t["INVALID_VERSION_VALUE"]="invalid @version value",t["INVALID_BASE_IRI"]="invalid base IRI",t["INVALID_CONTAINER_MAPPING"]="invalid container mapping",t["INVALID_CONTEXT_ENTRY"]="invalid context entry",t["INVALID_CONTEXT_NULLIFICATION"]="invalid context nullification",t["INVALID_DEFAULT_LANGUAGE"]="invalid default language",t["INVALID_INCLUDED_VALUE"]="invalid @included value",t["INVALID_IRI_MAPPING"]="invalid IRI mapping",t["INVALID_JSON_LITERAL"]="invalid JSON literal",t["INVALID_KEYWORD_ALIAS"]="invalid keyword alias",t["INVALID_LANGUAGE_MAP_VALUE"]="invalid language map value",t["INVALID_LANGUAGE_MAPPING"]="invalid language mapping",t["INVALID_LANGUAGE_TAGGED_STRING"]="invalid language-tagged string",t["INVALID_LANGUAGE_TAGGED_VALUE"]="invalid language-tagged value",t["INVALID_LOCAL_CONTEXT"]="invalid local context",t["INVALID_REMOTE_CONTEXT"]="invalid remote context",t["INVALID_REVERSE_PROPERTY"]="invalid reverse property",t["INVALID_REVERSE_PROPERTY_MAP"]="invalid reverse property map",t["INVALID_REVERSE_PROPERTY_VALUE"]="invalid reverse property value",t["INVALID_SCOPED_CONTEXT"]="invalid scoped context",t["INVALID_SCRIPT_ELEMENT"]="invalid script element",t["INVALID_SET_OR_LIST_OBJECT"]="invalid set or list object",t["INVALID_TERM_DEFINITION"]="invalid term definition",t["INVALID_TYPE_MAPPING"]="invalid type mapping",t["INVALID_TYPE_VALUE"]="invalid type value",t["INVALID_TYPED_VALUE"]="invalid typed value",t["INVALID_VALUE_OBJECT"]="invalid value object",t["INVALID_VALUE_OBJECT_VALUE"]="invalid value object value",t["INVALID_VOCAB_MAPPING"]="invalid vocab mapping",t["IRI_CONFUSED_WITH_PREFIX"]="IRI confused with prefix",t["KEYWORD_REDEFINITION"]="keyword redefinition",t["LOADING_DOCUMENT_FAILED"]="loading document failed",t["LOADING_REMOTE_CONTEXT_FAILED"]="loading remote context failed",t["MULTIPLE_CONTEXT_LINK_HEADERS"]="multiple context link headers",t["PROCESSING_MODE_CONFLICT"]="processing mode conflict",t["PROTECTED_TERM_REDEFINITION"]="protected term redefinition",t["CONTEXT_OVERFLOW"]="context overflow",t["INVALID_BASE_DIRECTION"]="invalid base direction",t["RECURSIVE_CONTEXT_INCLUSION"]="recursive context inclusion",t["INVALID_STREAMING_KEY_ORDER"]="invalid streaming key order",t["INVALID_EMBEDDED_NODE"]="invalid embedded node",t["INVALID_ANNOTATION"]="invalid annotation"}(e.ERROR_CODES||(e.ERROR_CODES={}))},60585:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.FetchDocumentLoader=void 0,r(86547);const i=r(75094),n=r(2384),a=r(70742);class o{constructor(t){this.fetcher=t}async load(t){const e=await(this.fetcher||fetch)(t,{headers:new Headers({accept:"application/ld+json"})});if(e.ok&&e.headers){let r=e.headers.get("Content-Type");if(r){const t=r.indexOf(";");t>0&&(r=r.substr(0,t))}if("application/ld+json"===r)return await e.json();if(e.headers.has("Link")){let r;if(e.headers.forEach(((e,i)=>{if("link"===i){const i=(0,n.parse)(e);for(const e of i.get("type","application/ld+json"))if("alternate"===e.rel){if(r)throw new Error("Multiple JSON-LD alternate links were found on "+t);r=(0,a.resolve)(e.uri,t)}}})),r)return this.load(r)}throw new i.ErrorCoded(`Unsupported JSON-LD media type ${r}`,i.ERROR_CODES.LOADING_DOCUMENT_FAILED)}throw new Error(e.statusText||`Status code: ${e.status}`)}}e.FetchDocumentLoader=o},29146:function(t,e){"use strict";Object.defineProperty(e,"__esModule",{value:!0})},45086:function(t,e){"use strict";Object.defineProperty(e,"__esModule",{value:!0})},85215:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.defaultExpandOptions=e.JsonLdContextNormalized=void 0;const i=r(70742),n=r(75094),a=r(94931);class o{constructor(t){this.contextRaw=t}getContextRaw(){return this.contextRaw}expandTerm(t,r,o=e.defaultExpandOptions){const s=this.contextRaw[t];if(null===s||s&&null===s["@id"])return null;let l=!0;if(s&&r){const e=a.Util.getContextValueId(s);if(e&&e!==t){if("string"===typeof e&&(a.Util.isValidIri(e)||a.Util.isValidKeyword(e)))return e;a.Util.isPotentialKeyword(e)||(l=!1)}}const d=a.Util.getPrefix(t,this.contextRaw),c=this.contextRaw["@vocab"],u=(!!c||""===c)&&c.indexOf(":")<0,h=this.contextRaw["@base"],f=a.Util.isPotentialKeyword(t);if(d){const e=this.contextRaw[d],r=a.Util.getContextValueId(e);if(r){if("string"!==typeof e&&o.allowPrefixForcing){if("_"!==r[0]&&!f&&!e["@prefix"]&&!(t in this.contextRaw))return t}else if(!a.Util.isSimpleTermDefinitionPrefix(r,o))return t;return r+t.substr(d.length+1)}}else{if(r&&(c||""===c||o.allowVocabRelativeToBase&&h&&u)&&!f&&!a.Util.isCompactIri(t)){if(u){if(o.allowVocabRelativeToBase)return(c||h?(0,i.resolve)(c,h):"")+t;throw new n.ErrorCoded(`Relative vocab expansion for term '${t}' with vocab '${c}' is not allowed.`,n.ERROR_CODES.INVALID_VOCAB_MAPPING)}return c+t}if(!r&&h&&!f&&!a.Util.isCompactIri(t))return(0,i.resolve)(t,h)}if(l)return t;throw new n.ErrorCoded(`Invalid IRI mapping found for context entry '${t}': '${JSON.stringify(s)}'`,n.ERROR_CODES.INVALID_IRI_MAPPING)}compactIri(t,e){if(e&&this.contextRaw["@vocab"]&&t.startsWith(this.contextRaw["@vocab"]))return t.substr(this.contextRaw["@vocab"].length);if(!e&&this.contextRaw["@base"]&&t.startsWith(this.contextRaw["@base"]))return t.substr(this.contextRaw["@base"].length);const r={prefix:"",suffix:t};for(const i in this.contextRaw){const n=this.contextRaw[i];if(n&&!a.Util.isPotentialKeyword(i)){const o=a.Util.getContextValueId(n);if(t.startsWith(o)){const n=t.substr(o.length);if(n)n.length0&&!(t&&"#"===t[0])}static getPrefix(t,e){if(t&&"#"===t[0])return null;const r=t.indexOf(":");if(r>=0){if(t.length>r+1&&"/"===t.charAt(r+1)&&"/"===t.charAt(r+2))return null;const i=t.substr(0,r);if("_"===i)return null;if(e[i])return i}return null}static getContextValueId(t){if(null===t||"string"===typeof t)return t;const e=t["@id"];return e||null}static isSimpleTermDefinitionPrefix(t,e){return!r.isPotentialKeyword(t)&&(e.allowPrefixNonGenDelims||"string"===typeof t&&("_"===t[0]||r.isPrefixIriEndingWithGenDelim(t)))}static isPotentialKeyword(t){return"string"===typeof t&&r.KEYWORD_REGEX.test(t)}static isPrefixIriEndingWithGenDelim(t){return r.ENDS_WITH_GEN_DELIM.test(t)}static isPrefixValue(t){return t&&("string"===typeof t||t&&"object"===typeof t)}static isValidIri(t){return Boolean(t&&r.IRI_REGEX.test(t))}static isValidIriWeak(t){return!!t&&":"!==t[0]&&r.IRI_REGEX_WEAK.test(t)}static isValidKeyword(t){return r.VALID_KEYWORDS[t]}static isTermProtected(t,e){const r=t[e];return!("string"===typeof r)&&r&&r["@protected"]}static hasProtectedTerms(t){for(const e of Object.keys(t))if(r.isTermProtected(t,e))return!0;return!1}static isReservedInternalKeyword(t){return t.startsWith("@__")}static deepEqual(t,e){const r=Object.keys(t),i=Object.keys(e);return r.length===i.length&&r.every((r=>{const i=t[r],n=e[r];return i===n||null!==i&&null!==n&&"object"===typeof i&&"object"===typeof n&&this.deepEqual(i,n)}))}}r.IRI_REGEX=/^([A-Za-z][A-Za-z0-9+-.]*|_):[^ "<>{}|\\\[\]`#]*(#[^#]*)?$/,r.IRI_REGEX_WEAK=/(?::[^:])|\//,r.KEYWORD_REGEX=/^@[a-z]+$/i,r.ENDS_WITH_GEN_DELIM=/[:/?#\[\]@]$/,r.REGEX_LANGUAGE_TAG=/^[a-zA-Z]+(-[a-zA-Z0-9]+)*$/,r.REGEX_DIRECTION_TAG=/^(ltr)|(rtl)$/,r.VALID_KEYWORDS={"@annotation":!0,"@base":!0,"@container":!0,"@context":!0,"@direction":!0,"@graph":!0,"@id":!0,"@import":!0,"@included":!0,"@index":!0,"@json":!0,"@language":!0,"@list":!0,"@nest":!0,"@none":!0,"@prefix":!0,"@propagate":!0,"@protected":!0,"@reverse":!0,"@set":!0,"@type":!0,"@value":!0,"@version":!0,"@vocab":!0},r.EXPAND_KEYS_BLACKLIST=["@base","@vocab","@language","@version","@direction"],r.ALIAS_DOMAIN_BLACKLIST=["@container","@graph","@id","@index","@list","@nest","@none","@prefix","@reverse","@set","@type","@value","@version"],r.ALIAS_RANGE_BLACKLIST=["@context","@preserve"],r.CONTAINERS=["@list","@set","@index","@language","@graph","@id","@type"],r.CONTAINERS_1_0=["@list","@set","@index"],e.Util=r},38690:function(t,e,r){"use strict";var i=this&&this.__createBinding||(Object.create?function(t,e,r,i){void 0===i&&(i=r),Object.defineProperty(t,i,{enumerable:!0,get:function(){return e[r]}})}:function(t,e,r,i){void 0===i&&(i=r),t[i]=e[r]}),n=this&&this.__exportStar||function(t,e){for(var r in t)"default"===r||Object.prototype.hasOwnProperty.call(e,r)||i(e,t,r)};Object.defineProperty(e,"__esModule",{value:!0}),n(r(52277),e)},4405:function(t,e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.ContextTree=void 0;class r{constructor(){this.subTrees={}}getContext(t){if(t.length>0){const[e,...r]=t,i=this.subTrees[e];if(i){const t=i.getContext(r);if(t)return t.then((({context:t,depth:e})=>({context:t,depth:e+1})))}}return this.context?this.context.then((t=>({context:t,depth:0}))):null}setContext(t,e){if(0===t.length)this.context=e;else{const[i,...n]=t;let a=this.subTrees[i];a||(a=this.subTrees[i]=new r),a.setContext(n,e)}}removeContext(t){this.setContext(t,null)}}e.ContextTree=r},52277:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.JsonLdParser=void 0;const i=r(54727),n=r(42395),a=r(88310),o=r(39693),s=r(64860),l=r(22386),d=r(76970),c=r(23809),u=r(55998),h=r(15517),f=r(70736),p=r(24910),g=r(62036),y=r(86454),E=r(33283),C=r(93099),w=r(10888),I=r(2384);class _ extends a.Transform{constructor(t){super({readableObjectMode:!0}),t=t||{},this.options=t,this.parsingContext=new C.ParsingContext(Object.assign({parser:this},t)),this.util=new w.Util({dataFactory:t.dataFactory,parsingContext:this.parsingContext}),this.jsonParser=new i,this.contextJobs=[],this.typeJobs=[],this.contextAwaitingJobs=[],this.lastDepth=0,this.lastKeys=[],this.lastOnValueJob=Promise.resolve(),this.attachJsonParserListeners(),this.on("end",(()=>{"undefined"!==typeof this.jsonParser.mode&&this.emit("error",new Error("Unclosed document"))}))}static fromHttpResponse(t,e,r,i){let a,o;if("application/ld+json"!==e){if("application/json"!==e&&!e.endsWith("+json"))throw new n.ErrorCoded(`Unsupported JSON-LD media type ${e}`,n.ERROR_CODES.LOADING_DOCUMENT_FAILED);if(r&&r.has("Link")&&r.forEach(((e,r)=>{if("link"===r){const r=I.parse(e);for(const e of r.get("rel","http://www.w3.org/ns/json-ld#context")){if(a)throw new n.ErrorCoded("Multiple JSON-LD context link headers were found on "+t,n.ERROR_CODES.MULTIPLE_CONTEXT_LINK_HEADERS);a=e.uri}}})),!a&&!(null===i||void 0===i?void 0:i.ignoreMissingContextLinkHeader))throw new n.ErrorCoded(`Missing context link header for media type ${e} on ${t}`,n.ERROR_CODES.LOADING_DOCUMENT_FAILED)}if(r&&r.has("Content-Type")){const t=r.get("Content-Type"),e=/; *profile=([^"]*)/.exec(t);e&&"http://www.w3.org/ns/json-ld#streaming"===e[1]&&(o=!0)}return new _(Object.assign({baseIRI:t,context:a,streamingProfile:o},i||{}))}import(t){const e=new a.PassThrough({readableObjectMode:!0});t.on("error",(t=>r.emit("error",t))),t.on("data",(t=>e.push(t))),t.on("end",(()=>e.push(null)));const r=e.pipe(new _(this.options));return r}_transform(t,e,r){this.jsonParser.write(t),this.lastOnValueJob.then((()=>r()),(t=>r(t)))}async newOnValueJob(t,e,r,i){let a=!0;if(i&&r1&&(c=this.parsingContext.validationStack[this.parsingContext.validationStack.length-1].property);for(let n=Math.max(1,this.parsingContext.validationStack.length-1);n=0?this.parsingContext.idStack[t-r-1]:[await this.util.getGraphContainerValue(e,t)];if(a)for(const e of a){this.parsingContext.emittedStack[t]=!0;for(const r of i)r.reverse?this.parsingContext.emitQuad(t,this.util.dataFactory.quad(r.object,r.predicate,n,e)):this.parsingContext.emitQuad(t,this.util.dataFactory.quad(n,r.predicate,r.object,e))}else{const r=this.parsingContext.getUnidentifiedGraphBufferSafe(t-await this.util.getDepthOffsetGraph(t,e)-1);for(const t of i)t.reverse?r.push({object:n,predicate:t.predicate,subject:t.object}):r.push({object:t.object,predicate:t.predicate,subject:n})}}this.parsingContext.unidentifiedValuesBuffer.splice(t,1),this.parsingContext.literalStack.splice(t,1),this.parsingContext.jsonLiteralStack.splice(t,1)}const n=this.parsingContext.unidentifiedGraphsBuffer[t];if(n){for(const e of r){const r=1!==t||"BlankNode"!==e.termType||this.parsingContext.topLevelProperties?e:this.util.getDefaultGraph();this.parsingContext.emittedStack[t]=!0;for(const e of n)this.parsingContext.emitQuad(t,this.util.dataFactory.quad(e.subject,e.predicate,e.object,r))}this.parsingContext.unidentifiedGraphsBuffer.splice(t,1)}}async validateKey(t,e,r){for(const i of _.ENTRY_HANDLERS)if(await i.validate(this.parsingContext,this.util,t,e,r))return{valid:!0,property:r||i.isPropertyHandler()};return{valid:!1,property:!1}}attachJsonParserListeners(){this.jsonParser.onValue=t=>{const e=this.jsonParser.stack.length,r=new Array(e+1).fill(0).map(((t,r)=>r===e?this.jsonParser.key:this.jsonParser.stack[r].key));if(!this.isParsingContextInner(e)){const i=()=>this.newOnValueJob(r,t,e,!0);if(this.parsingContext.streamingProfile||this.parsingContext.contextTree.getContext(r.slice(0,-1)))this.lastOnValueJob=this.lastOnValueJob.then(i);else if("@context"===r[e]){let t=this.contextJobs[e];t||(t=this.contextJobs[e]=[]),t.push(i)}else"@type"===r[e]||"number"===typeof r[e]&&"@type"===r[e-1]?this.typeJobs.push({job:i,keys:r.slice(0,r.length-1)}):this.contextAwaitingJobs.push({job:i,keys:r});this.parsingContext.streamingProfile||0!==e||(this.lastOnValueJob=this.lastOnValueJob.then((()=>this.executeBufferedJobs())))}},this.jsonParser.onError=t=>{this.emit("error",t)}}isParsingContextInner(t){for(let e=t;e>0;e--)if("@context"===this.jsonParser.stack[e-1].key)return!0;return!1}async executeBufferedJobs(){for(const t of this.contextJobs)if(t)for(const e of t)await e();this.parsingContext.unaliasedKeywordCacheStack.splice(0);for(const t of this.contextAwaitingJobs){if(this.typeJobs.length>0){const e=[],r=[];for(let a=0;at.keys.length-e.keys.length));for(const t of i)await t.job();const n=r.sort().reverse();for(const t of n)this.typeJobs.splice(t,1)}await t.job()}}}e.JsonLdParser=_,_.DEFAULT_PROCESSING_MODE="1.1",_.ENTRY_HANDLERS=[new o.EntryHandlerArrayValue,new c.EntryHandlerKeywordContext,new h.EntryHandlerKeywordId,new f.EntryHandlerKeywordIncluded,new u.EntryHandlerKeywordGraph,new p.EntryHandlerKeywordNest,new g.EntryHandlerKeywordType,new E.EntryHandlerKeywordValue,new s.EntryHandlerContainer,new y.EntryHandlerKeywordUnknownFallback,new d.EntryHandlerPredicate,new l.EntryHandlerInvalidFallback]},93099:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.ParsingContext=void 0;const i=r(42395),n=r(75094),a=r(4405),o=r(52277);class s{constructor(t){this.contextParser=new i.ContextParser({documentLoader:t.documentLoader,skipValidation:t.skipContextValidation}),this.streamingProfile=!!t.streamingProfile,this.baseIRI=t.baseIRI,this.produceGeneralizedRdf=!!t.produceGeneralizedRdf,this.allowSubjectList=!!t.allowSubjectList,this.processingMode=t.processingMode||o.JsonLdParser.DEFAULT_PROCESSING_MODE,this.strictValues=!!t.strictValues,this.validateValueIndexes=!!t.validateValueIndexes,this.defaultGraph=t.defaultGraph,this.rdfDirection=t.rdfDirection,this.normalizeLanguageTags=t.normalizeLanguageTags,this.streamingProfileAllowOutOfOrderPlainType=t.streamingProfileAllowOutOfOrderPlainType,this.topLevelProperties=!1,this.activeProcessingMode=parseFloat(this.processingMode),this.processingStack=[],this.processingType=[],this.emittedStack=[],this.idStack=[],this.graphStack=[],this.graphContainerTermStack=[],this.listPointerStack=[],this.contextTree=new a.ContextTree,this.literalStack=[],this.validationStack=[],this.unaliasedKeywordCacheStack=[],this.jsonLiteralStack=[],this.unidentifiedValuesBuffer=[],this.unidentifiedGraphsBuffer=[],this.pendingContainerFlushBuffers=[],this.parser=t.parser,t.context?(this.rootContext=this.parseContext(t.context),this.rootContext.then((t=>this.validateContext(t)))):this.rootContext=Promise.resolve(new i.JsonLdContextNormalized(this.baseIRI?{"@base":this.baseIRI,"@__baseDocument":!0}:{}))}async parseContext(t,e,r){return this.contextParser.parse(t,{baseIRI:this.baseIRI,ignoreProtection:r,normalizeLanguageTags:this.normalizeLanguageTags,parentContext:e,processingMode:this.activeProcessingMode})}validateContext(t){const e=t.getContextRaw()["@version"];if(e){if(this.activeProcessingMode&&e>this.activeProcessingMode)throw new n.ErrorCoded(`Unsupported JSON-LD version '${e}' under active processing mode ${this.activeProcessingMode}.`,n.ERROR_CODES.PROCESSING_MODE_CONFLICT);if(this.activeProcessingMode&&e0&&!1===n.context.getContextRaw()["@propagate"]&&n.depth!==e&&!r);return 0===n.depth&&!1===n.context.getContextRaw()["@propagate"]&&n.depth!==e&&(n.context=new i.JsonLdContextNormalized({})),n}async newOnValueJob(t,e,r,i){await this.parser.newOnValueJob(t,e,r,i)}async handlePendingContainerFlushBuffers(){if(this.pendingContainerFlushBuffers.length>0){for(const t of this.pendingContainerFlushBuffers)await this.parser.flushBuffer(t.depth,t.keys),this.parser.flushStacks(t.depth);return this.pendingContainerFlushBuffers.splice(0,this.pendingContainerFlushBuffers.length),!0}return!1}emitQuad(t,e){1===t&&(this.topLevelProperties=!0),this.parser.push(e)}emitError(t){this.parser.emit("error",t)}emitContext(t){this.parser.emit("context",t)}getUnidentifiedValueBufferSafe(t){let e=this.unidentifiedValuesBuffer[t];return e||(e=[],this.unidentifiedValuesBuffer[t]=e),e}getUnidentifiedGraphBufferSafe(t){let e=this.unidentifiedGraphsBuffer[t];return e||(e=[],this.unidentifiedGraphsBuffer[t]=e),e}getExpandOptions(){return s.EXPAND_OPTIONS[this.activeProcessingMode]}shiftStack(t,e){const r=this.idStack[t+e];if(r&&(this.idStack[t]=r,this.emittedStack[t]=!0,delete this.idStack[t+e]),this.pendingContainerFlushBuffers.length)for(const i of this.pendingContainerFlushBuffers)i.depth>=t+e&&(i.depth-=e,i.keys.splice(t,e));this.unidentifiedValuesBuffer[t+e]&&(this.unidentifiedValuesBuffer[t]=this.unidentifiedValuesBuffer[t+e],delete this.unidentifiedValuesBuffer[t+e])}}e.ParsingContext=s,s.EXPAND_OPTIONS={1:{allowPrefixForcing:!1,allowPrefixNonGenDelims:!1,allowVocabRelativeToBase:!1},1.1:{allowPrefixForcing:!0,allowPrefixNonGenDelims:!1,allowVocabRelativeToBase:!0}}},10888:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.Util=void 0;const i=r(42395),n=r(47793),a=r(64860),o=r(82341);class s{constructor(t){this.parsingContext=t.parsingContext,this.dataFactory=t.dataFactory||new n.DataFactory,this.rdfFirst=this.dataFactory.namedNode(s.RDF+"first"),this.rdfRest=this.dataFactory.namedNode(s.RDF+"rest"),this.rdfNil=this.dataFactory.namedNode(s.RDF+"nil"),this.rdfType=this.dataFactory.namedNode(s.RDF+"type"),this.rdfJson=this.dataFactory.namedNode(s.RDF+"JSON")}static getContextValue(t,e,r,i){const n=t.getContextRaw()[r];if(!n)return i;const a=n[e];return void 0===a?i:a}static getContextValueContainer(t,e){return s.getContextValue(t,"@container",e,{"@set":!0})}static getContextValueType(t,e){const r=s.getContextValue(t,"@type",e,null);return"@none"===r?null:r}static getContextValueLanguage(t,e){return s.getContextValue(t,"@language",e,t.getContextRaw()["@language"]||null)}static getContextValueDirection(t,e){return s.getContextValue(t,"@direction",e,t.getContextRaw()["@direction"]||null)}static isContextValueReverse(t,e){return!!s.getContextValue(t,"@reverse",e,null)}static getContextValueIndex(t,e){return s.getContextValue(t,"@index",e,t.getContextRaw()["@index"]||null)}static isPropertyReverse(t,e,r){return"@reverse"===r!==s.isContextValueReverse(t,e)}static isValidIri(t){return null!==t&&i.Util.isValidIri(t)}static isPrefixArray(t,e){if(t.length>e.length)return!1;for(let r=0;r1)throw new i.ErrorCoded(`Found illegal neighbouring entries next to @set for key: '${e}'`,i.ERROR_CODES.INVALID_SET_OR_LIST_OBJECT);return[]}if("@list"in r){if(Object.keys(r).length>1)throw new i.ErrorCoded(`Found illegal neighbouring entries next to @list for key: '${e}'`,i.ERROR_CODES.INVALID_SET_OR_LIST_OBJECT);const t=r["@list"];return Array.isArray(t)?0===t.length?[this.rdfNil]:this.parsingContext.idStack[n+1]||[]:await this.valueToTerm(await this.parsingContext.getContext(a),e,t,n-1,a.slice(0,-1))}if("@reverse"in r&&"boolean"===typeof r["@reverse"])return[];if("@graph"in s.getContextValueContainer(await this.parsingContext.getContext(a),e)){const t=this.parsingContext.graphContainerTermStack[n+1];return t?Object.values(t):[this.dataFactory.blankNode()]}return"@id"in r?(Object.keys(r).length>1&&(t=await this.parsingContext.getContext(a,0)),"@context"in r&&(t=await this.parsingContext.parseContext(r["@context"],t.getContextRaw())),"@vocab"===r["@type"]?this.nullableTermToArray(this.createVocabOrBaseTerm(t,r["@id"])):this.nullableTermToArray(this.resourceToTerm(t,r["@id"]))):this.parsingContext.emittedStack[n+1]||r&&"object"===typeof r&&0===Object.keys(r).length?this.parsingContext.idStack[n+1]||(this.parsingContext.idStack[n+1]=[this.dataFactory.blankNode()]):[];case"string":return this.nullableTermToArray(this.stringValueToTerm(n,await this.getContextSelfOrPropertyScoped(t,e),e,r,null));case"boolean":return this.nullableTermToArray(this.stringValueToTerm(n,await this.getContextSelfOrPropertyScoped(t,e),e,Boolean(r).toString(),this.dataFactory.namedNode(s.XSD_BOOLEAN)));case"number":return this.nullableTermToArray(this.stringValueToTerm(n,await this.getContextSelfOrPropertyScoped(t,e),e,r,this.dataFactory.namedNode(r%1===0&&r<1e21?s.XSD_INTEGER:s.XSD_DOUBLE)));default:return this.parsingContext.emitError(new Error(`Could not determine the RDF type of a ${o}`)),[]}}async getContextSelfOrPropertyScoped(t,e){const r=t.getContextRaw()[e];return r&&"object"===typeof r&&"@context"in r&&(t=await this.parsingContext.parseContext(r,t.getContextRaw(),!0)),t}nullableTermToArray(t){return t?[t]:[]}predicateToTerm(t,e){const r=t.expandTerm(e,!0,this.parsingContext.getExpandOptions());return r?"_"===r[0]&&":"===r[1]?this.parsingContext.produceGeneralizedRdf?this.dataFactory.blankNode(r.substr(2)):null:s.isValidIri(r)?this.dataFactory.namedNode(r):r&&this.parsingContext.strictValues?(this.parsingContext.emitError(new i.ErrorCoded(`Invalid predicate IRI: ${r}`,i.ERROR_CODES.INVALID_IRI_MAPPING)),null):null:null}resourceToTerm(t,e){if(e.startsWith("_:"))return this.dataFactory.blankNode(e.substr(2));const r=t.expandTerm(e,!1,this.parsingContext.getExpandOptions());if(!s.isValidIri(r)){if(!r||!this.parsingContext.strictValues)return null;this.parsingContext.emitError(new Error(`Invalid resource IRI: ${r}`))}return this.dataFactory.namedNode(r)}createVocabOrBaseTerm(t,e){if(e.startsWith("_:"))return this.dataFactory.blankNode(e.substr(2));const r=this.parsingContext.getExpandOptions();let i=t.expandTerm(e,!0,r);if(i===e&&(i=t.expandTerm(e,!1,r)),!s.isValidIri(i)){if(!i||!this.parsingContext.strictValues||i.startsWith("@"))return null;this.parsingContext.emitError(new Error(`Invalid term IRI: ${i}`))}return this.dataFactory.namedNode(i)}intToString(t,e){if("number"===typeof t){if(Number.isFinite(t)){const r=t%1===0;return!r||e&&e.value===s.XSD_DOUBLE?t.toExponential(15).replace(/(\d)0*e\+?/,"$1E"):Number(t).toString()}return t>0?"INF":"-INF"}return t}stringValueToTerm(t,e,r,i,n){const a=s.getContextValueType(e,r);if(a)if("@id"===a){if(!n)return this.resourceToTerm(e,this.intToString(i,n))}else if("@vocab"===a){if(!n)return this.createVocabOrBaseTerm(e,this.intToString(i,n))}else n=this.dataFactory.namedNode(a);if(!n){const a=s.getContextValueLanguage(e,r),o=s.getContextValueDirection(e,r);return o&&this.parsingContext.rdfDirection?this.createLanguageDirectionLiteral(t,this.intToString(i,n),a,o):this.dataFactory.literal(this.intToString(i,n),a)}return this.dataFactory.literal(this.intToString(i,n),n)}createLanguageDirectionLiteral(t,e,r,i){if("i18n-datatype"===this.parsingContext.rdfDirection)return r||(r=""),this.dataFactory.literal(e,this.dataFactory.namedNode(`https://www.w3.org/ns/i18n#${r}_${i}`));{const n=this.dataFactory.blankNode(),a=this.getDefaultGraph();return this.parsingContext.emitQuad(t,this.dataFactory.quad(n,this.dataFactory.namedNode(s.RDF+"value"),this.dataFactory.literal(e),a)),r&&this.parsingContext.emitQuad(t,this.dataFactory.quad(n,this.dataFactory.namedNode(s.RDF+"language"),this.dataFactory.literal(r),a)),this.parsingContext.emitQuad(t,this.dataFactory.quad(n,this.dataFactory.namedNode(s.RDF+"direction"),this.dataFactory.literal(i),a)),n}}valueToJsonString(t){return o(t)}async unaliasKeyword(t,e,r,n,a){if(Number.isInteger(t))return t;if(!n){const t=this.parsingContext.unaliasedKeywordCacheStack[r];if(t)return t}if(!i.Util.isPotentialKeyword(t)){a=a||await this.parsingContext.getContext(e);let r=a.getContextRaw()[t];r&&"object"===typeof r&&(r=r["@id"]),i.Util.isValidKeyword(r)&&(t=r)}return n?t:this.parsingContext.unaliasedKeywordCacheStack[r]=t}async unaliasKeywordParent(t,e){return await this.unaliasKeyword(e>0&&t[e-1],t,e-1)}async unaliasKeywords(t,e,r,i){const n={};for(const a in t)n[await this.unaliasKeyword(a,e,r+1,!0,i)]=t[a];return n}isLiteral(t){for(let e=t;e>=0;e--)if(this.parsingContext.literalStack[e]||this.parsingContext.jsonLiteralStack[e])return!0;return!1}async getDepthOffsetGraph(t,e){for(let r=t-1;r>0;r--)if("@graph"===await this.unaliasKeyword(e[r],e,r)){const i=(await a.EntryHandlerContainer.getContainerHandler(this.parsingContext,e,r)).containers;return a.EntryHandlerContainer.isComplexGraphContainer(i)?-1:t-r-1}return-1}validateReverseSubject(t){if("Literal"===t.termType)throw new i.ErrorCoded(`Found illegal literal in subject position: ${t.value}`,i.ERROR_CODES.INVALID_REVERSE_PROPERTY_VALUE)}getDefaultGraph(){return this.parsingContext.defaultGraph||this.dataFactory.defaultGraph()}async getGraphContainerValue(t,e){let r=this.getDefaultGraph();const{containers:i,depth:n}=await a.EntryHandlerContainer.getContainerHandler(this.parsingContext,t,e);if("@graph"in i){const e=a.EntryHandlerContainer.getContainerGraphIndex(i,n,t),o=this.parsingContext.graphContainerTermStack[n];if(r=o?o[e]:null,!r){let a=null;if("@id"in i){const e=await this.getContainerKey(t[n],t,n);null!==e&&(a=await this.resourceToTerm(await this.parsingContext.getContext(t),e))}a||(a=this.dataFactory.blankNode()),this.parsingContext.graphContainerTermStack[n]||(this.parsingContext.graphContainerTermStack[n]={}),r=this.parsingContext.graphContainerTermStack[n][e]=a}}return r}async getPropertiesDepth(t,e){let r=e;for(let i=e-1;i>0;i--)if("number"!==typeof t[i]){const e=await this.unaliasKeyword(t[i],t,i);if("@reverse"===e)return i;if("@nest"!==e)return r;r=i}return r}async getContainerKey(t,e,r){const i=await this.unaliasKeyword(t,e,r);return"@none"===i?null:i}}e.Util=s,s.XSD="http://www.w3.org/2001/XMLSchema#",s.XSD_BOOLEAN=s.XSD+"boolean",s.XSD_INTEGER=s.XSD+"integer",s.XSD_DOUBLE=s.XSD+"double",s.RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#"},7986:function(t,e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.ContainerHandlerIdentifier=void 0;class r{canCombineWithGraph(){return!0}async handle(t,e,r,i,n,a){let o;if(e.emittedStack[a+1]&&e.idStack[a+1])o=e.idStack[a+1][0];else{const t=await r.getContainerKey(i[a],i,a),n=null!==t?await r.resourceToTerm(await e.getContext(i),i[a]):r.dataFactory.blankNode();if(!n)return void(e.emittedStack[a]=!1);o=n,e.idStack[a+1]=[o]}let s=e.idStack[a];s||(s=e.idStack[a]=[]),s.some((t=>t.equals(o)))||s.push(o),await e.handlePendingContainerFlushBuffers()||(e.emittedStack[a]=!1)}}e.ContainerHandlerIdentifier=r},71977:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.ContainerHandlerIndex=void 0;const i=r(42395),n=r(76970),a=r(10888);class o{canCombineWithGraph(){return!0}async handle(t,e,r,o,s,l){if(!Array.isArray(s)){const d="@graph"in t,c=await e.getContext(o),u=o[l-1],h=a.Util.getContextValueIndex(c,u);if(h){if(i.Util.isPotentialKeyword(h))throw new i.ErrorCoded(`Keywords can not be used as @index value, got: ${h}`,i.ERROR_CODES.INVALID_TERM_DEFINITION);if("string"!==typeof h)throw new i.ErrorCoded(`@index values must be strings, got: ${h}`,i.ERROR_CODES.INVALID_TERM_DEFINITION);if("object"!==typeof s){if("@id"!==a.Util.getContextValueType(c,u))throw new i.ErrorCoded(`Property-based index containers require nodes as values or strings with @type: @id, but got: ${s}`,i.ERROR_CODES.INVALID_VALUE_OBJECT);const t=r.resourceToTerm(c,s);t&&(e.idStack[l+1]=[t])}const t=r.createVocabOrBaseTerm(c,h);if(t){const i=await r.valueToTerm(c,h,await r.getContainerKey(o[l],o,l),l,o);if(d){const n=await r.getGraphContainerValue(o,l+1);for(const a of i)e.emitQuad(l,r.dataFactory.quad(n,t,a,r.getDefaultGraph()))}else for(const a of i)await n.EntryHandlerPredicate.handlePredicateObject(e,r,o,l+1,t,a,!1)}}const f=d?2:1;await e.newOnValueJob(o.slice(0,o.length-f),s,l-f,!0),await e.handlePendingContainerFlushBuffers()}e.emittedStack[l]=!1}}e.ContainerHandlerIndex=o},63847:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.ContainerHandlerLanguage=void 0;const i=r(42395);class n{canCombineWithGraph(){return!1}async handle(t,e,r,n,a,o){const s=await r.getContainerKey(n[o],n,o);if(Array.isArray(a))a=a.map((t=>({"@value":t,"@language":s})));else{if("string"!==typeof a)throw new i.ErrorCoded(`Got invalid language map value, got '${JSON.stringify(a)}', but expected string`,i.ERROR_CODES.INVALID_LANGUAGE_MAP_VALUE);a={"@value":a,"@language":s}}await e.newOnValueJob(n.slice(0,n.length-1),a,o-1,!0),e.emittedStack[o]=!1}}e.ContainerHandlerLanguage=n},47229:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.ContainerHandlerType=void 0;const i=r(76970),n=r(10888);class a{canCombineWithGraph(){return!1}async handle(t,e,r,a,o,s){if(!Array.isArray(o)){if("string"===typeof o){const t=await e.getContext(a),i=n.Util.getContextValueType(t,a[s-1]),l="@vocab"===i?await r.createVocabOrBaseTerm(t,o):await r.resourceToTerm(t,o);if(l){const t={"@id":"NamedNode"===l.termType?l.value:o};await e.newOnValueJob(a.slice(0,a.length-1),t,s-1,!0),e.idStack[s+1]=[l]}}else{const t=!!e.idStack[s+1];t||delete e.idStack[s],await e.newOnValueJob(a.slice(0,a.length-1),o,s-1,!0),t||(e.idStack[s+1]=e.idStack[s])}const t=await r.getContainerKey(a[s],a,s),l=null!==t?r.createVocabOrBaseTerm(await e.getContext(a),t):null;l&&await i.EntryHandlerPredicate.handlePredicateObject(e,r,a,s+1,r.rdfType,l,!1),await e.handlePendingContainerFlushBuffers()}e.emittedStack[s]=!1}}e.ContainerHandlerType=a},39693:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.EntryHandlerArrayValue=void 0;const i=r(10888);class n{isPropertyHandler(){return!1}isStackProcessor(){return!0}async validate(t,e,r,i,n){return this.test(t,e,null,r,i)}async test(t,e,r,i,n){return"number"===typeof i[n]}async handle(t,e,r,n,a,o){let s=await e.unaliasKeywordParent(n,o);if("@list"===s){let r=null,i=0;for(let t=o-2;t>0;t--){const e=n[t];if("string"===typeof e||"number"===typeof e){i=t,r=e;break}}if(null!==r){const s=await e.valueToTerm(await t.getContext(n),r,a,o,n);for(const r of s)await this.handleListElement(t,e,r,a,o,n.slice(0,i),i);0===s.length&&await this.handleListElement(t,e,null,a,o,n.slice(0,i),i)}}else if("@set"===s)await t.newOnValueJob(n.slice(0,-2),a,o-2,!1);else if(void 0!==s&&"@type"!==s){for(let t=o-1;t>0;t--)if("number"!==typeof n[t]){s=await e.unaliasKeyword(n[t],n,t);break}const r=await t.getContext(n.slice(0,-1));if("@list"in i.Util.getContextValueContainer(r,s)){t.emittedStack[o+1]=!0;const r=await e.valueToTerm(await t.getContext(n),s,a,o,n);for(const i of r)await this.handleListElement(t,e,i,a,o,n.slice(0,-1),o-1);0===r.length&&await this.handleListElement(t,e,null,a,o,n.slice(0,-1),o-1)}else t.shiftStack(o,1),await t.newOnValueJob(n.slice(0,-1),a,o-1,!1),t.contextTree.removeContext(n.slice(0,-1))}}async handleListElement(t,e,r,i,n,a,o){let s=t.listPointerStack[n];if(null!==i&&null!==(await e.unaliasKeywords(i,a,n))["@value"]){if(s&&s.value){const r=e.dataFactory.blankNode();t.emitQuad(n,e.dataFactory.quad(s.value,e.rdfRest,r,e.getDefaultGraph())),s.value=r}else{const t=e.dataFactory.blankNode();s={value:t,listRootDepth:o,listId:t}}r&&t.emitQuad(n,e.dataFactory.quad(s.value,e.rdfFirst,r,e.getDefaultGraph()))}else s||(s={listRootDepth:o,listId:e.rdfNil});t.listPointerStack[n]=s}}e.EntryHandlerArrayValue=n},64860:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.EntryHandlerContainer=void 0;const i=r(7986),n=r(71977),a=r(63847),o=r(47229),s=r(10888);class l{static isSimpleGraphContainer(t){return"@graph"in t&&("@set"in t&&2===Object.keys(t).length||1===Object.keys(t).length)}static isComplexGraphContainer(t){return"@graph"in t&&("@set"in t&&Object.keys(t).length>2||!("@set"in t)&&Object.keys(t).length>1)}static getContainerGraphIndex(t,e,r){let i=l.isSimpleGraphContainer(t),n="";for(let a=e;a=0;o--)if("number"!==typeof e[o]){const t=s.Util.getContextValue(a,"@container",e[o],!1);if(t&&l.isSimpleGraphContainer(t))return{containers:t,depth:o+1,fallback:!1};const r=s.Util.getContextValue(a,"@container",e[o-1],!1);if(r){const t="@graph"in r;for(const e in l.CONTAINER_HANDLERS)if(r[e])return t?l.CONTAINER_HANDLERS[e].canCombineWithGraph()?{containers:r,depth:o,fallback:!1}:i:n?i:{containers:r,depth:o,fallback:!1};return i}if(n)return i;n=!0}return i}static async isBufferableContainerHandler(t,e,r){const i=await l.getContainerHandler(t,e,r);return!i.fallback&&!("@graph"in i.containers)}isPropertyHandler(){return!1}isStackProcessor(){return!0}async validate(t,e,r,i,n){return!!await this.test(t,e,null,r,i)}async test(t,e,r,i,n){const a=s.Util.getContextValueContainer(await t.getContext(i,2),i[n-1]);for(const o in l.CONTAINER_HANDLERS)if(a[o])return{containers:a,handler:l.CONTAINER_HANDLERS[o]};return null}async handle(t,e,r,i,n,a,o){return o.handler.handle(o.containers,t,e,i,n,a)}}e.EntryHandlerContainer=l,l.CONTAINER_HANDLERS={"@id":new i.ContainerHandlerIdentifier,"@index":new n.ContainerHandlerIndex,"@language":new a.ContainerHandlerLanguage,"@type":new o.ContainerHandlerType}},22386:function(t,e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.EntryHandlerInvalidFallback=void 0;class r{isPropertyHandler(){return!1}isStackProcessor(){return!0}async validate(t,e,r,i,n){return!1}async test(t,e,r,i,n){return!0}async handle(t,e,r,i,n,a){t.emittedStack[a]=!1}}e.EntryHandlerInvalidFallback=r},76970:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.EntryHandlerPredicate=void 0;const i=r(42395),n=r(10888);class a{static async handlePredicateObject(t,e,r,i,n,a,o){const s=await e.getPropertiesDepth(r,i),l=await e.getDepthOffsetGraph(i,r),d=i-l,c=t.idStack[s];if(c)for(const u of c){const c=l>=0;if(c){const r=t.idStack[d-1];if(r)for(const s of r)o?(e.validateReverseSubject(a),t.emitQuad(i,e.dataFactory.quad(a,n,u,s))):t.emitQuad(i,e.dataFactory.quad(u,n,a,s));else o?(e.validateReverseSubject(a),t.getUnidentifiedGraphBufferSafe(d-1).push({subject:a,predicate:n,object:u})):t.getUnidentifiedGraphBufferSafe(d-1).push({subject:u,predicate:n,object:a})}else{const l=await e.getGraphContainerValue(r,s);o?(e.validateReverseSubject(a),t.emitQuad(i,e.dataFactory.quad(a,n,u,l))):t.emitQuad(i,e.dataFactory.quad(u,n,a,l))}}else o&&e.validateReverseSubject(a),t.getUnidentifiedValueBufferSafe(s).push({predicate:n,object:a,reverse:o})}isPropertyHandler(){return!0}isStackProcessor(){return!0}async validate(t,e,r,i,a){const o=r[i];if(o){const a=await t.getContext(r);if(!t.jsonLiteralStack[i]&&await e.predicateToTerm(a,r[i]))return"@json"===n.Util.getContextValueType(a,o)&&(t.jsonLiteralStack[i+1]=!0),!0}return!1}async test(t,e,r,i,n){return i[n]}async handle(t,e,r,o,s,l,d){const c=o[l],u=await t.getContext(o),h=await e.predicateToTerm(u,r);if(h){const d=await e.valueToTerm(u,r,s,l,o);if(d.length)for(let f of d){const d=n.Util.isPropertyReverse(u,c,await e.unaliasKeywordParent(o,l));if(s){const a="@list"in n.Util.getContextValueContainer(u,r);if(a||s["@list"]){if((a&&!Array.isArray(s)&&!s["@list"]||s["@list"]&&!Array.isArray(s["@list"]))&&f!==e.rdfNil){const r=e.dataFactory.blankNode();t.emitQuad(l,e.dataFactory.quad(r,e.rdfRest,e.rdfNil,e.getDefaultGraph())),t.emitQuad(l,e.dataFactory.quad(r,e.rdfFirst,f,e.getDefaultGraph())),f=r}if(d&&!t.allowSubjectList)throw new i.ErrorCoded(`Found illegal list value in subject position at ${r}`,i.ERROR_CODES.INVALID_REVERSE_PROPERTY_VALUE)}}await a.handlePredicateObject(t,e,o,l,h,f,d)}}}}e.EntryHandlerPredicate=a},1548:function(t,e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.EntryHandlerKeyword=void 0;class r{constructor(t){this.keyword=t}isPropertyHandler(){return!1}isStackProcessor(){return!0}async validate(t,e,r,i,n){return!1}async test(t,e,r,i,n){return r===this.keyword}}e.EntryHandlerKeyword=r},23809:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.EntryHandlerKeywordContext=void 0;const i=r(42395),n=r(1548);class a extends n.EntryHandlerKeyword{constructor(){super("@context")}isStackProcessor(){return!1}async handle(t,e,r,n,a,o){t.streamingProfile&&(t.processingStack[o]||t.processingType[o]||void 0!==t.idStack[o])&&t.emitError(new i.ErrorCoded("Found an out-of-order context, while streaming is enabled.(disable `streamingProfile`)",i.ERROR_CODES.INVALID_STREAMING_KEY_ORDER));const s=t.getContext(n),l=t.parseContext(a,(await s).getContextRaw());t.contextTree.setContext(n.slice(0,-1),l),t.emitContext(a),await t.validateContext(await l)}}e.EntryHandlerKeywordContext=a},55998:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.EntryHandlerKeywordGraph=void 0;const i=r(1548);class n extends i.EntryHandlerKeyword{constructor(){super("@graph")}async handle(t,e,r,i,n,a){t.graphStack[a+1]=!0}}e.EntryHandlerKeywordGraph=n},15517:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.EntryHandlerKeywordId=void 0;const i=r(42395),n=r(1548);class a extends n.EntryHandlerKeyword{constructor(){super("@id")}isStackProcessor(){return!1}async handle(t,e,r,n,a,o){"string"!==typeof a&&t.emitError(new i.ErrorCoded(`Found illegal @id '${a}'`,i.ERROR_CODES.INVALID_ID_VALUE));const s=await e.getPropertiesDepth(n,o);void 0!==t.idStack[s]&&(t.idStack[s][0].listHead?t.emitError(new i.ErrorCoded(`Found illegal neighbouring entries next to @list for key: '${n[o-1]}'`,i.ERROR_CODES.INVALID_SET_OR_LIST_OBJECT)):t.emitError(new i.ErrorCoded(`Found duplicate @ids '${t.idStack[s][0].value}' and '${a}'`,i.ERROR_CODES.COLLIDING_KEYWORDS))),t.idStack[s]=e.nullableTermToArray(await e.resourceToTerm(await t.getContext(n),a))}}e.EntryHandlerKeywordId=a},70736:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.EntryHandlerKeywordIncluded=void 0;const i=r(42395),n=r(1548);class a extends n.EntryHandlerKeyword{constructor(){super("@included")}async handle(t,e,r,n,a,o){"object"!==typeof a&&t.emitError(new i.ErrorCoded(`Found illegal @included '${a}'`,i.ERROR_CODES.INVALID_INCLUDED_VALUE));const s=await e.unaliasKeywords(a,n,o,await t.getContext(n));"@value"in s&&t.emitError(new i.ErrorCoded(`Found an illegal @included @value node '${JSON.stringify(a)}'`,i.ERROR_CODES.INVALID_INCLUDED_VALUE)),"@list"in s&&t.emitError(new i.ErrorCoded(`Found an illegal @included @list node '${JSON.stringify(a)}'`,i.ERROR_CODES.INVALID_INCLUDED_VALUE)),t.emittedStack[o]=!1}}e.EntryHandlerKeywordIncluded=a},24910:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.EntryHandlerKeywordNest=void 0;const i=r(42395),n=r(1548);class a extends n.EntryHandlerKeyword{constructor(){super("@nest")}async handle(t,e,r,n,a,o){"object"!==typeof a&&t.emitError(new i.ErrorCoded(`Found invalid @nest entry for '${r}': '${a}'`,i.ERROR_CODES.INVALID_NEST_VALUE)),"@value"in await e.unaliasKeywords(a,n,o,await t.getContext(n))&&t.emitError(new i.ErrorCoded(`Found an invalid @value node for '${r}'`,i.ERROR_CODES.INVALID_NEST_VALUE)),t.emittedStack[o]=!1}}e.EntryHandlerKeywordNest=a},62036:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.EntryHandlerKeywordType=void 0;const i=r(42395),n=r(10888),a=r(76970),o=r(1548);class s extends o.EntryHandlerKeyword{constructor(){super("@type")}isStackProcessor(){return!1}async handle(t,e,r,o,s,l){const d=o[l],c=await t.getContext(o),u=e.rdfType,h=n.Util.isPropertyReverse(c,d,await e.unaliasKeywordParent(o,l)),f=Array.isArray(s)?s:[s];for(const n of f){"string"!==typeof n&&t.emitError(new i.ErrorCoded(`Found illegal @type '${n}'`,i.ERROR_CODES.INVALID_TYPE_VALUE));const r=e.createVocabOrBaseTerm(c,n);r&&await a.EntryHandlerPredicate.handlePredicateObject(t,e,o,l,u,r,h)}let p=Promise.resolve(c),g=!1;for(const i of f.sort()){const e=n.Util.getContextValue(c,"@context",i,null);e&&(g=!0,p=p.then((r=>t.parseContext(e,r.getContextRaw()))))}!t.streamingProfile||!g&&t.streamingProfileAllowOutOfOrderPlainType||!t.processingStack[l]&&!t.idStack[l]||t.emitError(new i.ErrorCoded("Found an out-of-order type-scoped context, while streaming is enabled.(disable `streamingProfile`)",i.ERROR_CODES.INVALID_STREAMING_KEY_ORDER)),g&&(p=p.then((t=>("@propagate"in t.getContextRaw()||(t.getContextRaw()["@propagate"]=!1),!1===t.getContextRaw()["@propagate"]&&(t.getContextRaw()["@__propagateFallback"]=c.getContextRaw()),t))),t.contextTree.setContext(o.slice(0,o.length-1),p)),t.processingType[l]=!0}}e.EntryHandlerKeywordType=s},86454:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.EntryHandlerKeywordUnknownFallback=void 0;const i=r(42395);class n{isPropertyHandler(){return!1}isStackProcessor(){return!0}async validate(t,e,r,n,a){const o=await e.unaliasKeyword(r[n],r,n);return!!i.Util.isPotentialKeyword(o)&&!(!a&&"@list"===o)}async test(t,e,r,n,a){return i.Util.isPotentialKeyword(r)}async handle(t,e,r,a,o,s){const l=n.VALID_KEYWORDS_TYPES[r];void 0!==l?l&&typeof o!==l.type&&t.emitError(new i.ErrorCoded(`Invalid value type for '${r}' with value '${o}'`,l.errorCode)):t.strictValues&&t.emitError(new Error(`Unknown keyword '${r}' with value '${o}'`)),t.emittedStack[s]=!1}}e.EntryHandlerKeywordUnknownFallback=n,n.VALID_KEYWORDS_TYPES={"@index":{type:"string",errorCode:i.ERROR_CODES.INVALID_INDEX_VALUE},"@list":null,"@reverse":{type:"object",errorCode:i.ERROR_CODES.INVALID_REVERSE_VALUE},"@set":null,"@value":null}},33283:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.EntryHandlerKeywordValue=void 0;const i=r(1548);class n extends i.EntryHandlerKeyword{constructor(){super("@value")}async validate(t,e,r,i,n){const a=r[i];return a&&!t.literalStack[i]&&await this.test(t,e,a,r,i)&&(t.literalStack[i]=!0),super.validate(t,e,r,i,n)}async test(t,e,r,i,n){return"@value"===await e.unaliasKeyword(i[n],i.slice(0,i.length-1),n-1,!0)}async handle(t,e,r,i,n,a){t.literalStack[a]=!0,delete t.unidentifiedValuesBuffer[a],delete t.unidentifiedGraphsBuffer[a],t.emittedStack[a]=!1}}e.EntryHandlerKeywordValue=n},54727:function(t,e,r){var i=r(48287)["Buffer"],n={},a=n.LEFT_BRACE=1,o=n.RIGHT_BRACE=2,s=n.LEFT_BRACKET=3,l=n.RIGHT_BRACKET=4,d=n.COLON=5,c=n.COMMA=6,u=n.TRUE=7,h=n.FALSE=8,f=n.NULL=9,p=n.STRING=10,g=n.NUMBER=11,y=n.START=17,E=n.STOP=18,C=n.TRUE1=33,w=n.TRUE2=34,I=n.TRUE3=35,_=n.FALSE1=49,O=n.FALSE2=50,R=n.FALSE3=51,x=n.FALSE4=52,b=n.NULL1=65,m=n.NULL2=66,S=n.NULL3=67,v=n.NUMBER1=81,T=n.NUMBER3=83,N=n.STRING1=97,D=n.STRING2=98,A=n.STRING3=99,L=n.STRING4=100,P=n.STRING5=101,V=n.STRING6=102,k=n.VALUE=113,j=n.KEY=114,U=n.OBJECT=129,F=n.ARRAY=130,G="\\".charCodeAt(0),B="/".charCodeAt(0),M="\b".charCodeAt(0),K="\f".charCodeAt(0),$="\n".charCodeAt(0),J="\r".charCodeAt(0),H="\t".charCodeAt(0),X=65536;function q(){this.tState=y,this.value=void 0,this.string=void 0,this.stringBuffer=i.alloc?i.alloc(X):new i(X),this.stringBufferOffset=0,this.unicode=void 0,this.highSurrogate=void 0,this.key=void 0,this.mode=void 0,this.stack=[],this.state=k,this.bytes_remaining=0,this.bytes_in_sequence=0,this.temp_buffs={2:new i(2),3:new i(3),4:new i(4)},this.offset=-1}q.toknam=function(t){for(var e=Object.keys(n),r=0,i=e.length;r=X&&(this.string+=this.stringBuffer.toString("utf8"),this.stringBufferOffset=0),this.stringBuffer[this.stringBufferOffset++]=t},Y.appendStringBuf=function(t,e,r){var i=t.length;"number"===typeof e&&(i="number"===typeof r?r<0?t.length-e+r:r-e:t.length-e),i<0&&(i=0),this.stringBufferOffset+i>X&&(this.string+=this.stringBuffer.toString("utf8",0,this.stringBufferOffset),this.stringBufferOffset=0),t.copy(this.stringBuffer,this.stringBufferOffset,e,r),this.stringBufferOffset+=i},Y.write=function(t){var e;"string"===typeof t&&(t=new i(t));for(var r=0,n=t.length;r=48&&e<64)this.string=String.fromCharCode(e),this.tState=T;else if(32!==e&&9!==e&&10!==e&&13!==e)return this.charError(t,r)}else if(this.tState===N)if(e=t[r],this.bytes_remaining>0){for(var E=0;E=128){if(e<=193||e>244)return this.onError(new Error("Invalid UTF-8 character at position "+r+" in state "+q.toknam(this.tState)));if(e>=194&&e<=223&&(this.bytes_in_sequence=2),e>=224&&e<=239&&(this.bytes_in_sequence=3),e>=240&&e<=244&&(this.bytes_in_sequence=4),this.bytes_in_sequence+r>t.length){for(var k=0;k<=t.length-1-r;k++)this.temp_buffs[this.bytes_in_sequence][k]=t[r+k];this.bytes_remaining=r+this.bytes_in_sequence-t.length,r=t.length-1}else this.appendStringBuf(t,r,r+this.bytes_in_sequence),r=r+this.bytes_in_sequence-1}else if(34===e)this.tState=y,this.string+=this.stringBuffer.toString("utf8",0,this.stringBufferOffset),this.stringBufferOffset=0,this.onToken(p,this.string),this.offset+=i.byteLength(this.string,"utf8")+1,this.string=void 0;else if(92===e)this.tState=D;else{if(!(e>=32))return this.charError(t,r);this.appendStringChar(e)}else if(this.tState===D)if(e=t[r],34===e)this.appendStringChar(e),this.tState=N;else if(92===e)this.appendStringChar(G),this.tState=N;else if(47===e)this.appendStringChar(B),this.tState=N;else if(98===e)this.appendStringChar(M),this.tState=N;else if(102===e)this.appendStringChar(K),this.tState=N;else if(110===e)this.appendStringChar($),this.tState=N;else if(114===e)this.appendStringChar(J),this.tState=N;else if(116===e)this.appendStringChar(H),this.tState=N;else{if(117!==e)return this.charError(t,r);this.unicode="",this.tState=A}else if(this.tState===A||this.tState===L||this.tState===P||this.tState===V){if(e=t[r],!(e>=48&&e<64||e>64&&e<=70||e>96&&e<=102))return this.charError(t,r);if(this.unicode+=String.fromCharCode(e),this.tState++===V){var j=parseInt(this.unicode,16);this.unicode=void 0,void 0!==this.highSurrogate&&j>=56320&&j<57344?(this.appendStringBuf(new i(String.fromCharCode(this.highSurrogate,j))),this.highSurrogate=void 0):void 0===this.highSurrogate&&j>=55296&&j<56320?this.highSurrogate=j:(void 0!==this.highSurrogate&&(this.appendStringBuf(new i(String.fromCharCode(this.highSurrogate))),this.highSurrogate=void 0),this.appendStringBuf(new i(String.fromCharCode(j)))),this.tState=N}}else if(this.tState===v||this.tState===T)switch(e=t[r],e){case 48:case 49:case 50:case 51:case 52:case 53:case 54:case 55:case 56:case 57:case 46:case 101:case 69:case 43:case 45:this.string+=String.fromCharCode(e),this.tState=T;break;default:this.tState=y;var U=Number(this.string);if(isNaN(U))return this.charError(t,r);this.string.match(/[0-9]+/)==this.string&&U.toString()!=this.string?this.onToken(p,this.string):this.onToken(g,U),this.offset+=this.string.length-1,this.string=void 0,r--;break}else if(this.tState===C){if(114!==t[r])return this.charError(t,r);this.tState=w}else if(this.tState===w){if(117!==t[r])return this.charError(t,r);this.tState=I}else if(this.tState===I){if(101!==t[r])return this.charError(t,r);this.tState=y,this.onToken(u,!0),this.offset+=3}else if(this.tState===_){if(97!==t[r])return this.charError(t,r);this.tState=O}else if(this.tState===O){if(108!==t[r])return this.charError(t,r);this.tState=R}else if(this.tState===R){if(115!==t[r])return this.charError(t,r);this.tState=x}else if(this.tState===x){if(101!==t[r])return this.charError(t,r);this.tState=y,this.onToken(h,!1),this.offset+=4}else if(this.tState===b){if(117!==t[r])return this.charError(t,r);this.tState=m}else if(this.tState===m){if(108!==t[r])return this.charError(t,r);this.tState=S}else if(this.tState===S){if(108!==t[r])return this.charError(t,r);this.tState=y,this.onToken(f,null),this.offset+=3}},Y.onToken=function(t,e){},Y.parseError=function(t,e){this.tState=E,this.onError(new Error("Unexpected "+q.toknam(t)+(e?"("+JSON.stringify(e)+")":"")+" in state "+q.toknam(this.state)))},Y.push=function(){this.stack.push({value:this.value,key:this.key,mode:this.mode})},Y.pop=function(){var t=this.value,e=this.stack.pop();this.value=e.value,this.key=e.key,this.mode=e.mode,this.emit(t),this.mode||(this.state=k)},Y.emit=function(t){this.mode&&(this.state=c),this.onValue(t)},Y.onValue=function(t){},Y.onToken=function(t,e){if(this.state===k)if(t===p||t===g||t===u||t===h||t===f)this.value&&(this.value[this.key]=e),this.emit(e);else if(t===a)this.push(),this.value?this.value=this.value[this.key]={}:this.value={},this.key=void 0,this.state=j,this.mode=U;else if(t===s)this.push(),this.value?this.value=this.value[this.key]=[]:this.value=[],this.key=0,this.mode=F,this.state=k;else if(t===o){if(this.mode!==U)return this.parseError(t,e);this.pop()}else{if(t!==l)return this.parseError(t,e);if(this.mode!==F)return this.parseError(t,e);this.pop()}else if(this.state===j)if(t===p)this.key=e,this.state=d;else{if(t!==o)return this.parseError(t,e);this.pop()}else if(this.state===d){if(t!==d)return this.parseError(t,e);this.state=k}else{if(this.state!==c)return this.parseError(t,e);if(t===c)this.mode===F?(this.key++,this.state=k):this.mode===U&&(this.state=j);else{if(!(t===l&&this.mode===F||t===o&&this.mode===U))return this.parseError(t,e);this.pop()}}},q.C=n,t.exports=q}}]); +//# sourceMappingURL=109.350c7c05.js.map \ No newline at end of file diff --git a/dist/js/109.350c7c05.js.map b/dist/js/109.350c7c05.js.map new file mode 100644 index 0000000..a180a53 --- /dev/null +++ b/dist/js/109.350c7c05.js.map @@ -0,0 +1 @@ +{"version":3,"file":"js/109.350c7c05.js","mappings":"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","sources":["webpack://mobilitydcatap-ui/./node_modules/@rdfjs/parser-jsonld/index.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/parser-jsonld/lib/ParserStream.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/parser-jsonld/node_modules/@rdfjs/data-model/index.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/parser-jsonld/node_modules/@rdfjs/data-model/lib/BlankNode.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/parser-jsonld/node_modules/@rdfjs/data-model/lib/DataFactory.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/parser-jsonld/node_modules/@rdfjs/data-model/lib/DefaultGraph.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/parser-jsonld/node_modules/@rdfjs/data-model/lib/Literal.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/parser-jsonld/node_modules/@rdfjs/data-model/lib/NamedNode.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/parser-jsonld/node_modules/@rdfjs/data-model/lib/Quad.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/parser-jsonld/node_modules/@rdfjs/data-model/lib/Variable.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/parser-jsonld/node_modules/@rdfjs/data-model/lib/fromTerm.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/sink/index.js","webpack://mobilitydcatap-ui/./node_modules/cross-fetch/dist/browser-polyfill.js","webpack://mobilitydcatap-ui/./node_modules/jsonld-context-parser/index.js","webpack://mobilitydcatap-ui/./node_modules/jsonld-context-parser/lib/ContextParser.js","webpack://mobilitydcatap-ui/./node_modules/jsonld-context-parser/lib/ErrorCoded.js","webpack://mobilitydcatap-ui/./node_modules/jsonld-context-parser/lib/FetchDocumentLoader.js","webpack://mobilitydcatap-ui/./node_modules/jsonld-context-parser/lib/IDocumentLoader.js","webpack://mobilitydcatap-ui/./node_modules/jsonld-context-parser/lib/JsonLdContext.js","webpack://mobilitydcatap-ui/./node_modules/jsonld-context-parser/lib/JsonLdContextNormalized.js","webpack://mobilitydcatap-ui/./node_modules/jsonld-context-parser/lib/Util.js","webpack://mobilitydcatap-ui/./node_modules/jsonld-streaming-parser/index.js","webpack://mobilitydcatap-ui/./node_modules/jsonld-streaming-parser/lib/ContextTree.js","webpack://mobilitydcatap-ui/./node_modules/jsonld-streaming-parser/lib/JsonLdParser.js","webpack://mobilitydcatap-ui/./node_modules/jsonld-streaming-parser/lib/ParsingContext.js","webpack://mobilitydcatap-ui/./node_modules/jsonld-streaming-parser/lib/Util.js","webpack://mobilitydcatap-ui/./node_modules/jsonld-streaming-parser/lib/containerhandler/ContainerHandlerIdentifier.js","webpack://mobilitydcatap-ui/./node_modules/jsonld-streaming-parser/lib/containerhandler/ContainerHandlerIndex.js","webpack://mobilitydcatap-ui/./node_modules/jsonld-streaming-parser/lib/containerhandler/ContainerHandlerLanguage.js","webpack://mobilitydcatap-ui/./node_modules/jsonld-streaming-parser/lib/containerhandler/ContainerHandlerType.js","webpack://mobilitydcatap-ui/./node_modules/jsonld-streaming-parser/lib/entryhandler/EntryHandlerArrayValue.js","webpack://mobilitydcatap-ui/./node_modules/jsonld-streaming-parser/lib/entryhandler/EntryHandlerContainer.js","webpack://mobilitydcatap-ui/./node_modules/jsonld-streaming-parser/lib/entryhandler/EntryHandlerInvalidFallback.js","webpack://mobilitydcatap-ui/./node_modules/jsonld-streaming-parser/lib/entryhandler/EntryHandlerPredicate.js","webpack://mobilitydcatap-ui/./node_modules/jsonld-streaming-parser/lib/entryhandler/keyword/EntryHandlerKeyword.js","webpack://mobilitydcatap-ui/./node_modules/jsonld-streaming-parser/lib/entryhandler/keyword/EntryHandlerKeywordContext.js","webpack://mobilitydcatap-ui/./node_modules/jsonld-streaming-parser/lib/entryhandler/keyword/EntryHandlerKeywordGraph.js","webpack://mobilitydcatap-ui/./node_modules/jsonld-streaming-parser/lib/entryhandler/keyword/EntryHandlerKeywordId.js","webpack://mobilitydcatap-ui/./node_modules/jsonld-streaming-parser/lib/entryhandler/keyword/EntryHandlerKeywordIncluded.js","webpack://mobilitydcatap-ui/./node_modules/jsonld-streaming-parser/lib/entryhandler/keyword/EntryHandlerKeywordNest.js","webpack://mobilitydcatap-ui/./node_modules/jsonld-streaming-parser/lib/entryhandler/keyword/EntryHandlerKeywordType.js","webpack://mobilitydcatap-ui/./node_modules/jsonld-streaming-parser/lib/entryhandler/keyword/EntryHandlerKeywordUnknownFallback.js","webpack://mobilitydcatap-ui/./node_modules/jsonld-streaming-parser/lib/entryhandler/keyword/EntryHandlerKeywordValue.js","webpack://mobilitydcatap-ui/./node_modules/jsonparse/jsonparse.js"],"sourcesContent":["const Sink = require('@rdfjs/sink')\nconst ParserStream = require('./lib/ParserStream')\n\nclass Parser extends Sink {\n constructor (options) {\n super(ParserStream, options)\n }\n}\n\nmodule.exports = Parser\n","const rdf = require('@rdfjs/data-model')\nconst { JsonLdParser } = require('jsonld-streaming-parser')\nconst { Transform } = require('readable-stream')\n\nconst relativeIriProtocol = 'null:'\n\nfunction termCleanup (factory) {\n return term => {\n if (term.termType !== 'NamedNode') {\n return null\n }\n\n if (!term.value.startsWith(relativeIriProtocol)) {\n return null\n }\n\n // remove dummy protocol workaround for relative IRIs\n return factory.namedNode(term.value.slice(relativeIriProtocol.length))\n }\n}\n\nfunction quadCleanup (factory) {\n const cleanup = termCleanup(factory)\n\n return quad => {\n const subject = cleanup(quad.subject)\n const predicate = cleanup(quad.predicate)\n const object = cleanup(quad.object)\n const graph = cleanup(quad.graph)\n\n if (subject || predicate || object || graph) {\n return factory.quad(\n subject || quad.subject,\n predicate || quad.predicate,\n object || quad.object,\n graph || quad.graph\n )\n }\n\n return quad\n }\n}\n\nclass ParserStream {\n constructor (input, { baseIRI = relativeIriProtocol, context = null, factory = rdf } = {}) {\n const parser = new JsonLdParser({\n baseIRI,\n context,\n dataFactory: factory,\n streamingProfile: false\n })\n\n input.pipe(parser)\n\n const cleanup = quadCleanup(factory)\n\n const transform = new Transform({\n objectMode: true,\n transform: (quad, encoding, callback) => {\n callback(null, cleanup(quad))\n }\n })\n\n parser.on('context', context => {\n Object.entries(context).forEach(([prefix, iri]) => {\n transform.emit('prefix', prefix, factory.namedNode(iri))\n })\n })\n parser.on('error', err => transform.destroy(err))\n parser.pipe(transform)\n\n return transform\n }\n}\n\nmodule.exports = ParserStream\n","const DataFactory = require('./lib/DataFactory.js')\n\nmodule.exports = DataFactory\n","class BlankNode {\n constructor (id) {\n this.value = id || ('b' + (++BlankNode.nextId))\n }\n\n equals (other) {\n return !!other && other.termType === this.termType && other.value === this.value\n }\n}\n\nBlankNode.prototype.termType = 'BlankNode'\n\nBlankNode.nextId = 0\n\nmodule.exports = BlankNode\n","const BlankNode = require('./BlankNode.js')\nconst DefaultGraph = require('./DefaultGraph.js')\nconst fromTermRaw = require('./fromTerm.js')\nconst Literal = require('./Literal.js')\nconst NamedNode = require('./NamedNode.js')\nconst Quad = require('./Quad.js')\nconst Variable = require('./Variable.js')\n\nfunction namedNode (value) {\n return new NamedNode(value)\n}\n\nfunction blankNode (value) {\n return new BlankNode(value)\n}\n\nfunction literal (value, languageOrDatatype) {\n if (typeof languageOrDatatype === 'string') {\n if (languageOrDatatype.indexOf(':') === -1) {\n return new Literal(value, languageOrDatatype)\n }\n\n return new Literal(value, null, DataFactory.namedNode(languageOrDatatype))\n }\n\n return new Literal(value, null, languageOrDatatype)\n}\n\nfunction variable (value) {\n return new Variable(value)\n}\n\nfunction defaultGraph () {\n return DataFactory.defaultGraphInstance\n}\n\nfunction triple (subject, predicate, object) {\n return DataFactory.quad(subject, predicate, object)\n}\n\nfunction quad (subject, predicate, object, graph) {\n return new Quad(subject, predicate, object, graph || DataFactory.defaultGraphInstance)\n}\n\nfunction fromTerm (original) {\n return fromTermRaw.call(DataFactory, original)\n}\n\nfunction fromQuad (original) {\n return fromTermRaw.call(DataFactory, original)\n}\n\nconst DataFactory = {\n namedNode,\n blankNode,\n literal,\n variable,\n defaultGraph,\n triple,\n quad,\n fromTerm,\n fromQuad,\n defaultGraphInstance: new DefaultGraph()\n}\n\nmodule.exports = DataFactory\n","class DefaultGraph {\n equals (other) {\n return !!other && other.termType === this.termType\n }\n}\n\nDefaultGraph.prototype.termType = 'DefaultGraph'\nDefaultGraph.prototype.value = ''\n\nmodule.exports = DefaultGraph\n","const NamedNode = require('./NamedNode.js')\n\nclass Literal {\n constructor (value, language, datatype) {\n this.value = value\n this.datatype = Literal.stringDatatype\n this.language = ''\n\n if (language) {\n this.language = language\n this.datatype = Literal.langStringDatatype\n } else if (datatype) {\n this.datatype = datatype\n }\n }\n\n equals (other) {\n return !!other && other.termType === this.termType && other.value === this.value &&\n other.language === this.language && other.datatype.equals(this.datatype)\n }\n}\n\nLiteral.prototype.termType = 'Literal'\n\nLiteral.langStringDatatype = new NamedNode('http://www.w3.org/1999/02/22-rdf-syntax-ns#langString')\nLiteral.stringDatatype = new NamedNode('http://www.w3.org/2001/XMLSchema#string')\n\nmodule.exports = Literal\n","class NamedNode {\n constructor (iri) {\n this.value = iri\n }\n\n equals (other) {\n return !!other && other.termType === this.termType && other.value === this.value\n }\n}\n\nNamedNode.prototype.termType = 'NamedNode'\n\nmodule.exports = NamedNode\n","const DefaultGraph = require('./DefaultGraph.js')\n\nclass Quad {\n constructor (subject, predicate, object, graph) {\n this.subject = subject\n this.predicate = predicate\n this.object = object\n\n if (graph) {\n this.graph = graph\n } else {\n this.graph = new DefaultGraph()\n }\n }\n\n equals (other) {\n // `|| !other.termType` is for backwards-compatibility with old factories without RDF* support.\n return !!other && (other.termType === 'Quad' || !other.termType) &&\n other.subject.equals(this.subject) && other.predicate.equals(this.predicate) &&\n other.object.equals(this.object) && other.graph.equals(this.graph)\n }\n}\n\nQuad.prototype.termType = 'Quad'\nQuad.prototype.value = ''\n\nmodule.exports = Quad\n","class Variable {\n constructor (name) {\n this.value = name\n }\n\n equals (other) {\n return !!other && other.termType === this.termType && other.value === this.value\n }\n}\n\nVariable.prototype.termType = 'Variable'\n\nmodule.exports = Variable\n","function fromTerm (original) {\n if (!original) {\n return null\n }\n\n if (original.termType === 'BlankNode') {\n return this.blankNode(original.value)\n }\n\n if (original.termType === 'DefaultGraph') {\n return this.defaultGraph()\n }\n\n if (original.termType === 'Literal') {\n return this.literal(original.value, original.language || this.namedNode(original.datatype.value))\n }\n\n if (original.termType === 'NamedNode') {\n return this.namedNode(original.value)\n }\n\n if (original.termType === 'Quad') {\n const subject = this.fromTerm(original.subject)\n const predicate = this.fromTerm(original.predicate)\n const object = this.fromTerm(original.object)\n const graph = this.fromTerm(original.graph)\n\n return this.quad(subject, predicate, object, graph)\n }\n\n if (original.termType === 'Variable') {\n return this.variable(original.value)\n }\n\n throw new Error(`unknown termType ${original.termType}`)\n}\n\nmodule.exports = fromTerm\n","class Sink {\n constructor (Impl, options) {\n this.Impl = Impl\n this.options = options\n }\n\n import (input, options) {\n const output = new this.Impl(input, Object.assign({}, this.options, options))\n\n input.on('end', () => {\n if (!output.readable) {\n output.emit('end')\n }\n })\n\n input.on('error', (err) => {\n output.emit('error', err)\n })\n\n return output\n }\n}\n\nmodule.exports = Sink\n","(function(self) {\n\nvar irrelevant = (function (exports) {\n\n var support = {\n searchParams: 'URLSearchParams' in self,\n iterable: 'Symbol' in self && 'iterator' in Symbol,\n blob:\n 'FileReader' in self &&\n 'Blob' in self &&\n (function() {\n try {\n new Blob();\n return true\n } catch (e) {\n return false\n }\n })(),\n formData: 'FormData' in self,\n arrayBuffer: 'ArrayBuffer' in self\n };\n\n function isDataView(obj) {\n return obj && DataView.prototype.isPrototypeOf(obj)\n }\n\n if (support.arrayBuffer) {\n var viewClasses = [\n '[object Int8Array]',\n '[object Uint8Array]',\n '[object Uint8ClampedArray]',\n '[object Int16Array]',\n '[object Uint16Array]',\n '[object Int32Array]',\n '[object Uint32Array]',\n '[object Float32Array]',\n '[object Float64Array]'\n ];\n\n var isArrayBufferView =\n ArrayBuffer.isView ||\n function(obj) {\n return obj && viewClasses.indexOf(Object.prototype.toString.call(obj)) > -1\n };\n }\n\n function normalizeName(name) {\n if (typeof name !== 'string') {\n name = String(name);\n }\n if (/[^a-z0-9\\-#$%&'*+.^_`|~]/i.test(name)) {\n throw new TypeError('Invalid character in header field name')\n }\n return name.toLowerCase()\n }\n\n function normalizeValue(value) {\n if (typeof value !== 'string') {\n value = String(value);\n }\n return value\n }\n\n // Build a destructive iterator for the value list\n function iteratorFor(items) {\n var iterator = {\n next: function() {\n var value = items.shift();\n return {done: value === undefined, value: value}\n }\n };\n\n if (support.iterable) {\n iterator[Symbol.iterator] = function() {\n return iterator\n };\n }\n\n return iterator\n }\n\n function Headers(headers) {\n this.map = {};\n\n if (headers instanceof Headers) {\n headers.forEach(function(value, name) {\n this.append(name, value);\n }, this);\n } else if (Array.isArray(headers)) {\n headers.forEach(function(header) {\n this.append(header[0], header[1]);\n }, this);\n } else if (headers) {\n Object.getOwnPropertyNames(headers).forEach(function(name) {\n this.append(name, headers[name]);\n }, this);\n }\n }\n\n Headers.prototype.append = function(name, value) {\n name = normalizeName(name);\n value = normalizeValue(value);\n var oldValue = this.map[name];\n this.map[name] = oldValue ? oldValue + ', ' + value : value;\n };\n\n Headers.prototype['delete'] = function(name) {\n delete this.map[normalizeName(name)];\n };\n\n Headers.prototype.get = function(name) {\n name = normalizeName(name);\n return this.has(name) ? this.map[name] : null\n };\n\n Headers.prototype.has = function(name) {\n return this.map.hasOwnProperty(normalizeName(name))\n };\n\n Headers.prototype.set = function(name, value) {\n this.map[normalizeName(name)] = normalizeValue(value);\n };\n\n Headers.prototype.forEach = function(callback, thisArg) {\n for (var name in this.map) {\n if (this.map.hasOwnProperty(name)) {\n callback.call(thisArg, this.map[name], name, this);\n }\n }\n };\n\n Headers.prototype.keys = function() {\n var items = [];\n this.forEach(function(value, name) {\n items.push(name);\n });\n return iteratorFor(items)\n };\n\n Headers.prototype.values = function() {\n var items = [];\n this.forEach(function(value) {\n items.push(value);\n });\n return iteratorFor(items)\n };\n\n Headers.prototype.entries = function() {\n var items = [];\n this.forEach(function(value, name) {\n items.push([name, value]);\n });\n return iteratorFor(items)\n };\n\n if (support.iterable) {\n Headers.prototype[Symbol.iterator] = Headers.prototype.entries;\n }\n\n function consumed(body) {\n if (body.bodyUsed) {\n return Promise.reject(new TypeError('Already read'))\n }\n body.bodyUsed = true;\n }\n\n function fileReaderReady(reader) {\n return new Promise(function(resolve, reject) {\n reader.onload = function() {\n resolve(reader.result);\n };\n reader.onerror = function() {\n reject(reader.error);\n };\n })\n }\n\n function readBlobAsArrayBuffer(blob) {\n var reader = new FileReader();\n var promise = fileReaderReady(reader);\n reader.readAsArrayBuffer(blob);\n return promise\n }\n\n function readBlobAsText(blob) {\n var reader = new FileReader();\n var promise = fileReaderReady(reader);\n reader.readAsText(blob);\n return promise\n }\n\n function readArrayBufferAsText(buf) {\n var view = new Uint8Array(buf);\n var chars = new Array(view.length);\n\n for (var i = 0; i < view.length; i++) {\n chars[i] = String.fromCharCode(view[i]);\n }\n return chars.join('')\n }\n\n function bufferClone(buf) {\n if (buf.slice) {\n return buf.slice(0)\n } else {\n var view = new Uint8Array(buf.byteLength);\n view.set(new Uint8Array(buf));\n return view.buffer\n }\n }\n\n function Body() {\n this.bodyUsed = false;\n\n this._initBody = function(body) {\n this._bodyInit = body;\n if (!body) {\n this._bodyText = '';\n } else if (typeof body === 'string') {\n this._bodyText = body;\n } else if (support.blob && Blob.prototype.isPrototypeOf(body)) {\n this._bodyBlob = body;\n } else if (support.formData && FormData.prototype.isPrototypeOf(body)) {\n this._bodyFormData = body;\n } else if (support.searchParams && URLSearchParams.prototype.isPrototypeOf(body)) {\n this._bodyText = body.toString();\n } else if (support.arrayBuffer && support.blob && isDataView(body)) {\n this._bodyArrayBuffer = bufferClone(body.buffer);\n // IE 10-11 can't handle a DataView body.\n this._bodyInit = new Blob([this._bodyArrayBuffer]);\n } else if (support.arrayBuffer && (ArrayBuffer.prototype.isPrototypeOf(body) || isArrayBufferView(body))) {\n this._bodyArrayBuffer = bufferClone(body);\n } else {\n this._bodyText = body = Object.prototype.toString.call(body);\n }\n\n if (!this.headers.get('content-type')) {\n if (typeof body === 'string') {\n this.headers.set('content-type', 'text/plain;charset=UTF-8');\n } else if (this._bodyBlob && this._bodyBlob.type) {\n this.headers.set('content-type', this._bodyBlob.type);\n } else if (support.searchParams && URLSearchParams.prototype.isPrototypeOf(body)) {\n this.headers.set('content-type', 'application/x-www-form-urlencoded;charset=UTF-8');\n }\n }\n };\n\n if (support.blob) {\n this.blob = function() {\n var rejected = consumed(this);\n if (rejected) {\n return rejected\n }\n\n if (this._bodyBlob) {\n return Promise.resolve(this._bodyBlob)\n } else if (this._bodyArrayBuffer) {\n return Promise.resolve(new Blob([this._bodyArrayBuffer]))\n } else if (this._bodyFormData) {\n throw new Error('could not read FormData body as blob')\n } else {\n return Promise.resolve(new Blob([this._bodyText]))\n }\n };\n\n this.arrayBuffer = function() {\n if (this._bodyArrayBuffer) {\n return consumed(this) || Promise.resolve(this._bodyArrayBuffer)\n } else {\n return this.blob().then(readBlobAsArrayBuffer)\n }\n };\n }\n\n this.text = function() {\n var rejected = consumed(this);\n if (rejected) {\n return rejected\n }\n\n if (this._bodyBlob) {\n return readBlobAsText(this._bodyBlob)\n } else if (this._bodyArrayBuffer) {\n return Promise.resolve(readArrayBufferAsText(this._bodyArrayBuffer))\n } else if (this._bodyFormData) {\n throw new Error('could not read FormData body as text')\n } else {\n return Promise.resolve(this._bodyText)\n }\n };\n\n if (support.formData) {\n this.formData = function() {\n return this.text().then(decode)\n };\n }\n\n this.json = function() {\n return this.text().then(JSON.parse)\n };\n\n return this\n }\n\n // HTTP methods whose capitalization should be normalized\n var methods = ['DELETE', 'GET', 'HEAD', 'OPTIONS', 'POST', 'PUT'];\n\n function normalizeMethod(method) {\n var upcased = method.toUpperCase();\n return methods.indexOf(upcased) > -1 ? upcased : method\n }\n\n function Request(input, options) {\n options = options || {};\n var body = options.body;\n\n if (input instanceof Request) {\n if (input.bodyUsed) {\n throw new TypeError('Already read')\n }\n this.url = input.url;\n this.credentials = input.credentials;\n if (!options.headers) {\n this.headers = new Headers(input.headers);\n }\n this.method = input.method;\n this.mode = input.mode;\n this.signal = input.signal;\n if (!body && input._bodyInit != null) {\n body = input._bodyInit;\n input.bodyUsed = true;\n }\n } else {\n this.url = String(input);\n }\n\n this.credentials = options.credentials || this.credentials || 'same-origin';\n if (options.headers || !this.headers) {\n this.headers = new Headers(options.headers);\n }\n this.method = normalizeMethod(options.method || this.method || 'GET');\n this.mode = options.mode || this.mode || null;\n this.signal = options.signal || this.signal;\n this.referrer = null;\n\n if ((this.method === 'GET' || this.method === 'HEAD') && body) {\n throw new TypeError('Body not allowed for GET or HEAD requests')\n }\n this._initBody(body);\n }\n\n Request.prototype.clone = function() {\n return new Request(this, {body: this._bodyInit})\n };\n\n function decode(body) {\n var form = new FormData();\n body\n .trim()\n .split('&')\n .forEach(function(bytes) {\n if (bytes) {\n var split = bytes.split('=');\n var name = split.shift().replace(/\\+/g, ' ');\n var value = split.join('=').replace(/\\+/g, ' ');\n form.append(decodeURIComponent(name), decodeURIComponent(value));\n }\n });\n return form\n }\n\n function parseHeaders(rawHeaders) {\n var headers = new Headers();\n // Replace instances of \\r\\n and \\n followed by at least one space or horizontal tab with a space\n // https://tools.ietf.org/html/rfc7230#section-3.2\n var preProcessedHeaders = rawHeaders.replace(/\\r?\\n[\\t ]+/g, ' ');\n preProcessedHeaders.split(/\\r?\\n/).forEach(function(line) {\n var parts = line.split(':');\n var key = parts.shift().trim();\n if (key) {\n var value = parts.join(':').trim();\n headers.append(key, value);\n }\n });\n return headers\n }\n\n Body.call(Request.prototype);\n\n function Response(bodyInit, options) {\n if (!options) {\n options = {};\n }\n\n this.type = 'default';\n this.status = options.status === undefined ? 200 : options.status;\n this.ok = this.status >= 200 && this.status < 300;\n this.statusText = 'statusText' in options ? options.statusText : 'OK';\n this.headers = new Headers(options.headers);\n this.url = options.url || '';\n this._initBody(bodyInit);\n }\n\n Body.call(Response.prototype);\n\n Response.prototype.clone = function() {\n return new Response(this._bodyInit, {\n status: this.status,\n statusText: this.statusText,\n headers: new Headers(this.headers),\n url: this.url\n })\n };\n\n Response.error = function() {\n var response = new Response(null, {status: 0, statusText: ''});\n response.type = 'error';\n return response\n };\n\n var redirectStatuses = [301, 302, 303, 307, 308];\n\n Response.redirect = function(url, status) {\n if (redirectStatuses.indexOf(status) === -1) {\n throw new RangeError('Invalid status code')\n }\n\n return new Response(null, {status: status, headers: {location: url}})\n };\n\n exports.DOMException = self.DOMException;\n try {\n new exports.DOMException();\n } catch (err) {\n exports.DOMException = function(message, name) {\n this.message = message;\n this.name = name;\n var error = Error(message);\n this.stack = error.stack;\n };\n exports.DOMException.prototype = Object.create(Error.prototype);\n exports.DOMException.prototype.constructor = exports.DOMException;\n }\n\n function fetch(input, init) {\n return new Promise(function(resolve, reject) {\n var request = new Request(input, init);\n\n if (request.signal && request.signal.aborted) {\n return reject(new exports.DOMException('Aborted', 'AbortError'))\n }\n\n var xhr = new XMLHttpRequest();\n\n function abortXhr() {\n xhr.abort();\n }\n\n xhr.onload = function() {\n var options = {\n status: xhr.status,\n statusText: xhr.statusText,\n headers: parseHeaders(xhr.getAllResponseHeaders() || '')\n };\n options.url = 'responseURL' in xhr ? xhr.responseURL : options.headers.get('X-Request-URL');\n var body = 'response' in xhr ? xhr.response : xhr.responseText;\n resolve(new Response(body, options));\n };\n\n xhr.onerror = function() {\n reject(new TypeError('Network request failed'));\n };\n\n xhr.ontimeout = function() {\n reject(new TypeError('Network request failed'));\n };\n\n xhr.onabort = function() {\n reject(new exports.DOMException('Aborted', 'AbortError'));\n };\n\n xhr.open(request.method, request.url, true);\n\n if (request.credentials === 'include') {\n xhr.withCredentials = true;\n } else if (request.credentials === 'omit') {\n xhr.withCredentials = false;\n }\n\n if ('responseType' in xhr && support.blob) {\n xhr.responseType = 'blob';\n }\n\n request.headers.forEach(function(value, name) {\n xhr.setRequestHeader(name, value);\n });\n\n if (request.signal) {\n request.signal.addEventListener('abort', abortXhr);\n\n xhr.onreadystatechange = function() {\n // DONE (success or failure)\n if (xhr.readyState === 4) {\n request.signal.removeEventListener('abort', abortXhr);\n }\n };\n }\n\n xhr.send(typeof request._bodyInit === 'undefined' ? null : request._bodyInit);\n })\n }\n\n fetch.polyfill = true;\n\n if (!self.fetch) {\n self.fetch = fetch;\n self.Headers = Headers;\n self.Request = Request;\n self.Response = Response;\n }\n\n exports.Headers = Headers;\n exports.Request = Request;\n exports.Response = Response;\n exports.fetch = fetch;\n\n Object.defineProperty(exports, '__esModule', { value: true });\n\n return exports;\n\n})({});\n})(typeof self !== 'undefined' ? self : this);\n","\"use strict\";\nvar __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n var desc = Object.getOwnPropertyDescriptor(m, k);\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n desc = { enumerable: true, get: function() { return m[k]; } };\n }\n Object.defineProperty(o, k2, desc);\n}) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n}));\nvar __exportStar = (this && this.__exportStar) || function(m, exports) {\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\n__exportStar(require(\"./lib/ContextParser\"), exports);\n__exportStar(require(\"./lib/ErrorCoded\"), exports);\n__exportStar(require(\"./lib/FetchDocumentLoader\"), exports);\n__exportStar(require(\"./lib/IDocumentLoader\"), exports);\n__exportStar(require(\"./lib/JsonLdContext\"), exports);\n__exportStar(require(\"./lib/JsonLdContextNormalized\"), exports);\n__exportStar(require(\"./lib/Util\"), exports);\n//# sourceMappingURL=index.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.ContextParser = void 0;\nrequire(\"cross-fetch/polyfill\");\nconst relative_to_absolute_iri_1 = require(\"relative-to-absolute-iri\");\nconst ErrorCoded_1 = require(\"./ErrorCoded\");\nconst FetchDocumentLoader_1 = require(\"./FetchDocumentLoader\");\nconst JsonLdContextNormalized_1 = require(\"./JsonLdContextNormalized\");\nconst Util_1 = require(\"./Util\");\n/**\n * Parses JSON-LD contexts.\n */\nclass ContextParser {\n constructor(options) {\n options = options || {};\n this.documentLoader = options.documentLoader || new FetchDocumentLoader_1.FetchDocumentLoader();\n this.documentCache = {};\n this.validateContext = !options.skipValidation;\n this.expandContentTypeToBase = !!options.expandContentTypeToBase;\n this.remoteContextsDepthLimit = options.remoteContextsDepthLimit || 32;\n this.redirectSchemaOrgHttps = 'redirectSchemaOrgHttps' in options ? !!options.redirectSchemaOrgHttps : true;\n }\n /**\n * Validate the given @language value.\n * An error will be thrown if it is invalid.\n * @param value An @language value.\n * @param {boolean} strictRange If the string value should be strictly checked against a regex.\n * @param {string} errorCode The error code to emit on errors.\n * @return {boolean} If validation passed.\n * Can only be false if strictRange is false and the string value did not pass the regex.\n */\n static validateLanguage(value, strictRange, errorCode) {\n if (typeof value !== 'string') {\n throw new ErrorCoded_1.ErrorCoded(`The value of an '@language' must be a string, got '${JSON.stringify(value)}'`, errorCode);\n }\n if (!Util_1.Util.REGEX_LANGUAGE_TAG.test(value)) {\n if (strictRange) {\n throw new ErrorCoded_1.ErrorCoded(`The value of an '@language' must be a valid language tag, got '${JSON.stringify(value)}'`, errorCode);\n }\n else {\n return false;\n }\n }\n return true;\n }\n /**\n * Validate the given @direction value.\n * An error will be thrown if it is invalid.\n * @param value An @direction value.\n * @param {boolean} strictValues If the string value should be strictly checked against a regex.\n * @return {boolean} If validation passed.\n * Can only be false if strictRange is false and the string value did not pass the regex.\n */\n static validateDirection(value, strictValues) {\n if (typeof value !== 'string') {\n throw new ErrorCoded_1.ErrorCoded(`The value of an '@direction' must be a string, got '${JSON.stringify(value)}'`, ErrorCoded_1.ERROR_CODES.INVALID_BASE_DIRECTION);\n }\n if (!Util_1.Util.REGEX_DIRECTION_TAG.test(value)) {\n if (strictValues) {\n throw new ErrorCoded_1.ErrorCoded(`The value of an '@direction' must be 'ltr' or 'rtl', got '${JSON.stringify(value)}'`, ErrorCoded_1.ERROR_CODES.INVALID_BASE_DIRECTION);\n }\n else {\n return false;\n }\n }\n return true;\n }\n /**\n * Add an @id term for all @reverse terms.\n * @param {IJsonLdContextNormalizedRaw} context A context.\n * @return {IJsonLdContextNormalizedRaw} The mutated input context.\n */\n idifyReverseTerms(context) {\n for (const key of Object.keys(context)) {\n let value = context[key];\n if (value && typeof value === 'object') {\n if (value['@reverse'] && !value['@id']) {\n if (typeof value['@reverse'] !== 'string' || Util_1.Util.isValidKeyword(value['@reverse'])) {\n throw new ErrorCoded_1.ErrorCoded(`Invalid @reverse value, must be absolute IRI or blank node: '${value['@reverse']}'`, ErrorCoded_1.ERROR_CODES.INVALID_IRI_MAPPING);\n }\n value = context[key] = Object.assign(Object.assign({}, value), { '@id': value['@reverse'] });\n value['@id'] = value['@reverse'];\n if (Util_1.Util.isPotentialKeyword(value['@reverse'])) {\n delete value['@reverse'];\n }\n else {\n value['@reverse'] = true;\n }\n }\n }\n }\n return context;\n }\n /**\n * Expand all prefixed terms in the given context.\n * @param {IJsonLdContextNormalizedRaw} context A context.\n * @param {boolean} expandContentTypeToBase If @type inside the context may be expanded\n * via @base if @vocab is set to null.\n * @param {string[]} keys Optional set of keys from the context to expand. If left undefined, all\n * keys in the context will be expanded.\n */\n expandPrefixedTerms(context, expandContentTypeToBase, keys) {\n const contextRaw = context.getContextRaw();\n for (const key of (keys || Object.keys(contextRaw))) {\n // Only expand allowed keys\n if (Util_1.Util.EXPAND_KEYS_BLACKLIST.indexOf(key) < 0 && !Util_1.Util.isReservedInternalKeyword(key)) {\n // Error if we try to alias a keyword to something else.\n const keyValue = contextRaw[key];\n if (Util_1.Util.isPotentialKeyword(key) && Util_1.Util.ALIAS_DOMAIN_BLACKLIST.indexOf(key) >= 0) {\n if (key !== '@type' || typeof contextRaw[key] === 'object'\n && !(contextRaw[key]['@protected'] || contextRaw[key]['@container'] === '@set')) {\n throw new ErrorCoded_1.ErrorCoded(`Keywords can not be aliased to something else.\nTried mapping ${key} to ${JSON.stringify(keyValue)}`, ErrorCoded_1.ERROR_CODES.KEYWORD_REDEFINITION);\n }\n }\n // Error if we try to alias to an illegal keyword\n if (Util_1.Util.ALIAS_RANGE_BLACKLIST.indexOf(Util_1.Util.getContextValueId(keyValue)) >= 0) {\n throw new ErrorCoded_1.ErrorCoded(`Aliasing to certain keywords is not allowed.\nTried mapping ${key} to ${JSON.stringify(keyValue)}`, ErrorCoded_1.ERROR_CODES.INVALID_KEYWORD_ALIAS);\n }\n // Error if this term was marked as prefix as well\n if (keyValue && Util_1.Util.isPotentialKeyword(Util_1.Util.getContextValueId(keyValue))\n && keyValue['@prefix'] === true) {\n throw new ErrorCoded_1.ErrorCoded(`Tried to use keyword aliases as prefix: '${key}': '${JSON.stringify(keyValue)}'`, ErrorCoded_1.ERROR_CODES.INVALID_TERM_DEFINITION);\n }\n // Loop because prefixes might be nested\n while (Util_1.Util.isPrefixValue(contextRaw[key])) {\n const value = contextRaw[key];\n let changed = false;\n if (typeof value === 'string') {\n contextRaw[key] = context.expandTerm(value, true);\n changed = changed || value !== contextRaw[key];\n }\n else {\n const id = value['@id'];\n const type = value['@type'];\n // If @id is missing, don't allow @id to be added if @prefix: true and key not being a valid IRI.\n const canAddIdEntry = !('@prefix' in value) || Util_1.Util.isValidIri(key);\n if ('@id' in value) {\n // Use @id value for expansion\n if (id !== undefined && id !== null && typeof id === 'string') {\n contextRaw[key] = Object.assign(Object.assign({}, contextRaw[key]), { '@id': context.expandTerm(id, true) });\n changed = changed || id !== contextRaw[key]['@id'];\n }\n }\n else if (!Util_1.Util.isPotentialKeyword(key) && canAddIdEntry) {\n // Add an explicit @id value based on the expanded key value\n const newId = context.expandTerm(key, true);\n if (newId !== key) {\n // Don't set @id if expansion failed\n contextRaw[key] = Object.assign(Object.assign({}, contextRaw[key]), { '@id': newId });\n changed = true;\n }\n }\n if (type && typeof type === 'string' && type !== '@vocab'\n && (!value['@container'] || !value['@container']['@type'])\n && canAddIdEntry) {\n // First check @vocab, then fallback to @base\n let expandedType = context.expandTerm(type, true);\n if (expandContentTypeToBase && type === expandedType) {\n expandedType = context.expandTerm(type, false);\n }\n if (expandedType !== type) {\n changed = true;\n contextRaw[key] = Object.assign(Object.assign({}, contextRaw[key]), { '@type': expandedType });\n }\n }\n }\n if (!changed) {\n break;\n }\n }\n }\n }\n }\n /**\n * Normalize the @language entries in the given context to lowercase.\n * @param {IJsonLdContextNormalizedRaw} context A context.\n * @param {IParseOptions} parseOptions The parsing options.\n */\n normalize(context, { processingMode, normalizeLanguageTags }) {\n // Lowercase language keys in 1.0\n if (normalizeLanguageTags || processingMode === 1.0) {\n for (const key of Object.keys(context)) {\n if (key === '@language' && typeof context[key] === 'string') {\n context[key] = context[key].toLowerCase();\n }\n else {\n const value = context[key];\n if (value && typeof value === 'object') {\n if (typeof value['@language'] === 'string') {\n const lowercase = value['@language'].toLowerCase();\n if (lowercase !== value['@language']) {\n context[key] = Object.assign(Object.assign({}, value), { '@language': lowercase });\n }\n }\n }\n }\n }\n }\n }\n /**\n * Convert all @container strings and array values to hash-based values.\n * @param {IJsonLdContextNormalizedRaw} context A context.\n */\n containersToHash(context) {\n for (const key of Object.keys(context)) {\n const value = context[key];\n if (value && typeof value === 'object') {\n if (typeof value['@container'] === 'string') {\n context[key] = Object.assign(Object.assign({}, value), { '@container': { [value['@container']]: true } });\n }\n else if (Array.isArray(value['@container'])) {\n const newValue = {};\n for (const containerValue of value['@container']) {\n newValue[containerValue] = true;\n }\n context[key] = Object.assign(Object.assign({}, value), { '@container': newValue });\n }\n }\n }\n }\n /**\n * Normalize and apply context-level @protected terms onto each term separately.\n * @param {IJsonLdContextNormalizedRaw} context A context.\n * @param {number} processingMode The processing mode.\n */\n applyScopedProtected(context, { processingMode }, expandOptions) {\n if (processingMode && processingMode >= 1.1) {\n if (context['@protected']) {\n for (const key of Object.keys(context)) {\n if (Util_1.Util.isReservedInternalKeyword(key)) {\n continue;\n }\n if (!Util_1.Util.isPotentialKeyword(key) && !Util_1.Util.isTermProtected(context, key)) {\n const value = context[key];\n if (value && typeof value === 'object') {\n if (!('@protected' in context[key])) {\n // Mark terms with object values as protected if they don't have an @protected: false annotation\n context[key] = Object.assign(Object.assign({}, context[key]), { '@protected': true });\n }\n }\n else {\n // Convert string-based term values to object-based values with @protected: true\n context[key] = {\n '@id': value,\n '@protected': true,\n };\n if (Util_1.Util.isSimpleTermDefinitionPrefix(value, expandOptions)) {\n context[key] = Object.assign(Object.assign({}, context[key]), { '@prefix': true });\n }\n }\n }\n }\n delete context['@protected'];\n }\n }\n }\n /**\n * Check if the given context inheritance does not contain any overrides of protected terms.\n * @param {IJsonLdContextNormalizedRaw} contextBefore The context that may contain some protected terms.\n * @param {IJsonLdContextNormalizedRaw} contextAfter A new context that is being applied on the first one.\n * @param {IExpandOptions} expandOptions Options that are needed for any expansions during this validation.\n * @param {string[]} keys Optional set of keys from the context to validate. If left undefined, all\n * keys defined in contextAfter will be checked.\n */\n validateKeywordRedefinitions(contextBefore, contextAfter, expandOptions, keys) {\n for (const key of (keys !== null && keys !== void 0 ? keys : Object.keys(contextAfter))) {\n if (Util_1.Util.isTermProtected(contextBefore, key)) {\n // The entry in the context before will always be in object-mode\n // If the new entry is in string-mode, convert it to object-mode\n // before checking if it is identical.\n if (typeof contextAfter[key] === 'string') {\n contextAfter[key] = { '@id': contextAfter[key], '@protected': true };\n }\n else {\n // We modify this deliberately,\n // as we need it for the value comparison (they must be identical modulo '@protected')),\n // and for the fact that this new value will override the first one.\n contextAfter[key] = Object.assign(Object.assign({}, contextAfter[key]), { '@protected': true });\n }\n // Error if they are not identical\n if (!Util_1.Util.deepEqual(contextBefore[key], contextAfter[key])) {\n throw new ErrorCoded_1.ErrorCoded(`Attempted to override the protected keyword ${key} from ${JSON.stringify(Util_1.Util.getContextValueId(contextBefore[key]))} to ${JSON.stringify(Util_1.Util.getContextValueId(contextAfter[key]))}`, ErrorCoded_1.ERROR_CODES.PROTECTED_TERM_REDEFINITION);\n }\n }\n }\n }\n /**\n * Validate the entries of the given context.\n * @param {IJsonLdContextNormalizedRaw} context A context.\n * @param {IParseOptions} options The parse options.\n */\n validate(context, { processingMode }) {\n for (const key of Object.keys(context)) {\n // Ignore reserved internal keywords.\n if (Util_1.Util.isReservedInternalKeyword(key)) {\n continue;\n }\n // Do not allow empty term\n if (key === '') {\n throw new ErrorCoded_1.ErrorCoded(`The empty term is not allowed, got: '${key}': '${JSON.stringify(context[key])}'`, ErrorCoded_1.ERROR_CODES.INVALID_TERM_DEFINITION);\n }\n const value = context[key];\n const valueType = typeof value;\n // First check if the key is a keyword\n if (Util_1.Util.isPotentialKeyword(key)) {\n switch (key.substr(1)) {\n case 'vocab':\n if (value !== null && valueType !== 'string') {\n throw new ErrorCoded_1.ErrorCoded(`Found an invalid @vocab IRI: ${value}`, ErrorCoded_1.ERROR_CODES.INVALID_VOCAB_MAPPING);\n }\n break;\n case 'base':\n if (value !== null && valueType !== 'string') {\n throw new ErrorCoded_1.ErrorCoded(`Found an invalid @base IRI: ${context[key]}`, ErrorCoded_1.ERROR_CODES.INVALID_BASE_IRI);\n }\n break;\n case 'language':\n if (value !== null) {\n ContextParser.validateLanguage(value, true, ErrorCoded_1.ERROR_CODES.INVALID_DEFAULT_LANGUAGE);\n }\n break;\n case 'version':\n if (value !== null && valueType !== 'number') {\n throw new ErrorCoded_1.ErrorCoded(`Found an invalid @version number: ${value}`, ErrorCoded_1.ERROR_CODES.INVALID_VERSION_VALUE);\n }\n break;\n case 'direction':\n if (value !== null) {\n ContextParser.validateDirection(value, true);\n }\n break;\n case 'propagate':\n if (processingMode === 1.0) {\n throw new ErrorCoded_1.ErrorCoded(`Found an illegal @propagate keyword: ${value}`, ErrorCoded_1.ERROR_CODES.INVALID_CONTEXT_ENTRY);\n }\n if (value !== null && valueType !== 'boolean') {\n throw new ErrorCoded_1.ErrorCoded(`Found an invalid @propagate value: ${value}`, ErrorCoded_1.ERROR_CODES.INVALID_PROPAGATE_VALUE);\n }\n break;\n }\n // Don't allow keywords to be overridden\n if (Util_1.Util.isValidKeyword(key) && Util_1.Util.isValidKeyword(Util_1.Util.getContextValueId(value))) {\n throw new ErrorCoded_1.ErrorCoded(`Illegal keyword alias in term value, found: '${key}': '${Util_1.Util\n .getContextValueId(value)}'`, ErrorCoded_1.ERROR_CODES.KEYWORD_REDEFINITION);\n }\n continue;\n }\n // Otherwise, consider the key a term\n if (value !== null) {\n switch (valueType) {\n case 'string':\n if (Util_1.Util.getPrefix(value, context) === key) {\n throw new ErrorCoded_1.ErrorCoded(`Detected cyclical IRI mapping in context entry: '${key}': '${JSON\n .stringify(value)}'`, ErrorCoded_1.ERROR_CODES.CYCLIC_IRI_MAPPING);\n }\n if (Util_1.Util.isValidIriWeak(key)) {\n if (value === '@type') {\n throw new ErrorCoded_1.ErrorCoded(`IRIs can not be mapped to @type, found: '${key}': '${value}'`, ErrorCoded_1.ERROR_CODES.INVALID_IRI_MAPPING);\n }\n else if (Util_1.Util.isValidIri(value) && value !== new JsonLdContextNormalized_1.JsonLdContextNormalized(context).expandTerm(key)) {\n throw new ErrorCoded_1.ErrorCoded(`IRIs can not be mapped to other IRIs, found: '${key}': '${value}'`, ErrorCoded_1.ERROR_CODES.INVALID_IRI_MAPPING);\n }\n }\n break;\n case 'object':\n if (!Util_1.Util.isCompactIri(key) && !('@id' in value)\n && (value['@type'] === '@id' ? !context['@base'] : !context['@vocab'])) {\n throw new ErrorCoded_1.ErrorCoded(`Missing @id in context entry: '${key}': '${JSON.stringify(value)}'`, ErrorCoded_1.ERROR_CODES.INVALID_IRI_MAPPING);\n }\n for (const objectKey of Object.keys(value)) {\n const objectValue = value[objectKey];\n if (!objectValue) {\n continue;\n }\n switch (objectKey) {\n case '@id':\n if (Util_1.Util.isValidKeyword(objectValue)\n && objectValue !== '@type' && objectValue !== '@id' && objectValue !== '@graph' && objectValue !== '@nest') {\n throw new ErrorCoded_1.ErrorCoded(`Illegal keyword alias in term value, found: '${key}': '${JSON.stringify(value)}'`, ErrorCoded_1.ERROR_CODES.INVALID_IRI_MAPPING);\n }\n if (Util_1.Util.isValidIriWeak(key)) {\n if (objectValue === '@type') {\n throw new ErrorCoded_1.ErrorCoded(`IRIs can not be mapped to @type, found: '${key}': '${JSON.stringify(value)}'`, ErrorCoded_1.ERROR_CODES.INVALID_IRI_MAPPING);\n }\n else if (Util_1.Util.isValidIri(objectValue)\n && objectValue !== new JsonLdContextNormalized_1.JsonLdContextNormalized(context).expandTerm(key)) {\n throw new ErrorCoded_1.ErrorCoded(`IRIs can not be mapped to other IRIs, found: '${key}': '${JSON.stringify(value)}'`, ErrorCoded_1.ERROR_CODES.INVALID_IRI_MAPPING);\n }\n }\n if (typeof objectValue !== 'string') {\n throw new ErrorCoded_1.ErrorCoded(`Detected non-string @id in context entry: '${key}': '${JSON.stringify(value)}'`, ErrorCoded_1.ERROR_CODES.INVALID_IRI_MAPPING);\n }\n if (Util_1.Util.getPrefix(objectValue, context) === key) {\n throw new ErrorCoded_1.ErrorCoded(`Detected cyclical IRI mapping in context entry: '${key}': '${JSON\n .stringify(value)}'`, ErrorCoded_1.ERROR_CODES.CYCLIC_IRI_MAPPING);\n }\n break;\n case '@type':\n if (value['@container'] === '@type' && objectValue !== '@id' && objectValue !== '@vocab') {\n throw new ErrorCoded_1.ErrorCoded(`@container: @type only allows @type: @id or @vocab, but got: '${key}': '${objectValue}'`, ErrorCoded_1.ERROR_CODES.INVALID_TYPE_MAPPING);\n }\n if (typeof objectValue !== 'string') {\n throw new ErrorCoded_1.ErrorCoded(`The value of an '@type' must be a string, got '${JSON.stringify(valueType)}'`, ErrorCoded_1.ERROR_CODES.INVALID_TYPE_MAPPING);\n }\n if (objectValue !== '@id' && objectValue !== '@vocab'\n && (processingMode === 1.0 || objectValue !== '@json')\n && (processingMode === 1.0 || objectValue !== '@none')\n && (objectValue[0] === '_' || !Util_1.Util.isValidIri(objectValue))) {\n throw new ErrorCoded_1.ErrorCoded(`A context @type must be an absolute IRI, found: '${key}': '${objectValue}'`, ErrorCoded_1.ERROR_CODES.INVALID_TYPE_MAPPING);\n }\n break;\n case '@reverse':\n if (typeof objectValue === 'string' && value['@id'] && value['@id'] !== objectValue) {\n throw new ErrorCoded_1.ErrorCoded(`Found non-matching @id and @reverse term values in '${key}':\\\n'${objectValue}' and '${value['@id']}'`, ErrorCoded_1.ERROR_CODES.INVALID_REVERSE_PROPERTY);\n }\n if ('@nest' in value) {\n throw new ErrorCoded_1.ErrorCoded(`@nest is not allowed in the reverse property '${key}'`, ErrorCoded_1.ERROR_CODES.INVALID_REVERSE_PROPERTY);\n }\n break;\n case '@container':\n if (processingMode === 1.0) {\n if (Object.keys(objectValue).length > 1\n || Util_1.Util.CONTAINERS_1_0.indexOf(Object.keys(objectValue)[0]) < 0) {\n throw new ErrorCoded_1.ErrorCoded(`Invalid term @container for '${key}' ('${Object.keys(objectValue)}') in 1.0, \\\nmust be only one of ${Util_1.Util.CONTAINERS_1_0.join(', ')}`, ErrorCoded_1.ERROR_CODES.INVALID_CONTAINER_MAPPING);\n }\n }\n for (const containerValue of Object.keys(objectValue)) {\n if (containerValue === '@list' && value['@reverse']) {\n throw new ErrorCoded_1.ErrorCoded(`Term value can not be @container: @list and @reverse at the same time on '${key}'`, ErrorCoded_1.ERROR_CODES.INVALID_REVERSE_PROPERTY);\n }\n if (Util_1.Util.CONTAINERS.indexOf(containerValue) < 0) {\n throw new ErrorCoded_1.ErrorCoded(`Invalid term @container for '${key}' ('${containerValue}'), \\\nmust be one of ${Util_1.Util.CONTAINERS.join(', ')}`, ErrorCoded_1.ERROR_CODES.INVALID_CONTAINER_MAPPING);\n }\n }\n break;\n case '@language':\n ContextParser.validateLanguage(objectValue, true, ErrorCoded_1.ERROR_CODES.INVALID_LANGUAGE_MAPPING);\n break;\n case '@direction':\n ContextParser.validateDirection(objectValue, true);\n break;\n case '@prefix':\n if (objectValue !== null && typeof objectValue !== 'boolean') {\n throw new ErrorCoded_1.ErrorCoded(`Found an invalid term @prefix boolean in: '${key}': '${JSON.stringify(value)}'`, ErrorCoded_1.ERROR_CODES.INVALID_PREFIX_VALUE);\n }\n if (!('@id' in value) && !Util_1.Util.isValidIri(key)) {\n throw new ErrorCoded_1.ErrorCoded(`Invalid @prefix definition for '${key}' ('${JSON.stringify(value)}'`, ErrorCoded_1.ERROR_CODES.INVALID_TERM_DEFINITION);\n }\n break;\n case '@index':\n if (processingMode === 1.0 || !value['@container'] || !value['@container']['@index']) {\n throw new ErrorCoded_1.ErrorCoded(`Attempt to add illegal key to value object: '${key}': '${JSON.stringify(value)}'`, ErrorCoded_1.ERROR_CODES.INVALID_TERM_DEFINITION);\n }\n break;\n case '@nest':\n if (Util_1.Util.isPotentialKeyword(objectValue) && objectValue !== '@nest') {\n throw new ErrorCoded_1.ErrorCoded(`Found an invalid term @nest value in: '${key}': '${JSON.stringify(value)}'`, ErrorCoded_1.ERROR_CODES.INVALID_NEST_VALUE);\n }\n }\n }\n break;\n default:\n throw new ErrorCoded_1.ErrorCoded(`Found an invalid term value: '${key}': '${value}'`, ErrorCoded_1.ERROR_CODES.INVALID_TERM_DEFINITION);\n }\n }\n }\n }\n /**\n * Apply the @base context entry to the given context under certain circumstances.\n * @param context A context.\n * @param options Parsing options.\n * @param inheritFromParent If the @base value from the parent context can be inherited.\n * @return The given context.\n */\n applyBaseEntry(context, options, inheritFromParent) {\n // In some special cases, this can be a string, so ignore those.\n if (typeof context === 'string') {\n return context;\n }\n // Give priority to @base in the parent context\n if (inheritFromParent && !('@base' in context) && options.parentContext\n && typeof options.parentContext === 'object' && '@base' in options.parentContext) {\n context['@base'] = options.parentContext['@base'];\n if (options.parentContext['@__baseDocument']) {\n context['@__baseDocument'] = true;\n }\n }\n // Override the base IRI if provided.\n if (options.baseIRI && !options.external) {\n if (!('@base' in context)) {\n // The context base is the document base\n context['@base'] = options.baseIRI;\n context['@__baseDocument'] = true;\n }\n else if (context['@base'] !== null && typeof context['@base'] === 'string'\n && !Util_1.Util.isValidIri(context['@base'])) {\n // The context base is relative to the document base\n context['@base'] = (0, relative_to_absolute_iri_1.resolve)(context['@base'], options.parentContext && options.parentContext['@base'] || options.baseIRI);\n }\n }\n return context;\n }\n /**\n * Resolve relative context IRIs, or return full IRIs as-is.\n * @param {string} contextIri A context IRI.\n * @param {string} baseIRI A base IRI.\n * @return {string} The normalized context IRI.\n */\n normalizeContextIri(contextIri, baseIRI) {\n if (!Util_1.Util.isValidIri(contextIri)) {\n try {\n contextIri = (0, relative_to_absolute_iri_1.resolve)(contextIri, baseIRI);\n }\n catch (_a) {\n throw new Error(`Invalid context IRI: ${contextIri}`);\n }\n }\n // TODO: Temporary workaround for fixing schema.org CORS issues (https://github.com/schemaorg/schemaorg/issues/2578#issuecomment-652324465)\n if (this.redirectSchemaOrgHttps && contextIri.startsWith('http://schema.org')) {\n contextIri = 'https://schema.org/';\n }\n return contextIri;\n }\n /**\n * Parse scoped contexts in the given context.\n * @param {IJsonLdContextNormalizedRaw} context A context.\n * @param {IParseOptions} options Parsing options.\n * @return {IJsonLdContextNormalizedRaw} The mutated input context.\n * @param {string[]} keys Optional set of keys from the context to parseInnerContexts of. If left undefined, all\n * keys in the context will be iterated over.\n */\n async parseInnerContexts(context, options, keys) {\n for (const key of (keys !== null && keys !== void 0 ? keys : Object.keys(context))) {\n const value = context[key];\n if (value && typeof value === 'object') {\n if ('@context' in value && value['@context'] !== null && !options.ignoreScopedContexts) {\n // Simulate a processing based on the parent context to check if there are any (potential errors).\n // Honestly, I find it a bit weird to do this here, as the context may be unused,\n // and the final effective context may differ based on any other embedded/scoped contexts.\n // But hey, it's part of the spec, so we have no choice...\n // https://w3c.github.io/json-ld-api/#h-note-10\n if (this.validateContext) {\n try {\n const parentContext = Object.assign(Object.assign({}, context), { [key]: Object.assign({}, context[key]) });\n delete parentContext[key]['@context'];\n await this.parse(value['@context'], Object.assign(Object.assign({}, options), { external: false, parentContext, ignoreProtection: true, ignoreRemoteScopedContexts: true, ignoreScopedContexts: true }));\n }\n catch (e) {\n throw new ErrorCoded_1.ErrorCoded(e.message, ErrorCoded_1.ERROR_CODES.INVALID_SCOPED_CONTEXT);\n }\n }\n context[key] = Object.assign(Object.assign({}, value), { '@context': (await this.parse(value['@context'], Object.assign(Object.assign({}, options), { external: false, minimalProcessing: true, ignoreRemoteScopedContexts: true, parentContext: context })))\n .getContextRaw() });\n }\n }\n }\n return context;\n }\n async parse(context, options = {}, \n // These options are only for internal use on recursive calls and should not be used by\n // libraries consuming this function\n internalOptions = {}) {\n const { baseIRI, parentContext, external, processingMode = ContextParser.DEFAULT_PROCESSING_MODE, normalizeLanguageTags, ignoreProtection, minimalProcessing, } = options;\n const remoteContexts = options.remoteContexts || {};\n // Avoid remote context overflows\n if (Object.keys(remoteContexts).length >= this.remoteContextsDepthLimit) {\n throw new ErrorCoded_1.ErrorCoded('Detected an overflow in remote context inclusions: ' + Object.keys(remoteContexts), ErrorCoded_1.ERROR_CODES.CONTEXT_OVERFLOW);\n }\n if (context === null || context === undefined) {\n // Don't allow context nullification and there are protected terms\n if (!ignoreProtection && parentContext && Util_1.Util.hasProtectedTerms(parentContext)) {\n throw new ErrorCoded_1.ErrorCoded('Illegal context nullification when terms are protected', ErrorCoded_1.ERROR_CODES.INVALID_CONTEXT_NULLIFICATION);\n }\n // Context that are explicitly set to null are empty.\n return new JsonLdContextNormalized_1.JsonLdContextNormalized(this.applyBaseEntry({}, options, false));\n }\n else if (typeof context === 'string') {\n const contextIri = this.normalizeContextIri(context, baseIRI);\n const overriddenLoad = this.getOverriddenLoad(contextIri, options);\n if (overriddenLoad) {\n return new JsonLdContextNormalized_1.JsonLdContextNormalized(overriddenLoad);\n }\n const parsedStringContext = await this.parse(await this.load(contextIri), Object.assign(Object.assign({}, options), { baseIRI: contextIri, external: true, remoteContexts: Object.assign(Object.assign({}, remoteContexts), { [contextIri]: true }) }));\n this.applyBaseEntry(parsedStringContext.getContextRaw(), options, true);\n return parsedStringContext;\n }\n else if (Array.isArray(context)) {\n // As a performance consideration, first load all external contexts in parallel.\n const contextIris = [];\n const contexts = await Promise.all(context.map((subContext, i) => {\n if (typeof subContext === 'string') {\n const contextIri = this.normalizeContextIri(subContext, baseIRI);\n contextIris[i] = contextIri;\n const overriddenLoad = this.getOverriddenLoad(contextIri, options);\n if (overriddenLoad) {\n return overriddenLoad;\n }\n return this.load(contextIri);\n }\n else {\n return subContext;\n }\n }));\n // Don't apply inheritance logic on minimal processing\n if (minimalProcessing) {\n return new JsonLdContextNormalized_1.JsonLdContextNormalized(contexts);\n }\n const reducedContexts = await contexts.reduce((accContextPromise, contextEntry, i) => accContextPromise\n .then((accContext) => this.parse(contextEntry, Object.assign(Object.assign({}, options), { baseIRI: contextIris[i] || options.baseIRI, external: !!contextIris[i] || options.external, parentContext: accContext.getContextRaw(), remoteContexts: contextIris[i] ? Object.assign(Object.assign({}, remoteContexts), { [contextIris[i]]: true }) : remoteContexts }), \n // @ts-expect-error: This third argument causes a type error because we have hidden it from consumers\n {\n skipValidation: i < contexts.length - 1,\n })), Promise.resolve(new JsonLdContextNormalized_1.JsonLdContextNormalized(parentContext || {})));\n // Override the base IRI if provided.\n this.applyBaseEntry(reducedContexts.getContextRaw(), options, true);\n return reducedContexts;\n }\n else if (typeof context === 'object') {\n if ('@context' in context) {\n return await this.parse(context['@context'], options);\n }\n // Make a deep clone of the given context, to avoid modifying it.\n context = Object.assign({}, context);\n // According to the JSON-LD spec, @base must be ignored from external contexts.\n if (external) {\n delete context['@base'];\n }\n // Override the base IRI if provided.\n this.applyBaseEntry(context, options, true);\n // Hashify container entries\n // Do this before protected term validation as that influences term format\n this.containersToHash(context);\n // Don't perform any other modifications if only minimal processing is needed.\n if (minimalProcessing) {\n return new JsonLdContextNormalized_1.JsonLdContextNormalized(context);\n }\n // In JSON-LD 1.1, load @import'ed context prior to processing.\n let importContext = {};\n if ('@import' in context) {\n if (processingMode >= 1.1) {\n // Only accept string values\n if (typeof context['@import'] !== 'string') {\n throw new ErrorCoded_1.ErrorCoded('An @import value must be a string, but got ' + typeof context['@import'], ErrorCoded_1.ERROR_CODES.INVALID_IMPORT_VALUE);\n }\n // Load context\n importContext = await this.loadImportContext(this.normalizeContextIri(context['@import'], baseIRI));\n delete context['@import'];\n }\n else {\n throw new ErrorCoded_1.ErrorCoded('Context importing is not supported in JSON-LD 1.0', ErrorCoded_1.ERROR_CODES.INVALID_CONTEXT_ENTRY);\n }\n }\n this.applyScopedProtected(importContext, { processingMode }, JsonLdContextNormalized_1.defaultExpandOptions);\n const newContext = Object.assign(importContext, context);\n // Handle terms (before protection checks)\n this.idifyReverseTerms(newContext);\n this.normalize(newContext, { processingMode, normalizeLanguageTags });\n this.applyScopedProtected(newContext, { processingMode }, JsonLdContextNormalized_1.defaultExpandOptions);\n const keys = Object.keys(newContext);\n const overlappingKeys = [];\n if (typeof parentContext === 'object') {\n // Merge different parts of the final context in order\n for (const key in parentContext) {\n if (key in newContext) {\n overlappingKeys.push(key);\n }\n else {\n newContext[key] = parentContext[key];\n }\n }\n }\n // Parse inner contexts with minimal processing\n await this.parseInnerContexts(newContext, options, keys);\n const newContextWrapped = new JsonLdContextNormalized_1.JsonLdContextNormalized(newContext);\n // In JSON-LD 1.1, @vocab can be relative to @vocab in the parent context, or a compact IRI.\n if ((newContext && newContext['@version'] || ContextParser.DEFAULT_PROCESSING_MODE) >= 1.1\n && ((context['@vocab'] && typeof context['@vocab'] === 'string') || context['@vocab'] === '')) {\n if (parentContext && '@vocab' in parentContext && context['@vocab'].indexOf(':') < 0) {\n newContext['@vocab'] = parentContext['@vocab'] + context['@vocab'];\n }\n else if (Util_1.Util.isCompactIri(context['@vocab']) || context['@vocab'] in newContext) {\n // @vocab is a compact IRI or refers exactly to a prefix\n newContext['@vocab'] = newContextWrapped.expandTerm(context['@vocab'], true);\n }\n }\n this.expandPrefixedTerms(newContextWrapped, this.expandContentTypeToBase, keys);\n // In JSON-LD 1.1, check if we are not redefining any protected keywords\n if (!ignoreProtection && parentContext && processingMode >= 1.1) {\n this.validateKeywordRedefinitions(parentContext, newContext, JsonLdContextNormalized_1.defaultExpandOptions, overlappingKeys);\n }\n if (this.validateContext && !internalOptions.skipValidation) {\n this.validate(newContext, { processingMode });\n }\n return newContextWrapped;\n }\n else {\n throw new ErrorCoded_1.ErrorCoded(`Tried parsing a context that is not a string, array or object, but got ${context}`, ErrorCoded_1.ERROR_CODES.INVALID_LOCAL_CONTEXT);\n }\n }\n /**\n * Fetch the given URL as a raw JSON-LD context.\n * @param url An URL.\n * @return A promise resolving to a raw JSON-LD context.\n */\n async load(url) {\n // First try to retrieve the context from cache\n const cached = this.documentCache[url];\n if (cached) {\n return cached;\n }\n // If not in cache, load it\n let document;\n try {\n document = await this.documentLoader.load(url);\n }\n catch (e) {\n throw new ErrorCoded_1.ErrorCoded(`Failed to load remote context ${url}: ${e.message}`, ErrorCoded_1.ERROR_CODES.LOADING_REMOTE_CONTEXT_FAILED);\n }\n // Validate the context\n if (!('@context' in document)) {\n throw new ErrorCoded_1.ErrorCoded(`Missing @context in remote context at ${url}`, ErrorCoded_1.ERROR_CODES.INVALID_REMOTE_CONTEXT);\n }\n return this.documentCache[url] = document['@context'];\n }\n /**\n * Override the given context that may be loaded.\n *\n * This will check whether or not the url is recursively being loaded.\n * @param url An URL.\n * @param options Parsing options.\n * @return An overridden context, or null.\n * Optionally an error can be thrown if a cyclic context is detected.\n */\n getOverriddenLoad(url, options) {\n if (url in (options.remoteContexts || {})) {\n if (options.ignoreRemoteScopedContexts) {\n return url;\n }\n else {\n throw new ErrorCoded_1.ErrorCoded('Detected a cyclic context inclusion of ' + url, ErrorCoded_1.ERROR_CODES.RECURSIVE_CONTEXT_INCLUSION);\n }\n }\n return null;\n }\n /**\n * Load an @import'ed context.\n * @param importContextIri The full URI of an @import value.\n */\n async loadImportContext(importContextIri) {\n // Load the context - and do a deep clone since we are about to mutate it\n let importContext = await this.load(importContextIri);\n // Require the context to be a non-array object\n if (typeof importContext !== 'object' || Array.isArray(importContext)) {\n throw new ErrorCoded_1.ErrorCoded('An imported context must be a single object: ' + importContextIri, ErrorCoded_1.ERROR_CODES.INVALID_REMOTE_CONTEXT);\n }\n // Error if the context contains another @import\n if ('@import' in importContext) {\n throw new ErrorCoded_1.ErrorCoded('An imported context can not import another context: ' + importContextIri, ErrorCoded_1.ERROR_CODES.INVALID_CONTEXT_ENTRY);\n }\n importContext = Object.assign({}, importContext);\n // Containers have to be converted into hash values the same way as for the importing context\n // Otherwise context validation will fail for container values\n this.containersToHash(importContext);\n return importContext;\n }\n}\nContextParser.DEFAULT_PROCESSING_MODE = 1.1;\nexports.ContextParser = ContextParser;\n//# sourceMappingURL=ContextParser.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.ERROR_CODES = exports.ErrorCoded = void 0;\n/**\n * An error that has a certain error code.\n *\n * The error code can be any string.\n * All standardized error codes are listed in {@link ERROR_CODES}.\n */\nclass ErrorCoded extends Error {\n /* istanbul ignore next */\n constructor(message, code) {\n super(message);\n this.code = code;\n }\n}\nexports.ErrorCoded = ErrorCoded;\n/**\n * All standardized JSON-LD error codes.\n * @see https://w3c.github.io/json-ld-api/#dom-jsonlderrorcode\n */\n// tslint:disable:object-literal-sort-keys\nvar ERROR_CODES;\n(function (ERROR_CODES) {\n ERROR_CODES[\"COLLIDING_KEYWORDS\"] = \"colliding keywords\";\n ERROR_CODES[\"CONFLICTING_INDEXES\"] = \"conflicting indexes\";\n ERROR_CODES[\"CYCLIC_IRI_MAPPING\"] = \"cyclic IRI mapping\";\n ERROR_CODES[\"INVALID_ID_VALUE\"] = \"invalid @id value\";\n ERROR_CODES[\"INVALID_INDEX_VALUE\"] = \"invalid @index value\";\n ERROR_CODES[\"INVALID_NEST_VALUE\"] = \"invalid @nest value\";\n ERROR_CODES[\"INVALID_PREFIX_VALUE\"] = \"invalid @prefix value\";\n ERROR_CODES[\"INVALID_PROPAGATE_VALUE\"] = \"invalid @propagate value\";\n ERROR_CODES[\"INVALID_REVERSE_VALUE\"] = \"invalid @reverse value\";\n ERROR_CODES[\"INVALID_IMPORT_VALUE\"] = \"invalid @import value\";\n ERROR_CODES[\"INVALID_VERSION_VALUE\"] = \"invalid @version value\";\n ERROR_CODES[\"INVALID_BASE_IRI\"] = \"invalid base IRI\";\n ERROR_CODES[\"INVALID_CONTAINER_MAPPING\"] = \"invalid container mapping\";\n ERROR_CODES[\"INVALID_CONTEXT_ENTRY\"] = \"invalid context entry\";\n ERROR_CODES[\"INVALID_CONTEXT_NULLIFICATION\"] = \"invalid context nullification\";\n ERROR_CODES[\"INVALID_DEFAULT_LANGUAGE\"] = \"invalid default language\";\n ERROR_CODES[\"INVALID_INCLUDED_VALUE\"] = \"invalid @included value\";\n ERROR_CODES[\"INVALID_IRI_MAPPING\"] = \"invalid IRI mapping\";\n ERROR_CODES[\"INVALID_JSON_LITERAL\"] = \"invalid JSON literal\";\n ERROR_CODES[\"INVALID_KEYWORD_ALIAS\"] = \"invalid keyword alias\";\n ERROR_CODES[\"INVALID_LANGUAGE_MAP_VALUE\"] = \"invalid language map value\";\n ERROR_CODES[\"INVALID_LANGUAGE_MAPPING\"] = \"invalid language mapping\";\n ERROR_CODES[\"INVALID_LANGUAGE_TAGGED_STRING\"] = \"invalid language-tagged string\";\n ERROR_CODES[\"INVALID_LANGUAGE_TAGGED_VALUE\"] = \"invalid language-tagged value\";\n ERROR_CODES[\"INVALID_LOCAL_CONTEXT\"] = \"invalid local context\";\n ERROR_CODES[\"INVALID_REMOTE_CONTEXT\"] = \"invalid remote context\";\n ERROR_CODES[\"INVALID_REVERSE_PROPERTY\"] = \"invalid reverse property\";\n ERROR_CODES[\"INVALID_REVERSE_PROPERTY_MAP\"] = \"invalid reverse property map\";\n ERROR_CODES[\"INVALID_REVERSE_PROPERTY_VALUE\"] = \"invalid reverse property value\";\n ERROR_CODES[\"INVALID_SCOPED_CONTEXT\"] = \"invalid scoped context\";\n ERROR_CODES[\"INVALID_SCRIPT_ELEMENT\"] = \"invalid script element\";\n ERROR_CODES[\"INVALID_SET_OR_LIST_OBJECT\"] = \"invalid set or list object\";\n ERROR_CODES[\"INVALID_TERM_DEFINITION\"] = \"invalid term definition\";\n ERROR_CODES[\"INVALID_TYPE_MAPPING\"] = \"invalid type mapping\";\n ERROR_CODES[\"INVALID_TYPE_VALUE\"] = \"invalid type value\";\n ERROR_CODES[\"INVALID_TYPED_VALUE\"] = \"invalid typed value\";\n ERROR_CODES[\"INVALID_VALUE_OBJECT\"] = \"invalid value object\";\n ERROR_CODES[\"INVALID_VALUE_OBJECT_VALUE\"] = \"invalid value object value\";\n ERROR_CODES[\"INVALID_VOCAB_MAPPING\"] = \"invalid vocab mapping\";\n ERROR_CODES[\"IRI_CONFUSED_WITH_PREFIX\"] = \"IRI confused with prefix\";\n ERROR_CODES[\"KEYWORD_REDEFINITION\"] = \"keyword redefinition\";\n ERROR_CODES[\"LOADING_DOCUMENT_FAILED\"] = \"loading document failed\";\n ERROR_CODES[\"LOADING_REMOTE_CONTEXT_FAILED\"] = \"loading remote context failed\";\n ERROR_CODES[\"MULTIPLE_CONTEXT_LINK_HEADERS\"] = \"multiple context link headers\";\n ERROR_CODES[\"PROCESSING_MODE_CONFLICT\"] = \"processing mode conflict\";\n ERROR_CODES[\"PROTECTED_TERM_REDEFINITION\"] = \"protected term redefinition\";\n ERROR_CODES[\"CONTEXT_OVERFLOW\"] = \"context overflow\";\n ERROR_CODES[\"INVALID_BASE_DIRECTION\"] = \"invalid base direction\";\n ERROR_CODES[\"RECURSIVE_CONTEXT_INCLUSION\"] = \"recursive context inclusion\";\n ERROR_CODES[\"INVALID_STREAMING_KEY_ORDER\"] = \"invalid streaming key order\";\n /**\n * JSON-LD-star\n */\n ERROR_CODES[\"INVALID_EMBEDDED_NODE\"] = \"invalid embedded node\";\n ERROR_CODES[\"INVALID_ANNOTATION\"] = \"invalid annotation\";\n})(ERROR_CODES = exports.ERROR_CODES || (exports.ERROR_CODES = {}));\n//# sourceMappingURL=ErrorCoded.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.FetchDocumentLoader = void 0;\nrequire(\"cross-fetch/polyfill\");\nconst ErrorCoded_1 = require(\"./ErrorCoded\");\nconst http_link_header_1 = require(\"http-link-header\");\nconst relative_to_absolute_iri_1 = require(\"relative-to-absolute-iri\");\n/**\n * Loads documents via the fetch API.\n */\nclass FetchDocumentLoader {\n constructor(fetcher) {\n this.fetcher = fetcher;\n }\n async load(url) {\n const response = await (this.fetcher || fetch)(url, { headers: new Headers({ accept: 'application/ld+json' }) });\n if (response.ok && response.headers) {\n let mediaType = response.headers.get('Content-Type');\n if (mediaType) {\n const colonPos = mediaType.indexOf(';');\n if (colonPos > 0) {\n mediaType = mediaType.substr(0, colonPos);\n }\n }\n if (mediaType === 'application/ld+json') {\n // Return JSON-LD if proper content type was returned\n return (await response.json());\n }\n else {\n // Check for alternate link for a non-JSON-LD response\n if (response.headers.has('Link')) {\n let alternateUrl;\n response.headers.forEach((value, key) => {\n if (key === 'link') {\n const linkHeader = (0, http_link_header_1.parse)(value);\n for (const link of linkHeader.get('type', 'application/ld+json')) {\n if (link.rel === 'alternate') {\n if (alternateUrl) {\n throw new Error('Multiple JSON-LD alternate links were found on ' + url);\n }\n alternateUrl = (0, relative_to_absolute_iri_1.resolve)(link.uri, url);\n }\n }\n }\n });\n if (alternateUrl) {\n return this.load(alternateUrl);\n }\n }\n throw new ErrorCoded_1.ErrorCoded(`Unsupported JSON-LD media type ${mediaType}`, ErrorCoded_1.ERROR_CODES.LOADING_DOCUMENT_FAILED);\n }\n }\n else {\n throw new Error(response.statusText || `Status code: ${response.status}`);\n }\n }\n}\nexports.FetchDocumentLoader = FetchDocumentLoader;\n//# sourceMappingURL=FetchDocumentLoader.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\n//# sourceMappingURL=IDocumentLoader.js.map","\"use strict\";\n// tslint:disable:max-line-length\nObject.defineProperty(exports, \"__esModule\", { value: true });\n//# sourceMappingURL=JsonLdContext.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.defaultExpandOptions = exports.JsonLdContextNormalized = void 0;\nconst relative_to_absolute_iri_1 = require(\"relative-to-absolute-iri\");\nconst ErrorCoded_1 = require(\"./ErrorCoded\");\nconst Util_1 = require(\"./Util\");\n/**\n * A class exposing operations over a normalized JSON-LD context.\n */\nclass JsonLdContextNormalized {\n constructor(contextRaw) {\n this.contextRaw = contextRaw;\n }\n /**\n * @return The raw inner context.\n */\n getContextRaw() {\n return this.contextRaw;\n }\n /**\n * Expand the term or prefix of the given term if it has one,\n * otherwise return the term as-is.\n *\n * This will try to expand the IRI as much as possible.\n *\n * Iff in vocab-mode, then other references to other terms in the context can be used,\n * such as to `myTerm`:\n * ```\n * {\n * \"myTerm\": \"http://example.org/myLongTerm\"\n * }\n * ```\n *\n * @param {string} term A term that is an URL or a prefixed URL.\n * @param {boolean} expandVocab If the term is a predicate or type and should be expanded based on @vocab,\n * otherwise it is considered a regular term that is expanded based on @base.\n * @param {IExpandOptions} options Options that define the way how expansion must be done.\n * @return {string} The expanded term, the term as-is, or null if it was explicitly disabled in the context.\n * @throws If the term is aliased to an invalid value (not a string, IRI or keyword).\n */\n expandTerm(term, expandVocab, options = exports.defaultExpandOptions) {\n const contextValue = this.contextRaw[term];\n // Immediately return if the term was disabled in the context\n if (contextValue === null || (contextValue && contextValue['@id'] === null)) {\n return null;\n }\n // Check the @id\n let validIriMapping = true;\n if (contextValue && expandVocab) {\n const value = Util_1.Util.getContextValueId(contextValue);\n if (value && value !== term) {\n if (typeof value !== 'string' || (!Util_1.Util.isValidIri(value) && !Util_1.Util.isValidKeyword(value))) {\n // Don't mark this mapping as invalid if we have an unknown keyword, but of the correct form.\n if (!Util_1.Util.isPotentialKeyword(value)) {\n validIriMapping = false;\n }\n }\n else {\n return value;\n }\n }\n }\n // Check if the term is prefixed\n const prefix = Util_1.Util.getPrefix(term, this.contextRaw);\n const vocab = this.contextRaw['@vocab'];\n const vocabRelative = (!!vocab || vocab === '') && vocab.indexOf(':') < 0;\n const base = this.contextRaw['@base'];\n const potentialKeyword = Util_1.Util.isPotentialKeyword(term);\n if (prefix) {\n const contextPrefixValue = this.contextRaw[prefix];\n const value = Util_1.Util.getContextValueId(contextPrefixValue);\n if (value) {\n if (typeof contextPrefixValue === 'string' || !options.allowPrefixForcing) {\n // If we have a simple term definition,\n // check the last character of the prefix to determine whether or not it is a prefix.\n // Validate that prefix ends with gen-delim character, unless @prefix is true\n if (!Util_1.Util.isSimpleTermDefinitionPrefix(value, options)) {\n // Treat the term as an absolute IRI\n return term;\n }\n }\n else {\n // If we have an expanded term definition, default to @prefix: false\n if (value[0] !== '_' && !potentialKeyword && !contextPrefixValue['@prefix'] && !(term in this.contextRaw)) {\n // Treat the term as an absolute IRI\n return term;\n }\n }\n return value + term.substr(prefix.length + 1);\n }\n }\n else if (expandVocab && ((vocab || vocab === '') || (options.allowVocabRelativeToBase && (base && vocabRelative)))\n && !potentialKeyword && !Util_1.Util.isCompactIri(term)) {\n if (vocabRelative) {\n if (options.allowVocabRelativeToBase) {\n return ((vocab || base) ? (0, relative_to_absolute_iri_1.resolve)(vocab, base) : '') + term;\n }\n else {\n throw new ErrorCoded_1.ErrorCoded(`Relative vocab expansion for term '${term}' with vocab '${vocab}' is not allowed.`, ErrorCoded_1.ERROR_CODES.INVALID_VOCAB_MAPPING);\n }\n }\n else {\n return vocab + term;\n }\n }\n else if (!expandVocab && base && !potentialKeyword && !Util_1.Util.isCompactIri(term)) {\n return (0, relative_to_absolute_iri_1.resolve)(term, base);\n }\n // Return the term as-is, unless we discovered an invalid IRI mapping for this term in the context earlier.\n if (validIriMapping) {\n return term;\n }\n else {\n throw new ErrorCoded_1.ErrorCoded(`Invalid IRI mapping found for context entry '${term}': '${JSON.stringify(contextValue)}'`, ErrorCoded_1.ERROR_CODES.INVALID_IRI_MAPPING);\n }\n }\n /**\n * Compact the given term using @base, @vocab, an aliased term, or a prefixed term.\n *\n * This will try to compact the IRI as much as possible.\n *\n * @param {string} iri An IRI to compact.\n * @param {boolean} vocab If the term is a predicate or type and should be compacted based on @vocab,\n * otherwise it is considered a regular term that is compacted based on @base.\n * @return {string} The compacted term or the IRI as-is.\n */\n compactIri(iri, vocab) {\n // Try @vocab compacting\n if (vocab && this.contextRaw['@vocab'] && iri.startsWith(this.contextRaw['@vocab'])) {\n return iri.substr(this.contextRaw['@vocab'].length);\n }\n // Try @base compacting\n if (!vocab && this.contextRaw['@base'] && iri.startsWith(this.contextRaw['@base'])) {\n return iri.substr(this.contextRaw['@base'].length);\n }\n // Loop over all terms in the context\n // This will try to prefix as short as possible.\n // Once a fully compacted alias is found, return immediately, as we can not go any shorter.\n const shortestPrefixing = { prefix: '', suffix: iri };\n for (const key in this.contextRaw) {\n const value = this.contextRaw[key];\n if (value && !Util_1.Util.isPotentialKeyword(key)) {\n const contextIri = Util_1.Util.getContextValueId(value);\n if (iri.startsWith(contextIri)) {\n const suffix = iri.substr(contextIri.length);\n if (!suffix) {\n if (vocab) {\n // Immediately return on compacted alias\n return key;\n }\n }\n else if (suffix.length < shortestPrefixing.suffix.length) {\n // Overwrite the shortest prefix\n shortestPrefixing.prefix = key;\n shortestPrefixing.suffix = suffix;\n }\n }\n }\n }\n // Return the shortest prefix\n if (shortestPrefixing.prefix) {\n return shortestPrefixing.prefix + ':' + shortestPrefixing.suffix;\n }\n return iri;\n }\n}\nexports.JsonLdContextNormalized = JsonLdContextNormalized;\nexports.defaultExpandOptions = {\n allowPrefixForcing: true,\n allowPrefixNonGenDelims: false,\n allowVocabRelativeToBase: true,\n};\n//# sourceMappingURL=JsonLdContextNormalized.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.Util = void 0;\nclass Util {\n /**\n * Check if the given term is a valid compact IRI.\n * Otherwise, it may be an IRI.\n * @param {string} term A term.\n * @return {boolean} If it is a compact IRI.\n */\n static isCompactIri(term) {\n return term.indexOf(':') > 0 && !(term && term[0] === '#');\n }\n /**\n * Get the prefix from the given term.\n * @see https://json-ld.org/spec/latest/json-ld/#compact-iris\n * @param {string} term A term that is an URL or a prefixed URL.\n * @param {IJsonLdContextNormalizedRaw} context A context.\n * @return {string} The prefix or null.\n */\n static getPrefix(term, context) {\n // Do not consider relative IRIs starting with a hash as compact IRIs\n if (term && term[0] === '#') {\n return null;\n }\n const separatorPos = term.indexOf(':');\n if (separatorPos >= 0) {\n // Suffix can not begin with two slashes\n if (term.length > separatorPos + 1\n && term.charAt(separatorPos + 1) === '/'\n && term.charAt(separatorPos + 2) === '/') {\n return null;\n }\n const prefix = term.substr(0, separatorPos);\n // Prefix can not be an underscore (this is a blank node)\n if (prefix === '_') {\n return null;\n }\n // Prefix must match a term in the active context\n if (context[prefix]) {\n return prefix;\n }\n }\n return null;\n }\n /**\n * From a given context entry value, get the string value, or the @id field.\n * @param contextValue A value for a term in a context.\n * @return {string} The id value, or null.\n */\n static getContextValueId(contextValue) {\n if (contextValue === null || typeof contextValue === 'string') {\n return contextValue;\n }\n const id = contextValue['@id'];\n return id ? id : null;\n }\n /**\n * Check if the given simple term definition (string-based value of a context term)\n * should be considered a prefix.\n * @param value A simple term definition value.\n * @param options Options that define the way how expansion must be done.\n */\n static isSimpleTermDefinitionPrefix(value, options) {\n return !Util.isPotentialKeyword(value)\n && (options.allowPrefixNonGenDelims || (typeof value === 'string' && (value[0] === '_' || Util.isPrefixIriEndingWithGenDelim(value))));\n }\n /**\n * Check if the given keyword is of the keyword format \"@\"1*ALPHA.\n * @param {string} keyword A potential keyword.\n * @return {boolean} If the given keyword is of the keyword format.\n */\n static isPotentialKeyword(keyword) {\n return typeof keyword === 'string' && Util.KEYWORD_REGEX.test(keyword);\n }\n /**\n * Check if the given prefix ends with a gen-delim character.\n * @param {string} prefixIri A prefix IRI.\n * @return {boolean} If the given prefix IRI is valid.\n */\n static isPrefixIriEndingWithGenDelim(prefixIri) {\n return Util.ENDS_WITH_GEN_DELIM.test(prefixIri);\n }\n /**\n * Check if the given context value can be a prefix value.\n * @param value A context value.\n * @return {boolean} If it can be a prefix value.\n */\n static isPrefixValue(value) {\n return value && (typeof value === 'string' || (value && typeof value === 'object'));\n }\n /**\n * Check if the given IRI is valid.\n * @param {string} iri A potential IRI.\n * @return {boolean} If the given IRI is valid.\n */\n static isValidIri(iri) {\n return Boolean(iri && Util.IRI_REGEX.test(iri));\n }\n /**\n * Check if the given IRI is valid, this includes the possibility of being a relative IRI.\n * @param {string} iri A potential IRI.\n * @return {boolean} If the given IRI is valid.\n */\n static isValidIriWeak(iri) {\n return !!iri && iri[0] !== ':' && Util.IRI_REGEX_WEAK.test(iri);\n }\n /**\n * Check if the given keyword is a defined according to the JSON-LD specification.\n * @param {string} keyword A potential keyword.\n * @return {boolean} If the given keyword is valid.\n */\n static isValidKeyword(keyword) {\n return Util.VALID_KEYWORDS[keyword];\n }\n /**\n * Check if the given term is protected in the context.\n * @param {IJsonLdContextNormalizedRaw} context A context.\n * @param {string} key A context term.\n * @return {boolean} If the given term has an @protected flag.\n */\n static isTermProtected(context, key) {\n const value = context[key];\n return !(typeof value === 'string') && value && value['@protected'];\n }\n /**\n * Check if the given context has at least one protected term.\n * @param context A context.\n * @return If the context has a protected term.\n */\n static hasProtectedTerms(context) {\n for (const key of Object.keys(context)) {\n if (Util.isTermProtected(context, key)) {\n return true;\n }\n }\n return false;\n }\n /**\n * Check if the given key is an internal reserved keyword.\n * @param key A context key.\n */\n static isReservedInternalKeyword(key) {\n return key.startsWith('@__');\n }\n /**\n * Check if two objects are deepEqual to on another.\n * @param object1 The first object to test.\n * @param object2 The second object to test.\n */\n static deepEqual(object1, object2) {\n const objKeys1 = Object.keys(object1);\n const objKeys2 = Object.keys(object2);\n if (objKeys1.length !== objKeys2.length)\n return false;\n return objKeys1.every((key) => {\n const value1 = object1[key];\n const value2 = object2[key];\n return (value1 === value2) || (value1 !== null &&\n value2 !== null &&\n typeof value1 === \"object\" &&\n typeof value2 === \"object\" &&\n this.deepEqual(value1, value2));\n });\n }\n ;\n}\n// Regex for valid IRIs\nUtil.IRI_REGEX = /^([A-Za-z][A-Za-z0-9+-.]*|_):[^ \"<>{}|\\\\\\[\\]`#]*(#[^#]*)?$/;\n// Weaker regex for valid IRIs, this includes relative IRIs\nUtil.IRI_REGEX_WEAK = /(?::[^:])|\\//;\n// Regex for keyword form\nUtil.KEYWORD_REGEX = /^@[a-z]+$/i;\n// Regex to see if an IRI ends with a gen-delim character (see RFC 3986)\nUtil.ENDS_WITH_GEN_DELIM = /[:/?#\\[\\]@]$/;\n// Regex for language tags\nUtil.REGEX_LANGUAGE_TAG = /^[a-zA-Z]+(-[a-zA-Z0-9]+)*$/;\n// Regex for base directions\nUtil.REGEX_DIRECTION_TAG = /^(ltr)|(rtl)$/;\n// All known valid JSON-LD keywords\n// @see https://www.w3.org/TR/json-ld11/#keywords\nUtil.VALID_KEYWORDS = {\n '@annotation': true,\n '@base': true,\n '@container': true,\n '@context': true,\n '@direction': true,\n '@graph': true,\n '@id': true,\n '@import': true,\n '@included': true,\n '@index': true,\n '@json': true,\n '@language': true,\n '@list': true,\n '@nest': true,\n '@none': true,\n '@prefix': true,\n '@propagate': true,\n '@protected': true,\n '@reverse': true,\n '@set': true,\n '@type': true,\n '@value': true,\n '@version': true,\n '@vocab': true,\n};\n// Keys in the contexts that will not be expanded based on the base IRI\nUtil.EXPAND_KEYS_BLACKLIST = [\n '@base',\n '@vocab',\n '@language',\n '@version',\n '@direction',\n];\n// Keys in the contexts that may not be aliased from\nUtil.ALIAS_DOMAIN_BLACKLIST = [\n '@container',\n '@graph',\n '@id',\n '@index',\n '@list',\n '@nest',\n '@none',\n '@prefix',\n '@reverse',\n '@set',\n '@type',\n '@value',\n '@version',\n];\n// Keys in the contexts that may not be aliased to\nUtil.ALIAS_RANGE_BLACKLIST = [\n '@context',\n '@preserve',\n];\n// All valid @container values\nUtil.CONTAINERS = [\n '@list',\n '@set',\n '@index',\n '@language',\n '@graph',\n '@id',\n '@type',\n];\n// All valid @container values under processing mode 1.0\nUtil.CONTAINERS_1_0 = [\n '@list',\n '@set',\n '@index',\n];\nexports.Util = Util;\n//# sourceMappingURL=Util.js.map","\"use strict\";\nvar __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\n}) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n}));\nvar __exportStar = (this && this.__exportStar) || function(m, exports) {\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\n__exportStar(require(\"./lib/JsonLdParser\"), exports);\n//# sourceMappingURL=index.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.ContextTree = void 0;\n/**\n * A tree structure that holds all contexts,\n * based on their position in the JSON object.\n *\n * Positions are identified by a path of keys.\n */\nclass ContextTree {\n constructor() {\n this.subTrees = {};\n }\n getContext(keys) {\n if (keys.length > 0) {\n const [head, ...tail] = keys;\n const subTree = this.subTrees[head];\n if (subTree) {\n const subContext = subTree.getContext(tail);\n if (subContext) {\n return subContext.then(({ context, depth }) => ({ context, depth: depth + 1 }));\n }\n }\n }\n return this.context ? this.context.then((context) => ({ context, depth: 0 })) : null;\n }\n setContext(keys, context) {\n if (keys.length === 0) {\n this.context = context;\n }\n else {\n const [head, ...tail] = keys;\n let subTree = this.subTrees[head];\n if (!subTree) {\n subTree = this.subTrees[head] = new ContextTree();\n }\n subTree.setContext(tail, context);\n }\n }\n removeContext(path) {\n this.setContext(path, null);\n }\n}\nexports.ContextTree = ContextTree;\n//# sourceMappingURL=ContextTree.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.JsonLdParser = void 0;\n// tslint:disable-next-line:no-var-requires\nconst Parser = require('jsonparse');\nconst jsonld_context_parser_1 = require(\"jsonld-context-parser\");\nconst stream_1 = require(\"stream\");\nconst EntryHandlerArrayValue_1 = require(\"./entryhandler/EntryHandlerArrayValue\");\nconst EntryHandlerContainer_1 = require(\"./entryhandler/EntryHandlerContainer\");\nconst EntryHandlerInvalidFallback_1 = require(\"./entryhandler/EntryHandlerInvalidFallback\");\nconst EntryHandlerPredicate_1 = require(\"./entryhandler/EntryHandlerPredicate\");\nconst EntryHandlerKeywordContext_1 = require(\"./entryhandler/keyword/EntryHandlerKeywordContext\");\nconst EntryHandlerKeywordGraph_1 = require(\"./entryhandler/keyword/EntryHandlerKeywordGraph\");\nconst EntryHandlerKeywordId_1 = require(\"./entryhandler/keyword/EntryHandlerKeywordId\");\nconst EntryHandlerKeywordIncluded_1 = require(\"./entryhandler/keyword/EntryHandlerKeywordIncluded\");\nconst EntryHandlerKeywordNest_1 = require(\"./entryhandler/keyword/EntryHandlerKeywordNest\");\nconst EntryHandlerKeywordType_1 = require(\"./entryhandler/keyword/EntryHandlerKeywordType\");\nconst EntryHandlerKeywordUnknownFallback_1 = require(\"./entryhandler/keyword/EntryHandlerKeywordUnknownFallback\");\nconst EntryHandlerKeywordValue_1 = require(\"./entryhandler/keyword/EntryHandlerKeywordValue\");\nconst ParsingContext_1 = require(\"./ParsingContext\");\nconst Util_1 = require(\"./Util\");\nconst http_link_header_1 = require(\"http-link-header\");\n/**\n * A stream transformer that parses JSON-LD (text) streams to an {@link RDF.Stream}.\n */\nclass JsonLdParser extends stream_1.Transform {\n constructor(options) {\n super({ readableObjectMode: true });\n options = options || {};\n this.options = options;\n this.parsingContext = new ParsingContext_1.ParsingContext(Object.assign({ parser: this }, options));\n this.util = new Util_1.Util({ dataFactory: options.dataFactory, parsingContext: this.parsingContext });\n this.jsonParser = new Parser();\n this.contextJobs = [];\n this.typeJobs = [];\n this.contextAwaitingJobs = [];\n this.lastDepth = 0;\n this.lastKeys = [];\n this.lastOnValueJob = Promise.resolve();\n this.attachJsonParserListeners();\n this.on('end', () => {\n if (typeof this.jsonParser.mode !== 'undefined') {\n this.emit('error', new Error('Unclosed document'));\n }\n });\n }\n /**\n * Construct a JsonLdParser from the given HTTP response.\n *\n * This will throw an error if no valid JSON response is received\n * (application/ld+json, application/json, or something+json).\n *\n * For raw JSON responses, exactly one link header pointing to a JSON-LD context is required.\n *\n * This method is not responsible for handling redirects.\n *\n * @param baseIRI The URI of the received response.\n * @param mediaType The received content type.\n * @param headers Optional HTTP headers.\n * @param options Optional parser options.\n */\n static fromHttpResponse(baseIRI, mediaType, headers, options) {\n let context;\n // Special cases when receiving something else than the JSON-LD media type\n if (mediaType !== 'application/ld+json') {\n // Only accept JSON or JSON extension types\n if (mediaType !== 'application/json' && !mediaType.endsWith('+json')) {\n throw new jsonld_context_parser_1.ErrorCoded(`Unsupported JSON-LD media type ${mediaType}`, jsonld_context_parser_1.ERROR_CODES.LOADING_DOCUMENT_FAILED);\n }\n // We need exactly one JSON-LD context in the link header\n if (headers && headers.has('Link')) {\n headers.forEach((value, key) => {\n if (key === 'link') {\n const linkHeader = http_link_header_1.parse(value);\n for (const link of linkHeader.get('rel', 'http://www.w3.org/ns/json-ld#context')) {\n if (context) {\n throw new jsonld_context_parser_1.ErrorCoded('Multiple JSON-LD context link headers were found on ' + baseIRI, jsonld_context_parser_1.ERROR_CODES.MULTIPLE_CONTEXT_LINK_HEADERS);\n }\n context = link.uri;\n }\n }\n });\n }\n if (!context && !(options === null || options === void 0 ? void 0 : options.ignoreMissingContextLinkHeader)) {\n throw new jsonld_context_parser_1.ErrorCoded(`Missing context link header for media type ${mediaType} on ${baseIRI}`, jsonld_context_parser_1.ERROR_CODES.LOADING_DOCUMENT_FAILED);\n }\n }\n // Check if the streaming profile is present\n let streamingProfile;\n if (headers && headers.has('Content-Type')) {\n const contentType = headers.get('Content-Type');\n const match = /; *profile=([^\"]*)/.exec(contentType);\n if (match && match[1] === 'http://www.w3.org/ns/json-ld#streaming') {\n streamingProfile = true;\n }\n }\n return new JsonLdParser(Object.assign({ baseIRI,\n context,\n streamingProfile }, options ? options : {}));\n }\n /**\n * Parses the given text stream into a quad stream.\n * @param {NodeJS.EventEmitter} stream A text stream.\n * @return {RDF.Stream} A quad stream.\n */\n import(stream) {\n const output = new stream_1.PassThrough({ readableObjectMode: true });\n stream.on('error', (error) => parsed.emit('error', error));\n stream.on('data', (data) => output.push(data));\n stream.on('end', () => output.push(null));\n const parsed = output.pipe(new JsonLdParser(this.options));\n return parsed;\n }\n _transform(chunk, encoding, callback) {\n this.jsonParser.write(chunk);\n this.lastOnValueJob\n .then(() => callback(), (error) => callback(error));\n }\n /**\n * Start a new job for parsing the given value.\n *\n * This will let the first valid {@link IEntryHandler} handle the entry.\n *\n * @param {any[]} keys The stack of keys.\n * @param value The value to parse.\n * @param {number} depth The depth to parse at.\n * @param {boolean} lastDepthCheck If the lastDepth check should be done for buffer draining.\n * @return {Promise} A promise resolving when the job is done.\n */\n async newOnValueJob(keys, value, depth, lastDepthCheck) {\n let flushStacks = true;\n // When we go up the stack, emit all unidentified values\n // We need to do this before the new job, because the new job may require determined values from the flushed jobs.\n if (lastDepthCheck && depth < this.lastDepth) {\n // Check if we had any RDF lists that need to be terminated with an rdf:nil\n const listPointer = this.parsingContext.listPointerStack[this.lastDepth];\n if (listPointer) {\n // Terminate the list if the had at least one value\n if (listPointer.value) {\n this.emit('data', this.util.dataFactory.quad(listPointer.value, this.util.rdfRest, this.util.rdfNil, this.util.getDefaultGraph()));\n }\n // Add the list id to the id stack, so it can be used higher up in the stack\n listPointer.listId.listHead = true;\n this.parsingContext.idStack[listPointer.listRootDepth + 1] = [listPointer.listId];\n this.parsingContext.listPointerStack.splice(this.lastDepth, 1);\n }\n // Flush the buffer for lastDepth\n // If the parent key is a special type of container, postpone flushing until that parent is handled.\n if (await EntryHandlerContainer_1.EntryHandlerContainer.isBufferableContainerHandler(this.parsingContext, this.lastKeys, this.lastDepth)) {\n this.parsingContext.pendingContainerFlushBuffers\n .push({ depth: this.lastDepth, keys: this.lastKeys.slice(0, this.lastKeys.length) });\n flushStacks = false;\n }\n else {\n await this.flushBuffer(this.lastDepth, this.lastKeys);\n }\n }\n const key = await this.util.unaliasKeyword(keys[depth], keys, depth);\n const parentKey = await this.util.unaliasKeywordParent(keys, depth);\n this.parsingContext.emittedStack[depth] = true;\n let handleKey = true;\n // Keywords inside @reverse is not allowed apart from @context\n if (jsonld_context_parser_1.Util.isValidKeyword(key) && parentKey === '@reverse' && key !== '@context') {\n this.emit('error', new jsonld_context_parser_1.ErrorCoded(`Found the @id '${value}' inside an @reverse property`, jsonld_context_parser_1.ERROR_CODES.INVALID_REVERSE_PROPERTY_MAP));\n }\n // Skip further processing if one of the parent nodes are invalid.\n // We use the validationStack to reuse validation results that were produced before with common key stacks.\n let inProperty = false;\n if (this.parsingContext.validationStack.length > 1) {\n inProperty = this.parsingContext.validationStack[this.parsingContext.validationStack.length - 1].property;\n }\n for (let i = Math.max(1, this.parsingContext.validationStack.length - 1); i < keys.length - 1; i++) {\n const validationResult = this.parsingContext.validationStack[i]\n || (this.parsingContext.validationStack[i] = await this.validateKey(keys.slice(0, i + 1), i, inProperty));\n if (!validationResult.valid) {\n this.parsingContext.emittedStack[depth] = false;\n handleKey = false;\n break;\n }\n else if (!inProperty && validationResult.property) {\n inProperty = true;\n }\n }\n // Skip further processing if this node is part of a literal\n if (this.util.isLiteral(depth)) {\n handleKey = false;\n }\n // Get handler\n if (handleKey) {\n for (const entryHandler of JsonLdParser.ENTRY_HANDLERS) {\n const testResult = await entryHandler.test(this.parsingContext, this.util, key, keys, depth);\n if (testResult) {\n // Pass processing over to the handler\n await entryHandler.handle(this.parsingContext, this.util, key, keys, value, depth, testResult);\n // Flag that this depth is processed\n if (entryHandler.isStackProcessor()) {\n this.parsingContext.processingStack[depth] = true;\n }\n break;\n }\n }\n }\n // Validate value indexes on the root.\n if (depth === 0 && Array.isArray(value)) {\n await this.util.validateValueIndexes(value);\n }\n // When we go up the stack, flush the old stack\n if (flushStacks && depth < this.lastDepth) {\n // Reset our stacks\n this.flushStacks(this.lastDepth);\n }\n this.lastDepth = depth;\n this.lastKeys = keys;\n // Clear the keyword cache at this depth, and everything underneath.\n this.parsingContext.unaliasedKeywordCacheStack.splice(depth - 1);\n }\n /**\n * Flush the processing stacks at the given depth.\n * @param {number} depth A depth.\n */\n flushStacks(depth) {\n this.parsingContext.processingStack.splice(depth, 1);\n this.parsingContext.processingType.splice(depth, 1);\n this.parsingContext.emittedStack.splice(depth, 1);\n this.parsingContext.idStack.splice(depth, 1);\n this.parsingContext.graphStack.splice(depth + 1, 1);\n this.parsingContext.graphContainerTermStack.splice(depth, 1);\n this.parsingContext.jsonLiteralStack.splice(depth, 1);\n this.parsingContext.validationStack.splice(depth - 1, 2);\n this.parsingContext.literalStack.splice(depth, this.parsingContext.literalStack.length - depth);\n // TODO: just like the literal stack, splice all other stack until the end as well?\n }\n /**\n * Flush buffers for the given depth.\n *\n * This should be called after the last entry at a given depth was processed.\n *\n * @param {number} depth A depth.\n * @param {any[]} keys A stack of keys.\n * @return {Promise} A promise resolving if flushing is done.\n */\n async flushBuffer(depth, keys) {\n let subjects = this.parsingContext.idStack[depth];\n if (!subjects) {\n subjects = this.parsingContext.idStack[depth] = [this.util.dataFactory.blankNode()];\n }\n // Flush values at this level\n const valueBuffer = this.parsingContext.unidentifiedValuesBuffer[depth];\n if (valueBuffer) {\n for (const subject of subjects) {\n const depthOffsetGraph = await this.util.getDepthOffsetGraph(depth, keys);\n const graphs = (this.parsingContext.graphStack[depth] || depthOffsetGraph >= 0)\n ? this.parsingContext.idStack[depth - depthOffsetGraph - 1]\n : [await this.util.getGraphContainerValue(keys, depth)];\n if (graphs) {\n for (const graph of graphs) {\n // Flush values to stream if the graph @id is known\n this.parsingContext.emittedStack[depth] = true;\n for (const bufferedValue of valueBuffer) {\n if (bufferedValue.reverse) {\n this.parsingContext.emitQuad(depth, this.util.dataFactory.quad(bufferedValue.object, bufferedValue.predicate, subject, graph));\n }\n else {\n this.parsingContext.emitQuad(depth, this.util.dataFactory.quad(subject, bufferedValue.predicate, bufferedValue.object, graph));\n }\n }\n }\n }\n else {\n // Place the values in the graphs buffer if the graph @id is not yet known\n const subGraphBuffer = this.parsingContext.getUnidentifiedGraphBufferSafe(depth - await this.util.getDepthOffsetGraph(depth, keys) - 1);\n for (const bufferedValue of valueBuffer) {\n if (bufferedValue.reverse) {\n subGraphBuffer.push({\n object: subject,\n predicate: bufferedValue.predicate,\n subject: bufferedValue.object,\n });\n }\n else {\n subGraphBuffer.push({\n object: bufferedValue.object,\n predicate: bufferedValue.predicate,\n subject,\n });\n }\n }\n }\n }\n this.parsingContext.unidentifiedValuesBuffer.splice(depth, 1);\n this.parsingContext.literalStack.splice(depth, 1);\n this.parsingContext.jsonLiteralStack.splice(depth, 1);\n }\n // Flush graphs at this level\n const graphBuffer = this.parsingContext.unidentifiedGraphsBuffer[depth];\n if (graphBuffer) {\n for (const subject of subjects) {\n // A @graph statement at the root without @id relates to the default graph,\n // unless there are top-level properties,\n // others relate to blank nodes.\n const graph = depth === 1 && subject.termType === 'BlankNode'\n && !this.parsingContext.topLevelProperties ? this.util.getDefaultGraph() : subject;\n this.parsingContext.emittedStack[depth] = true;\n for (const bufferedValue of graphBuffer) {\n this.parsingContext.emitQuad(depth, this.util.dataFactory.quad(bufferedValue.subject, bufferedValue.predicate, bufferedValue.object, graph));\n }\n }\n this.parsingContext.unidentifiedGraphsBuffer.splice(depth, 1);\n }\n }\n /**\n * Check if at least one {@link IEntryHandler} validates the entry to true.\n * @param {any[]} keys A stack of keys.\n * @param {number} depth A depth.\n * @param {boolean} inProperty If the current depth is part of a valid property node.\n * @return {Promise<{ valid: boolean, property: boolean }>} A promise resolving to true or false.\n */\n async validateKey(keys, depth, inProperty) {\n for (const entryHandler of JsonLdParser.ENTRY_HANDLERS) {\n if (await entryHandler.validate(this.parsingContext, this.util, keys, depth, inProperty)) {\n return { valid: true, property: inProperty || entryHandler.isPropertyHandler() };\n }\n }\n return { valid: false, property: false };\n }\n /**\n * Attach all required listeners to the JSON parser.\n *\n * This should only be called once.\n */\n attachJsonParserListeners() {\n // Listen to json parser events\n this.jsonParser.onValue = (value) => {\n const depth = this.jsonParser.stack.length;\n const keys = (new Array(depth + 1).fill(0)).map((v, i) => {\n return i === depth ? this.jsonParser.key : this.jsonParser.stack[i].key;\n });\n if (!this.isParsingContextInner(depth)) { // Don't parse inner nodes inside @context\n const valueJobCb = () => this.newOnValueJob(keys, value, depth, true);\n if (!this.parsingContext.streamingProfile\n && !this.parsingContext.contextTree.getContext(keys.slice(0, -1))) {\n // If an out-of-order context is allowed,\n // we have to buffer everything.\n // We store jobs for @context's and @type's separately,\n // because at the end, we have to process them first.\n // We also handle @type because these *could* introduce a type-scoped context.\n if (keys[depth] === '@context') {\n let jobs = this.contextJobs[depth];\n if (!jobs) {\n jobs = this.contextJobs[depth] = [];\n }\n jobs.push(valueJobCb);\n }\n else if (keys[depth] === '@type'\n || typeof keys[depth] === 'number' && keys[depth - 1] === '@type') { // Also capture @type with array values\n // Remove @type from keys, because we want it to apply to parent later on\n this.typeJobs.push({ job: valueJobCb, keys: keys.slice(0, keys.length - 1) });\n }\n else {\n this.contextAwaitingJobs.push({ job: valueJobCb, keys });\n }\n }\n else {\n // Make sure that our value jobs are chained synchronously\n this.lastOnValueJob = this.lastOnValueJob.then(valueJobCb);\n }\n // Execute all buffered jobs on deeper levels\n if (!this.parsingContext.streamingProfile && depth === 0) {\n this.lastOnValueJob = this.lastOnValueJob\n .then(() => this.executeBufferedJobs());\n }\n }\n };\n this.jsonParser.onError = (error) => {\n this.emit('error', error);\n };\n }\n /**\n * Check if the parser is currently parsing an element that is part of an @context entry.\n * @param {number} depth A depth.\n * @return {boolean} A boolean.\n */\n isParsingContextInner(depth) {\n for (let i = depth; i > 0; i--) {\n if (this.jsonParser.stack[i - 1].key === '@context') {\n return true;\n }\n }\n return false;\n }\n /**\n * Execute all buffered jobs.\n * @return {Promise} A promise resolving if all jobs are finished.\n */\n async executeBufferedJobs() {\n // Handle context jobs\n for (const jobs of this.contextJobs) {\n if (jobs) {\n for (const job of jobs) {\n await job();\n }\n }\n }\n // Clear the keyword cache.\n this.parsingContext.unaliasedKeywordCacheStack.splice(0);\n // Handle non-context jobs\n for (const job of this.contextAwaitingJobs) {\n // Check if we have a type (with possible type-scoped context) that should be handled before.\n // We check all possible parent nodes for the current job, from root to leaves.\n if (this.typeJobs.length > 0) {\n // First collect all applicable type jobs\n const applicableTypeJobs = [];\n const applicableTypeJobIds = [];\n for (let i = 0; i < this.typeJobs.length; i++) {\n const typeJob = this.typeJobs[i];\n if (Util_1.Util.isPrefixArray(typeJob.keys, job.keys)) {\n applicableTypeJobs.push(typeJob);\n applicableTypeJobIds.push(i);\n }\n }\n // Next, sort the jobs from short to long key length (to ensure types higher up in the tree to be handled first)\n const sortedTypeJobs = applicableTypeJobs.sort((job1, job2) => job1.keys.length - job2.keys.length);\n // Finally, execute the jobs in order\n for (const typeJob of sortedTypeJobs) {\n await typeJob.job();\n }\n // Remove the executed type jobs\n // Sort first, so we can efficiently splice\n const sortedApplicableTypeJobIds = applicableTypeJobIds.sort().reverse();\n for (const jobId of sortedApplicableTypeJobIds) {\n this.typeJobs.splice(jobId, 1);\n }\n }\n await job.job();\n }\n }\n}\nexports.JsonLdParser = JsonLdParser;\nJsonLdParser.DEFAULT_PROCESSING_MODE = '1.1';\nJsonLdParser.ENTRY_HANDLERS = [\n new EntryHandlerArrayValue_1.EntryHandlerArrayValue(),\n new EntryHandlerKeywordContext_1.EntryHandlerKeywordContext(),\n new EntryHandlerKeywordId_1.EntryHandlerKeywordId(),\n new EntryHandlerKeywordIncluded_1.EntryHandlerKeywordIncluded(),\n new EntryHandlerKeywordGraph_1.EntryHandlerKeywordGraph(),\n new EntryHandlerKeywordNest_1.EntryHandlerKeywordNest(),\n new EntryHandlerKeywordType_1.EntryHandlerKeywordType(),\n new EntryHandlerKeywordValue_1.EntryHandlerKeywordValue(),\n new EntryHandlerContainer_1.EntryHandlerContainer(),\n new EntryHandlerKeywordUnknownFallback_1.EntryHandlerKeywordUnknownFallback(),\n new EntryHandlerPredicate_1.EntryHandlerPredicate(),\n new EntryHandlerInvalidFallback_1.EntryHandlerInvalidFallback(),\n];\n//# sourceMappingURL=JsonLdParser.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.ParsingContext = void 0;\nconst jsonld_context_parser_1 = require(\"jsonld-context-parser\");\nconst ErrorCoded_1 = require(\"jsonld-context-parser/lib/ErrorCoded\");\nconst ContextTree_1 = require(\"./ContextTree\");\nconst JsonLdParser_1 = require(\"./JsonLdParser\");\n/**\n * Data holder for parsing information.\n */\nclass ParsingContext {\n constructor(options) {\n // Initialize settings\n this.contextParser = new jsonld_context_parser_1.ContextParser({ documentLoader: options.documentLoader, skipValidation: options.skipContextValidation });\n this.streamingProfile = !!options.streamingProfile;\n this.baseIRI = options.baseIRI;\n this.produceGeneralizedRdf = !!options.produceGeneralizedRdf;\n this.allowSubjectList = !!options.allowSubjectList;\n this.processingMode = options.processingMode || JsonLdParser_1.JsonLdParser.DEFAULT_PROCESSING_MODE;\n this.strictValues = !!options.strictValues;\n this.validateValueIndexes = !!options.validateValueIndexes;\n this.defaultGraph = options.defaultGraph;\n this.rdfDirection = options.rdfDirection;\n this.normalizeLanguageTags = options.normalizeLanguageTags;\n this.streamingProfileAllowOutOfOrderPlainType = options.streamingProfileAllowOutOfOrderPlainType;\n this.topLevelProperties = false;\n this.activeProcessingMode = parseFloat(this.processingMode);\n // Initialize stacks\n this.processingStack = [];\n this.processingType = [];\n this.emittedStack = [];\n this.idStack = [];\n this.graphStack = [];\n this.graphContainerTermStack = [];\n this.listPointerStack = [];\n this.contextTree = new ContextTree_1.ContextTree();\n this.literalStack = [];\n this.validationStack = [];\n this.unaliasedKeywordCacheStack = [];\n this.jsonLiteralStack = [];\n this.unidentifiedValuesBuffer = [];\n this.unidentifiedGraphsBuffer = [];\n this.pendingContainerFlushBuffers = [];\n this.parser = options.parser;\n if (options.context) {\n this.rootContext = this.parseContext(options.context);\n this.rootContext.then((context) => this.validateContext(context));\n }\n else {\n this.rootContext = Promise.resolve(new jsonld_context_parser_1.JsonLdContextNormalized(this.baseIRI ? { '@base': this.baseIRI, '@__baseDocument': true } : {}));\n }\n }\n /**\n * Parse the given context with the configured options.\n * @param {JsonLdContext} context A context to parse.\n * @param {JsonLdContextNormalized} parentContext An optional parent context.\n * @param {boolean} ignoreProtection If @protected term checks should be ignored.\n * @return {Promise} A promise resolving to the parsed context.\n */\n async parseContext(context, parentContext, ignoreProtection) {\n return this.contextParser.parse(context, {\n baseIRI: this.baseIRI,\n ignoreProtection,\n normalizeLanguageTags: this.normalizeLanguageTags,\n parentContext,\n processingMode: this.activeProcessingMode,\n });\n }\n /**\n * Check if the given context is valid.\n * If not, an error will be thrown.\n * @param {JsonLdContextNormalized} context A context.\n */\n validateContext(context) {\n const activeVersion = context.getContextRaw()['@version'];\n if (activeVersion) {\n if (this.activeProcessingMode && activeVersion > this.activeProcessingMode) {\n throw new ErrorCoded_1.ErrorCoded(`Unsupported JSON-LD version '${activeVersion}' under active processing mode ${this.activeProcessingMode}.`, ErrorCoded_1.ERROR_CODES.PROCESSING_MODE_CONFLICT);\n }\n else {\n if (this.activeProcessingMode && activeVersion < this.activeProcessingMode) {\n throw new ErrorCoded_1.ErrorCoded(`Invalid JSON-LD version ${activeVersion} under active processing mode ${this.activeProcessingMode}.`, ErrorCoded_1.ERROR_CODES.INVALID_VERSION_VALUE);\n }\n this.activeProcessingMode = activeVersion;\n }\n }\n }\n /**\n * Get the context at the given path.\n * @param {keys} keys The path of keys to get the context at.\n * @param {number} offset The path offset, defaults to 1.\n * @return {Promise} A promise resolving to a context.\n */\n async getContext(keys, offset = 1) {\n const keysOriginal = keys;\n // Ignore array keys at the end\n while (typeof keys[keys.length - 1] === 'number') {\n keys = keys.slice(0, keys.length - 1);\n }\n // Handle offset on keys\n if (offset) {\n keys = keys.slice(0, -offset);\n }\n // Determine the closest context\n const contextData = await this.getContextPropagationAware(keys);\n const context = contextData.context;\n // Process property-scoped contexts (high-to-low)\n let contextRaw = context.getContextRaw();\n for (let i = contextData.depth; i < keysOriginal.length - offset; i++) {\n const key = keysOriginal[i];\n const contextKeyEntry = contextRaw[key];\n if (contextKeyEntry && typeof contextKeyEntry === 'object' && '@context' in contextKeyEntry) {\n const scopedContext = (await this.parseContext(contextKeyEntry, contextRaw, true)).getContextRaw();\n const propagate = !(key in scopedContext)\n || scopedContext[key]['@context']['@propagate']; // Propagation is true by default\n if (propagate !== false || i === keysOriginal.length - 1 - offset) {\n contextRaw = scopedContext;\n // Clean up final context\n delete contextRaw['@propagate'];\n contextRaw[key] = Object.assign({}, contextRaw[key]);\n if ('@id' in contextKeyEntry) {\n contextRaw[key]['@id'] = contextKeyEntry['@id'];\n }\n delete contextRaw[key]['@context'];\n if (propagate !== false) {\n this.contextTree.setContext(keysOriginal.slice(0, i + offset), Promise.resolve(new jsonld_context_parser_1.JsonLdContextNormalized(contextRaw)));\n }\n }\n }\n }\n return new jsonld_context_parser_1.JsonLdContextNormalized(contextRaw);\n }\n /**\n * Get the context at the given path.\n * Non-propagating contexts will be skipped,\n * unless the context at that exact depth is retrieved.\n *\n * This ONLY takes into account context propagation logic,\n * so this should usually not be called directly,\n * call {@link #getContext} instead.\n *\n * @param keys The path of keys to get the context at.\n * @return {Promise<{ context: JsonLdContextNormalized, depth: number }>} A context and its depth.\n */\n async getContextPropagationAware(keys) {\n const originalDepth = keys.length;\n let contextData = null;\n let hasApplicablePropertyScopedContext;\n do {\n hasApplicablePropertyScopedContext = false;\n if (contextData && '@__propagateFallback' in contextData.context.getContextRaw()) {\n // If a propagation fallback context has been set,\n // fallback to that context and retry for the same depth.\n contextData.context = new jsonld_context_parser_1.JsonLdContextNormalized(contextData.context.getContextRaw()['@__propagateFallback']);\n }\n else {\n if (contextData) {\n // If we had a previous iteration, jump to the parent of context depth.\n // We must do this because once we get here, last context had propagation disabled,\n // so we check its first parent instead.\n keys = keys.slice(0, contextData.depth - 1);\n }\n contextData = await this.contextTree.getContext(keys) || { context: await this.rootContext, depth: 0 };\n }\n // Allow non-propagating contexts to propagate one level deeper\n // if it defines a property-scoped context that is applicable for the current key.\n // @see https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012\n const lastKey = keys[keys.length - 1];\n if (lastKey in contextData.context.getContextRaw()) {\n const lastKeyValue = contextData.context.getContextRaw()[lastKey];\n if (lastKeyValue && typeof lastKeyValue === 'object' && '@context' in lastKeyValue) {\n hasApplicablePropertyScopedContext = true;\n }\n }\n } while (contextData.depth > 0 // Root context has a special case\n && contextData.context.getContextRaw()['@propagate'] === false // Stop loop if propagation is true\n && contextData.depth !== originalDepth // Stop loop if requesting exact depth of non-propagating\n && !hasApplicablePropertyScopedContext);\n // Special case for root context that does not allow propagation.\n // Fallback to empty context in that case.\n if (contextData.depth === 0\n && contextData.context.getContextRaw()['@propagate'] === false\n && contextData.depth !== originalDepth) {\n contextData.context = new jsonld_context_parser_1.JsonLdContextNormalized({});\n }\n return contextData;\n }\n /**\n * Start a new job for parsing the given value.\n * @param {any[]} keys The stack of keys.\n * @param value The value to parse.\n * @param {number} depth The depth to parse at.\n * @param {boolean} lastDepthCheck If the lastDepth check should be done for buffer draining.\n * @return {Promise} A promise resolving when the job is done.\n */\n async newOnValueJob(keys, value, depth, lastDepthCheck) {\n await this.parser.newOnValueJob(keys, value, depth, lastDepthCheck);\n }\n /**\n * Flush the pending container flush buffers\n * @return {boolean} If any pending buffers were flushed.\n */\n async handlePendingContainerFlushBuffers() {\n if (this.pendingContainerFlushBuffers.length > 0) {\n for (const pendingFlushBuffer of this.pendingContainerFlushBuffers) {\n await this.parser.flushBuffer(pendingFlushBuffer.depth, pendingFlushBuffer.keys);\n this.parser.flushStacks(pendingFlushBuffer.depth);\n }\n this.pendingContainerFlushBuffers.splice(0, this.pendingContainerFlushBuffers.length);\n return true;\n }\n else {\n return false;\n }\n }\n /**\n * Emit the given quad into the output stream.\n * @param {number} depth The depth the quad was generated at.\n * @param {Quad} quad A quad to emit.\n */\n emitQuad(depth, quad) {\n if (depth === 1) {\n this.topLevelProperties = true;\n }\n this.parser.push(quad);\n }\n /**\n * Emit the given error into the output stream.\n * @param {Error} error An error to emit.\n */\n emitError(error) {\n this.parser.emit('error', error);\n }\n /**\n * Emit the given context into the output stream under the 'context' event.\n * @param {JsonLdContext} context A context to emit.\n */\n emitContext(context) {\n this.parser.emit('context', context);\n }\n /**\n * Safely get or create the depth value of {@link ParsingContext.unidentifiedValuesBuffer}.\n * @param {number} depth A depth.\n * @return {{predicate: Term; object: Term; reverse: boolean}[]} An element of\n * {@link ParsingContext.unidentifiedValuesBuffer}.\n */\n getUnidentifiedValueBufferSafe(depth) {\n let buffer = this.unidentifiedValuesBuffer[depth];\n if (!buffer) {\n buffer = [];\n this.unidentifiedValuesBuffer[depth] = buffer;\n }\n return buffer;\n }\n /**\n * Safely get or create the depth value of {@link ParsingContext.unidentifiedGraphsBuffer}.\n * @param {number} depth A depth.\n * @return {{predicate: Term; object: Term; reverse: boolean}[]} An element of\n * {@link ParsingContext.unidentifiedGraphsBuffer}.\n */\n getUnidentifiedGraphBufferSafe(depth) {\n let buffer = this.unidentifiedGraphsBuffer[depth];\n if (!buffer) {\n buffer = [];\n this.unidentifiedGraphsBuffer[depth] = buffer;\n }\n return buffer;\n }\n /**\n * @return IExpandOptions The expand options for the active processing mode.\n */\n getExpandOptions() {\n return ParsingContext.EXPAND_OPTIONS[this.activeProcessingMode];\n }\n /**\n * Shift the stack at the given offset to the given depth.\n *\n * This will override anything in the stack at `depth`,\n * and this will remove anything at `depth + depthOffset`\n *\n * @param depth The target depth.\n * @param depthOffset The origin depth, relative to `depth`.\n */\n shiftStack(depth, depthOffset) {\n // Copy the id stack value up one level so that the next job can access the id.\n const deeperIdStack = this.idStack[depth + depthOffset];\n if (deeperIdStack) {\n this.idStack[depth] = deeperIdStack;\n this.emittedStack[depth] = true;\n delete this.idStack[depth + depthOffset];\n }\n // Shorten key stack\n if (this.pendingContainerFlushBuffers.length) {\n for (const buffer of this.pendingContainerFlushBuffers) {\n if (buffer.depth >= depth + depthOffset) {\n buffer.depth -= depthOffset;\n buffer.keys.splice(depth, depthOffset);\n }\n }\n }\n // Splice stacks\n if (this.unidentifiedValuesBuffer[depth + depthOffset]) {\n this.unidentifiedValuesBuffer[depth] = this.unidentifiedValuesBuffer[depth + depthOffset];\n delete this.unidentifiedValuesBuffer[depth + depthOffset];\n }\n // TODO: also do the same for other stacks\n }\n}\nexports.ParsingContext = ParsingContext;\nParsingContext.EXPAND_OPTIONS = {\n 1.0: {\n allowPrefixForcing: false,\n allowPrefixNonGenDelims: false,\n allowVocabRelativeToBase: false,\n },\n 1.1: {\n allowPrefixForcing: true,\n allowPrefixNonGenDelims: false,\n allowVocabRelativeToBase: true,\n },\n};\n//# sourceMappingURL=ParsingContext.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.Util = void 0;\nconst jsonld_context_parser_1 = require(\"jsonld-context-parser\");\nconst rdf_data_factory_1 = require(\"rdf-data-factory\");\nconst EntryHandlerContainer_1 = require(\"./entryhandler/EntryHandlerContainer\");\n// tslint:disable-next-line:no-var-requires\nconst canonicalizeJson = require('canonicalize');\n/**\n * Utility functions and methods.\n */\nclass Util {\n constructor(options) {\n this.parsingContext = options.parsingContext;\n this.dataFactory = options.dataFactory || new rdf_data_factory_1.DataFactory();\n this.rdfFirst = this.dataFactory.namedNode(Util.RDF + 'first');\n this.rdfRest = this.dataFactory.namedNode(Util.RDF + 'rest');\n this.rdfNil = this.dataFactory.namedNode(Util.RDF + 'nil');\n this.rdfType = this.dataFactory.namedNode(Util.RDF + 'type');\n this.rdfJson = this.dataFactory.namedNode(Util.RDF + 'JSON');\n }\n /**\n * Helper function to get the value of a context entry,\n * or fallback to a certain value.\n * @param {JsonLdContextNormalized} context A JSON-LD context.\n * @param {string} contextKey A pre-defined JSON-LD key in context entries.\n * @param {string} key A context entry key.\n * @param {string} fallback A fallback value for when the given contextKey\n * could not be found in the value with the given key.\n * @return {string} The value of the given contextKey in the entry behind key in the given context,\n * or the given fallback value.\n */\n static getContextValue(context, contextKey, key, fallback) {\n const entry = context.getContextRaw()[key];\n if (!entry) {\n return fallback;\n }\n const type = entry[contextKey];\n return type === undefined ? fallback : type;\n }\n /**\n * Get the container type of the given key in the context.\n *\n * Should any context-scoping bugs should occur related to this in the future,\n * it may be required to increase the offset from the depth at which the context is retrieved by one (to 2).\n * This is because containers act 2 levels deep.\n *\n * @param {JsonLdContextNormalized} context A JSON-LD context.\n * @param {string} key A context entry key.\n * @return {string} The container type.\n */\n static getContextValueContainer(context, key) {\n return Util.getContextValue(context, '@container', key, { '@set': true });\n }\n /**\n * Get the value type of the given key in the context.\n * @param {JsonLdContextNormalized} context A JSON-LD context.\n * @param {string} key A context entry key.\n * @return {string} The node type.\n */\n static getContextValueType(context, key) {\n const valueType = Util.getContextValue(context, '@type', key, null);\n if (valueType === '@none') {\n return null;\n }\n return valueType;\n }\n /**\n * Get the language of the given key in the context.\n * @param {JsonLdContextNormalized} context A JSON-LD context.\n * @param {string} key A context entry key.\n * @return {string} The node type.\n */\n static getContextValueLanguage(context, key) {\n return Util.getContextValue(context, '@language', key, context.getContextRaw()['@language'] || null);\n }\n /**\n * Get the direction of the given key in the context.\n * @param {JsonLdContextNormalized} context A JSON-LD context.\n * @param {string} key A context entry key.\n * @return {string} The node type.\n */\n static getContextValueDirection(context, key) {\n return Util.getContextValue(context, '@direction', key, context.getContextRaw()['@direction'] || null);\n }\n /**\n * Check if the given key in the context is a reversed property.\n * @param {JsonLdContextNormalized} context A JSON-LD context.\n * @param {string} key A context entry key.\n * @return {boolean} If the context value has a @reverse key.\n */\n static isContextValueReverse(context, key) {\n return !!Util.getContextValue(context, '@reverse', key, null);\n }\n /**\n * Get the @index of the given key in the context.\n * @param {JsonLdContextNormalized} context A JSON-LD context.\n * @param {string} key A context entry key.\n * @return {string} The index.\n */\n static getContextValueIndex(context, key) {\n return Util.getContextValue(context, '@index', key, context.getContextRaw()['@index'] || null);\n }\n /**\n * Check if the given key refers to a reversed property.\n * @param {JsonLdContextNormalized} context A JSON-LD context.\n * @param {string} key The property key.\n * @param {string} parentKey The parent key.\n * @return {boolean} If the property must be reversed.\n */\n static isPropertyReverse(context, key, parentKey) {\n // '!==' is needed because reversed properties in a @reverse container should cancel each other out.\n return parentKey === '@reverse' !== Util.isContextValueReverse(context, key);\n }\n /**\n * Check if the given IRI is valid.\n * @param {string} iri A potential IRI.\n * @return {boolean} If the given IRI is valid.\n */\n static isValidIri(iri) {\n return iri !== null && jsonld_context_parser_1.Util.isValidIri(iri);\n }\n /**\n * Check if the given first array (needle) is a prefix of the given second array (haystack).\n * @param needle An array to check if it is a prefix.\n * @param haystack An array to look in.\n */\n static isPrefixArray(needle, haystack) {\n if (needle.length > haystack.length) {\n return false;\n }\n for (let i = 0; i < needle.length; i++) {\n if (needle[i] !== haystack[i]) {\n return false;\n }\n }\n return true;\n }\n /**\n * Make sure that @id-@index pairs are equal over all array values.\n * Reject otherwise.\n * @param {any[]} value An array value.\n * @return {Promise} A promise rejecting if conflicts are present.\n */\n async validateValueIndexes(value) {\n if (this.parsingContext.validateValueIndexes) {\n const indexHashes = {};\n for (const entry of value) {\n if (entry && typeof entry === 'object') {\n const id = entry['@id'];\n const index = entry['@index'];\n if (id && index) {\n const existingIndexValue = indexHashes[id];\n if (existingIndexValue && existingIndexValue !== index) {\n throw new jsonld_context_parser_1.ErrorCoded(`Conflicting @index value for ${id}`, jsonld_context_parser_1.ERROR_CODES.CONFLICTING_INDEXES);\n }\n indexHashes[id] = index;\n }\n }\n }\n }\n }\n /**\n * Convert a given JSON value to an RDF term.\n * @param {JsonLdContextNormalized} context A JSON-LD context.\n * @param {string} key The current JSON key.\n * @param value A JSON value.\n * @param {number} depth The depth the value is at.\n * @param {string[]} keys The path of keys.\n * @return {Promise} An RDF term array.\n */\n async valueToTerm(context, key, value, depth, keys) {\n // Skip further processing if we have an @type: @json\n if (Util.getContextValueType(context, key) === '@json') {\n return [this.dataFactory.literal(this.valueToJsonString(value), this.rdfJson)];\n }\n const type = typeof value;\n switch (type) {\n case 'object':\n // Skip if we have a null or undefined object\n if (value === null || value === undefined) {\n return [];\n }\n // Special case for arrays\n if (Array.isArray(value)) {\n // We handle arrays at value level so we can emit earlier, so this is handled already when we get here.\n // Empty context-based lists are emitted at this place, because our streaming algorithm doesn't detect those.\n if ('@list' in Util.getContextValueContainer(context, key)) {\n if (value.length === 0) {\n return [this.rdfNil];\n }\n else {\n return this.parsingContext.idStack[depth + 1] || [];\n }\n }\n await this.validateValueIndexes(value);\n return [];\n }\n // Handle property-scoped contexts\n context = await this.getContextSelfOrPropertyScoped(context, key);\n // Handle local context in the value\n if ('@context' in value) {\n context = await this.parsingContext.parseContext(value['@context'], (await this.parsingContext.getContext(keys, 0)).getContextRaw());\n }\n // In all other cases, we have a hash\n value = await this.unaliasKeywords(value, keys, depth, context); // Un-alias potential keywords in this hash\n if ('@value' in value) {\n let val;\n let valueLanguage;\n let valueDirection;\n let valueType;\n let valueIndex; // We don't use the index, but we need to check its type for spec-compliance\n for (key in value) {\n const subValue = value[key];\n switch (key) {\n case '@value':\n val = subValue;\n break;\n case '@language':\n valueLanguage = subValue;\n break;\n case '@direction':\n valueDirection = subValue;\n break;\n case '@type':\n valueType = subValue;\n break;\n case '@index':\n valueIndex = subValue;\n break;\n default:\n throw new jsonld_context_parser_1.ErrorCoded(`Unknown value entry '${key}' in @value: ${JSON.stringify(value)}`, jsonld_context_parser_1.ERROR_CODES.INVALID_VALUE_OBJECT);\n }\n }\n // Skip further processing if we have an @type: @json\n if (await this.unaliasKeyword(valueType, keys, depth, true, context) === '@json') {\n return [this.dataFactory.literal(this.valueToJsonString(val), this.rdfJson)];\n }\n // Validate @value\n if (val === null) {\n return [];\n }\n if (typeof val === 'object') {\n throw new jsonld_context_parser_1.ErrorCoded(`The value of an '@value' can not be an object, got '${JSON.stringify(val)}'`, jsonld_context_parser_1.ERROR_CODES.INVALID_VALUE_OBJECT_VALUE);\n }\n // Validate @index\n if (this.parsingContext.validateValueIndexes && valueIndex && typeof valueIndex !== 'string') {\n throw new jsonld_context_parser_1.ErrorCoded(`The value of an '@index' must be a string, got '${JSON.stringify(valueIndex)}'`, jsonld_context_parser_1.ERROR_CODES.INVALID_INDEX_VALUE);\n }\n // Validate @language and @direction\n if (valueLanguage) {\n if (typeof val !== 'string') {\n throw new jsonld_context_parser_1.ErrorCoded(`When an '@language' is set, the value of '@value' must be a string, got '${JSON.stringify(val)}'`, jsonld_context_parser_1.ERROR_CODES.INVALID_LANGUAGE_TAGGED_VALUE);\n }\n if (!jsonld_context_parser_1.ContextParser.validateLanguage(valueLanguage, this.parsingContext.strictValues, jsonld_context_parser_1.ERROR_CODES.INVALID_LANGUAGE_TAGGED_STRING)) {\n return [];\n }\n // Language tags are always normalized to lowercase in 1.0.\n if (this.parsingContext.normalizeLanguageTags || this.parsingContext.activeProcessingMode === 1.0) {\n valueLanguage = valueLanguage.toLowerCase();\n }\n }\n if (valueDirection) {\n if (typeof val !== 'string') {\n throw new Error(`When an '@direction' is set, the value of '@value' must be a string, got '${JSON.stringify(val)}'`);\n }\n if (!jsonld_context_parser_1.ContextParser.validateDirection(valueDirection, this.parsingContext.strictValues)) {\n return [];\n }\n }\n // Check @language and @direction\n if (valueLanguage && valueDirection && this.parsingContext.rdfDirection) {\n if (valueType) {\n throw new jsonld_context_parser_1.ErrorCoded(`Can not have '@language', '@direction' and '@type' in a value: '${JSON\n .stringify(value)}'`, jsonld_context_parser_1.ERROR_CODES.INVALID_VALUE_OBJECT);\n }\n return this.nullableTermToArray(this\n .createLanguageDirectionLiteral(depth, val, valueLanguage, valueDirection));\n }\n else if (valueLanguage) { // Check @language\n if (valueType) {\n throw new jsonld_context_parser_1.ErrorCoded(`Can not have both '@language' and '@type' in a value: '${JSON.stringify(value)}'`, jsonld_context_parser_1.ERROR_CODES.INVALID_VALUE_OBJECT);\n }\n return [this.dataFactory.literal(val, valueLanguage)];\n }\n else if (valueDirection && this.parsingContext.rdfDirection) { // Check @direction\n if (valueType) {\n throw new jsonld_context_parser_1.ErrorCoded(`Can not have both '@direction' and '@type' in a value: '${JSON.stringify(value)}'`, jsonld_context_parser_1.ERROR_CODES.INVALID_VALUE_OBJECT);\n }\n return this.nullableTermToArray(this\n .createLanguageDirectionLiteral(depth, val, valueLanguage, valueDirection));\n }\n else if (valueType) { // Validate @type\n if (typeof valueType !== 'string') {\n throw new jsonld_context_parser_1.ErrorCoded(`The value of an '@type' must be a string, got '${JSON.stringify(valueType)}'`, jsonld_context_parser_1.ERROR_CODES.INVALID_TYPED_VALUE);\n }\n const typeTerm = this.createVocabOrBaseTerm(context, valueType);\n if (!typeTerm) {\n throw new jsonld_context_parser_1.ErrorCoded(`Invalid '@type' value, got '${JSON.stringify(valueType)}'`, jsonld_context_parser_1.ERROR_CODES.INVALID_TYPED_VALUE);\n }\n if (typeTerm.termType !== 'NamedNode') {\n throw new jsonld_context_parser_1.ErrorCoded(`Illegal value type (${typeTerm.termType}): ${valueType}`, jsonld_context_parser_1.ERROR_CODES.INVALID_TYPED_VALUE);\n }\n return [this.dataFactory.literal(val, typeTerm)];\n }\n // We don't pass the context, because context-based things like @language should be ignored\n return await this.valueToTerm(new jsonld_context_parser_1.JsonLdContextNormalized({}), key, val, depth, keys);\n }\n else if ('@set' in value) {\n // No other entries are allow in this value\n if (Object.keys(value).length > 1) {\n throw new jsonld_context_parser_1.ErrorCoded(`Found illegal neighbouring entries next to @set for key: '${key}'`, jsonld_context_parser_1.ERROR_CODES.INVALID_SET_OR_LIST_OBJECT);\n }\n // No need to do anything here, this is handled at the deeper level.\n return [];\n }\n else if ('@list' in value) {\n // No other entries are allowed in this value\n if (Object.keys(value).length > 1) {\n throw new jsonld_context_parser_1.ErrorCoded(`Found illegal neighbouring entries next to @list for key: '${key}'`, jsonld_context_parser_1.ERROR_CODES.INVALID_SET_OR_LIST_OBJECT);\n }\n const listValue = value[\"@list\"];\n // We handle lists at value level so we can emit earlier, so this is handled already when we get here.\n // Empty anonymous lists are emitted at this place, because our streaming algorithm doesn't detect those.\n if (Array.isArray(listValue)) {\n if (listValue.length === 0) {\n return [this.rdfNil];\n }\n else {\n return this.parsingContext.idStack[depth + 1] || [];\n }\n }\n else {\n // We only have a single list element here, so emit this directly as single element\n return await this.valueToTerm(await this.parsingContext.getContext(keys), key, listValue, depth - 1, keys.slice(0, -1));\n }\n }\n else if ('@reverse' in value && typeof value['@reverse'] === 'boolean') {\n // We handle reverse properties at value level so we can emit earlier,\n // so this is handled already when we get here.\n return [];\n }\n else if ('@graph' in Util.getContextValueContainer(await this.parsingContext.getContext(keys), key)) {\n // We are processing a graph container\n const graphContainerEntries = this.parsingContext.graphContainerTermStack[depth + 1];\n return graphContainerEntries ? Object.values(graphContainerEntries) : [this.dataFactory.blankNode()];\n }\n else if (\"@id\" in value) {\n // Use deeper context if the value node contains other properties next to @id.\n if (Object.keys(value).length > 1) {\n context = await this.parsingContext.getContext(keys, 0);\n }\n // Handle local context in the value\n if ('@context' in value) {\n context = await this.parsingContext.parseContext(value['@context'], context.getContextRaw());\n }\n if (value[\"@type\"] === '@vocab') {\n return this.nullableTermToArray(this.createVocabOrBaseTerm(context, value[\"@id\"]));\n }\n else {\n return this.nullableTermToArray(this.resourceToTerm(context, value[\"@id\"]));\n }\n }\n else {\n // Only make a blank node if at least one triple was emitted at the value's level.\n if (this.parsingContext.emittedStack[depth + 1]\n || (value && typeof value === 'object' && Object.keys(value).length === 0)) {\n return (this.parsingContext.idStack[depth + 1]\n || (this.parsingContext.idStack[depth + 1] = [this.dataFactory.blankNode()]));\n }\n else {\n return [];\n }\n }\n case 'string':\n return this.nullableTermToArray(this.stringValueToTerm(depth, await this.getContextSelfOrPropertyScoped(context, key), key, value, null));\n case 'boolean':\n return this.nullableTermToArray(this.stringValueToTerm(depth, await this.getContextSelfOrPropertyScoped(context, key), key, Boolean(value).toString(), this.dataFactory.namedNode(Util.XSD_BOOLEAN)));\n case 'number':\n return this.nullableTermToArray(this.stringValueToTerm(depth, await this.getContextSelfOrPropertyScoped(context, key), key, value, this.dataFactory.namedNode(value % 1 === 0 && value < 1e21 ? Util.XSD_INTEGER : Util.XSD_DOUBLE)));\n default:\n this.parsingContext.emitError(new Error(`Could not determine the RDF type of a ${type}`));\n return [];\n }\n }\n /**\n * If the context defines a property-scoped context for the given key,\n * that context will be returned.\n * Otherwise, the given context will be returned as-is.\n *\n * This should be used for valueToTerm cases that are not objects.\n * @param context A context.\n * @param key A JSON key.\n */\n async getContextSelfOrPropertyScoped(context, key) {\n const contextKeyEntry = context.getContextRaw()[key];\n if (contextKeyEntry && typeof contextKeyEntry === 'object' && '@context' in contextKeyEntry) {\n context = await this.parsingContext.parseContext(contextKeyEntry, context.getContextRaw(), true);\n }\n return context;\n }\n /**\n * If the given term is null, return an empty array, otherwise return an array with the single given term.\n * @param term A term.\n */\n nullableTermToArray(term) {\n return term ? [term] : [];\n }\n /**\n * Convert a given JSON key to an RDF predicate term,\n * based on @vocab.\n * @param {JsonLdContextNormalized} context A JSON-LD context.\n * @param key A JSON key.\n * @return {RDF.NamedNode} An RDF named node.\n */\n predicateToTerm(context, key) {\n const expanded = context.expandTerm(key, true, this.parsingContext.getExpandOptions());\n // Immediately return if the predicate was disabled in the context\n if (!expanded) {\n return null;\n }\n // Check if the predicate is a blank node\n if (expanded[0] === '_' && expanded[1] === ':') {\n if (this.parsingContext.produceGeneralizedRdf) {\n return this.dataFactory.blankNode(expanded.substr(2));\n }\n else {\n return null;\n }\n }\n // Check if the predicate is a valid IRI\n if (Util.isValidIri(expanded)) {\n return this.dataFactory.namedNode(expanded);\n }\n else {\n if (expanded && this.parsingContext.strictValues) {\n this.parsingContext.emitError(new jsonld_context_parser_1.ErrorCoded(`Invalid predicate IRI: ${expanded}`, jsonld_context_parser_1.ERROR_CODES.INVALID_IRI_MAPPING));\n }\n else {\n return null;\n }\n }\n return null;\n }\n /**\n * Convert a given JSON key to an RDF resource term or blank node,\n * based on @base.\n * @param {JsonLdContextNormalized} context A JSON-LD context.\n * @param key A JSON key.\n * @return {RDF.NamedNode} An RDF named node or null.\n */\n resourceToTerm(context, key) {\n if (key.startsWith('_:')) {\n return this.dataFactory.blankNode(key.substr(2));\n }\n const iri = context.expandTerm(key, false, this.parsingContext.getExpandOptions());\n if (!Util.isValidIri(iri)) {\n if (iri && this.parsingContext.strictValues) {\n this.parsingContext.emitError(new Error(`Invalid resource IRI: ${iri}`));\n }\n else {\n return null;\n }\n }\n return this.dataFactory.namedNode(iri);\n }\n /**\n * Convert a given JSON key to an RDF resource term.\n * It will do this based on the @vocab,\n * and fallback to @base.\n * @param {JsonLdContextNormalized} context A JSON-LD context.\n * @param key A JSON key.\n * @return {RDF.NamedNode} An RDF named node or null.\n */\n createVocabOrBaseTerm(context, key) {\n if (key.startsWith('_:')) {\n return this.dataFactory.blankNode(key.substr(2));\n }\n const expandOptions = this.parsingContext.getExpandOptions();\n let expanded = context.expandTerm(key, true, expandOptions);\n if (expanded === key) {\n expanded = context.expandTerm(key, false, expandOptions);\n }\n if (!Util.isValidIri(expanded)) {\n if (expanded && this.parsingContext.strictValues && !expanded.startsWith('@')) {\n this.parsingContext.emitError(new Error(`Invalid term IRI: ${expanded}`));\n }\n else {\n return null;\n }\n }\n return this.dataFactory.namedNode(expanded);\n }\n /**\n * Ensure that the given value becomes a string.\n * @param {string | number} value A string or number.\n * @param {NamedNode} datatype The intended datatype.\n * @return {string} The returned string.\n */\n intToString(value, datatype) {\n if (typeof value === 'number') {\n if (Number.isFinite(value)) {\n const isInteger = value % 1 === 0;\n if (isInteger && (!datatype || datatype.value !== Util.XSD_DOUBLE)) {\n return Number(value).toString();\n }\n else {\n return value.toExponential(15).replace(/(\\d)0*e\\+?/, '$1E');\n }\n }\n else {\n return value > 0 ? 'INF' : '-INF';\n }\n }\n else {\n return value;\n }\n }\n /**\n * Convert a given JSON string value to an RDF term.\n * @param {number} depth The current stack depth.\n * @param {JsonLdContextNormalized} context A JSON-LD context.\n * @param {string} key The current JSON key.\n * @param {string} value A JSON value.\n * @param {NamedNode} defaultDatatype The default datatype for the given value.\n * @return {RDF.Term} An RDF term or null.\n */\n stringValueToTerm(depth, context, key, value, defaultDatatype) {\n // Check the datatype from the context\n const contextType = Util.getContextValueType(context, key);\n if (contextType) {\n if (contextType === '@id') {\n if (!defaultDatatype) {\n return this.resourceToTerm(context, this.intToString(value, defaultDatatype));\n }\n }\n else if (contextType === '@vocab') {\n if (!defaultDatatype) {\n return this.createVocabOrBaseTerm(context, this.intToString(value, defaultDatatype));\n }\n }\n else {\n defaultDatatype = this.dataFactory.namedNode(contextType);\n }\n }\n // If we don't find such a datatype, check the language from the context\n if (!defaultDatatype) {\n const contextLanguage = Util.getContextValueLanguage(context, key);\n const contextDirection = Util.getContextValueDirection(context, key);\n if (contextDirection && this.parsingContext.rdfDirection) {\n return this.createLanguageDirectionLiteral(depth, this.intToString(value, defaultDatatype), contextLanguage, contextDirection);\n }\n else {\n return this.dataFactory.literal(this.intToString(value, defaultDatatype), contextLanguage);\n }\n }\n // If all else fails, make a literal based on the default content type\n return this.dataFactory.literal(this.intToString(value, defaultDatatype), defaultDatatype);\n }\n /**\n * Create a literal for the given value with the given language and direction.\n * Auxiliary quads may be emitted.\n * @param {number} depth The current stack depth.\n * @param {string} value A string value.\n * @param {string} language A language tag.\n * @param {string} direction A direction.\n * @return {Term} An RDF term.\n */\n createLanguageDirectionLiteral(depth, value, language, direction) {\n if (this.parsingContext.rdfDirection === 'i18n-datatype') {\n // Create a datatyped literal, by encoding the language and direction into https://www.w3.org/ns/i18n#.\n if (!language) {\n language = '';\n }\n return this.dataFactory.literal(value, this.dataFactory.namedNode(`https://www.w3.org/ns/i18n#${language}_${direction}`));\n }\n else {\n // Reify the literal.\n const valueNode = this.dataFactory.blankNode();\n const graph = this.getDefaultGraph();\n this.parsingContext.emitQuad(depth, this.dataFactory.quad(valueNode, this.dataFactory.namedNode(Util.RDF + 'value'), this.dataFactory.literal(value), graph));\n if (language) {\n this.parsingContext.emitQuad(depth, this.dataFactory.quad(valueNode, this.dataFactory.namedNode(Util.RDF + 'language'), this.dataFactory.literal(language), graph));\n }\n this.parsingContext.emitQuad(depth, this.dataFactory.quad(valueNode, this.dataFactory.namedNode(Util.RDF + 'direction'), this.dataFactory.literal(direction), graph));\n return valueNode;\n }\n }\n /**\n * Stringify the given JSON object to a canonical JSON string.\n * @param value Any valid JSON value.\n * @return {string} A canonical JSON string.\n */\n valueToJsonString(value) {\n return canonicalizeJson(value);\n }\n /**\n * If the key is not a keyword, try to check if it is an alias for a keyword,\n * and if so, un-alias it.\n * @param {string} key A key, can be falsy.\n * @param {string[]} keys The path of keys.\n * @param {number} depth The depth to\n * @param {boolean} disableCache If the cache should be disabled\n * @param {JsonLdContextNormalized} context A context to unalias with,\n * will fallback to retrieving the context for the given keys.\n * @return {Promise} A promise resolving to the key itself, or another key.\n */\n async unaliasKeyword(key, keys, depth, disableCache, context) {\n // Numbers can not be an alias\n if (Number.isInteger(key)) {\n return key;\n }\n // Try to grab from cache if it was already un-aliased before.\n if (!disableCache) {\n const cachedUnaliasedKeyword = this.parsingContext.unaliasedKeywordCacheStack[depth];\n if (cachedUnaliasedKeyword) {\n return cachedUnaliasedKeyword;\n }\n }\n if (!jsonld_context_parser_1.Util.isPotentialKeyword(key)) {\n context = context || await this.parsingContext.getContext(keys);\n let unliased = context.getContextRaw()[key];\n if (unliased && typeof unliased === 'object') {\n unliased = unliased['@id'];\n }\n if (jsonld_context_parser_1.Util.isValidKeyword(unliased)) {\n key = unliased;\n }\n }\n return disableCache ? key : (this.parsingContext.unaliasedKeywordCacheStack[depth] = key);\n }\n /**\n * Unalias the keyword of the parent.\n * This adds a safety check if no parent exist.\n * @param {any[]} keys A stack of keys.\n * @param {number} depth The current depth.\n * @return {Promise} A promise resolving to the parent key, or another key.\n */\n async unaliasKeywordParent(keys, depth) {\n return await this.unaliasKeyword(depth > 0 && keys[depth - 1], keys, depth - 1);\n }\n /**\n * Un-alias all keywords in the given hash.\n * @param {{[p: string]: any}} hash A hash object.\n * @param {string[]} keys The path of keys.\n * @param {number} depth The depth.\n * @param {JsonLdContextNormalized} context A context to unalias with,\n * will fallback to retrieving the context for the given keys.\n * @return {Promise<{[p: string]: any}>} A promise resolving to the new hash.\n */\n async unaliasKeywords(hash, keys, depth, context) {\n const newHash = {};\n for (const key in hash) {\n newHash[await this.unaliasKeyword(key, keys, depth + 1, true, context)] = hash[key];\n }\n return newHash;\n }\n /**\n * Check if we are processing a literal (including JSON literals) at the given depth.\n * This will also check higher levels,\n * because if a parent is a literal,\n * then the deeper levels are definitely a literal as well.\n * @param {number} depth The depth.\n * @return {boolean} If we are processing a literal.\n */\n isLiteral(depth) {\n for (let i = depth; i >= 0; i--) {\n if (this.parsingContext.literalStack[i] || this.parsingContext.jsonLiteralStack[i]) {\n return true;\n }\n }\n return false;\n }\n /**\n * Check how many parents should be skipped for checking the @graph for the given node.\n *\n * @param {number} depth The depth of the node.\n * @param {any[]} keys An array of keys.\n * @return {number} The graph depth offset.\n */\n async getDepthOffsetGraph(depth, keys) {\n for (let i = depth - 1; i > 0; i--) {\n if (await this.unaliasKeyword(keys[i], keys, i) === '@graph') {\n // Skip further processing if we are already in an @graph-@id or @graph-@index container\n const containers = (await EntryHandlerContainer_1.EntryHandlerContainer.getContainerHandler(this.parsingContext, keys, i)).containers;\n if (EntryHandlerContainer_1.EntryHandlerContainer.isComplexGraphContainer(containers)) {\n return -1;\n }\n return depth - i - 1;\n }\n }\n return -1;\n }\n /**\n * Check if the given subject is of a valid type.\n * This should be called when applying @reverse'd properties.\n * @param {Term} subject A subject.\n */\n validateReverseSubject(subject) {\n if (subject.termType === 'Literal') {\n throw new jsonld_context_parser_1.ErrorCoded(`Found illegal literal in subject position: ${subject.value}`, jsonld_context_parser_1.ERROR_CODES.INVALID_REVERSE_PROPERTY_VALUE);\n }\n }\n /**\n * Get the default graph.\n * @return {Term} An RDF term.\n */\n getDefaultGraph() {\n return this.parsingContext.defaultGraph || this.dataFactory.defaultGraph();\n }\n /**\n * Get the current graph, while taking into account a graph that can be defined via @container: @graph.\n * If not within a graph container, the default graph will be returned.\n * @param keys The current keys.\n * @param depth The current depth.\n */\n async getGraphContainerValue(keys, depth) {\n // Default to default graph\n let graph = this.getDefaultGraph();\n // Check if we are in an @container: @graph.\n const { containers, depth: depthContainer } = await EntryHandlerContainer_1.EntryHandlerContainer\n .getContainerHandler(this.parsingContext, keys, depth);\n if ('@graph' in containers) {\n // Get the graph from the stack.\n const graphContainerIndex = EntryHandlerContainer_1.EntryHandlerContainer.getContainerGraphIndex(containers, depthContainer, keys);\n const entry = this.parsingContext.graphContainerTermStack[depthContainer];\n graph = entry ? entry[graphContainerIndex] : null;\n // Set the graph in the stack if none has been set yet.\n if (!graph) {\n let graphId = null;\n if ('@id' in containers) {\n const keyUnaliased = await this.getContainerKey(keys[depthContainer], keys, depthContainer);\n if (keyUnaliased !== null) {\n graphId = await this.resourceToTerm(await this.parsingContext.getContext(keys), keyUnaliased);\n }\n }\n if (!graphId) {\n graphId = this.dataFactory.blankNode();\n }\n if (!this.parsingContext.graphContainerTermStack[depthContainer]) {\n this.parsingContext.graphContainerTermStack[depthContainer] = {};\n }\n graph = this.parsingContext.graphContainerTermStack[depthContainer][graphContainerIndex] = graphId;\n }\n }\n return graph;\n }\n /**\n * Get the properties depth for retrieving properties.\n *\n * Typically, the properties depth will be identical to the given depth.\n *\n * The following exceptions apply:\n * * When the parent is @reverse, the depth is decremented by one.\n * * When @nest parents are found, the depth is decremented by the number of @nest parents.\n * If in combination with the exceptions above an intermediary array is discovered,\n * the depth is also decremented by this number of arrays.\n *\n * @param keys The current key chain.\n * @param depth The current depth.\n */\n async getPropertiesDepth(keys, depth) {\n let lastValidDepth = depth;\n for (let i = depth - 1; i > 0; i--) {\n if (typeof keys[i] !== 'number') { // Skip array keys\n const parentKey = await this.unaliasKeyword(keys[i], keys, i);\n if (parentKey === '@reverse') {\n return i;\n }\n else if (parentKey === '@nest') {\n lastValidDepth = i;\n }\n else {\n return lastValidDepth;\n }\n }\n }\n return lastValidDepth;\n }\n /**\n * Get the key for the current container entry.\n * @param key A key, can be falsy.\n * @param keys The key chain.\n * @param depth The current depth to get the key from.\n * @return Promise resolving to the key.\n * Null will be returned for @none entries, with aliasing taken into account.\n */\n async getContainerKey(key, keys, depth) {\n const keyUnaliased = await this.unaliasKeyword(key, keys, depth);\n return keyUnaliased === '@none' ? null : keyUnaliased;\n }\n}\nexports.Util = Util;\nUtil.XSD = 'http://www.w3.org/2001/XMLSchema#';\nUtil.XSD_BOOLEAN = Util.XSD + 'boolean';\nUtil.XSD_INTEGER = Util.XSD + 'integer';\nUtil.XSD_DOUBLE = Util.XSD + 'double';\nUtil.RDF = 'http://www.w3.org/1999/02/22-rdf-syntax-ns#';\n//# sourceMappingURL=Util.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.ContainerHandlerIdentifier = void 0;\n/**\n * Container handler for @id.\n *\n * It assumes that the current key is the identifier of the current value.\n * This will add this value to the parent node.\n */\nclass ContainerHandlerIdentifier {\n canCombineWithGraph() {\n return true;\n }\n async handle(containers, parsingContext, util, keys, value, depth) {\n let id;\n // First check if the child node already has a defined id.\n if (parsingContext.emittedStack[depth + 1] && parsingContext.idStack[depth + 1]) {\n // Use the existing identifier\n id = parsingContext.idStack[depth + 1][0];\n }\n else {\n // Create the identifier\n const keyUnaliased = await util.getContainerKey(keys[depth], keys, depth);\n const maybeId = keyUnaliased !== null\n ? await util.resourceToTerm(await parsingContext.getContext(keys), keys[depth])\n : util.dataFactory.blankNode();\n // Do nothing if the id is invalid\n if (!maybeId) {\n parsingContext.emittedStack[depth] = false; // Don't emit the predicate owning this container.\n return;\n }\n id = maybeId;\n // Insert the id into the stack so that buffered children can make us of it.\n parsingContext.idStack[depth + 1] = [id];\n }\n // Insert the id into the stack so that parents can make use of it.\n // Insert it as an array because multiple id container entries may exist\n let ids = parsingContext.idStack[depth];\n if (!ids) {\n ids = parsingContext.idStack[depth] = [];\n }\n // Only insert the term if it does not exist yet in the array.\n if (!ids.some((term) => term.equals(id))) {\n ids.push(id);\n }\n // Flush any pending flush buffers\n if (!await parsingContext.handlePendingContainerFlushBuffers()) {\n parsingContext.emittedStack[depth] = false; // Don't emit the predicate owning this container.\n }\n }\n}\nexports.ContainerHandlerIdentifier = ContainerHandlerIdentifier;\n//# sourceMappingURL=ContainerHandlerIdentifier.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.ContainerHandlerIndex = void 0;\nconst jsonld_context_parser_1 = require(\"jsonld-context-parser\");\nconst EntryHandlerPredicate_1 = require(\"../entryhandler/EntryHandlerPredicate\");\nconst Util_1 = require(\"../Util\");\n/**\n * Container handler for @index.\n *\n * This will ignore the current key and add this entry to the parent node.\n */\nclass ContainerHandlerIndex {\n canCombineWithGraph() {\n return true;\n }\n async handle(containers, parsingContext, util, keys, value, depth) {\n if (!Array.isArray(value)) {\n const graphContainer = '@graph' in containers;\n // Check if the container is a property-based container by checking if there is a valid @index.\n const context = await parsingContext.getContext(keys);\n const indexKey = keys[depth - 1];\n const indexPropertyRaw = Util_1.Util.getContextValueIndex(context, indexKey);\n if (indexPropertyRaw) {\n // Validate the @index value\n if (jsonld_context_parser_1.Util.isPotentialKeyword(indexPropertyRaw)) {\n throw new jsonld_context_parser_1.ErrorCoded(`Keywords can not be used as @index value, got: ${indexPropertyRaw}`, jsonld_context_parser_1.ERROR_CODES.INVALID_TERM_DEFINITION);\n }\n if (typeof indexPropertyRaw !== 'string') {\n throw new jsonld_context_parser_1.ErrorCoded(`@index values must be strings, got: ${indexPropertyRaw}`, jsonld_context_parser_1.ERROR_CODES.INVALID_TERM_DEFINITION);\n }\n // When @index is used, values must be node values, unless @type: @id is defined in the context\n if (typeof value !== 'object') {\n // Error if we don't have @type: @id\n if (Util_1.Util.getContextValueType(context, indexKey) !== '@id') {\n throw new jsonld_context_parser_1.ErrorCoded(`Property-based index containers require nodes as values or strings with @type: @id, but got: ${value}`, jsonld_context_parser_1.ERROR_CODES.INVALID_VALUE_OBJECT);\n }\n // Add an @id to the stack, so our expanded @index value can make use of it\n const id = util.resourceToTerm(context, value);\n if (id) {\n parsingContext.idStack[depth + 1] = [id];\n }\n }\n // Expand the @index value\n const indexProperty = util.createVocabOrBaseTerm(context, indexPropertyRaw);\n if (indexProperty) {\n const indexValues = await util.valueToTerm(context, indexPropertyRaw, await util.getContainerKey(keys[depth], keys, depth), depth, keys);\n if (graphContainer) {\n // When we're in a graph container, attach the index to the graph identifier\n const graphId = await util.getGraphContainerValue(keys, depth + 1);\n for (const indexValue of indexValues) {\n parsingContext.emitQuad(depth, util.dataFactory.quad(graphId, indexProperty, indexValue, util.getDefaultGraph()));\n }\n }\n else {\n // Otherwise, attach the index to the node identifier\n for (const indexValue of indexValues) {\n await EntryHandlerPredicate_1.EntryHandlerPredicate.handlePredicateObject(parsingContext, util, keys, depth + 1, indexProperty, indexValue, false);\n }\n }\n }\n }\n const depthOffset = graphContainer ? 2 : 1;\n await parsingContext.newOnValueJob(keys.slice(0, keys.length - depthOffset), value, depth - depthOffset, true);\n // Flush any pending flush buffers\n await parsingContext.handlePendingContainerFlushBuffers();\n }\n parsingContext.emittedStack[depth] = false; // We have emitted a level higher\n }\n}\nexports.ContainerHandlerIndex = ContainerHandlerIndex;\n//# sourceMappingURL=ContainerHandlerIndex.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.ContainerHandlerLanguage = void 0;\nconst jsonld_context_parser_1 = require(\"jsonld-context-parser\");\n/**\n * Container handler for @language.\n *\n * It assumes that the current key is the language of the current value.\n * This will add this value to the parent node.\n */\nclass ContainerHandlerLanguage {\n canCombineWithGraph() {\n return false;\n }\n async handle(containers, parsingContext, util, keys, value, depth) {\n const language = await util.getContainerKey(keys[depth], keys, depth);\n if (Array.isArray(value)) {\n // No type-checking needed, will be handled on each value when this handler is called recursively.\n value = value.map((subValue) => ({ '@value': subValue, '@language': language }));\n }\n else {\n if (typeof value !== 'string') {\n throw new jsonld_context_parser_1.ErrorCoded(`Got invalid language map value, got '${JSON.stringify(value)}', but expected string`, jsonld_context_parser_1.ERROR_CODES.INVALID_LANGUAGE_MAP_VALUE);\n }\n value = { '@value': value, '@language': language };\n }\n await parsingContext.newOnValueJob(keys.slice(0, keys.length - 1), value, depth - 1, true);\n parsingContext.emittedStack[depth] = false; // We have emitted a level higher\n }\n}\nexports.ContainerHandlerLanguage = ContainerHandlerLanguage;\n//# sourceMappingURL=ContainerHandlerLanguage.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.ContainerHandlerType = void 0;\nconst EntryHandlerPredicate_1 = require(\"../entryhandler/EntryHandlerPredicate\");\nconst Util_1 = require(\"../Util\");\n/**\n * Container handler for @type.\n *\n * This will add this entry to the parent node, and use the current key as an rdf:type value.\n */\nclass ContainerHandlerType {\n canCombineWithGraph() {\n return false;\n }\n async handle(containers, parsingContext, util, keys, value, depth) {\n if (!Array.isArray(value)) {\n if (typeof value === 'string') {\n // Determine the @type of the container\n const context = await parsingContext.getContext(keys);\n const containerTypeType = Util_1.Util.getContextValueType(context, keys[depth - 1]);\n // String values refer to node references\n const id = containerTypeType === '@vocab'\n ? await util.createVocabOrBaseTerm(context, value)\n : await util.resourceToTerm(context, value);\n if (id) {\n // Handle the value of this node as @id, which will also cause the predicate from above to be emitted.\n const subValue = { '@id': id.termType === 'NamedNode' ? id.value : value };\n await parsingContext.newOnValueJob(keys.slice(0, keys.length - 1), subValue, depth - 1, true);\n // Set the id in the stack so it can be used for the rdf:type handling later on\n parsingContext.idStack[depth + 1] = [id];\n }\n }\n else {\n // Other values are handled by handling them as a proper job\n // Check needed for cases where entries don't have an explicit @id\n const entryHasIdentifier = !!parsingContext.idStack[depth + 1];\n // Handle the value of this node, which will also cause the predicate from above to be emitted.\n if (!entryHasIdentifier) {\n delete parsingContext.idStack[depth]; // Force new (blank node) identifier\n }\n await parsingContext.newOnValueJob(keys.slice(0, keys.length - 1), value, depth - 1, true);\n if (!entryHasIdentifier) {\n parsingContext.idStack[depth + 1] = parsingContext.idStack[depth]; // Copy the id to the child node, for @type\n }\n }\n // Identify the type to emit.\n const keyOriginal = await util.getContainerKey(keys[depth], keys, depth);\n const type = keyOriginal !== null\n ? util.createVocabOrBaseTerm(await parsingContext.getContext(keys), keyOriginal)\n : null;\n if (type) {\n // Push the type to the stack using the rdf:type predicate\n await EntryHandlerPredicate_1.EntryHandlerPredicate.handlePredicateObject(parsingContext, util, keys, depth + 1, util.rdfType, type, false);\n }\n // Flush any pending flush buffers\n await parsingContext.handlePendingContainerFlushBuffers();\n }\n parsingContext.emittedStack[depth] = false; // Don't emit the predicate owning this container.\n }\n}\nexports.ContainerHandlerType = ContainerHandlerType;\n//# sourceMappingURL=ContainerHandlerType.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.EntryHandlerArrayValue = void 0;\nconst Util_1 = require(\"../Util\");\n/**\n * Handles values that are part of an array.\n */\nclass EntryHandlerArrayValue {\n isPropertyHandler() {\n return false;\n }\n isStackProcessor() {\n return true;\n }\n async validate(parsingContext, util, keys, depth, inProperty) {\n return this.test(parsingContext, util, null, keys, depth);\n }\n async test(parsingContext, util, key, keys, depth) {\n return typeof keys[depth] === 'number';\n }\n async handle(parsingContext, util, key, keys, value, depth) {\n let parentKey = await util.unaliasKeywordParent(keys, depth);\n // Check if we have an anonymous list\n if (parentKey === '@list') {\n // Our value is part of an array\n // Determine the list root key\n let listRootKey = null;\n let listRootDepth = 0;\n for (let i = depth - 2; i > 0; i--) {\n const keyOption = keys[i];\n if (typeof keyOption === 'string' || typeof keyOption === 'number') {\n listRootDepth = i;\n listRootKey = keyOption;\n break;\n }\n }\n if (listRootKey !== null) {\n // Emit the given objects as list elements\n const values = await util.valueToTerm(await parsingContext.getContext(keys), listRootKey, value, depth, keys);\n for (const object of values) {\n await this.handleListElement(parsingContext, util, object, value, depth, keys.slice(0, listRootDepth), listRootDepth);\n }\n // If no values were found, emit a falsy list element to force an empty RDF list to be emitted.\n if (values.length === 0) {\n await this.handleListElement(parsingContext, util, null, value, depth, keys.slice(0, listRootDepth), listRootDepth);\n }\n }\n }\n else if (parentKey === '@set') {\n // Our value is part of a set, so we just add it to the parent-parent\n await parsingContext.newOnValueJob(keys.slice(0, -2), value, depth - 2, false);\n }\n else if (parentKey !== undefined && parentKey !== '@type') {\n // Buffer our value using the parent key as predicate\n // Determine the first parent key that is *not* an array key\n // This is needed in case we have an @list container with nested arrays,\n // where each of them should produce nested RDF lists.\n for (let i = depth - 1; i > 0; i--) {\n if (typeof keys[i] !== 'number') {\n parentKey = await util.unaliasKeyword(keys[i], keys, i);\n break;\n }\n }\n // Check if the predicate is marked as an @list in the context\n const parentContext = await parsingContext.getContext(keys.slice(0, -1));\n if ('@list' in Util_1.Util.getContextValueContainer(parentContext, parentKey)) {\n // Our value is part of an array\n // Emit the given objects as list elements\n parsingContext.emittedStack[depth + 1] = true; // Ensure the creation of bnodes for empty nodes\n const values = await util.valueToTerm(await parsingContext.getContext(keys), parentKey, value, depth, keys);\n for (const object of values) {\n await this.handleListElement(parsingContext, util, object, value, depth, keys.slice(0, -1), depth - 1);\n }\n // If no values were found, emit a falsy list element to force an empty RDF list to be emitted.\n if (values.length === 0) {\n await this.handleListElement(parsingContext, util, null, value, depth, keys.slice(0, -1), depth - 1);\n }\n }\n else {\n // Copy the stack values up one level so that the next job can access them.\n parsingContext.shiftStack(depth, 1);\n // Execute the job one level higher\n await parsingContext.newOnValueJob(keys.slice(0, -1), value, depth - 1, false);\n // Remove any defined contexts at this level to avoid it to propagate to the next array element.\n parsingContext.contextTree.removeContext(keys.slice(0, -1));\n }\n }\n }\n async handleListElement(parsingContext, util, value, valueOriginal, depth, listRootKeys, listRootDepth) {\n // Buffer our value as an RDF list using the listRootKey as predicate\n let listPointer = parsingContext.listPointerStack[depth];\n if (valueOriginal !== null && (await util.unaliasKeywords(valueOriginal, listRootKeys, depth))['@value'] !== null) {\n if (!listPointer || !listPointer.value) {\n const linkTerm = util.dataFactory.blankNode();\n listPointer = { value: linkTerm, listRootDepth, listId: linkTerm };\n }\n else {\n // rdf:rest links are always emitted before the next element,\n // as the blank node identifier is only created at that point.\n // Because of this reason, the final rdf:nil is emitted when the stack depth is decreased.\n const newLinkTerm = util.dataFactory.blankNode();\n parsingContext.emitQuad(depth, util.dataFactory.quad(listPointer.value, util.rdfRest, newLinkTerm, util.getDefaultGraph()));\n // Update the list pointer for the next element\n listPointer.value = newLinkTerm;\n }\n // Emit a list element for the current value\n // Omit rdf:first if the value is invalid\n if (value) {\n parsingContext.emitQuad(depth, util.dataFactory.quad(listPointer.value, util.rdfFirst, value, util.getDefaultGraph()));\n }\n }\n else {\n // A falsy list element if found.\n // Mark it as an rdf:nil list until another valid list element comes in\n if (!listPointer) {\n listPointer = { listRootDepth, listId: util.rdfNil };\n }\n }\n parsingContext.listPointerStack[depth] = listPointer;\n }\n}\nexports.EntryHandlerArrayValue = EntryHandlerArrayValue;\n//# sourceMappingURL=EntryHandlerArrayValue.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.EntryHandlerContainer = void 0;\nconst ContainerHandlerIdentifier_1 = require(\"../containerhandler/ContainerHandlerIdentifier\");\nconst ContainerHandlerIndex_1 = require(\"../containerhandler/ContainerHandlerIndex\");\nconst ContainerHandlerLanguage_1 = require(\"../containerhandler/ContainerHandlerLanguage\");\nconst ContainerHandlerType_1 = require(\"../containerhandler/ContainerHandlerType\");\nconst Util_1 = require(\"../Util\");\n/**\n * Handles values that are part of a container type (like @index),\n * as specified by {@link IContainerHandler}.\n */\nclass EntryHandlerContainer {\n /**\n * Check fit the given container is a simple @graph container.\n * Concretely, it will check if no @index or @id is active as well.\n * @param containers A container hash.\n */\n static isSimpleGraphContainer(containers) {\n return '@graph' in containers\n && (('@set' in containers && Object.keys(containers).length === 2) || Object.keys(containers).length === 1);\n }\n /**\n * Check fit the given container is a complex @graph container.\n * Concretely, it will check if @index or @id is active as well next to @graph.\n * @param containers A container hash.\n */\n static isComplexGraphContainer(containers) {\n return '@graph' in containers\n && (('@set' in containers && Object.keys(containers).length > 2)\n || (!('@set' in containers) && Object.keys(containers).length > 1));\n }\n /**\n * Create an graph container index that can be used for identifying a graph term inside the graphContainerTermStack.\n * @param containers The applicable containers.\n * @param depth The container depth.\n * @param keys The array of keys.\n * @return The graph index.\n */\n static getContainerGraphIndex(containers, depth, keys) {\n let isSimpleGraphContainer = EntryHandlerContainer.isSimpleGraphContainer(containers);\n let index = '';\n for (let i = depth; i < keys.length; i++) {\n if (!isSimpleGraphContainer || typeof keys[i] === 'number') {\n index += ':' + keys[i];\n }\n // Only allow a second 'real' key if in a non-simple graph container.\n if (!isSimpleGraphContainer && typeof keys[i] !== 'number') {\n isSimpleGraphContainer = true;\n }\n }\n return index;\n }\n /**\n * Return the applicable container type at the given depth.\n *\n * This will ignore any arrays in the key chain.\n *\n * @param {ParsingContext} parsingContext A parsing context.\n * @param {any[]} keys The array of keys.\n * @param {number} depth The current depth.\n * @return {Promise<{ containers: {[typeName: string]: boolean}, depth: number, fallback: boolean }>}\n * All applicable containers for the given depth,\n * the `depth` of the container root (can change when arrays are in the key chain),\n * and the `fallback` flag that indicates if the default container type was returned\n * (i.e., no dedicated container type is defined).\n */\n static async getContainerHandler(parsingContext, keys, depth) {\n const fallback = {\n containers: { '@set': true },\n depth,\n fallback: true,\n };\n // A flag that is enabled when @graph container should be tested in next iteration\n let checkGraphContainer = false;\n // Iterate from deeper to higher\n const context = await parsingContext.getContext(keys, 2);\n for (let i = depth - 1; i >= 0; i--) {\n if (typeof keys[i] !== 'number') { // Skip array keys\n // @graph containers without any other types are one level less deep, and require special handling\n const containersSelf = Util_1.Util.getContextValue(context, '@container', keys[i], false);\n if (containersSelf && EntryHandlerContainer.isSimpleGraphContainer(containersSelf)) {\n return {\n containers: containersSelf,\n depth: i + 1,\n fallback: false,\n };\n }\n const containersParent = Util_1.Util.getContextValue(context, '@container', keys[i - 1], false);\n if (!containersParent) { // If we have the fallback container value\n if (checkGraphContainer) {\n // Return false if we were already expecting a @graph-@id of @graph-@index container\n return fallback;\n }\n // Check parent-parent, we may be in a @graph-@id of @graph-@index container, which have two levels\n checkGraphContainer = true;\n }\n else {\n // We had an invalid container next iteration, so we now have to check if we were in an @graph container\n const graphContainer = '@graph' in containersParent;\n // We're in a regular container\n for (const containerHandleName in EntryHandlerContainer.CONTAINER_HANDLERS) {\n if (containersParent[containerHandleName]) {\n if (graphContainer) {\n // Only accept graph containers if their combined handlers can handle them.\n if (EntryHandlerContainer.CONTAINER_HANDLERS[containerHandleName].canCombineWithGraph()) {\n return {\n containers: containersParent,\n depth: i,\n fallback: false,\n };\n }\n else {\n return fallback;\n }\n }\n else {\n // Only accept if we were not expecting a @graph-@id of @graph-@index container\n if (checkGraphContainer) {\n return fallback;\n }\n else {\n return {\n containers: containersParent,\n depth: i,\n fallback: false,\n };\n }\n }\n }\n }\n // Fail if no valid container handlers were found\n return fallback;\n }\n }\n }\n return fallback;\n }\n /**\n * Check if we are handling a value at the given depth\n * that is part of something that should be handled as a container,\n * AND if this container should be buffered, so that it can be handled by a dedicated container handler.\n *\n * For instance, any container with @graph will NOT be buffered.\n *\n * This will ignore any arrays in the key chain.\n *\n * @param {ParsingContext} parsingContext A parsing context.\n * @param {any[]} keys The array of keys.\n * @param {number} depth The current depth.\n * @return {Promise} If we are in the scope of a container handler.\n */\n static async isBufferableContainerHandler(parsingContext, keys, depth) {\n const handler = await EntryHandlerContainer.getContainerHandler(parsingContext, keys, depth);\n return !handler.fallback && !('@graph' in handler.containers);\n }\n isPropertyHandler() {\n return false;\n }\n isStackProcessor() {\n return true;\n }\n async validate(parsingContext, util, keys, depth, inProperty) {\n return !!await this.test(parsingContext, util, null, keys, depth);\n }\n async test(parsingContext, util, key, keys, depth) {\n const containers = Util_1.Util.getContextValueContainer(await parsingContext.getContext(keys, 2), keys[depth - 1]);\n for (const containerName in EntryHandlerContainer.CONTAINER_HANDLERS) {\n if (containers[containerName]) {\n return {\n containers,\n handler: EntryHandlerContainer.CONTAINER_HANDLERS[containerName],\n };\n }\n }\n return null;\n }\n async handle(parsingContext, util, key, keys, value, depth, testResult) {\n return testResult.handler.handle(testResult.containers, parsingContext, util, keys, value, depth);\n }\n}\nexports.EntryHandlerContainer = EntryHandlerContainer;\nEntryHandlerContainer.CONTAINER_HANDLERS = {\n '@id': new ContainerHandlerIdentifier_1.ContainerHandlerIdentifier(),\n '@index': new ContainerHandlerIndex_1.ContainerHandlerIndex(),\n '@language': new ContainerHandlerLanguage_1.ContainerHandlerLanguage(),\n '@type': new ContainerHandlerType_1.ContainerHandlerType(),\n};\n//# sourceMappingURL=EntryHandlerContainer.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.EntryHandlerInvalidFallback = void 0;\n/**\n * A catch-all for properties, that will either emit an error or ignore,\n * depending on whether or not the `strictValues` property is set.\n */\nclass EntryHandlerInvalidFallback {\n isPropertyHandler() {\n return false;\n }\n isStackProcessor() {\n return true;\n }\n async validate(parsingContext, util, keys, depth, inProperty) {\n return false;\n }\n async test(parsingContext, util, key, keys, depth) {\n return true;\n }\n async handle(parsingContext, util, key, keys, value, depth) {\n parsingContext.emittedStack[depth] = false;\n }\n}\nexports.EntryHandlerInvalidFallback = EntryHandlerInvalidFallback;\n//# sourceMappingURL=EntryHandlerInvalidFallback.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.EntryHandlerPredicate = void 0;\nconst jsonld_context_parser_1 = require(\"jsonld-context-parser\");\nconst Util_1 = require(\"../Util\");\n/**\n * Interprets keys as predicates.\n * The most common case in JSON-LD processing.\n */\nclass EntryHandlerPredicate {\n /**\n * Handle the given predicate-object by either emitting it,\n * or by placing it in the appropriate stack for later emission when no @graph and/or @id has been defined.\n * @param {ParsingContext} parsingContext A parsing context.\n * @param {Util} util A utility instance.\n * @param {any[]} keys A stack of keys.\n * @param {number} depth The current depth.\n * @param {Term} predicate The predicate.\n * @param {Term} object The object.\n * @param {boolean} reverse If the property is reversed.\n * @return {Promise} A promise resolving when handling is done.\n */\n static async handlePredicateObject(parsingContext, util, keys, depth, predicate, object, reverse) {\n const depthProperties = await util.getPropertiesDepth(keys, depth);\n const depthOffsetGraph = await util.getDepthOffsetGraph(depth, keys);\n const depthPropertiesGraph = depth - depthOffsetGraph;\n const subjects = parsingContext.idStack[depthProperties];\n if (subjects) {\n // Emit directly if the @id was already defined\n for (const subject of subjects) {\n // Check if we're in a @graph context\n const atGraph = depthOffsetGraph >= 0;\n if (atGraph) {\n const graphs = parsingContext.idStack[depthPropertiesGraph - 1];\n if (graphs) {\n for (const graph of graphs) {\n // Emit our quad if graph @id is known\n if (reverse) {\n util.validateReverseSubject(object);\n parsingContext.emitQuad(depth, util.dataFactory.quad(object, predicate, subject, graph));\n }\n else {\n parsingContext.emitQuad(depth, util.dataFactory.quad(subject, predicate, object, graph));\n }\n }\n }\n else {\n // Buffer our triple if graph @id is not known yet.\n if (reverse) {\n util.validateReverseSubject(object);\n parsingContext.getUnidentifiedGraphBufferSafe(depthPropertiesGraph - 1).push({ subject: object, predicate, object: subject });\n }\n else {\n parsingContext.getUnidentifiedGraphBufferSafe(depthPropertiesGraph - 1)\n .push({ subject, predicate, object });\n }\n }\n }\n else {\n // Emit if no @graph was applicable\n const graph = await util.getGraphContainerValue(keys, depthProperties);\n if (reverse) {\n util.validateReverseSubject(object);\n parsingContext.emitQuad(depth, util.dataFactory.quad(object, predicate, subject, graph));\n }\n else {\n parsingContext.emitQuad(depth, util.dataFactory.quad(subject, predicate, object, graph));\n }\n }\n }\n }\n else {\n // Buffer until our @id becomes known, or we go up the stack\n if (reverse) {\n util.validateReverseSubject(object);\n }\n parsingContext.getUnidentifiedValueBufferSafe(depthProperties).push({ predicate, object, reverse });\n }\n }\n isPropertyHandler() {\n return true;\n }\n isStackProcessor() {\n return true;\n }\n async validate(parsingContext, util, keys, depth, inProperty) {\n const key = keys[depth];\n if (key) {\n const context = await parsingContext.getContext(keys);\n if (!parsingContext.jsonLiteralStack[depth] && await util.predicateToTerm(context, keys[depth])) {\n // If this valid predicate is of type @json, mark it so in the stack so that no deeper handling of nodes occurs.\n if (Util_1.Util.getContextValueType(context, key) === '@json') {\n parsingContext.jsonLiteralStack[depth + 1] = true;\n }\n return true;\n }\n }\n return false;\n }\n async test(parsingContext, util, key, keys, depth) {\n return keys[depth];\n }\n async handle(parsingContext, util, key, keys, value, depth, testResult) {\n const keyOriginal = keys[depth];\n const context = await parsingContext.getContext(keys);\n const predicate = await util.predicateToTerm(context, key);\n if (predicate) {\n const objects = await util.valueToTerm(context, key, value, depth, keys);\n if (objects.length) {\n for (let object of objects) {\n const reverse = Util_1.Util.isPropertyReverse(context, keyOriginal, await util.unaliasKeywordParent(keys, depth));\n if (value) {\n // Special case if our term was defined as an @list, but does not occur in an array,\n // In that case we just emit it as an RDF list with a single element.\n const listValueContainer = '@list' in Util_1.Util.getContextValueContainer(context, key);\n if (listValueContainer || value['@list']) {\n if (((listValueContainer && !Array.isArray(value) && !value['@list'])\n || (value['@list'] && !Array.isArray(value['@list'])))\n && object !== util.rdfNil) {\n const listPointer = util.dataFactory.blankNode();\n parsingContext.emitQuad(depth, util.dataFactory.quad(listPointer, util.rdfRest, util.rdfNil, util.getDefaultGraph()));\n parsingContext.emitQuad(depth, util.dataFactory.quad(listPointer, util.rdfFirst, object, util.getDefaultGraph()));\n object = listPointer;\n }\n // Lists are not allowed in @reverse'd properties\n if (reverse && !parsingContext.allowSubjectList) {\n throw new jsonld_context_parser_1.ErrorCoded(`Found illegal list value in subject position at ${key}`, jsonld_context_parser_1.ERROR_CODES.INVALID_REVERSE_PROPERTY_VALUE);\n }\n }\n }\n await EntryHandlerPredicate.handlePredicateObject(parsingContext, util, keys, depth, predicate, object, reverse);\n }\n }\n }\n }\n}\nexports.EntryHandlerPredicate = EntryHandlerPredicate;\n//# sourceMappingURL=EntryHandlerPredicate.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.EntryHandlerKeyword = void 0;\n/**\n * An abstract keyword entry handler.\n */\nclass EntryHandlerKeyword {\n constructor(keyword) {\n this.keyword = keyword;\n }\n isPropertyHandler() {\n return false;\n }\n isStackProcessor() {\n return true;\n }\n async validate(parsingContext, util, keys, depth, inProperty) {\n return false;\n }\n async test(parsingContext, util, key, keys, depth) {\n return key === this.keyword;\n }\n}\nexports.EntryHandlerKeyword = EntryHandlerKeyword;\n//# sourceMappingURL=EntryHandlerKeyword.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.EntryHandlerKeywordContext = void 0;\nconst jsonld_context_parser_1 = require(\"jsonld-context-parser\");\nconst EntryHandlerKeyword_1 = require(\"./EntryHandlerKeyword\");\n/**\n * Handles @context entries.\n */\nclass EntryHandlerKeywordContext extends EntryHandlerKeyword_1.EntryHandlerKeyword {\n constructor() {\n super('@context');\n }\n isStackProcessor() {\n return false;\n }\n async handle(parsingContext, util, key, keys, value, depth) {\n // Error if an out-of-order context was found when support is not enabled.\n if (parsingContext.streamingProfile\n && (parsingContext.processingStack[depth]\n || parsingContext.processingType[depth]\n || parsingContext.idStack[depth] !== undefined)) {\n parsingContext.emitError(new jsonld_context_parser_1.ErrorCoded('Found an out-of-order context, while streaming is enabled.' +\n '(disable `streamingProfile`)', jsonld_context_parser_1.ERROR_CODES.INVALID_STREAMING_KEY_ORDER));\n }\n // Find the parent context to inherit from.\n // We actually request a context for the current depth (with fallback to parent)\n // because we want to take into account any property-scoped contexts that are defined for this depth.\n const parentContext = parsingContext.getContext(keys);\n // Set the context for this scope\n const context = parsingContext.parseContext(value, (await parentContext).getContextRaw());\n parsingContext.contextTree.setContext(keys.slice(0, -1), context);\n parsingContext.emitContext(value);\n await parsingContext.validateContext(await context);\n }\n}\nexports.EntryHandlerKeywordContext = EntryHandlerKeywordContext;\n//# sourceMappingURL=EntryHandlerKeywordContext.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.EntryHandlerKeywordGraph = void 0;\nconst EntryHandlerKeyword_1 = require(\"./EntryHandlerKeyword\");\n/**\n * Handles @graph entries.\n */\nclass EntryHandlerKeywordGraph extends EntryHandlerKeyword_1.EntryHandlerKeyword {\n constructor() {\n super('@graph');\n }\n async handle(parsingContext, util, key, keys, value, depth) {\n // The current identifier identifies a graph for the deeper level.\n parsingContext.graphStack[depth + 1] = true;\n }\n}\nexports.EntryHandlerKeywordGraph = EntryHandlerKeywordGraph;\n//# sourceMappingURL=EntryHandlerKeywordGraph.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.EntryHandlerKeywordId = void 0;\nconst jsonld_context_parser_1 = require(\"jsonld-context-parser\");\nconst EntryHandlerKeyword_1 = require(\"./EntryHandlerKeyword\");\n/**\n * Handles @id entries.\n */\nclass EntryHandlerKeywordId extends EntryHandlerKeyword_1.EntryHandlerKeyword {\n constructor() {\n super('@id');\n }\n isStackProcessor() {\n return false;\n }\n async handle(parsingContext, util, key, keys, value, depth) {\n if (typeof value !== 'string') {\n parsingContext.emitError(new jsonld_context_parser_1.ErrorCoded(`Found illegal @id '${value}'`, jsonld_context_parser_1.ERROR_CODES.INVALID_ID_VALUE));\n }\n // Determine the canonical place for this id.\n // For example, @nest parents should be ignored.\n const depthProperties = await util.getPropertiesDepth(keys, depth);\n // Error if an @id for this node already existed.\n if (parsingContext.idStack[depthProperties] !== undefined) {\n if (parsingContext.idStack[depthProperties][0].listHead) {\n // Error if an @list was already defined for this node\n parsingContext.emitError(new jsonld_context_parser_1.ErrorCoded(`Found illegal neighbouring entries next to @list for key: '${keys[depth - 1]}'`, jsonld_context_parser_1.ERROR_CODES.INVALID_SET_OR_LIST_OBJECT));\n }\n else {\n // Otherwise, the previous id was just because of an @id entry.\n parsingContext.emitError(new jsonld_context_parser_1.ErrorCoded(`Found duplicate @ids '${parsingContext\n .idStack[depthProperties][0].value}' and '${value}'`, jsonld_context_parser_1.ERROR_CODES.COLLIDING_KEYWORDS));\n }\n }\n // Save our @id on the stack\n parsingContext.idStack[depthProperties] = util.nullableTermToArray(await util.resourceToTerm(await parsingContext.getContext(keys), value));\n }\n}\nexports.EntryHandlerKeywordId = EntryHandlerKeywordId;\n//# sourceMappingURL=EntryHandlerKeywordId.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.EntryHandlerKeywordIncluded = void 0;\nconst jsonld_context_parser_1 = require(\"jsonld-context-parser\");\nconst EntryHandlerKeyword_1 = require(\"./EntryHandlerKeyword\");\n/**\n * Handles @included entries.\n */\nclass EntryHandlerKeywordIncluded extends EntryHandlerKeyword_1.EntryHandlerKeyword {\n constructor() {\n super('@included');\n }\n async handle(parsingContext, util, key, keys, value, depth) {\n if (typeof value !== 'object') {\n parsingContext.emitError(new jsonld_context_parser_1.ErrorCoded(`Found illegal @included '${value}'`, jsonld_context_parser_1.ERROR_CODES.INVALID_INCLUDED_VALUE));\n }\n const valueUnliased = await util.unaliasKeywords(value, keys, depth, await parsingContext.getContext(keys));\n if ('@value' in valueUnliased) {\n parsingContext.emitError(new jsonld_context_parser_1.ErrorCoded(`Found an illegal @included @value node '${JSON.stringify(value)}'`, jsonld_context_parser_1.ERROR_CODES.INVALID_INCLUDED_VALUE));\n }\n if ('@list' in valueUnliased) {\n parsingContext.emitError(new jsonld_context_parser_1.ErrorCoded(`Found an illegal @included @list node '${JSON.stringify(value)}'`, jsonld_context_parser_1.ERROR_CODES.INVALID_INCLUDED_VALUE));\n }\n parsingContext.emittedStack[depth] = false;\n }\n}\nexports.EntryHandlerKeywordIncluded = EntryHandlerKeywordIncluded;\n//# sourceMappingURL=EntryHandlerKeywordIncluded.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.EntryHandlerKeywordNest = void 0;\nconst jsonld_context_parser_1 = require(\"jsonld-context-parser\");\nconst EntryHandlerKeyword_1 = require(\"./EntryHandlerKeyword\");\n/**\n * Handles @nest entries.\n */\nclass EntryHandlerKeywordNest extends EntryHandlerKeyword_1.EntryHandlerKeyword {\n constructor() {\n super('@nest');\n }\n async handle(parsingContext, util, key, keys, value, depth) {\n if (typeof value !== 'object') {\n parsingContext.emitError(new jsonld_context_parser_1.ErrorCoded(`Found invalid @nest entry for '${key}': '${value}'`, jsonld_context_parser_1.ERROR_CODES.INVALID_NEST_VALUE));\n }\n if ('@value' in await util.unaliasKeywords(value, keys, depth, await parsingContext.getContext(keys))) {\n parsingContext.emitError(new jsonld_context_parser_1.ErrorCoded(`Found an invalid @value node for '${key}'`, jsonld_context_parser_1.ERROR_CODES.INVALID_NEST_VALUE));\n }\n parsingContext.emittedStack[depth] = false;\n }\n}\nexports.EntryHandlerKeywordNest = EntryHandlerKeywordNest;\n//# sourceMappingURL=EntryHandlerKeywordNest.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.EntryHandlerKeywordType = void 0;\nconst jsonld_context_parser_1 = require(\"jsonld-context-parser\");\nconst Util_1 = require(\"../../Util\");\nconst EntryHandlerPredicate_1 = require(\"../EntryHandlerPredicate\");\nconst EntryHandlerKeyword_1 = require(\"./EntryHandlerKeyword\");\n/**\n * Handles @graph entries.\n */\nclass EntryHandlerKeywordType extends EntryHandlerKeyword_1.EntryHandlerKeyword {\n constructor() {\n super('@type');\n }\n isStackProcessor() {\n return false;\n }\n async handle(parsingContext, util, key, keys, value, depth) {\n const keyOriginal = keys[depth];\n // The current identifier identifies an rdf:type predicate.\n // But we only emit it once the node closes,\n // as it's possible that the @type is used to identify the datatype of a literal, which we ignore here.\n const context = await parsingContext.getContext(keys);\n const predicate = util.rdfType;\n const reverse = Util_1.Util.isPropertyReverse(context, keyOriginal, await util.unaliasKeywordParent(keys, depth));\n // Handle multiple values if the value is an array\n const elements = Array.isArray(value) ? value : [value];\n for (const element of elements) {\n if (typeof element !== 'string') {\n parsingContext.emitError(new jsonld_context_parser_1.ErrorCoded(`Found illegal @type '${element}'`, jsonld_context_parser_1.ERROR_CODES.INVALID_TYPE_VALUE));\n }\n const type = util.createVocabOrBaseTerm(context, element);\n if (type) {\n await EntryHandlerPredicate_1.EntryHandlerPredicate.handlePredicateObject(parsingContext, util, keys, depth, predicate, type, reverse);\n }\n }\n // Collect type-scoped contexts if they exist\n let scopedContext = Promise.resolve(context);\n let hasTypedScopedContext = false;\n for (const element of elements.sort()) { // Spec requires lexicographical ordering\n const typeContext = Util_1.Util.getContextValue(context, '@context', element, null);\n if (typeContext) {\n hasTypedScopedContext = true;\n scopedContext = scopedContext.then((c) => parsingContext.parseContext(typeContext, c.getContextRaw()));\n }\n }\n // Error if an out-of-order type-scoped context was found when support is not enabled.\n if (parsingContext.streamingProfile\n && (hasTypedScopedContext || !parsingContext.streamingProfileAllowOutOfOrderPlainType)\n && (parsingContext.processingStack[depth] || parsingContext.idStack[depth])) {\n parsingContext.emitError(new jsonld_context_parser_1.ErrorCoded('Found an out-of-order type-scoped context, while streaming is enabled.' +\n '(disable `streamingProfile`)', jsonld_context_parser_1.ERROR_CODES.INVALID_STREAMING_KEY_ORDER));\n }\n // If at least least one type-scoped context applies, set them in the tree.\n if (hasTypedScopedContext) {\n // Do not propagate by default\n scopedContext = scopedContext.then((c) => {\n if (!('@propagate' in c.getContextRaw())) {\n c.getContextRaw()['@propagate'] = false;\n }\n // Set the original context at this depth as a fallback\n // This is needed when a context was already defined at the given depth,\n // and this context needs to remain accessible from child nodes when propagation is disabled.\n if (c.getContextRaw()['@propagate'] === false) {\n c.getContextRaw()['@__propagateFallback'] = context.getContextRaw();\n }\n return c;\n });\n // Set the new context in the context tree\n parsingContext.contextTree.setContext(keys.slice(0, keys.length - 1), scopedContext);\n }\n // Flag that type has been processed at this depth\n parsingContext.processingType[depth] = true;\n }\n}\nexports.EntryHandlerKeywordType = EntryHandlerKeywordType;\n//# sourceMappingURL=EntryHandlerKeywordType.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.EntryHandlerKeywordUnknownFallback = void 0;\nconst jsonld_context_parser_1 = require(\"jsonld-context-parser\");\n/**\n * A catch-all for keywords, that will either emit an error or ignore,\n * depending on whether or not the `strictValues` property is set.\n */\nclass EntryHandlerKeywordUnknownFallback {\n isPropertyHandler() {\n return false;\n }\n isStackProcessor() {\n return true;\n }\n async validate(parsingContext, util, keys, depth, inProperty) {\n const key = await util.unaliasKeyword(keys[depth], keys, depth);\n if (jsonld_context_parser_1.Util.isPotentialKeyword(key)) {\n // Don't emit anything inside free-floating lists\n if (!inProperty) {\n if (key === '@list') {\n return false;\n }\n }\n return true;\n }\n return false;\n }\n async test(parsingContext, util, key, keys, depth) {\n return jsonld_context_parser_1.Util.isPotentialKeyword(key);\n }\n async handle(parsingContext, util, key, keys, value, depth) {\n const keywordType = EntryHandlerKeywordUnknownFallback.VALID_KEYWORDS_TYPES[key];\n if (keywordType !== undefined) {\n if (keywordType && typeof value !== keywordType.type) {\n parsingContext.emitError(new jsonld_context_parser_1.ErrorCoded(`Invalid value type for '${key}' with value '${value}'`, keywordType.errorCode));\n }\n }\n else if (parsingContext.strictValues) {\n parsingContext.emitError(new Error(`Unknown keyword '${key}' with value '${value}'`));\n }\n parsingContext.emittedStack[depth] = false;\n }\n}\nexports.EntryHandlerKeywordUnknownFallback = EntryHandlerKeywordUnknownFallback;\nEntryHandlerKeywordUnknownFallback.VALID_KEYWORDS_TYPES = {\n '@index': { type: 'string', errorCode: jsonld_context_parser_1.ERROR_CODES.INVALID_INDEX_VALUE },\n '@list': null,\n '@reverse': { type: 'object', errorCode: jsonld_context_parser_1.ERROR_CODES.INVALID_REVERSE_VALUE },\n '@set': null,\n '@value': null,\n};\n//# sourceMappingURL=EntryHandlerKeywordUnknownFallback.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.EntryHandlerKeywordValue = void 0;\nconst EntryHandlerKeyword_1 = require(\"./EntryHandlerKeyword\");\n/**\n * Handles @value entries.\n */\nclass EntryHandlerKeywordValue extends EntryHandlerKeyword_1.EntryHandlerKeyword {\n constructor() {\n super('@value');\n }\n async validate(parsingContext, util, keys, depth, inProperty) {\n // If this is @value, mark it so in the stack so that no deeper handling of nodes occurs.\n const key = keys[depth];\n if (key && !parsingContext.literalStack[depth] && await this.test(parsingContext, util, key, keys, depth)) {\n parsingContext.literalStack[depth] = true;\n }\n return super.validate(parsingContext, util, keys, depth, inProperty);\n }\n async test(parsingContext, util, key, keys, depth) {\n return await util.unaliasKeyword(keys[depth], keys.slice(0, keys.length - 1), depth - 1, true) === '@value';\n }\n async handle(parsingContext, util, key, keys, value, depth) {\n // If the value is valid, indicate that we are processing a literal.\n // The actual value will be determined at the parent level when the @value is part of an object,\n // because we may want to take into account additional entries such as @language.\n // See {@link Util.valueToTerm}\n // Indicate that we are processing a literal, and that no later predicates should be parsed at this depth.\n parsingContext.literalStack[depth] = true;\n // Void any buffers that we may have accumulated up until now\n delete parsingContext.unidentifiedValuesBuffer[depth];\n delete parsingContext.unidentifiedGraphsBuffer[depth];\n // Indicate that we have not emitted at this depth\n parsingContext.emittedStack[depth] = false;\n }\n}\nexports.EntryHandlerKeywordValue = EntryHandlerKeywordValue;\n//# sourceMappingURL=EntryHandlerKeywordValue.js.map","/*global Buffer*/\n// Named constants with unique integer values\nvar C = {};\n// Tokens\nvar LEFT_BRACE = C.LEFT_BRACE = 0x1;\nvar RIGHT_BRACE = C.RIGHT_BRACE = 0x2;\nvar LEFT_BRACKET = C.LEFT_BRACKET = 0x3;\nvar RIGHT_BRACKET = C.RIGHT_BRACKET = 0x4;\nvar COLON = C.COLON = 0x5;\nvar COMMA = C.COMMA = 0x6;\nvar TRUE = C.TRUE = 0x7;\nvar FALSE = C.FALSE = 0x8;\nvar NULL = C.NULL = 0x9;\nvar STRING = C.STRING = 0xa;\nvar NUMBER = C.NUMBER = 0xb;\n// Tokenizer States\nvar START = C.START = 0x11;\nvar STOP = C.STOP = 0x12;\nvar TRUE1 = C.TRUE1 = 0x21;\nvar TRUE2 = C.TRUE2 = 0x22;\nvar TRUE3 = C.TRUE3 = 0x23;\nvar FALSE1 = C.FALSE1 = 0x31;\nvar FALSE2 = C.FALSE2 = 0x32;\nvar FALSE3 = C.FALSE3 = 0x33;\nvar FALSE4 = C.FALSE4 = 0x34;\nvar NULL1 = C.NULL1 = 0x41;\nvar NULL2 = C.NULL2 = 0x42;\nvar NULL3 = C.NULL3 = 0x43;\nvar NUMBER1 = C.NUMBER1 = 0x51;\nvar NUMBER3 = C.NUMBER3 = 0x53;\nvar STRING1 = C.STRING1 = 0x61;\nvar STRING2 = C.STRING2 = 0x62;\nvar STRING3 = C.STRING3 = 0x63;\nvar STRING4 = C.STRING4 = 0x64;\nvar STRING5 = C.STRING5 = 0x65;\nvar STRING6 = C.STRING6 = 0x66;\n// Parser States\nvar VALUE = C.VALUE = 0x71;\nvar KEY = C.KEY = 0x72;\n// Parser Modes\nvar OBJECT = C.OBJECT = 0x81;\nvar ARRAY = C.ARRAY = 0x82;\n// Character constants\nvar BACK_SLASH = \"\\\\\".charCodeAt(0);\nvar FORWARD_SLASH = \"\\/\".charCodeAt(0);\nvar BACKSPACE = \"\\b\".charCodeAt(0);\nvar FORM_FEED = \"\\f\".charCodeAt(0);\nvar NEWLINE = \"\\n\".charCodeAt(0);\nvar CARRIAGE_RETURN = \"\\r\".charCodeAt(0);\nvar TAB = \"\\t\".charCodeAt(0);\n\nvar STRING_BUFFER_SIZE = 64 * 1024;\n\nfunction Parser() {\n this.tState = START;\n this.value = undefined;\n\n this.string = undefined; // string data\n this.stringBuffer = Buffer.alloc ? Buffer.alloc(STRING_BUFFER_SIZE) : new Buffer(STRING_BUFFER_SIZE);\n this.stringBufferOffset = 0;\n this.unicode = undefined; // unicode escapes\n this.highSurrogate = undefined;\n\n this.key = undefined;\n this.mode = undefined;\n this.stack = [];\n this.state = VALUE;\n this.bytes_remaining = 0; // number of bytes remaining in multi byte utf8 char to read after split boundary\n this.bytes_in_sequence = 0; // bytes in multi byte utf8 char to read\n this.temp_buffs = { \"2\": new Buffer(2), \"3\": new Buffer(3), \"4\": new Buffer(4) }; // for rebuilding chars split before boundary is reached\n\n // Stream offset\n this.offset = -1;\n}\n\n// Slow code to string converter (only used when throwing syntax errors)\nParser.toknam = function (code) {\n var keys = Object.keys(C);\n for (var i = 0, l = keys.length; i < l; i++) {\n var key = keys[i];\n if (C[key] === code) { return key; }\n }\n return code && (\"0x\" + code.toString(16));\n};\n\nvar proto = Parser.prototype;\nproto.onError = function (err) { throw err; };\nproto.charError = function (buffer, i) {\n this.tState = STOP;\n this.onError(new Error(\"Unexpected \" + JSON.stringify(String.fromCharCode(buffer[i])) + \" at position \" + i + \" in state \" + Parser.toknam(this.tState)));\n};\nproto.appendStringChar = function (char) {\n if (this.stringBufferOffset >= STRING_BUFFER_SIZE) {\n this.string += this.stringBuffer.toString('utf8');\n this.stringBufferOffset = 0;\n }\n\n this.stringBuffer[this.stringBufferOffset++] = char;\n};\nproto.appendStringBuf = function (buf, start, end) {\n var size = buf.length;\n if (typeof start === 'number') {\n if (typeof end === 'number') {\n if (end < 0) {\n // adding a negative end decreeses the size\n size = buf.length - start + end;\n } else {\n size = end - start;\n }\n } else {\n size = buf.length - start;\n }\n }\n\n if (size < 0) {\n size = 0;\n }\n\n if (this.stringBufferOffset + size > STRING_BUFFER_SIZE) {\n this.string += this.stringBuffer.toString('utf8', 0, this.stringBufferOffset);\n this.stringBufferOffset = 0;\n }\n\n buf.copy(this.stringBuffer, this.stringBufferOffset, start, end);\n this.stringBufferOffset += size;\n};\nproto.write = function (buffer) {\n if (typeof buffer === \"string\") buffer = new Buffer(buffer);\n var n;\n for (var i = 0, l = buffer.length; i < l; i++) {\n if (this.tState === START){\n n = buffer[i];\n this.offset++;\n if(n === 0x7b){ this.onToken(LEFT_BRACE, \"{\"); // {\n }else if(n === 0x7d){ this.onToken(RIGHT_BRACE, \"}\"); // }\n }else if(n === 0x5b){ this.onToken(LEFT_BRACKET, \"[\"); // [\n }else if(n === 0x5d){ this.onToken(RIGHT_BRACKET, \"]\"); // ]\n }else if(n === 0x3a){ this.onToken(COLON, \":\"); // :\n }else if(n === 0x2c){ this.onToken(COMMA, \",\"); // ,\n }else if(n === 0x74){ this.tState = TRUE1; // t\n }else if(n === 0x66){ this.tState = FALSE1; // f\n }else if(n === 0x6e){ this.tState = NULL1; // n\n }else if(n === 0x22){ // \"\n this.string = \"\";\n this.stringBufferOffset = 0;\n this.tState = STRING1;\n }else if(n === 0x2d){ this.string = \"-\"; this.tState = NUMBER1; // -\n }else{\n if (n >= 0x30 && n < 0x40) { // 1-9\n this.string = String.fromCharCode(n); this.tState = NUMBER3;\n } else if (n === 0x20 || n === 0x09 || n === 0x0a || n === 0x0d) {\n // whitespace\n } else {\n return this.charError(buffer, i);\n }\n }\n }else if (this.tState === STRING1){ // After open quote\n n = buffer[i]; // get current byte from buffer\n // check for carry over of a multi byte char split between data chunks\n // & fill temp buffer it with start of this data chunk up to the boundary limit set in the last iteration\n if (this.bytes_remaining > 0) {\n for (var j = 0; j < this.bytes_remaining; j++) {\n this.temp_buffs[this.bytes_in_sequence][this.bytes_in_sequence - this.bytes_remaining + j] = buffer[j];\n }\n\n this.appendStringBuf(this.temp_buffs[this.bytes_in_sequence]);\n this.bytes_in_sequence = this.bytes_remaining = 0;\n i = i + j - 1;\n } else if (this.bytes_remaining === 0 && n >= 128) { // else if no remainder bytes carried over, parse multi byte (>=128) chars one at a time\n if (n <= 193 || n > 244) {\n return this.onError(new Error(\"Invalid UTF-8 character at position \" + i + \" in state \" + Parser.toknam(this.tState)));\n }\n if ((n >= 194) && (n <= 223)) this.bytes_in_sequence = 2;\n if ((n >= 224) && (n <= 239)) this.bytes_in_sequence = 3;\n if ((n >= 240) && (n <= 244)) this.bytes_in_sequence = 4;\n if ((this.bytes_in_sequence + i) > buffer.length) { // if bytes needed to complete char fall outside buffer length, we have a boundary split\n for (var k = 0; k <= (buffer.length - 1 - i); k++) {\n this.temp_buffs[this.bytes_in_sequence][k] = buffer[i + k]; // fill temp buffer of correct size with bytes available in this chunk\n }\n this.bytes_remaining = (i + this.bytes_in_sequence) - buffer.length;\n i = buffer.length - 1;\n } else {\n this.appendStringBuf(buffer, i, i + this.bytes_in_sequence);\n i = i + this.bytes_in_sequence - 1;\n }\n } else if (n === 0x22) {\n this.tState = START;\n this.string += this.stringBuffer.toString('utf8', 0, this.stringBufferOffset);\n this.stringBufferOffset = 0;\n this.onToken(STRING, this.string);\n this.offset += Buffer.byteLength(this.string, 'utf8') + 1;\n this.string = undefined;\n }\n else if (n === 0x5c) {\n this.tState = STRING2;\n }\n else if (n >= 0x20) { this.appendStringChar(n); }\n else {\n return this.charError(buffer, i);\n }\n }else if (this.tState === STRING2){ // After backslash\n n = buffer[i];\n if(n === 0x22){ this.appendStringChar(n); this.tState = STRING1;\n }else if(n === 0x5c){ this.appendStringChar(BACK_SLASH); this.tState = STRING1;\n }else if(n === 0x2f){ this.appendStringChar(FORWARD_SLASH); this.tState = STRING1;\n }else if(n === 0x62){ this.appendStringChar(BACKSPACE); this.tState = STRING1;\n }else if(n === 0x66){ this.appendStringChar(FORM_FEED); this.tState = STRING1;\n }else if(n === 0x6e){ this.appendStringChar(NEWLINE); this.tState = STRING1;\n }else if(n === 0x72){ this.appendStringChar(CARRIAGE_RETURN); this.tState = STRING1;\n }else if(n === 0x74){ this.appendStringChar(TAB); this.tState = STRING1;\n }else if(n === 0x75){ this.unicode = \"\"; this.tState = STRING3;\n }else{\n return this.charError(buffer, i);\n }\n }else if (this.tState === STRING3 || this.tState === STRING4 || this.tState === STRING5 || this.tState === STRING6){ // unicode hex codes\n n = buffer[i];\n // 0-9 A-F a-f\n if ((n >= 0x30 && n < 0x40) || (n > 0x40 && n <= 0x46) || (n > 0x60 && n <= 0x66)) {\n this.unicode += String.fromCharCode(n);\n if (this.tState++ === STRING6) {\n var intVal = parseInt(this.unicode, 16);\n this.unicode = undefined;\n if (this.highSurrogate !== undefined && intVal >= 0xDC00 && intVal < (0xDFFF + 1)) { //<56320,57343> - lowSurrogate\n this.appendStringBuf(new Buffer(String.fromCharCode(this.highSurrogate, intVal)));\n this.highSurrogate = undefined;\n } else if (this.highSurrogate === undefined && intVal >= 0xD800 && intVal < (0xDBFF + 1)) { //<55296,56319> - highSurrogate\n this.highSurrogate = intVal;\n } else {\n if (this.highSurrogate !== undefined) {\n this.appendStringBuf(new Buffer(String.fromCharCode(this.highSurrogate)));\n this.highSurrogate = undefined;\n }\n this.appendStringBuf(new Buffer(String.fromCharCode(intVal)));\n }\n this.tState = STRING1;\n }\n } else {\n return this.charError(buffer, i);\n }\n } else if (this.tState === NUMBER1 || this.tState === NUMBER3) {\n n = buffer[i];\n\n switch (n) {\n case 0x30: // 0\n case 0x31: // 1\n case 0x32: // 2\n case 0x33: // 3\n case 0x34: // 4\n case 0x35: // 5\n case 0x36: // 6\n case 0x37: // 7\n case 0x38: // 8\n case 0x39: // 9\n case 0x2e: // .\n case 0x65: // e\n case 0x45: // E\n case 0x2b: // +\n case 0x2d: // -\n this.string += String.fromCharCode(n);\n this.tState = NUMBER3;\n break;\n default:\n this.tState = START;\n var result = Number(this.string);\n\n if (isNaN(result)){\n return this.charError(buffer, i);\n }\n\n if ((this.string.match(/[0-9]+/) == this.string) && (result.toString() != this.string)) {\n // Long string of digits which is an ID string and not valid and/or safe JavaScript integer Number\n this.onToken(STRING, this.string);\n } else {\n this.onToken(NUMBER, result);\n }\n\n this.offset += this.string.length - 1;\n this.string = undefined;\n i--;\n break;\n }\n }else if (this.tState === TRUE1){ // r\n if (buffer[i] === 0x72) { this.tState = TRUE2; }\n else { return this.charError(buffer, i); }\n }else if (this.tState === TRUE2){ // u\n if (buffer[i] === 0x75) { this.tState = TRUE3; }\n else { return this.charError(buffer, i); }\n }else if (this.tState === TRUE3){ // e\n if (buffer[i] === 0x65) { this.tState = START; this.onToken(TRUE, true); this.offset+= 3; }\n else { return this.charError(buffer, i); }\n }else if (this.tState === FALSE1){ // a\n if (buffer[i] === 0x61) { this.tState = FALSE2; }\n else { return this.charError(buffer, i); }\n }else if (this.tState === FALSE2){ // l\n if (buffer[i] === 0x6c) { this.tState = FALSE3; }\n else { return this.charError(buffer, i); }\n }else if (this.tState === FALSE3){ // s\n if (buffer[i] === 0x73) { this.tState = FALSE4; }\n else { return this.charError(buffer, i); }\n }else if (this.tState === FALSE4){ // e\n if (buffer[i] === 0x65) { this.tState = START; this.onToken(FALSE, false); this.offset+= 4; }\n else { return this.charError(buffer, i); }\n }else if (this.tState === NULL1){ // u\n if (buffer[i] === 0x75) { this.tState = NULL2; }\n else { return this.charError(buffer, i); }\n }else if (this.tState === NULL2){ // l\n if (buffer[i] === 0x6c) { this.tState = NULL3; }\n else { return this.charError(buffer, i); }\n }else if (this.tState === NULL3){ // l\n if (buffer[i] === 0x6c) { this.tState = START; this.onToken(NULL, null); this.offset += 3; }\n else { return this.charError(buffer, i); }\n }\n }\n};\nproto.onToken = function (token, value) {\n // Override this to get events\n};\n\nproto.parseError = function (token, value) {\n this.tState = STOP;\n this.onError(new Error(\"Unexpected \" + Parser.toknam(token) + (value ? (\"(\" + JSON.stringify(value) + \")\") : \"\") + \" in state \" + Parser.toknam(this.state)));\n};\nproto.push = function () {\n this.stack.push({value: this.value, key: this.key, mode: this.mode});\n};\nproto.pop = function () {\n var value = this.value;\n var parent = this.stack.pop();\n this.value = parent.value;\n this.key = parent.key;\n this.mode = parent.mode;\n this.emit(value);\n if (!this.mode) { this.state = VALUE; }\n};\nproto.emit = function (value) {\n if (this.mode) { this.state = COMMA; }\n this.onValue(value);\n};\nproto.onValue = function (value) {\n // Override me\n};\nproto.onToken = function (token, value) {\n if(this.state === VALUE){\n if(token === STRING || token === NUMBER || token === TRUE || token === FALSE || token === NULL){\n if (this.value) {\n this.value[this.key] = value;\n }\n this.emit(value);\n }else if(token === LEFT_BRACE){\n this.push();\n if (this.value) {\n this.value = this.value[this.key] = {};\n } else {\n this.value = {};\n }\n this.key = undefined;\n this.state = KEY;\n this.mode = OBJECT;\n }else if(token === LEFT_BRACKET){\n this.push();\n if (this.value) {\n this.value = this.value[this.key] = [];\n } else {\n this.value = [];\n }\n this.key = 0;\n this.mode = ARRAY;\n this.state = VALUE;\n }else if(token === RIGHT_BRACE){\n if (this.mode === OBJECT) {\n this.pop();\n } else {\n return this.parseError(token, value);\n }\n }else if(token === RIGHT_BRACKET){\n if (this.mode === ARRAY) {\n this.pop();\n } else {\n return this.parseError(token, value);\n }\n }else{\n return this.parseError(token, value);\n }\n }else if(this.state === KEY){\n if (token === STRING) {\n this.key = value;\n this.state = COLON;\n } else if (token === RIGHT_BRACE) {\n this.pop();\n } else {\n return this.parseError(token, value);\n }\n }else if(this.state === COLON){\n if (token === COLON) { this.state = VALUE; }\n else { return this.parseError(token, value); }\n }else if(this.state === COMMA){\n if (token === COMMA) {\n if (this.mode === ARRAY) { this.key++; this.state = VALUE; }\n else if (this.mode === OBJECT) { this.state = KEY; }\n\n } else if (token === RIGHT_BRACKET && this.mode === ARRAY || token === RIGHT_BRACE && this.mode === OBJECT) {\n this.pop();\n } else {\n return this.parseError(token, value);\n }\n }else{\n return this.parseError(token, value);\n }\n};\n\nParser.C = C;\n\nmodule.exports = Parser;\n"],"names":["Sink","ParserStream","Parser","constructor","options","super","module","exports","rdf","JsonLdParser","Transform","relativeIriProtocol","termCleanup","factory","term","termType","value","startsWith","namedNode","slice","length","quadCleanup","cleanup","quad","subject","predicate","object","graph","input","baseIRI","context","parser","dataFactory","streamingProfile","pipe","transform","objectMode","encoding","callback","on","Object","entries","forEach","prefix","iri","emit","err","destroy","DataFactory","BlankNode","id","this","nextId","equals","other","prototype","DefaultGraph","fromTermRaw","Literal","NamedNode","Quad","Variable","blankNode","literal","languageOrDatatype","indexOf","variable","defaultGraph","defaultGraphInstance","triple","fromTerm","original","call","fromQuad","language","datatype","stringDatatype","langStringDatatype","name","Error","Impl","import","output","assign","readable","self","support","searchParams","iterable","Symbol","blob","Blob","e","formData","arrayBuffer","isDataView","obj","DataView","isPrototypeOf","viewClasses","isArrayBufferView","ArrayBuffer","isView","toString","normalizeName","String","test","TypeError","toLowerCase","normalizeValue","iteratorFor","items","iterator","next","shift","done","undefined","Headers","headers","map","append","Array","isArray","header","getOwnPropertyNames","consumed","body","bodyUsed","Promise","reject","fileReaderReady","reader","resolve","onload","result","onerror","error","readBlobAsArrayBuffer","FileReader","promise","readAsArrayBuffer","readBlobAsText","readAsText","readArrayBufferAsText","buf","view","Uint8Array","chars","i","fromCharCode","join","bufferClone","byteLength","set","buffer","Body","_initBody","_bodyInit","_bodyText","_bodyBlob","FormData","_bodyFormData","URLSearchParams","_bodyArrayBuffer","get","type","rejected","then","text","decode","json","JSON","parse","oldValue","has","hasOwnProperty","thisArg","keys","push","values","methods","normalizeMethod","method","upcased","toUpperCase","Request","url","credentials","mode","signal","referrer","form","trim","split","bytes","replace","decodeURIComponent","parseHeaders","rawHeaders","preProcessedHeaders","line","parts","key","Response","bodyInit","status","ok","statusText","clone","response","redirectStatuses","redirect","RangeError","location","DOMException","message","stack","create","fetch","init","request","aborted","xhr","XMLHttpRequest","abortXhr","abort","getAllResponseHeaders","responseURL","responseText","ontimeout","onabort","open","withCredentials","responseType","setRequestHeader","addEventListener","onreadystatechange","readyState","removeEventListener","send","polyfill","defineProperty","__createBinding","o","m","k","k2","desc","getOwnPropertyDescriptor","__esModule","writable","configurable","enumerable","__exportStar","p","ContextParser","relative_to_absolute_iri_1","ErrorCoded_1","FetchDocumentLoader_1","JsonLdContextNormalized_1","Util_1","documentLoader","FetchDocumentLoader","documentCache","validateContext","skipValidation","expandContentTypeToBase","remoteContextsDepthLimit","redirectSchemaOrgHttps","validateLanguage","strictRange","errorCode","ErrorCoded","stringify","Util","REGEX_LANGUAGE_TAG","validateDirection","strictValues","ERROR_CODES","INVALID_BASE_DIRECTION","REGEX_DIRECTION_TAG","idifyReverseTerms","isValidKeyword","INVALID_IRI_MAPPING","isPotentialKeyword","expandPrefixedTerms","contextRaw","getContextRaw","EXPAND_KEYS_BLACKLIST","isReservedInternalKeyword","keyValue","ALIAS_DOMAIN_BLACKLIST","KEYWORD_REDEFINITION","ALIAS_RANGE_BLACKLIST","getContextValueId","INVALID_KEYWORD_ALIAS","INVALID_TERM_DEFINITION","isPrefixValue","changed","expandTerm","canAddIdEntry","isValidIri","newId","expandedType","normalize","processingMode","normalizeLanguageTags","lowercase","containersToHash","newValue","containerValue","applyScopedProtected","expandOptions","isTermProtected","isSimpleTermDefinitionPrefix","validateKeywordRedefinitions","contextBefore","contextAfter","deepEqual","PROTECTED_TERM_REDEFINITION","validate","valueType","substr","INVALID_VOCAB_MAPPING","INVALID_BASE_IRI","INVALID_DEFAULT_LANGUAGE","INVALID_VERSION_VALUE","INVALID_CONTEXT_ENTRY","INVALID_PROPAGATE_VALUE","getPrefix","CYCLIC_IRI_MAPPING","isValidIriWeak","JsonLdContextNormalized","isCompactIri","objectKey","objectValue","INVALID_TYPE_MAPPING","INVALID_REVERSE_PROPERTY","CONTAINERS_1_0","INVALID_CONTAINER_MAPPING","CONTAINERS","INVALID_LANGUAGE_MAPPING","INVALID_PREFIX_VALUE","INVALID_NEST_VALUE","applyBaseEntry","inheritFromParent","parentContext","external","normalizeContextIri","contextIri","_a","parseInnerContexts","ignoreScopedContexts","ignoreProtection","ignoreRemoteScopedContexts","INVALID_SCOPED_CONTEXT","minimalProcessing","internalOptions","DEFAULT_PROCESSING_MODE","remoteContexts","CONTEXT_OVERFLOW","hasProtectedTerms","INVALID_CONTEXT_NULLIFICATION","overriddenLoad","getOverriddenLoad","parsedStringContext","load","contextIris","contexts","all","subContext","reducedContexts","reduce","accContextPromise","contextEntry","accContext","importContext","INVALID_IMPORT_VALUE","loadImportContext","defaultExpandOptions","newContext","overlappingKeys","newContextWrapped","INVALID_LOCAL_CONTEXT","cached","document","LOADING_REMOTE_CONTEXT_FAILED","INVALID_REMOTE_CONTEXT","RECURSIVE_CONTEXT_INCLUSION","importContextIri","code","http_link_header_1","fetcher","accept","mediaType","colonPos","alternateUrl","linkHeader","link","rel","uri","LOADING_DOCUMENT_FAILED","expandVocab","contextValue","validIriMapping","vocab","vocabRelative","base","potentialKeyword","contextPrefixValue","allowPrefixForcing","allowVocabRelativeToBase","compactIri","shortestPrefixing","suffix","allowPrefixNonGenDelims","separatorPos","charAt","isPrefixIriEndingWithGenDelim","keyword","KEYWORD_REGEX","prefixIri","ENDS_WITH_GEN_DELIM","Boolean","IRI_REGEX","IRI_REGEX_WEAK","VALID_KEYWORDS","object1","object2","objKeys1","objKeys2","every","value1","value2","ContextTree","subTrees","getContext","head","tail","subTree","depth","setContext","removeContext","path","jsonld_context_parser_1","stream_1","EntryHandlerArrayValue_1","EntryHandlerContainer_1","EntryHandlerInvalidFallback_1","EntryHandlerPredicate_1","EntryHandlerKeywordContext_1","EntryHandlerKeywordGraph_1","EntryHandlerKeywordId_1","EntryHandlerKeywordIncluded_1","EntryHandlerKeywordNest_1","EntryHandlerKeywordType_1","EntryHandlerKeywordUnknownFallback_1","EntryHandlerKeywordValue_1","ParsingContext_1","readableObjectMode","parsingContext","ParsingContext","util","jsonParser","contextJobs","typeJobs","contextAwaitingJobs","lastDepth","lastKeys","lastOnValueJob","attachJsonParserListeners","fromHttpResponse","endsWith","MULTIPLE_CONTEXT_LINK_HEADERS","ignoreMissingContextLinkHeader","contentType","match","exec","stream","PassThrough","parsed","data","_transform","chunk","write","newOnValueJob","lastDepthCheck","flushStacks","listPointer","listPointerStack","rdfRest","rdfNil","getDefaultGraph","listId","listHead","idStack","listRootDepth","splice","EntryHandlerContainer","isBufferableContainerHandler","pendingContainerFlushBuffers","flushBuffer","unaliasKeyword","parentKey","unaliasKeywordParent","emittedStack","handleKey","INVALID_REVERSE_PROPERTY_MAP","inProperty","validationStack","property","Math","max","validationResult","validateKey","valid","isLiteral","entryHandler","ENTRY_HANDLERS","testResult","handle","isStackProcessor","processingStack","validateValueIndexes","unaliasedKeywordCacheStack","processingType","graphStack","graphContainerTermStack","jsonLiteralStack","literalStack","subjects","valueBuffer","unidentifiedValuesBuffer","depthOffsetGraph","getDepthOffsetGraph","graphs","getGraphContainerValue","bufferedValue","reverse","emitQuad","subGraphBuffer","getUnidentifiedGraphBufferSafe","graphBuffer","unidentifiedGraphsBuffer","topLevelProperties","isPropertyHandler","onValue","fill","v","isParsingContextInner","valueJobCb","contextTree","jobs","job","executeBufferedJobs","onError","applicableTypeJobs","applicableTypeJobIds","typeJob","isPrefixArray","sortedTypeJobs","sort","job1","job2","sortedApplicableTypeJobIds","jobId","EntryHandlerArrayValue","EntryHandlerKeywordContext","EntryHandlerKeywordId","EntryHandlerKeywordIncluded","EntryHandlerKeywordGraph","EntryHandlerKeywordNest","EntryHandlerKeywordType","EntryHandlerKeywordValue","EntryHandlerKeywordUnknownFallback","EntryHandlerPredicate","EntryHandlerInvalidFallback","ContextTree_1","JsonLdParser_1","contextParser","skipContextValidation","produceGeneralizedRdf","allowSubjectList","rdfDirection","streamingProfileAllowOutOfOrderPlainType","activeProcessingMode","parseFloat","rootContext","parseContext","activeVersion","PROCESSING_MODE_CONFLICT","offset","keysOriginal","contextData","getContextPropagationAware","contextKeyEntry","scopedContext","propagate","originalDepth","hasApplicablePropertyScopedContext","lastKey","lastKeyValue","handlePendingContainerFlushBuffers","pendingFlushBuffer","emitError","emitContext","getUnidentifiedValueBufferSafe","getExpandOptions","EXPAND_OPTIONS","shiftStack","depthOffset","deeperIdStack","rdf_data_factory_1","canonicalizeJson","rdfFirst","RDF","rdfType","rdfJson","getContextValue","contextKey","fallback","entry","getContextValueContainer","getContextValueType","getContextValueLanguage","getContextValueDirection","isContextValueReverse","getContextValueIndex","isPropertyReverse","needle","haystack","indexHashes","index","existingIndexValue","CONFLICTING_INDEXES","valueToTerm","valueToJsonString","getContextSelfOrPropertyScoped","unaliasKeywords","val","valueLanguage","valueDirection","valueIndex","subValue","INVALID_VALUE_OBJECT","INVALID_VALUE_OBJECT_VALUE","INVALID_INDEX_VALUE","INVALID_LANGUAGE_TAGGED_VALUE","INVALID_LANGUAGE_TAGGED_STRING","nullableTermToArray","createLanguageDirectionLiteral","INVALID_TYPED_VALUE","typeTerm","createVocabOrBaseTerm","INVALID_SET_OR_LIST_OBJECT","listValue","graphContainerEntries","resourceToTerm","stringValueToTerm","XSD_BOOLEAN","XSD_INTEGER","XSD_DOUBLE","predicateToTerm","expanded","intToString","Number","isFinite","isInteger","toExponential","defaultDatatype","contextType","contextLanguage","contextDirection","direction","valueNode","disableCache","cachedUnaliasedKeyword","unliased","hash","newHash","containers","getContainerHandler","isComplexGraphContainer","validateReverseSubject","INVALID_REVERSE_PROPERTY_VALUE","depthContainer","graphContainerIndex","getContainerGraphIndex","graphId","keyUnaliased","getContainerKey","getPropertiesDepth","lastValidDepth","XSD","ContainerHandlerIdentifier","canCombineWithGraph","maybeId","ids","some","ContainerHandlerIndex","graphContainer","indexKey","indexPropertyRaw","indexProperty","indexValues","indexValue","handlePredicateObject","ContainerHandlerLanguage","INVALID_LANGUAGE_MAP_VALUE","ContainerHandlerType","containerTypeType","entryHasIdentifier","keyOriginal","listRootKey","keyOption","handleListElement","valueOriginal","listRootKeys","newLinkTerm","linkTerm","ContainerHandlerIdentifier_1","ContainerHandlerIndex_1","ContainerHandlerLanguage_1","ContainerHandlerType_1","isSimpleGraphContainer","checkGraphContainer","containersSelf","containersParent","containerHandleName","CONTAINER_HANDLERS","handler","containerName","depthProperties","depthPropertiesGraph","atGraph","objects","listValueContainer","EntryHandlerKeyword","EntryHandlerKeyword_1","INVALID_STREAMING_KEY_ORDER","INVALID_ID_VALUE","COLLIDING_KEYWORDS","INVALID_INCLUDED_VALUE","valueUnliased","elements","element","INVALID_TYPE_VALUE","hasTypedScopedContext","typeContext","c","keywordType","VALID_KEYWORDS_TYPES","INVALID_REVERSE_VALUE","C","LEFT_BRACE","RIGHT_BRACE","LEFT_BRACKET","RIGHT_BRACKET","COLON","COMMA","TRUE","FALSE","NULL","STRING","NUMBER","START","STOP","TRUE1","TRUE2","TRUE3","FALSE1","FALSE2","FALSE3","FALSE4","NULL1","NULL2","NULL3","NUMBER1","NUMBER3","STRING1","STRING2","STRING3","STRING4","STRING5","STRING6","VALUE","KEY","OBJECT","ARRAY","BACK_SLASH","charCodeAt","FORWARD_SLASH","BACKSPACE","FORM_FEED","NEWLINE","CARRIAGE_RETURN","TAB","STRING_BUFFER_SIZE","tState","string","stringBuffer","Buffer","alloc","stringBufferOffset","unicode","highSurrogate","state","bytes_remaining","bytes_in_sequence","temp_buffs","toknam","l","proto","charError","appendStringChar","char","appendStringBuf","start","end","size","copy","n","onToken","j","intVal","parseInt","isNaN","token","parseError","pop","parent"],"sourceRoot":""} \ No newline at end of file diff --git a/dist/js/13.06cd2e07.js b/dist/js/13.06cd2e07.js new file mode 100644 index 0000000..91687fb --- /dev/null +++ b/dist/js/13.06cd2e07.js @@ -0,0 +1,26 @@ +"use strict";(self["webpackChunkmobilitydcatap_ui"]=self["webpackChunkmobilitydcatap_ui"]||[]).push([[13],{55201:function(t,e,i){Object.defineProperty(e,"__esModule",{value:!0}),e.SaxesParser=e.EVENTS=void 0;const s=i(31487),a=i(84797),r=i(60446);var n=s.isS,o=s.isChar,h=s.isNameStartChar,l=s.isNameChar,c=s.S_LIST,d=s.NAME_RE,u=a.isChar,p=r.isNCNameStartChar,f=r.isNCNameChar,m=r.NC_NAME_RE;const g="http://www.w3.org/XML/1998/namespace",b="http://www.w3.org/2000/xmlns/",v={__proto__:null,xml:g,xmlns:b},x={__proto__:null,amp:"&",gt:">",lt:"<",quot:'"',apos:"'"},T=-1,C=-2,w=0,N=1,E=2,S=3,y=4,R=5,_=6,D=7,P=8,$=9,A=10,I=11,k=12,F=13,O=14,M=15,j=16,L=17,H=18,X=19,q=20,B=21,V=22,W=23,G=24,U=25,z=26,Z=27,Q=28,Y=29,J=30,K=31,tt=32,et=33,it=34,st=35,at=36,rt=37,nt=38,ot=39,ht=40,lt=41,ct=42,dt=43,ut=44,pt=9,ft=10,mt=13,gt=32,bt=33,vt=34,xt=38,Tt=39,Ct=45,wt=47,Nt=59,Et=60,St=61,yt=62,Rt=63,_t=91,Dt=93,Pt=133,$t=8232,At=t=>t===vt||t===Tt,It=[vt,Tt],kt=[...It,_t,yt],Ft=[...It,Et,Dt],Ot=[St,Rt,...c],Mt=[...c,yt,xt,Et];function jt(t,e,i){switch(e){case"xml":i!==g&&t.fail(`xml prefix must be bound to ${g}.`);break;case"xmlns":i!==b&&t.fail(`xmlns prefix must be bound to ${b}.`);break;default:}switch(i){case b:t.fail(""===e?`the default namespace may not be set to ${i}.`:`may not assign a prefix (even "xmlns") to the URI ${b}.`);break;case g:switch(e){case"xml":break;case"":t.fail(`the default namespace may not be set to ${i}.`);break;default:t.fail("may not assign the xml namespace to another prefix.")}break;default:}}function Lt(t,e){for(const i of Object.keys(e))jt(t,i,e[i])}const Ht=t=>m.test(t),Xt=t=>d.test(t),qt=0,Bt=1,Vt=2;e.EVENTS=["xmldecl","text","processinginstruction","doctype","comment","opentagstart","attribute","opentag","closetag","cdata","error","end","ready"];const Wt={xmldecl:"xmldeclHandler",text:"textHandler",processinginstruction:"piHandler",doctype:"doctypeHandler",comment:"commentHandler",opentagstart:"openTagStartHandler",attribute:"attributeHandler",opentag:"openTagHandler",closetag:"closeTagHandler",cdata:"cdataHandler",error:"errorHandler",end:"endHandler",ready:"readyHandler"};class Gt{get closed(){return this._closed}constructor(t){this.opt=null!==t&&void 0!==t?t:{},this.fragmentOpt=!!this.opt.fragment;const e=this.xmlnsOpt=!!this.opt.xmlns;if(this.trackPosition=!1!==this.opt.position,this.fileName=this.opt.fileName,e){this.nameStartCheck=p,this.nameCheck=f,this.isName=Ht,this.processAttribs=this.processAttribsNS,this.pushAttrib=this.pushAttribNS,this.ns=Object.assign({__proto__:null},v);const t=this.opt.additionalNamespaces;null!=t&&(Lt(this,t),Object.assign(this.ns,t))}else this.nameStartCheck=h,this.nameCheck=l,this.isName=Xt,this.processAttribs=this.processAttribsPlain,this.pushAttrib=this.pushAttribPlain;this.stateTable=[this.sBegin,this.sBeginWhitespace,this.sDoctype,this.sDoctypeQuote,this.sDTD,this.sDTDQuoted,this.sDTDOpenWaka,this.sDTDOpenWakaBang,this.sDTDComment,this.sDTDCommentEnding,this.sDTDCommentEnded,this.sDTDPI,this.sDTDPIEnding,this.sText,this.sEntity,this.sOpenWaka,this.sOpenWakaBang,this.sComment,this.sCommentEnding,this.sCommentEnded,this.sCData,this.sCDataEnding,this.sCDataEnding2,this.sPIFirstChar,this.sPIRest,this.sPIBody,this.sPIEnding,this.sXMLDeclNameStart,this.sXMLDeclName,this.sXMLDeclEq,this.sXMLDeclValueStart,this.sXMLDeclValue,this.sXMLDeclSeparator,this.sXMLDeclEnding,this.sOpenTag,this.sOpenTagSlash,this.sAttrib,this.sAttribName,this.sAttribNameSawWhite,this.sAttribValue,this.sAttribValueQuoted,this.sAttribValueClosed,this.sAttribValueUnquoted,this.sCloseTag,this.sCloseTagSawWhite],this._init()}_init(){var t;this.openWakaBang="",this.text="",this.name="",this.piTarget="",this.entity="",this.q=null,this.tags=[],this.tag=null,this.topNS=null,this.chunk="",this.chunkPosition=0,this.i=0,this.prevI=0,this.carriedFromPrevious=void 0,this.forbiddenState=qt,this.attribList=[];const{fragmentOpt:e}=this;this.state=e?F:w,this.reportedTextBeforeRoot=this.reportedTextAfterRoot=this.closedRoot=this.sawRoot=e,this.xmlDeclPossible=!e,this.xmlDeclExpects=["version"],this.entityReturnState=void 0;let{defaultXMLVersion:i}=this.opt;if(void 0===i){if(!0===this.opt.forceXMLVersion)throw new Error("forceXMLVersion set but defaultXMLVersion is not set");i="1.0"}this.setXMLVersion(i),this.positionAtNewLine=0,this.doctype=!1,this._closed=!1,this.xmlDecl={version:void 0,encoding:void 0,standalone:void 0},this.line=1,this.column=0,this.ENTITIES=Object.create(x),null===(t=this.readyHandler)||void 0===t||t.call(this)}get position(){return this.chunkPosition+this.i}get columnIndex(){return this.position-this.positionAtNewLine}on(t,e){this[Wt[t]]=e}off(t){this[Wt[t]]=void 0}makeError(t){var e;let i=null!==(e=this.fileName)&&void 0!==e?e:"";return this.trackPosition&&(i.length>0&&(i+=":"),i+=`${this.line}:${this.column}`),i.length>0&&(i+=": "),new Error(i+t)}fail(t){const e=this.makeError(t),i=this.errorHandler;if(void 0===i)throw e;return i(e),this}write(t){if(this.closed)return this.fail("cannot write after close; assign an onready handler.");let e=!1;null===t?(e=!0,t=""):"object"===typeof t&&(t=t.toString()),void 0!==this.carriedFromPrevious&&(t=`${this.carriedFromPrevious}${t}`,this.carriedFromPrevious=void 0);let i=t.length;const s=t.charCodeAt(i-1);!e&&(s===mt||s>=55296&&s<=56319)&&(this.carriedFromPrevious=t[i-1],i--,t=t.slice(0,i));const{stateTable:a}=this;this.chunk=t,this.i=0;while(this.i=t.length)return T;const i=t.charCodeAt(e);if(this.column++,i<55296){if(i>=gt||i===pt)return i;switch(i){case ft:return this.line++,this.column=0,this.positionAtNewLine=this.position,ft;case mt:return t.charCodeAt(e+1)===ft&&(this.i=e+2),this.line++,this.column=0,this.positionAtNewLine=this.position,C;default:return this.fail("disallowed character."),i}}if(i>56319)return i>=57344&&i<=65533||this.fail("disallowed character."),i;const s=65536+1024*(i-55296)+(t.charCodeAt(e+1)-56320);return this.i=e+2,s>1114111&&this.fail("disallowed character."),s}getCode11(){const{chunk:t,i:e}=this;if(this.prevI=e,this.i=e+1,e>=t.length)return T;const i=t.charCodeAt(e);if(this.column++,i<55296){if(i>31&&i<127||i>159&&i!==$t||i===pt)return i;switch(i){case ft:return this.line++,this.column=0,this.positionAtNewLine=this.position,ft;case mt:{const i=t.charCodeAt(e+1);i!==ft&&i!==Pt||(this.i=e+2)}case Pt:case $t:return this.line++,this.column=0,this.positionAtNewLine=this.position,C;default:return this.fail("disallowed character."),i}}if(i>56319)return i>=57344&&i<=65533||this.fail("disallowed character."),i;const s=65536+1024*(i-55296)+(t.charCodeAt(e+1)-56320);return this.i=e+2,s>1114111&&this.fail("disallowed character."),s}getCodeNorm(){const t=this.getCode();return t===C?ft:t}unget(){this.i=this.prevI,this.column--}captureTo(t){let{i:e}=this;const{chunk:i}=this;while(1){const s=this.getCode(),a=s===C,r=a?ft:s;if(r===T||t.includes(r))return this.text+=i.slice(e,this.prevI),r;a&&(this.text+=`${i.slice(e,this.prevI)}\n`,e=this.i)}}captureToChar(t){let{i:e}=this;const{chunk:i}=this;while(1){let s=this.getCode();switch(s){case C:this.text+=`${i.slice(e,this.prevI)}\n`,e=this.i,s=ft;break;case T:return this.text+=i.slice(e),!1;default:}if(s===t)return this.text+=i.slice(e,this.prevI),!0}}captureNameChars(){const{chunk:t,i:e}=this;while(1){const i=this.getCode();if(i===T)return this.name+=t.slice(e),T;if(!l(i))return this.name+=t.slice(e,this.prevI),i===C?ft:i}}skipSpaces(){while(1){const t=this.getCodeNorm();if(t===T||!n(t))return t}}setXMLVersion(t){this.currentXMLVersion=t,"1.0"===t?(this.isChar=o,this.getCode=this.getCode10):(this.isChar=u,this.getCode=this.getCode11)}sBegin(){65279===this.chunk.charCodeAt(0)&&(this.i++,this.column++),this.state=N}sBeginWhitespace(){const t=this.i,e=this.skipSpaces();switch(this.prevI!==t&&(this.xmlDeclPossible=!1),e){case Et:if(this.state=M,0!==this.text.length)throw new Error("no-empty text at start");break;case T:break;default:this.unget(),this.state=F,this.xmlDeclPossible=!1}}sDoctype(){var t;const e=this.captureTo(kt);switch(e){case yt:null===(t=this.doctypeHandler)||void 0===t||t.call(this,this.text),this.text="",this.state=F,this.doctype=!0;break;case T:break;default:this.text+=String.fromCodePoint(e),e===_t?this.state=y:At(e)&&(this.state=S,this.q=e)}}sDoctypeQuote(){const t=this.q;this.captureToChar(t)&&(this.text+=String.fromCodePoint(t),this.q=null,this.state=E)}sDTD(){const t=this.captureTo(Ft);t!==T&&(this.text+=String.fromCodePoint(t),t===Dt?this.state=E:t===Et?this.state=_:At(t)&&(this.state=R,this.q=t))}sDTDQuoted(){const t=this.q;this.captureToChar(t)&&(this.text+=String.fromCodePoint(t),this.state=y,this.q=null)}sDTDOpenWaka(){const t=this.getCodeNorm();switch(this.text+=String.fromCodePoint(t),t){case bt:this.state=D,this.openWakaBang="";break;case Rt:this.state=I;break;default:this.state=y}}sDTDOpenWakaBang(){const t=String.fromCodePoint(this.getCodeNorm()),e=this.openWakaBang+=t;this.text+=t,"-"!==e&&(this.state="--"===e?P:y,this.openWakaBang="")}sDTDComment(){this.captureToChar(Ct)&&(this.text+="-",this.state=$)}sDTDCommentEnding(){const t=this.getCodeNorm();this.text+=String.fromCodePoint(t),this.state=t===Ct?A:P}sDTDCommentEnded(){const t=this.getCodeNorm();this.text+=String.fromCodePoint(t),t===yt?this.state=y:(this.fail("malformed comment."),this.state=P)}sDTDPI(){this.captureToChar(Rt)&&(this.text+="?",this.state=k)}sDTDPIEnding(){const t=this.getCodeNorm();this.text+=String.fromCodePoint(t),t===yt&&(this.state=y)}sText(){0!==this.tags.length?this.handleTextInRoot():this.handleTextOutsideRoot()}sEntity(){let{i:t}=this;const{chunk:e}=this;t:while(1)switch(this.getCode()){case C:this.entity+=`${e.slice(t,this.prevI)}\n`,t=this.i;break;case Nt:{const{entityReturnState:i}=this,s=this.entity+e.slice(t,this.prevI);let a;this.state=i,""===s?(this.fail("empty entity name."),a="&;"):(a=this.parseEntity(s),this.entity=""),i===F&&void 0===this.textHandler||(this.text+=a);break t}case T:this.entity+=e.slice(t);break t;default:}}sOpenWaka(){const t=this.getCode();if(h(t))this.state=it,this.unget(),this.xmlDeclPossible=!1;else switch(t){case wt:this.state=dt,this.xmlDeclPossible=!1;break;case bt:this.state=j,this.openWakaBang="",this.xmlDeclPossible=!1;break;case Rt:this.state=W;break;default:this.fail("disallowed character in tag name"),this.state=F,this.xmlDeclPossible=!1}}sOpenWakaBang(){switch(this.openWakaBang+=String.fromCodePoint(this.getCodeNorm()),this.openWakaBang){case"[CDATA[":this.sawRoot||this.reportedTextBeforeRoot||(this.fail("text data outside of root node."),this.reportedTextBeforeRoot=!0),this.closedRoot&&!this.reportedTextAfterRoot&&(this.fail("text data outside of root node."),this.reportedTextAfterRoot=!0),this.state=q,this.openWakaBang="";break;case"--":this.state=L,this.openWakaBang="";break;case"DOCTYPE":this.state=E,(this.doctype||this.sawRoot)&&this.fail("inappropriately located doctype declaration."),this.openWakaBang="";break;default:this.openWakaBang.length>=7&&this.fail("incorrect syntax.")}}sComment(){this.captureToChar(Ct)&&(this.state=H)}sCommentEnding(){var t;const e=this.getCodeNorm();e===Ct?(this.state=X,null===(t=this.commentHandler)||void 0===t||t.call(this,this.text),this.text=""):(this.text+=`-${String.fromCodePoint(e)}`,this.state=L)}sCommentEnded(){const t=this.getCodeNorm();t!==yt?(this.fail("malformed comment."),this.text+=`--${String.fromCodePoint(t)}`,this.state=L):this.state=F}sCData(){this.captureToChar(Dt)&&(this.state=B)}sCDataEnding(){const t=this.getCodeNorm();t===Dt?this.state=V:(this.text+=`]${String.fromCodePoint(t)}`,this.state=q)}sCDataEnding2(){var t;const e=this.getCodeNorm();switch(e){case yt:null===(t=this.cdataHandler)||void 0===t||t.call(this,this.text),this.text="",this.state=F;break;case Dt:this.text+="]";break;default:this.text+=`]]${String.fromCodePoint(e)}`,this.state=q}}sPIFirstChar(){const t=this.getCodeNorm();this.nameStartCheck(t)?(this.piTarget+=String.fromCodePoint(t),this.state=G):t===Rt||n(t)?(this.fail("processing instruction without a target."),this.state=t===Rt?z:U):(this.fail("disallowed character in processing instruction name."),this.piTarget+=String.fromCodePoint(t),this.state=G)}sPIRest(){const{chunk:t,i:e}=this;while(1){const i=this.getCodeNorm();if(i===T)return void(this.piTarget+=t.slice(e));if(!this.nameCheck(i)){this.piTarget+=t.slice(e,this.prevI);const s=i===Rt;s||n(i)?"xml"===this.piTarget?(this.xmlDeclPossible||this.fail("an XML declaration must be at the start of the document."),this.state=s?et:Z):this.state=s?z:U:(this.fail("disallowed character in processing instruction name."),this.piTarget+=String.fromCodePoint(i));break}}}sPIBody(){if(0===this.text.length){const t=this.getCodeNorm();t===Rt?this.state=z:n(t)||(this.text=String.fromCodePoint(t))}else this.captureToChar(Rt)&&(this.state=z)}sPIEnding(){var t;const e=this.getCodeNorm();if(e===yt){const{piTarget:e}=this;"xml"===e.toLowerCase()&&this.fail("the XML declaration must appear at the start of the document."),null===(t=this.piHandler)||void 0===t||t.call(this,{target:e,body:this.text}),this.piTarget=this.text="",this.state=F}else e===Rt?this.text+="?":(this.text+=`?${String.fromCodePoint(e)}`,this.state=U);this.xmlDeclPossible=!1}sXMLDeclNameStart(){const t=this.skipSpaces();t!==Rt?t!==T&&(this.state=Q,this.name=String.fromCodePoint(t)):this.state=et}sXMLDeclName(){const t=this.captureTo(Ot);if(t===Rt)return this.state=et,this.name+=this.text,this.text="",void this.fail("XML declaration is incomplete.");if(n(t)||t===St){if(this.name+=this.text,this.text="",!this.xmlDeclExpects.includes(this.name))switch(this.name.length){case 0:this.fail("did not expect any more name/value pairs.");break;case 1:this.fail(`expected the name ${this.xmlDeclExpects[0]}.`);break;default:this.fail(`expected one of ${this.xmlDeclExpects.join(", ")}`)}this.state=t===St?J:Y}}sXMLDeclEq(){const t=this.getCodeNorm();if(t===Rt)return this.state=et,void this.fail("XML declaration is incomplete.");n(t)||(t!==St&&this.fail("value required."),this.state=J)}sXMLDeclValueStart(){const t=this.getCodeNorm();if(t===Rt)return this.state=et,void this.fail("XML declaration is incomplete.");n(t)||(At(t)?this.q=t:(this.fail("value must be quoted."),this.q=gt),this.state=K)}sXMLDeclValue(){const t=this.captureTo([this.q,Rt]);if(t===Rt)return this.state=et,this.text="",void this.fail("XML declaration is incomplete.");if(t===T)return;const e=this.text;switch(this.text="",this.name){case"version":{this.xmlDeclExpects=["encoding","standalone"];const t=e;this.xmlDecl.version=t,/^1\.[0-9]+$/.test(t)?this.opt.forceXMLVersion||this.setXMLVersion(t):this.fail("version number must match /^1\\.[0-9]+$/.");break}case"encoding":/^[A-Za-z][A-Za-z0-9._-]*$/.test(e)||this.fail("encoding value must match /^[A-Za-z0-9][A-Za-z0-9._-]*$/."),this.xmlDeclExpects=["standalone"],this.xmlDecl.encoding=e;break;case"standalone":"yes"!==e&&"no"!==e&&this.fail('standalone value must match "yes" or "no".'),this.xmlDeclExpects=[],this.xmlDecl.standalone=e;break;default:}this.name="",this.state=tt}sXMLDeclSeparator(){const t=this.getCodeNorm();t!==Rt?(n(t)||(this.fail("whitespace required."),this.unget()),this.state=Z):this.state=et}sXMLDeclEnding(){var t;const e=this.getCodeNorm();e===yt?("xml"!==this.piTarget?this.fail("processing instructions are not allowed before root."):"version"!==this.name&&this.xmlDeclExpects.includes("version")&&this.fail("XML declaration must contain a version."),null===(t=this.xmldeclHandler)||void 0===t||t.call(this,this.xmlDecl),this.name="",this.piTarget=this.text="",this.state=F):this.fail("The character ? is disallowed anywhere in XML declarations."),this.xmlDeclPossible=!1}sOpenTag(){var t;const e=this.captureNameChars();if(e===T)return;const i=this.tag={name:this.name,attributes:Object.create(null)};switch(this.name="",this.xmlnsOpt&&(this.topNS=i.ns=Object.create(null)),null===(t=this.openTagStartHandler)||void 0===t||t.call(this,i),this.sawRoot=!0,!this.fragmentOpt&&this.closedRoot&&this.fail("documents may contain only one root."),e){case yt:this.openTag();break;case wt:this.state=st;break;default:n(e)||this.fail("disallowed character in tag name."),this.state=at}}sOpenTagSlash(){this.getCode()===yt?this.openSelfClosingTag():(this.fail("forward-slash in opening tag not followed by >."),this.state=at)}sAttrib(){const t=this.skipSpaces();t!==T&&(h(t)?(this.unget(),this.state=rt):t===yt?this.openTag():t===wt?this.state=st:this.fail("disallowed character in attribute name."))}sAttribName(){const t=this.captureNameChars();t===St?this.state=ot:n(t)?this.state=nt:t===yt?(this.fail("attribute without value."),this.pushAttrib(this.name,this.name),this.name=this.text="",this.openTag()):t!==T&&this.fail("disallowed character in attribute name.")}sAttribNameSawWhite(){const t=this.skipSpaces();switch(t){case T:return;case St:this.state=ot;break;default:this.fail("attribute without value."),this.text="",this.name="",t===yt?this.openTag():h(t)?(this.unget(),this.state=rt):(this.fail("disallowed character in attribute name."),this.state=at)}}sAttribValue(){const t=this.getCodeNorm();At(t)?(this.q=t,this.state=ht):n(t)||(this.fail("unquoted attribute value."),this.state=ct,this.unget())}sAttribValueQuoted(){const{q:t,chunk:e}=this;let{i:i}=this;while(1)switch(this.getCode()){case t:return this.pushAttrib(this.name,this.text+e.slice(i,this.prevI)),this.name=this.text="",this.q=null,void(this.state=lt);case xt:return this.text+=e.slice(i,this.prevI),this.state=O,void(this.entityReturnState=ht);case ft:case C:case pt:this.text+=`${e.slice(i,this.prevI)} `,i=this.i;break;case Et:return this.text+=e.slice(i,this.prevI),void this.fail("disallowed character.");case T:return void(this.text+=e.slice(i));default:}}sAttribValueClosed(){const t=this.getCodeNorm();n(t)?this.state=at:t===yt?this.openTag():t===wt?this.state=st:h(t)?(this.fail("no whitespace between attributes."),this.unget(),this.state=rt):this.fail("disallowed character in attribute name.")}sAttribValueUnquoted(){const t=this.captureTo(Mt);switch(t){case xt:this.state=O,this.entityReturnState=ct;break;case Et:this.fail("disallowed character.");break;case T:break;default:this.text.includes("]]>")&&this.fail('the string "]]>" is disallowed in char data.'),this.pushAttrib(this.name,this.text),this.name=this.text="",t===yt?this.openTag():this.state=at}}sCloseTag(){const t=this.captureNameChars();t===yt?this.closeTag():n(t)?this.state=ut:t!==T&&this.fail("disallowed character in closing tag.")}sCloseTagSawWhite(){switch(this.skipSpaces()){case yt:this.closeTag();break;case T:break;default:this.fail("disallowed character in closing tag.")}}handleTextInRoot(){let{i:t,forbiddenState:e}=this;const{chunk:i,textHandler:s}=this;t:while(1)switch(this.getCode()){case Et:if(this.state=M,void 0!==s){const{text:e}=this,a=i.slice(t,this.prevI);0!==e.length?(s(e+a),this.text=""):0!==a.length&&s(a)}e=qt;break t;case xt:this.state=O,this.entityReturnState=F,void 0!==s&&(this.text+=i.slice(t,this.prevI)),e=qt;break t;case Dt:switch(e){case qt:e=Bt;break;case Bt:e=Vt;break;case Vt:break;default:throw new Error("impossible state")}break;case yt:e===Vt&&this.fail('the string "]]>" is disallowed in char data.'),e=qt;break;case C:void 0!==s&&(this.text+=`${i.slice(t,this.prevI)}\n`),t=this.i,e=qt;break;case T:void 0!==s&&(this.text+=i.slice(t));break t;default:e=qt}this.forbiddenState=e}handleTextOutsideRoot(){let{i:t}=this;const{chunk:e,textHandler:i}=this;let s=!1;t:while(1){const a=this.getCode();switch(a){case Et:if(this.state=M,void 0!==i){const{text:s}=this,a=e.slice(t,this.prevI);0!==s.length?(i(s+a),this.text=""):0!==a.length&&i(a)}break t;case xt:this.state=O,this.entityReturnState=F,void 0!==i&&(this.text+=e.slice(t,this.prevI)),s=!0;break t;case C:void 0!==i&&(this.text+=`${e.slice(t,this.prevI)}\n`),t=this.i;break;case T:void 0!==i&&(this.text+=e.slice(t));break t;default:n(a)||(s=!0)}}s&&(this.sawRoot||this.reportedTextBeforeRoot||(this.fail("text data outside of root node."),this.reportedTextBeforeRoot=!0),this.closedRoot&&!this.reportedTextAfterRoot&&(this.fail("text data outside of root node."),this.reportedTextAfterRoot=!0))}pushAttribNS(t,e){var i;const{prefix:s,local:a}=this.qname(t),r={name:t,prefix:s,local:a,value:e};if(this.attribList.push(r),null===(i=this.attributeHandler)||void 0===i||i.call(this,r),"xmlns"===s){const t=e.trim();"1.0"===this.currentXMLVersion&&""===t&&this.fail("invalid attempt to undefine prefix in XML 1.0"),this.topNS[a]=t,jt(this,a,t)}else if("xmlns"===t){const t=e.trim();this.topNS[""]=t,jt(this,"",t)}}pushAttribPlain(t,e){var i;const s={name:t,value:e};this.attribList.push(s),null===(i=this.attributeHandler)||void 0===i||i.call(this,s)}end(){var t,e;this.sawRoot||this.fail("document must contain a root element.");const{tags:i}=this;while(i.length>0){const t=i.pop();this.fail(`unclosed tag: ${t.name}`)}this.state!==w&&this.state!==F&&this.fail("unexpected end.");const{text:s}=this;return 0!==s.length&&(null===(t=this.textHandler)||void 0===t||t.call(this,s),this.text=""),this._closed=!0,null===(e=this.endHandler)||void 0===e||e.call(this),this._init(),this}resolve(t){var e,i;let s=this.topNS[t];if(void 0!==s)return s;const{tags:a}=this;for(let r=a.length-1;r>=0;r--)if(s=a[r].ns[t],void 0!==s)return s;return s=this.ns[t],void 0!==s?s:null===(i=(e=this.opt).resolvePrefix)||void 0===i?void 0:i.call(e,t)}qname(t){const e=t.indexOf(":");if(-1===e)return{prefix:"",local:t};const i=t.slice(e+1),s=t.slice(0,e);return(""===s||""===i||i.includes(":"))&&this.fail(`malformed name: ${t}.`),{prefix:s,local:i}}processAttribsNS(){var t;const{attribList:e}=this,i=this.tag;{const{prefix:e,local:s}=this.qname(i.name);i.prefix=e,i.local=s;const a=i.uri=null!==(t=this.resolve(e))&&void 0!==t?t:"";""!==e&&("xmlns"===e&&this.fail('tags may not have "xmlns" as prefix.'),""===a&&(this.fail(`unbound namespace prefix: ${JSON.stringify(e)}.`),i.uri=e))}if(0===e.length)return;const{attributes:s}=i,a=new Set;for(const r of e){const{name:t,prefix:e,local:i}=r;let n,o;""===e?(n="xmlns"===t?b:"",o=t):(n=this.resolve(e),void 0===n&&(this.fail(`unbound namespace prefix: ${JSON.stringify(e)}.`),n=e),o=`{${n}}${i}`),a.has(o)&&this.fail(`duplicate attribute: ${o}.`),a.add(o),r.uri=n,s[t]=r}this.attribList=[]}processAttribsPlain(){const{attribList:t}=this,e=this.tag.attributes;for(const{name:i,value:s}of t)void 0!==e[i]&&this.fail(`duplicate attribute: ${i}.`),e[i]=s;this.attribList=[]}openTag(){var t;this.processAttribs();const{tags:e}=this,i=this.tag;i.isSelfClosing=!1,null===(t=this.openTagHandler)||void 0===t||t.call(this,i),e.push(i),this.state=F,this.name=""}openSelfClosingTag(){var t,e,i;this.processAttribs();const{tags:s}=this,a=this.tag;a.isSelfClosing=!0,null===(t=this.openTagHandler)||void 0===t||t.call(this,a),null===(e=this.closeTagHandler)||void 0===e||e.call(this,a);const r=this.tag=null!==(i=s[s.length-1])&&void 0!==i?i:null;null===r&&(this.closedRoot=!0),this.state=F,this.name=""}closeTag(){const{tags:t,name:e}=this;if(this.state=F,this.name="",""===e)return this.fail("weird empty close tag."),void(this.text+="");const i=this.closeTagHandler;let s=t.length;while(s-- >0){const s=this.tag=t.pop();if(this.topNS=s.ns,null===i||void 0===i||i(s),s.name===e)break;this.fail("unexpected close tag.")}0===s?this.closedRoot=!0:s<0&&(this.fail(`unmatched closing tag: ${e}.`),this.text+=``)}parseEntity(t){if("#"!==t[0]){const e=this.ENTITIES[t];return void 0!==e?e:(this.fail(this.isName(t)?"undefined entity.":"disallowed character in entity name."),`&${t};`)}let e=NaN;return"x"===t[1]&&/^#x[0-9a-f]+$/i.test(t)?e=parseInt(t.slice(2),16):/^#[0-9]+$/.test(t)&&(e=parseInt(t.slice(1),10)),this.isChar(e)?String.fromCodePoint(e):(this.fail("malformed character entity."),`&${t};`)}}e.SaxesParser=Gt},24353:function(t,e,i){var s=this&&this.__createBinding||(Object.create?function(t,e,i,s){void 0===s&&(s=i);var a=Object.getOwnPropertyDescriptor(e,i);a&&!("get"in a?!e.__esModule:a.writable||a.configurable)||(a={enumerable:!0,get:function(){return e[i]}}),Object.defineProperty(t,s,a)}:function(t,e,i,s){void 0===s&&(s=i),t[s]=e[i]}),a=this&&this.__exportStar||function(t,e){for(var i in t)"default"===i||Object.prototype.hasOwnProperty.call(e,i)||s(e,t,i)};Object.defineProperty(e,"__esModule",{value:!0}),a(i(93923),e)},30570:function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.ParseError=void 0;class i extends Error{constructor(t,e){const i=t.saxParser;super(t.trackPosition?`Line ${i.line} column ${i.column+1}: ${e}`:e)}}e.ParseError=i},93923:function(t,e,i){Object.defineProperty(e,"__esModule",{value:!0}),e.ParseType=e.RdfXmlParser=void 0;const s=i(70742),a=i(55201),r=i(14088),n=i(30570),o=i(47793),h=i(17024);class l extends r.Transform{constructor(t){super({readableObjectMode:!0}),this.activeTagStack=[],this.nodeIds={},t&&(Object.assign(this,t),this.options=t),this.dataFactory||(this.dataFactory=new o.DataFactory),this.baseIRI||(this.baseIRI=""),this.defaultGraph||(this.defaultGraph=this.dataFactory.defaultGraph()),!1!==this.validateUri&&(this.validateUri=!0),this.iriValidationStrategy||(this.iriValidationStrategy=this.validateUri?h.IriValidationStrategy.Pragmatic:h.IriValidationStrategy.None),this.saxParser=new a.SaxesParser({xmlns:!0,position:this.trackPosition}),this.attachSaxListeners()}import(t){const e=new r.PassThrough({readableObjectMode:!0});t.on("error",(t=>i.emit("error",t))),t.on("data",(t=>e.push(t))),t.on("end",(()=>e.push(null)));const i=e.pipe(new l(this.options));return i}_transform(t,e,i){try{this.saxParser.write(t)}catch(s){return i(s)}i()}newParseError(t){return new n.ParseError(this,t)}valueToUri(t,e){return this.uriToNamedNode((0,s.resolve)(t,e.baseIRI))}uriToNamedNode(t){const e=(0,h.validateIri)(t,this.iriValidationStrategy);if(e instanceof Error)throw this.newParseError(e.message);return this.dataFactory.namedNode(t)}validateNcname(t){if(!l.NCNAME_MATCHER.test(t))throw this.newParseError(`Not a valid NCName: ${t}`)}attachSaxListeners(){this.saxParser.on("error",(t=>this.emit("error",t))),this.saxParser.on("opentag",this.onTag.bind(this)),this.saxParser.on("text",this.onText.bind(this)),this.saxParser.on("cdata",this.onText.bind(this)),this.saxParser.on("closetag",this.onCloseTag.bind(this)),this.saxParser.on("doctype",this.onDoctype.bind(this))}onTag(t){const e=this.activeTagStack.length?this.activeTagStack[this.activeTagStack.length-1]:null;let i=c.RESOURCE;if(e&&(e.hadChildren=!0,i=e.childrenParseType),e&&e.childrenStringTags){const i=t.name;let s="";for(const e in t.attributes)s+=` ${e}="${t.attributes[e].value}"`;const a=`${i}${s}`,r=`<${a}>`;e.childrenStringTags.push(r);const n={childrenStringTags:e.childrenStringTags};return n.childrenStringEmitClosingTag=``,void this.activeTagStack.push(n)}const s={};e?(s.language=e.language,s.baseIRI=e.baseIRI):s.baseIRI=this.baseIRI,this.activeTagStack.push(s),i===c.RESOURCE?this.onTagResource(t,s,e,!e):this.onTagProperty(t,s,e)}onTagResource(t,e,i,a){e.childrenParseType=c.PROPERTY;let r=!0;if(t.uri===l.RDF){if(!a&&l.FORBIDDEN_NODE_ELEMENTS.indexOf(t.local)>=0)throw this.newParseError(`Illegal node element name: ${t.local}`);switch(t.local){case"RDF":e.childrenParseType=c.RESOURCE;case"Description":r=!1}}const n=[],o=[];let h=null,d=!1,u=!1,p=null;for(const c in t.attributes){const a=t.attributes[c];if(i&&a.uri===l.RDF)switch(a.local){case"about":if(h)throw this.newParseError(`Only one of rdf:about, rdf:nodeID and rdf:ID can be present, while ${a.value} and ${h} where found.`);h=a.value;continue;case"ID":if(h)throw this.newParseError(`Only one of rdf:about, rdf:nodeID and rdf:ID can be present, while ${a.value} and ${h} where found.`);this.validateNcname(a.value),h="#"+a.value,d=!0;continue;case"nodeID":if(h)throw this.newParseError(`Only one of rdf:about, rdf:nodeID and rdf:ID can be present, while ${a.value} and ${h} where found.`);this.validateNcname(a.value),h=a.value,u=!0;continue;case"bagID":throw this.newParseError("rdf:bagID is not supported.");case"type":p=a.value;continue;case"aboutEach":throw this.newParseError("rdf:aboutEach is not supported.");case"aboutEachPrefix":throw this.newParseError("rdf:aboutEachPrefix is not supported.");case"li":throw this.newParseError("rdf:li on node elements are not supported.")}else if(a.uri===l.XML){if("lang"===a.local){e.language=""===a.value?null:a.value.toLowerCase();continue}if("base"===a.local){e.baseIRI=(0,s.resolve)(a.value,e.baseIRI);continue}}"xml"===a.prefix||"xmlns"===a.prefix||""===a.prefix&&"xmlns"===a.local||!a.uri||(n.push(this.uriToNamedNode(a.uri+a.local)),o.push(a.value))}if(null!==h&&(e.subject=u?this.dataFactory.blankNode(h):this.valueToUri(h,e),d&&this.claimNodeId(e.subject)),e.subject||(e.subject=this.dataFactory.blankNode()),r){const s=this.uriToNamedNode(t.uri+t.local);this.emitTriple(e.subject,this.dataFactory.namedNode(l.RDF+"type"),s,i?i.reifiedStatementId:null)}if(i){if(i.predicate)if(i.childrenCollectionSubject){const t=this.dataFactory.blankNode();this.emitTriple(i.childrenCollectionSubject,i.childrenCollectionPredicate,t,i.reifiedStatementId),this.emitTriple(t,this.dataFactory.namedNode(l.RDF+"first"),e.subject,e.reifiedStatementId),i.childrenCollectionSubject=t,i.childrenCollectionPredicate=this.dataFactory.namedNode(l.RDF+"rest")}else{this.emitTriple(i.subject,i.predicate,e.subject,i.reifiedStatementId);for(let t=0;t=0)throw this.newParseError(`Illegal property element name: ${t.local}`);e.predicateSubPredicates=[],e.predicateSubObjects=[];let s=!1,a=!1,r=null,n=!0;const o=[],h=[];for(const d in t.attributes){const i=t.attributes[d];if(i.uri===l.RDF)switch(i.local){case"resource":if(r)throw this.newParseError(`Found both rdf:resource (${i.value}) and rdf:nodeID (${r}).`);if(s)throw this.newParseError(`rdf:parseType is not allowed on property elements with rdf:resource (${i.value})`);e.hadChildren=!0,r=i.value,n=!1;continue;case"datatype":if(a)throw this.newParseError(`Found both non-rdf:* property attributes and rdf:datatype (${i.value}).`);if(s)throw this.newParseError(`rdf:parseType is not allowed on property elements with rdf:datatype (${i.value})`);e.datatype=this.valueToUri(i.value,e);continue;case"nodeID":if(a)throw this.newParseError(`Found both non-rdf:* property attributes and rdf:nodeID (${i.value}).`);if(e.hadChildren)throw this.newParseError(`Found both rdf:resource and rdf:nodeID (${i.value}).`);if(s)throw this.newParseError(`rdf:parseType is not allowed on property elements with rdf:nodeID (${i.value})`);this.validateNcname(i.value),e.hadChildren=!0,r=i.value,n=!0;continue;case"bagID":throw this.newParseError("rdf:bagID is not supported.");case"parseType":if(a)throw this.newParseError("rdf:parseType is not allowed when non-rdf:* property attributes are present");if(e.datatype)throw this.newParseError(`rdf:parseType is not allowed on property elements with rdf:datatype (${e.datatype.value})`);if(r)throw this.newParseError(`rdf:parseType is not allowed on property elements with rdf:nodeID or rdf:resource (${r})`);if("Resource"===i.value){s=!0,e.childrenParseType=c.PROPERTY;const t=this.dataFactory.blankNode();this.emitTriple(e.subject,e.predicate,t,e.reifiedStatementId),e.subject=t,e.predicate=null}else"Collection"===i.value?(s=!0,e.hadChildren=!0,e.childrenCollectionSubject=e.subject,e.childrenCollectionPredicate=e.predicate,n=!1):"Literal"===i.value&&(s=!0,e.childrenTagsToString=!0,e.childrenStringTags=[]);continue;case"ID":this.validateNcname(i.value),e.reifiedStatementId=this.valueToUri("#"+i.value,e),this.claimNodeId(e.reifiedStatementId);continue}else if(i.uri===l.XML&&"lang"===i.local){e.language=""===i.value?null:i.value.toLowerCase();continue}if("xml"!==i.prefix&&"xmlns"!==i.prefix&&(""!==i.prefix||"xmlns"!==i.local)&&i.uri){if(s||e.datatype)throw this.newParseError(`Found illegal rdf:* properties on property element with attribute: ${i.value}`);e.hadChildren=!0,a=!0,o.push(this.uriToNamedNode(i.uri+i.local)),h.push(this.dataFactory.literal(i.value,e.datatype||e.language))}}if(null!==r){const t=e.subject;e.subject=n?this.dataFactory.blankNode(r):this.valueToUri(r,e),this.emitTriple(t,e.predicate,e.subject,e.reifiedStatementId);for(let i=0;i/g,((t,e,i)=>(this.saxParser.ENTITIES[e]=i,"")))}}var c;e.RdfXmlParser=l,l.MIME_TYPE="application/rdf+xml",l.RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#",l.XML="http://www.w3.org/XML/1998/namespace",l.FORBIDDEN_NODE_ELEMENTS=["RDF","ID","about","bagID","parseType","resource","nodeID","li","aboutEach","aboutEachPrefix"],l.FORBIDDEN_PROPERTY_ELEMENTS=["Description","RDF","ID","about","bagID","parseType","resource","nodeID","aboutEach","aboutEachPrefix"],l.NCNAME_MATCHER=/^([A-Za-z\xC0-\xD6\xD8-\xF6\u{F8}-\u{2FF}\u{370}-\u{37D}\u{37F}-\u{1FFF}\u{200C}-\u{200D}\u{2070}-\u{218F}\u{2C00}-\u{2FEF}\u{3001}-\u{D7FF}\u{F900}-\u{FDCF}\u{FDF0}-\u{FFFD}\u{10000}-\u{EFFFF}_])([A-Za-z\xC0-\xD6\xD8-\xF6\u{F8}-\u{2FF}\u{370}-\u{37D}\u{37F}-\u{1FFF}\u{200C}-\u{200D}\u{2070}-\u{218F}\u{2C00}-\u{2FEF}\u{3001}-\u{D7FF}\u{F900}-\u{FDCF}\u{FDF0}-\u{FFFD}\u{10000}-\u{EFFFF}_\-.0-9#xB7\u{0300}-\u{036F}\u{203F}-\u{2040}])*$/u,function(t){t[t["RESOURCE"]=0]="RESOURCE",t[t["PROPERTY"]=1]="PROPERTY"}(c||(e.ParseType=c={}))},47793:function(t,e,i){var s=this&&this.__createBinding||(Object.create?function(t,e,i,s){void 0===s&&(s=i),Object.defineProperty(t,s,{enumerable:!0,get:function(){return e[i]}})}:function(t,e,i,s){void 0===s&&(s=i),t[s]=e[i]}),a=this&&this.__exportStar||function(t,e){for(var i in t)"default"===i||Object.prototype.hasOwnProperty.call(e,i)||s(e,t,i)};Object.defineProperty(e,"__esModule",{value:!0}),a(i(49931),e),a(i(88483),e),a(i(92142),e),a(i(62426),e),a(i(43988),e),a(i(36754),e),a(i(88401),e)},49931:function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.BlankNode=void 0;class i{constructor(t){this.termType="BlankNode",this.value=t}equals(t){return!!t&&"BlankNode"===t.termType&&t.value===this.value}}e.BlankNode=i},88483:function(t,e,i){Object.defineProperty(e,"__esModule",{value:!0}),e.DataFactory=void 0;const s=i(49931),a=i(92142),r=i(62426),n=i(43988),o=i(36754),h=i(88401);let l=0;class c{constructor(t){this.blankNodeCounter=0,t=t||{},this.blankNodePrefix=t.blankNodePrefix||`df_${l++}_`}namedNode(t){return new n.NamedNode(t)}blankNode(t){return new s.BlankNode(t||`${this.blankNodePrefix}${this.blankNodeCounter++}`)}literal(t,e){return new r.Literal(t,e)}variable(t){return new h.Variable(t)}defaultGraph(){return a.DefaultGraph.INSTANCE}quad(t,e,i,s){return new o.Quad(t,e,i,s||this.defaultGraph())}fromTerm(t){switch(t.termType){case"NamedNode":return this.namedNode(t.value);case"BlankNode":return this.blankNode(t.value);case"Literal":return t.language?this.literal(t.value,t.language):t.datatype.equals(r.Literal.XSD_STRING)?this.literal(t.value):this.literal(t.value,this.fromTerm(t.datatype));case"Variable":return this.variable(t.value);case"DefaultGraph":return this.defaultGraph();case"Quad":return this.quad(this.fromTerm(t.subject),this.fromTerm(t.predicate),this.fromTerm(t.object),this.fromTerm(t.graph))}}fromQuad(t){return this.fromTerm(t)}resetBlankNodeCounter(){this.blankNodeCounter=0}}e.DataFactory=c},92142:function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.DefaultGraph=void 0;class i{constructor(){this.termType="DefaultGraph",this.value=""}equals(t){return!!t&&"DefaultGraph"===t.termType}}e.DefaultGraph=i,i.INSTANCE=new i},62426:function(t,e,i){Object.defineProperty(e,"__esModule",{value:!0}),e.Literal=void 0;const s=i(43988);class a{constructor(t,e){this.termType="Literal",this.value=t,"string"===typeof e?(this.language=e,this.datatype=a.RDF_LANGUAGE_STRING):e?(this.language="",this.datatype=e):(this.language="",this.datatype=a.XSD_STRING)}equals(t){return!!t&&"Literal"===t.termType&&t.value===this.value&&t.language===this.language&&this.datatype.equals(t.datatype)}}e.Literal=a,a.RDF_LANGUAGE_STRING=new s.NamedNode("http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"),a.XSD_STRING=new s.NamedNode("http://www.w3.org/2001/XMLSchema#string")},43988:function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.NamedNode=void 0;class i{constructor(t){this.termType="NamedNode",this.value=t}equals(t){return!!t&&"NamedNode"===t.termType&&t.value===this.value}}e.NamedNode=i},36754:function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.Quad=void 0;class i{constructor(t,e,i,s){this.termType="Quad",this.value="",this.subject=t,this.predicate=e,this.object=i,this.graph=s}equals(t){return!!t&&("Quad"===t.termType||!t.termType)&&this.subject.equals(t.subject)&&this.predicate.equals(t.predicate)&&this.object.equals(t.object)&&this.graph.equals(t.graph)}}e.Quad=i},88401:function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.Variable=void 0;class i{constructor(t){this.termType="Variable",this.value=t}equals(t){return!!t&&"Variable"===t.termType&&t.value===this.value}}e.Variable=i},70742:function(t,e,i){var s=this&&this.__createBinding||(Object.create?function(t,e,i,s){void 0===s&&(s=i),Object.defineProperty(t,s,{enumerable:!0,get:function(){return e[i]}})}:function(t,e,i,s){void 0===s&&(s=i),t[s]=e[i]}),a=this&&this.__exportStar||function(t,e){for(var i in t)"default"===i||Object.prototype.hasOwnProperty.call(e,i)||s(e,t,i)};Object.defineProperty(e,"__esModule",{value:!0}),a(i(24806),e)},24806:function(t,e){function i(t,e){e=e||"";const i=e.indexOf("#");if(i>0&&(e=e.substr(0,i)),!t.length){if(e.indexOf(":")<0)throw new Error(`Found invalid baseIRI '${e}' for value '${t}'`);return e}if(t.startsWith("?")){const i=e.indexOf("?");return i>0&&(e=e.substr(0,i)),e+t}if(t.startsWith("#"))return e+t;if(!e.length){const e=t.indexOf(":");if(e<0)throw new Error(`Found invalid relative IRI '${t}' for a missing baseIRI`);return a(t,e)}const r=t.indexOf(":");if(r>=0)return a(t,r);const n=e.indexOf(":");if(n<0)throw new Error(`Found invalid baseIRI '${e}' for value '${t}'`);const o=e.substr(0,n+1);if(0===t.indexOf("//"))return o+a(t,r);let h;if(e.indexOf("//",n)===n+1){if(h=e.indexOf("/",n+3),h<0)return e.length>n+3?e+"/"+a(t,r):o+a(t,r)}else if(h=e.indexOf("/",n+1),h<0)return o+a(t,r);if(0===t.indexOf("/"))return e.substr(0,h)+s(t);let l=e.substr(h);const c=l.lastIndexOf("/");return c>=0&&ct.join(""))).join("/")}function a(t,e){let i=e+1;e>=0?"/"===t[e+1]&&"/"===t[e+2]&&(i=e+3):"/"===t[0]&&"/"===t[1]&&(i=2);const a=t.indexOf("/",i);if(a<0)return t;const r=t.substr(0,a),n=t.substr(a);return r+s(n)}function r(t){return!t||"#"===t||"?"===t||"/"===t}Object.defineProperty(e,"__esModule",{value:!0}),e.removeDotSegmentsOfPath=e.removeDotSegments=e.resolve=void 0,e.resolve=i,e.removeDotSegments=s,e.removeDotSegmentsOfPath=a},17024:function(t,e,i){var s=this&&this.__createBinding||(Object.create?function(t,e,i,s){void 0===s&&(s=i);var a=Object.getOwnPropertyDescriptor(e,i);a&&!("get"in a?!e.__esModule:a.writable||a.configurable)||(a={enumerable:!0,get:function(){return e[i]}}),Object.defineProperty(t,s,a)}:function(t,e,i,s){void 0===s&&(s=i),t[s]=e[i]}),a=this&&this.__exportStar||function(t,e){for(var i in t)"default"===i||Object.prototype.hasOwnProperty.call(e,i)||s(e,t,i)};Object.defineProperty(e,"__esModule",{value:!0}),a(i(32300),e)},32300:function(t,e){function i(){const t="!$&'()*+,;=",e=`[${t}]`,i="%[a-fA-F0-9]{2}",s="([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])",a=`${s}\\.${s}\\.${s}\\.${s}`,r="[a-fA-F0-9]{1,4}",n=`(${r}:${r}|${a})`,o=`((${r}:){6}${n}|::(${r}:){5}${n}|(${r})?::(${r}:){4}${n}|((${r}:){0,1}${r})?::(${r}:){3}${n}|((${r}:){0,2}${r})?::(${r}:){2}${n}|((${r}:){0,3}${r})?::${r}:${n}|((${r}:){0,4}${r})?::${n}|((${r}:){0,5}${r})?::${r}|((${r}:){0,6}${r})?::)`,h=`v[a-fA-F0-9]+\\.(${e}|${e}|":)+`,l=`\\[(${o}|${h})\\]`,c="[0-9]*",d="[a-zA-Z][a-zA-Z0-9+\\-.]*",u="-󰀀-󿿽􀀀-􏿽",p=`[${u}]`,f=" -퟿豈-﷏ﷰ-￯𐀀-🿽𠀀-𯿽𰀀-𿿽񀀀-񏿽񐀀-񟿽񠀀-񯿽񰀀-񿿽򀀀-򏿽򐀀-򟿽򠀀-򯿽򰀀-򿿽󀀀-󏿽󐀀-󟿽󡀀-󯿽",m=`a-zA-Z0-9\\-._~${f}`,g=`[${m}]`,b=`(${g}|${i}|${e}|[:@])*`,v=`(${b}|[\\/?])*`,x=`(${b}|${p}|[\\/?])*`,T=`(${b})+`,C=`(${b})*`,w="",N=`${T}(\\/${C})*`,E=`\\/(${T}(\\/${C})*)?`,S=`(\\/${C})*`,y=`(${g}|${i}|${e})*`,R=`(${l}|${a}|${y})`,_=`(${g}|${i}|${e}|:)*`,D=`(${_}@)?${R}(:${c})?`,P=`(\\/\\/${D}${S}|${E}|${N}|${w})`,$=`^${d}:${P}(\\?${x})?(#${v})?$`;return new RegExp($,"u")}Object.defineProperty(e,"__esModule",{value:!0}),e.validateIri=e.IriValidationStrategy=void 0;const s=i(),a=/^[A-Za-z][\d+-.A-Za-z]*:[^\u0000-\u0020"<>\\^`{|}]*$/u;var r;function n(t,e=r.Strict){switch(e){case r.Strict:return s.test(t)?void 0:new Error(`Invalid IRI according to RFC 3987: '${t}'`);case r.Pragmatic:return a.test(t)?void 0:new Error(`Invalid IRI according to RDF Turtle: '${t}'`);case r.None:return;default:return new Error(`Not supported validation strategy "${e}"`)}}(function(t){t["Strict"]="strict",t["Pragmatic"]="pragmatic",t["None"]="none"})(r=e.IriValidationStrategy||(e.IriValidationStrategy={})),e.validateIri=n},31487:function(t,e){ +/** + * Character classes and associated utilities for the 5th edition of XML 1.0. + * + * @author Louis-Dominique Dubeau + * @license MIT + * @copyright Louis-Dominique Dubeau + */ +Object.defineProperty(e,"__esModule",{value:!0}),e.CHAR="\t\n\r -퟿-�𐀀-􏿿",e.S=" \t\r\n",e.NAME_START_CHAR=":A-Z_a-zÀ-ÖØ-öø-˿Ͱ-ͽͿ-῿‌‍⁰-↏Ⰰ-⿯、-퟿豈-﷏ﷰ-�𐀀-󯿿",e.NAME_CHAR="-"+e.NAME_START_CHAR+".0-9·̀-ͯ‿-⁀",e.CHAR_RE=new RegExp("^["+e.CHAR+"]$","u"),e.S_RE=new RegExp("^["+e.S+"]+$","u"),e.NAME_START_CHAR_RE=new RegExp("^["+e.NAME_START_CHAR+"]$","u"),e.NAME_CHAR_RE=new RegExp("^["+e.NAME_CHAR+"]$","u"),e.NAME_RE=new RegExp("^["+e.NAME_START_CHAR+"]["+e.NAME_CHAR+"]*$","u"),e.NMTOKEN_RE=new RegExp("^["+e.NAME_CHAR+"]+$","u");var i=9,s=10,a=13,r=32;function n(t){return t>=r&&t<=55295||t===s||t===a||t===i||t>=57344&&t<=65533||t>=65536&&t<=1114111}function o(t){return t===r||t===s||t===a||t===i}function h(t){return t>=65&&t<=90||t>=97&&t<=122||58===t||95===t||8204===t||8205===t||t>=192&&t<=214||t>=216&&t<=246||t>=248&&t<=767||t>=880&&t<=893||t>=895&&t<=8191||t>=8304&&t<=8591||t>=11264&&t<=12271||t>=12289&&t<=55295||t>=63744&&t<=64975||t>=65008&&t<=65533||t>=65536&&t<=983039}function l(t){return h(t)||t>=48&&t<=57||45===t||46===t||183===t||t>=768&&t<=879||t>=8255&&t<=8256}e.S_LIST=[r,s,a,i],e.isChar=n,e.isS=o,e.isNameStartChar=h,e.isNameChar=l},84797:function(t,e){ +/** + * Character classes and associated utilities for the 2nd edition of XML 1.1. + * + * @author Louis-Dominique Dubeau + * @license MIT + * @copyright Louis-Dominique Dubeau + */ +Object.defineProperty(e,"__esModule",{value:!0}),e.CHAR="-퟿-�𐀀-􏿿",e.RESTRICTED_CHAR="-\b\v\f--„†-Ÿ",e.S=" \t\r\n",e.NAME_START_CHAR=":A-Z_a-zÀ-ÖØ-öø-˿Ͱ-ͽͿ-῿‌‍⁰-↏Ⰰ-⿯、-퟿豈-﷏ﷰ-�𐀀-󯿿",e.NAME_CHAR="-"+e.NAME_START_CHAR+".0-9·̀-ͯ‿-⁀",e.CHAR_RE=new RegExp("^["+e.CHAR+"]$","u"),e.RESTRICTED_CHAR_RE=new RegExp("^["+e.RESTRICTED_CHAR+"]$","u"),e.S_RE=new RegExp("^["+e.S+"]+$","u"),e.NAME_START_CHAR_RE=new RegExp("^["+e.NAME_START_CHAR+"]$","u"),e.NAME_CHAR_RE=new RegExp("^["+e.NAME_CHAR+"]$","u"),e.NAME_RE=new RegExp("^["+e.NAME_START_CHAR+"]["+e.NAME_CHAR+"]*$","u"),e.NMTOKEN_RE=new RegExp("^["+e.NAME_CHAR+"]+$","u");var i=9,s=10,a=13,r=32;function n(t){return t>=1&&t<=55295||t>=57344&&t<=65533||t>=65536&&t<=1114111}function o(t){return t>=1&&t<=8||11===t||12===t||t>=14&&t<=31||t>=127&&t<=132||t>=134&&t<=159}function h(t){return 9===t||10===t||13===t||t>31&&t<127||133===t||t>159&&t<=55295||t>=57344&&t<=65533||t>=65536&&t<=1114111}function l(t){return t===r||t===s||t===a||t===i}function c(t){return t>=65&&t<=90||t>=97&&t<=122||58===t||95===t||8204===t||8205===t||t>=192&&t<=214||t>=216&&t<=246||t>=248&&t<=767||t>=880&&t<=893||t>=895&&t<=8191||t>=8304&&t<=8591||t>=11264&&t<=12271||t>=12289&&t<=55295||t>=63744&&t<=64975||t>=65008&&t<=65533||t>=65536&&t<=983039}function d(t){return c(t)||t>=48&&t<=57||45===t||46===t||183===t||t>=768&&t<=879||t>=8255&&t<=8256}e.S_LIST=[r,s,a,i],e.isChar=n,e.isRestrictedChar=o,e.isCharAndNotRestricted=h,e.isS=l,e.isNameStartChar=c,e.isNameChar=d},60446:function(t,e){function i(t){return t>=65&&t<=90||95===t||t>=97&&t<=122||t>=192&&t<=214||t>=216&&t<=246||t>=248&&t<=767||t>=880&&t<=893||t>=895&&t<=8191||t>=8204&&t<=8205||t>=8304&&t<=8591||t>=11264&&t<=12271||t>=12289&&t<=55295||t>=63744&&t<=64975||t>=65008&&t<=65533||t>=65536&&t<=983039}function s(t){return i(t)||45===t||46===t||t>=48&&t<=57||183===t||t>=768&&t<=879||t>=8255&&t<=8256} +/** + * Character class utilities for XML NS 1.0 edition 3. + * + * @author Louis-Dominique Dubeau + * @license MIT + * @copyright Louis-Dominique Dubeau + */ +Object.defineProperty(e,"__esModule",{value:!0}),e.NC_NAME_START_CHAR="A-Z_a-zÀ-ÖØ-öø-˿Ͱ-ͽͿ-῿‌-‍⁰-↏Ⰰ-⿯、-퟿豈-﷏ﷰ-�𐀀-󯿿",e.NC_NAME_CHAR="-"+e.NC_NAME_START_CHAR+".0-9·̀-ͯ‿-⁀",e.NC_NAME_START_CHAR_RE=new RegExp("^["+e.NC_NAME_START_CHAR+"]$","u"),e.NC_NAME_CHAR_RE=new RegExp("^["+e.NC_NAME_CHAR+"]$","u"),e.NC_NAME_RE=new RegExp("^["+e.NC_NAME_START_CHAR+"]["+e.NC_NAME_CHAR+"]*$","u"),e.isNCNameStartChar=i,e.isNCNameChar=s},17013:function(t,e,i){i.r(e);var s=i(24353);class a extends s.RdfXmlParser{constructor({factory:t,...e}={}){super({...e,dataFactory:t})}}e["default"]=a}}]); +//# sourceMappingURL=13.06cd2e07.js.map \ No newline at end of file diff --git a/dist/js/13.06cd2e07.js.map b/dist/js/13.06cd2e07.js.map new file mode 100644 index 0000000..cb170f8 --- /dev/null +++ b/dist/js/13.06cd2e07.js.map @@ -0,0 +1 @@ +{"version":3,"file":"js/13.06cd2e07.js","mappings":"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","sources":["webpack://mobilitydcatap-ui/./node_modules/@rubensworks/saxes/saxes.js","webpack://mobilitydcatap-ui/./node_modules/@zazuko/formats-lazy/node_modules/rdfxml-streaming-parser/index.js","webpack://mobilitydcatap-ui/./node_modules/@zazuko/formats-lazy/node_modules/rdfxml-streaming-parser/lib/ParseError.js","webpack://mobilitydcatap-ui/./node_modules/@zazuko/formats-lazy/node_modules/rdfxml-streaming-parser/lib/RdfXmlParser.js","webpack://mobilitydcatap-ui/./node_modules/rdf-data-factory/index.js","webpack://mobilitydcatap-ui/./node_modules/rdf-data-factory/lib/BlankNode.js","webpack://mobilitydcatap-ui/./node_modules/rdf-data-factory/lib/DataFactory.js","webpack://mobilitydcatap-ui/./node_modules/rdf-data-factory/lib/DefaultGraph.js","webpack://mobilitydcatap-ui/./node_modules/rdf-data-factory/lib/Literal.js","webpack://mobilitydcatap-ui/./node_modules/rdf-data-factory/lib/NamedNode.js","webpack://mobilitydcatap-ui/./node_modules/rdf-data-factory/lib/Quad.js","webpack://mobilitydcatap-ui/./node_modules/rdf-data-factory/lib/Variable.js","webpack://mobilitydcatap-ui/./node_modules/relative-to-absolute-iri/index.js","webpack://mobilitydcatap-ui/./node_modules/relative-to-absolute-iri/lib/Resolve.js","webpack://mobilitydcatap-ui/./node_modules/validate-iri/index.js","webpack://mobilitydcatap-ui/./node_modules/validate-iri/lib/Validate.js","webpack://mobilitydcatap-ui/./node_modules/xmlchars/xml/1.0/ed5.js","webpack://mobilitydcatap-ui/./node_modules/xmlchars/xml/1.1/ed2.js","webpack://mobilitydcatap-ui/./node_modules/xmlchars/xmlns/1.0/ed3.js","webpack://mobilitydcatap-ui/./node_modules/@zazuko/formats-lazy/lib/CustomRdfXmlParser.js"],"sourcesContent":["\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.SaxesParser = exports.EVENTS = void 0;\nconst ed5 = require(\"xmlchars/xml/1.0/ed5\");\nconst ed2 = require(\"xmlchars/xml/1.1/ed2\");\nconst NSed3 = require(\"xmlchars/xmlns/1.0/ed3\");\nvar isS = ed5.isS;\nvar isChar10 = ed5.isChar;\nvar isNameStartChar = ed5.isNameStartChar;\nvar isNameChar = ed5.isNameChar;\nvar S_LIST = ed5.S_LIST;\nvar NAME_RE = ed5.NAME_RE;\nvar isChar11 = ed2.isChar;\nvar isNCNameStartChar = NSed3.isNCNameStartChar;\nvar isNCNameChar = NSed3.isNCNameChar;\nvar NC_NAME_RE = NSed3.NC_NAME_RE;\nconst XML_NAMESPACE = \"http://www.w3.org/XML/1998/namespace\";\nconst XMLNS_NAMESPACE = \"http://www.w3.org/2000/xmlns/\";\nconst rootNS = {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-assignment\n __proto__: null,\n xml: XML_NAMESPACE,\n xmlns: XMLNS_NAMESPACE,\n};\nconst XML_ENTITIES = {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-assignment\n __proto__: null,\n amp: \"&\",\n gt: \">\",\n lt: \"<\",\n quot: \"\\\"\",\n apos: \"'\",\n};\n// EOC: end-of-chunk\nconst EOC = -1;\nconst NL_LIKE = -2;\nconst S_BEGIN = 0; // Initial state.\nconst S_BEGIN_WHITESPACE = 1; // leading whitespace\nconst S_DOCTYPE = 2; // \nconst TAB = 9;\nconst NL = 0xA;\nconst CR = 0xD;\nconst SPACE = 0x20;\nconst BANG = 0x21;\nconst DQUOTE = 0x22;\nconst AMP = 0x26;\nconst SQUOTE = 0x27;\nconst MINUS = 0x2D;\nconst FORWARD_SLASH = 0x2F;\nconst SEMICOLON = 0x3B;\nconst LESS = 0x3C;\nconst EQUAL = 0x3D;\nconst GREATER = 0x3E;\nconst QUESTION = 0x3F;\nconst OPEN_BRACKET = 0x5B;\nconst CLOSE_BRACKET = 0x5D;\nconst NEL = 0x85;\nconst LS = 0x2028; // Line Separator\nconst isQuote = (c) => c === DQUOTE || c === SQUOTE;\nconst QUOTES = [DQUOTE, SQUOTE];\nconst DOCTYPE_TERMINATOR = [...QUOTES, OPEN_BRACKET, GREATER];\nconst DTD_TERMINATOR = [...QUOTES, LESS, CLOSE_BRACKET];\nconst XML_DECL_NAME_TERMINATOR = [EQUAL, QUESTION, ...S_LIST];\nconst ATTRIB_VALUE_UNQUOTED_TERMINATOR = [...S_LIST, GREATER, AMP, LESS];\nfunction nsPairCheck(parser, prefix, uri) {\n switch (prefix) {\n case \"xml\":\n if (uri !== XML_NAMESPACE) {\n parser.fail(`xml prefix must be bound to ${XML_NAMESPACE}.`);\n }\n break;\n case \"xmlns\":\n if (uri !== XMLNS_NAMESPACE) {\n parser.fail(`xmlns prefix must be bound to ${XMLNS_NAMESPACE}.`);\n }\n break;\n default:\n }\n switch (uri) {\n case XMLNS_NAMESPACE:\n parser.fail(prefix === \"\" ?\n `the default namespace may not be set to ${uri}.` :\n `may not assign a prefix (even \"xmlns\") to the URI \\\n${XMLNS_NAMESPACE}.`);\n break;\n case XML_NAMESPACE:\n switch (prefix) {\n case \"xml\":\n // Assinging the XML namespace to \"xml\" is fine.\n break;\n case \"\":\n parser.fail(`the default namespace may not be set to ${uri}.`);\n break;\n default:\n parser.fail(\"may not assign the xml namespace to another prefix.\");\n }\n break;\n default:\n }\n}\nfunction nsMappingCheck(parser, mapping) {\n for (const local of Object.keys(mapping)) {\n nsPairCheck(parser, local, mapping[local]);\n }\n}\nconst isNCName = (name) => NC_NAME_RE.test(name);\nconst isName = (name) => NAME_RE.test(name);\nconst FORBIDDEN_START = 0;\nconst FORBIDDEN_BRACKET = 1;\nconst FORBIDDEN_BRACKET_BRACKET = 2;\n/**\n * The list of supported events.\n */\nexports.EVENTS = [\n \"xmldecl\",\n \"text\",\n \"processinginstruction\",\n \"doctype\",\n \"comment\",\n \"opentagstart\",\n \"attribute\",\n \"opentag\",\n \"closetag\",\n \"cdata\",\n \"error\",\n \"end\",\n \"ready\",\n];\nconst EVENT_NAME_TO_HANDLER_NAME = {\n xmldecl: \"xmldeclHandler\",\n text: \"textHandler\",\n processinginstruction: \"piHandler\",\n doctype: \"doctypeHandler\",\n comment: \"commentHandler\",\n opentagstart: \"openTagStartHandler\",\n attribute: \"attributeHandler\",\n opentag: \"openTagHandler\",\n closetag: \"closeTagHandler\",\n cdata: \"cdataHandler\",\n error: \"errorHandler\",\n end: \"endHandler\",\n ready: \"readyHandler\",\n};\n// eslint-disable-next-line @typescript-eslint/ban-types\nclass SaxesParser {\n /**\n * Indicates whether or not the parser is closed. If ``true``, wait for\n * the ``ready`` event to write again.\n */\n get closed() {\n return this._closed;\n }\n /**\n * @param opt The parser options.\n */\n constructor(opt) {\n this.opt = opt !== null && opt !== void 0 ? opt : {};\n this.fragmentOpt = !!this.opt.fragment;\n const xmlnsOpt = this.xmlnsOpt = !!this.opt.xmlns;\n this.trackPosition = this.opt.position !== false;\n this.fileName = this.opt.fileName;\n if (xmlnsOpt) {\n // This is the function we use to perform name checks on PIs and entities.\n // When namespaces are used, colons are not allowed in PI target names or\n // entity names. So the check depends on whether namespaces are used. See:\n //\n // https://www.w3.org/XML/xml-names-19990114-errata.html\n // NE08\n //\n this.nameStartCheck = isNCNameStartChar;\n this.nameCheck = isNCNameChar;\n this.isName = isNCName;\n // eslint-disable-next-line @typescript-eslint/unbound-method\n this.processAttribs = this.processAttribsNS;\n // eslint-disable-next-line @typescript-eslint/unbound-method\n this.pushAttrib = this.pushAttribNS;\n // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-assignment\n this.ns = Object.assign({ __proto__: null }, rootNS);\n const additional = this.opt.additionalNamespaces;\n if (additional != null) {\n nsMappingCheck(this, additional);\n Object.assign(this.ns, additional);\n }\n }\n else {\n this.nameStartCheck = isNameStartChar;\n this.nameCheck = isNameChar;\n this.isName = isName;\n // eslint-disable-next-line @typescript-eslint/unbound-method\n this.processAttribs = this.processAttribsPlain;\n // eslint-disable-next-line @typescript-eslint/unbound-method\n this.pushAttrib = this.pushAttribPlain;\n }\n //\n // The order of the members in this table needs to correspond to the state\n // numbers given to the states that correspond to the methods being recorded\n // here.\n //\n this.stateTable = [\n /* eslint-disable @typescript-eslint/unbound-method */\n this.sBegin,\n this.sBeginWhitespace,\n this.sDoctype,\n this.sDoctypeQuote,\n this.sDTD,\n this.sDTDQuoted,\n this.sDTDOpenWaka,\n this.sDTDOpenWakaBang,\n this.sDTDComment,\n this.sDTDCommentEnding,\n this.sDTDCommentEnded,\n this.sDTDPI,\n this.sDTDPIEnding,\n this.sText,\n this.sEntity,\n this.sOpenWaka,\n this.sOpenWakaBang,\n this.sComment,\n this.sCommentEnding,\n this.sCommentEnded,\n this.sCData,\n this.sCDataEnding,\n this.sCDataEnding2,\n this.sPIFirstChar,\n this.sPIRest,\n this.sPIBody,\n this.sPIEnding,\n this.sXMLDeclNameStart,\n this.sXMLDeclName,\n this.sXMLDeclEq,\n this.sXMLDeclValueStart,\n this.sXMLDeclValue,\n this.sXMLDeclSeparator,\n this.sXMLDeclEnding,\n this.sOpenTag,\n this.sOpenTagSlash,\n this.sAttrib,\n this.sAttribName,\n this.sAttribNameSawWhite,\n this.sAttribValue,\n this.sAttribValueQuoted,\n this.sAttribValueClosed,\n this.sAttribValueUnquoted,\n this.sCloseTag,\n this.sCloseTagSawWhite,\n /* eslint-enable @typescript-eslint/unbound-method */\n ];\n this._init();\n }\n _init() {\n var _a;\n this.openWakaBang = \"\";\n this.text = \"\";\n this.name = \"\";\n this.piTarget = \"\";\n this.entity = \"\";\n this.q = null;\n this.tags = [];\n this.tag = null;\n this.topNS = null;\n this.chunk = \"\";\n this.chunkPosition = 0;\n this.i = 0;\n this.prevI = 0;\n this.carriedFromPrevious = undefined;\n this.forbiddenState = FORBIDDEN_START;\n this.attribList = [];\n // The logic is organized so as to minimize the need to check\n // this.opt.fragment while parsing.\n const { fragmentOpt } = this;\n this.state = fragmentOpt ? S_TEXT : S_BEGIN;\n // We want these to be all true if we are dealing with a fragment.\n this.reportedTextBeforeRoot = this.reportedTextAfterRoot = this.closedRoot =\n this.sawRoot = fragmentOpt;\n // An XML declaration is intially possible only when parsing whole\n // documents.\n this.xmlDeclPossible = !fragmentOpt;\n this.xmlDeclExpects = [\"version\"];\n this.entityReturnState = undefined;\n let { defaultXMLVersion } = this.opt;\n if (defaultXMLVersion === undefined) {\n if (this.opt.forceXMLVersion === true) {\n throw new Error(\"forceXMLVersion set but defaultXMLVersion is not set\");\n }\n defaultXMLVersion = \"1.0\";\n }\n this.setXMLVersion(defaultXMLVersion);\n this.positionAtNewLine = 0;\n this.doctype = false;\n this._closed = false;\n this.xmlDecl = {\n version: undefined,\n encoding: undefined,\n standalone: undefined,\n };\n this.line = 1;\n this.column = 0;\n this.ENTITIES = Object.create(XML_ENTITIES);\n (_a = this.readyHandler) === null || _a === void 0 ? void 0 : _a.call(this);\n }\n /**\n * The stream position the parser is currently looking at. This field is\n * zero-based.\n *\n * This field is not based on counting Unicode characters but is to be\n * interpreted as a plain index into a JavaScript string.\n */\n get position() {\n return this.chunkPosition + this.i;\n }\n /**\n * The column number of the next character to be read by the parser. *\n * This field is zero-based. (The first column in a line is 0.)\n *\n * This field reports the index at which the next character would be in the\n * line if the line were represented as a JavaScript string. Note that this\n * *can* be different to a count based on the number of *Unicode characters*\n * due to how JavaScript handles astral plane characters.\n *\n * See [[column]] for a number that corresponds to a count of Unicode\n * characters.\n */\n get columnIndex() {\n return this.position - this.positionAtNewLine;\n }\n /**\n * Set an event listener on an event. The parser supports one handler per\n * event type. If you try to set an event handler over an existing handler,\n * the old handler is silently overwritten.\n *\n * @param name The event to listen to.\n *\n * @param handler The handler to set.\n */\n on(name, handler) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-member-access\n this[EVENT_NAME_TO_HANDLER_NAME[name]] = handler;\n }\n /**\n * Unset an event handler.\n *\n * @parma name The event to stop listening to.\n */\n off(name) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-member-access\n this[EVENT_NAME_TO_HANDLER_NAME[name]] = undefined;\n }\n /**\n * Make an error object. The error object will have a message that contains\n * the ``fileName`` option passed at the creation of the parser. If position\n * tracking was turned on, it will also have line and column number\n * information.\n *\n * @param message The message describing the error to report.\n *\n * @returns An error object with a properly formatted message.\n */\n makeError(message) {\n var _a;\n let msg = (_a = this.fileName) !== null && _a !== void 0 ? _a : \"\";\n if (this.trackPosition) {\n if (msg.length > 0) {\n msg += \":\";\n }\n msg += `${this.line}:${this.column}`;\n }\n if (msg.length > 0) {\n msg += \": \";\n }\n return new Error(msg + message);\n }\n /**\n * Report a parsing error. This method is made public so that client code may\n * check for issues that are outside the scope of this project and can report\n * errors.\n *\n * @param message The error to report.\n *\n * @returns this\n */\n fail(message) {\n const err = this.makeError(message);\n const handler = this.errorHandler;\n if (handler === undefined) {\n throw err;\n }\n else {\n handler(err);\n }\n return this;\n }\n /**\n * Write a XML data to the parser.\n *\n * @param chunk The XML data to write.\n *\n * @returns this\n */\n // We do need object for the type here. Yes, it often causes problems\n // but not in this case.\n write(chunk) {\n if (this.closed) {\n return this.fail(\"cannot write after close; assign an onready handler.\");\n }\n let end = false;\n if (chunk === null) {\n // We cannot return immediately because carriedFromPrevious may need\n // processing.\n end = true;\n chunk = \"\";\n }\n else if (typeof chunk === \"object\") {\n chunk = chunk.toString();\n }\n // We checked if performing a pre-decomposition of the string into an array\n // of single complete characters (``Array.from(chunk)``) would be faster\n // than the current repeated calls to ``charCodeAt``. As of August 2018, it\n // isn't. (There may be Node-specific code that would perform faster than\n // ``Array.from`` but don't want to be dependent on Node.)\n if (this.carriedFromPrevious !== undefined) {\n // The previous chunk had char we must carry over.\n chunk = `${this.carriedFromPrevious}${chunk}`;\n this.carriedFromPrevious = undefined;\n }\n let limit = chunk.length;\n const lastCode = chunk.charCodeAt(limit - 1);\n if (!end &&\n // A trailing CR or surrogate must be carried over to the next\n // chunk.\n (lastCode === CR || (lastCode >= 0xD800 && lastCode <= 0xDBFF))) {\n // The chunk ends with a character that must be carried over. We cannot\n // know how to handle it until we get the next chunk or the end of the\n // stream. So save it for later.\n this.carriedFromPrevious = chunk[limit - 1];\n limit--;\n chunk = chunk.slice(0, limit);\n }\n const { stateTable } = this;\n this.chunk = chunk;\n this.i = 0;\n while (this.i < limit) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-argument\n stateTable[this.state].call(this);\n }\n this.chunkPosition += limit;\n return end ? this.end() : this;\n }\n /**\n * Close the current stream. Perform final well-formedness checks and reset\n * the parser tstate.\n *\n * @returns this\n */\n close() {\n return this.write(null);\n }\n /**\n * Get a single code point out of the current chunk. This updates the current\n * position if we do position tracking.\n *\n * This is the algorithm to use for XML 1.0.\n *\n * @returns The character read.\n */\n getCode10() {\n const { chunk, i } = this;\n this.prevI = i;\n // Yes, we do this instead of doing this.i++. Doing it this way, we do not\n // read this.i again, which is a bit faster.\n this.i = i + 1;\n if (i >= chunk.length) {\n return EOC;\n }\n // Using charCodeAt and handling the surrogates ourselves is faster\n // than using codePointAt.\n const code = chunk.charCodeAt(i);\n this.column++;\n if (code < 0xD800) {\n if (code >= SPACE || code === TAB) {\n return code;\n }\n switch (code) {\n case NL:\n this.line++;\n this.column = 0;\n this.positionAtNewLine = this.position;\n return NL;\n case CR:\n // We may get NaN if we read past the end of the chunk, which is fine.\n if (chunk.charCodeAt(i + 1) === NL) {\n // A \\r\\n sequence is converted to \\n so we have to skip over the\n // next character. We already know it has a size of 1 so ++ is fine\n // here.\n this.i = i + 2;\n }\n // Otherwise, a \\r is just converted to \\n, so we don't have to skip\n // ahead.\n // In either case, \\r becomes \\n.\n this.line++;\n this.column = 0;\n this.positionAtNewLine = this.position;\n return NL_LIKE;\n default:\n // If we get here, then code < SPACE and it is not NL CR or TAB.\n this.fail(\"disallowed character.\");\n return code;\n }\n }\n if (code > 0xDBFF) {\n // This is a specialized version of isChar10 that takes into account\n // that in this context code > 0xDBFF and code <= 0xFFFF. So it does not\n // test cases that don't need testing.\n if (!(code >= 0xE000 && code <= 0xFFFD)) {\n this.fail(\"disallowed character.\");\n }\n return code;\n }\n const final = 0x10000 + ((code - 0xD800) * 0x400) +\n (chunk.charCodeAt(i + 1) - 0xDC00);\n this.i = i + 2;\n // This is a specialized version of isChar10 that takes into account that in\n // this context necessarily final >= 0x10000.\n if (final > 0x10FFFF) {\n this.fail(\"disallowed character.\");\n }\n return final;\n }\n /**\n * Get a single code point out of the current chunk. This updates the current\n * position if we do position tracking.\n *\n * This is the algorithm to use for XML 1.1.\n *\n * @returns {number} The character read.\n */\n getCode11() {\n const { chunk, i } = this;\n this.prevI = i;\n // Yes, we do this instead of doing this.i++. Doing it this way, we do not\n // read this.i again, which is a bit faster.\n this.i = i + 1;\n if (i >= chunk.length) {\n return EOC;\n }\n // Using charCodeAt and handling the surrogates ourselves is faster\n // than using codePointAt.\n const code = chunk.charCodeAt(i);\n this.column++;\n if (code < 0xD800) {\n if ((code > 0x1F && code < 0x7F) || (code > 0x9F && code !== LS) ||\n code === TAB) {\n return code;\n }\n switch (code) {\n case NL: // 0xA\n this.line++;\n this.column = 0;\n this.positionAtNewLine = this.position;\n return NL;\n case CR: { // 0xD\n // We may get NaN if we read past the end of the chunk, which is\n // fine.\n const next = chunk.charCodeAt(i + 1);\n if (next === NL || next === NEL) {\n // A CR NL or CR NEL sequence is converted to NL so we have to skip\n // over the next character. We already know it has a size of 1.\n this.i = i + 2;\n }\n // Otherwise, a CR is just converted to NL, no skip.\n }\n /* yes, fall through */\n case NEL: // 0x85\n case LS: // Ox2028\n this.line++;\n this.column = 0;\n this.positionAtNewLine = this.position;\n return NL_LIKE;\n default:\n this.fail(\"disallowed character.\");\n return code;\n }\n }\n if (code > 0xDBFF) {\n // This is a specialized version of isCharAndNotRestricted that takes into\n // account that in this context code > 0xDBFF and code <= 0xFFFF. So it\n // does not test cases that don't need testing.\n if (!(code >= 0xE000 && code <= 0xFFFD)) {\n this.fail(\"disallowed character.\");\n }\n return code;\n }\n const final = 0x10000 + ((code - 0xD800) * 0x400) +\n (chunk.charCodeAt(i + 1) - 0xDC00);\n this.i = i + 2;\n // This is a specialized version of isCharAndNotRestricted that takes into\n // account that in this context necessarily final >= 0x10000.\n if (final > 0x10FFFF) {\n this.fail(\"disallowed character.\");\n }\n return final;\n }\n /**\n * Like ``getCode`` but with the return value normalized so that ``NL`` is\n * returned for ``NL_LIKE``.\n */\n getCodeNorm() {\n const c = this.getCode();\n return c === NL_LIKE ? NL : c;\n }\n unget() {\n this.i = this.prevI;\n this.column--;\n }\n /**\n * Capture characters into a buffer until encountering one of a set of\n * characters.\n *\n * @param chars An array of codepoints. Encountering a character in the array\n * ends the capture. (``chars`` may safely contain ``NL``.)\n *\n * @return The character code that made the capture end, or ``EOC`` if we hit\n * the end of the chunk. The return value cannot be NL_LIKE: NL is returned\n * instead.\n */\n captureTo(chars) {\n let { i: start } = this;\n const { chunk } = this;\n // eslint-disable-next-line no-constant-condition\n while (true) {\n const c = this.getCode();\n const isNLLike = c === NL_LIKE;\n const final = isNLLike ? NL : c;\n if (final === EOC || chars.includes(final)) {\n this.text += chunk.slice(start, this.prevI);\n return final;\n }\n if (isNLLike) {\n this.text += `${chunk.slice(start, this.prevI)}\\n`;\n start = this.i;\n }\n }\n }\n /**\n * Capture characters into a buffer until encountering a character.\n *\n * @param char The codepoint that ends the capture. **NOTE ``char`` MAY NOT\n * CONTAIN ``NL``.** Passing ``NL`` will result in buggy behavior.\n *\n * @return ``true`` if we ran into the character. Otherwise, we ran into the\n * end of the current chunk.\n */\n captureToChar(char) {\n let { i: start } = this;\n const { chunk } = this;\n // eslint-disable-next-line no-constant-condition\n while (true) {\n let c = this.getCode();\n switch (c) {\n case NL_LIKE:\n this.text += `${chunk.slice(start, this.prevI)}\\n`;\n start = this.i;\n c = NL;\n break;\n case EOC:\n this.text += chunk.slice(start);\n return false;\n default:\n }\n if (c === char) {\n this.text += chunk.slice(start, this.prevI);\n return true;\n }\n }\n }\n /**\n * Capture characters that satisfy ``isNameChar`` into the ``name`` field of\n * this parser.\n *\n * @return The character code that made the test fail, or ``EOC`` if we hit\n * the end of the chunk. The return value cannot be NL_LIKE: NL is returned\n * instead.\n */\n captureNameChars() {\n const { chunk, i: start } = this;\n // eslint-disable-next-line no-constant-condition\n while (true) {\n const c = this.getCode();\n if (c === EOC) {\n this.name += chunk.slice(start);\n return EOC;\n }\n // NL is not a name char so we don't have to test specifically for it.\n if (!isNameChar(c)) {\n this.name += chunk.slice(start, this.prevI);\n return c === NL_LIKE ? NL : c;\n }\n }\n }\n /**\n * Skip white spaces.\n *\n * @return The character that ended the skip, or ``EOC`` if we hit\n * the end of the chunk. The return value cannot be NL_LIKE: NL is returned\n * instead.\n */\n skipSpaces() {\n // eslint-disable-next-line no-constant-condition\n while (true) {\n const c = this.getCodeNorm();\n if (c === EOC || !isS(c)) {\n return c;\n }\n }\n }\n setXMLVersion(version) {\n this.currentXMLVersion = version;\n /* eslint-disable @typescript-eslint/unbound-method */\n if (version === \"1.0\") {\n this.isChar = isChar10;\n this.getCode = this.getCode10;\n }\n else {\n this.isChar = isChar11;\n this.getCode = this.getCode11;\n }\n /* eslint-enable @typescript-eslint/unbound-method */\n }\n // STATE ENGINE METHODS\n // This needs to be a state separate from S_BEGIN_WHITESPACE because we want\n // to be sure never to come back to this state later.\n sBegin() {\n // We are essentially peeking at the first character of the chunk. Since\n // S_BEGIN can be in effect only when we start working on the first chunk,\n // the index at which we must look is necessarily 0. Note also that the\n // following test does not depend on decoding surrogates.\n // If the initial character is 0xFEFF, ignore it.\n if (this.chunk.charCodeAt(0) === 0xFEFF) {\n this.i++;\n this.column++;\n }\n this.state = S_BEGIN_WHITESPACE;\n }\n sBeginWhitespace() {\n // We need to know whether we've encountered spaces or not because as soon\n // as we run into a space, an XML declaration is no longer possible. Rather\n // than slow down skipSpaces even in places where we don't care whether it\n // skipped anything or not, we check whether prevI is equal to the value of\n // i from before we skip spaces.\n const iBefore = this.i;\n const c = this.skipSpaces();\n if (this.prevI !== iBefore) {\n this.xmlDeclPossible = false;\n }\n switch (c) {\n case LESS:\n this.state = S_OPEN_WAKA;\n // We could naively call closeText but in this state, it is not normal\n // to have text be filled with any data.\n if (this.text.length !== 0) {\n throw new Error(\"no-empty text at start\");\n }\n break;\n case EOC:\n break;\n default:\n this.unget();\n this.state = S_TEXT;\n this.xmlDeclPossible = false;\n }\n }\n sDoctype() {\n var _a;\n const c = this.captureTo(DOCTYPE_TERMINATOR);\n switch (c) {\n case GREATER: {\n (_a = this.doctypeHandler) === null || _a === void 0 ? void 0 : _a.call(this, this.text);\n this.text = \"\";\n this.state = S_TEXT;\n this.doctype = true; // just remember that we saw it.\n break;\n }\n case EOC:\n break;\n default:\n this.text += String.fromCodePoint(c);\n if (c === OPEN_BRACKET) {\n this.state = S_DTD;\n }\n else if (isQuote(c)) {\n this.state = S_DOCTYPE_QUOTE;\n this.q = c;\n }\n }\n }\n sDoctypeQuote() {\n const q = this.q;\n if (this.captureToChar(q)) {\n this.text += String.fromCodePoint(q);\n this.q = null;\n this.state = S_DOCTYPE;\n }\n }\n sDTD() {\n const c = this.captureTo(DTD_TERMINATOR);\n if (c === EOC) {\n return;\n }\n this.text += String.fromCodePoint(c);\n if (c === CLOSE_BRACKET) {\n this.state = S_DOCTYPE;\n }\n else if (c === LESS) {\n this.state = S_DTD_OPEN_WAKA;\n }\n else if (isQuote(c)) {\n this.state = S_DTD_QUOTED;\n this.q = c;\n }\n }\n sDTDQuoted() {\n const q = this.q;\n if (this.captureToChar(q)) {\n this.text += String.fromCodePoint(q);\n this.state = S_DTD;\n this.q = null;\n }\n }\n sDTDOpenWaka() {\n const c = this.getCodeNorm();\n this.text += String.fromCodePoint(c);\n switch (c) {\n case BANG:\n this.state = S_DTD_OPEN_WAKA_BANG;\n this.openWakaBang = \"\";\n break;\n case QUESTION:\n this.state = S_DTD_PI;\n break;\n default:\n this.state = S_DTD;\n }\n }\n sDTDOpenWakaBang() {\n const char = String.fromCodePoint(this.getCodeNorm());\n const owb = this.openWakaBang += char;\n this.text += char;\n if (owb !== \"-\") {\n this.state = owb === \"--\" ? S_DTD_COMMENT : S_DTD;\n this.openWakaBang = \"\";\n }\n }\n sDTDComment() {\n if (this.captureToChar(MINUS)) {\n this.text += \"-\";\n this.state = S_DTD_COMMENT_ENDING;\n }\n }\n sDTDCommentEnding() {\n const c = this.getCodeNorm();\n this.text += String.fromCodePoint(c);\n this.state = c === MINUS ? S_DTD_COMMENT_ENDED : S_DTD_COMMENT;\n }\n sDTDCommentEnded() {\n const c = this.getCodeNorm();\n this.text += String.fromCodePoint(c);\n if (c === GREATER) {\n this.state = S_DTD;\n }\n else {\n this.fail(\"malformed comment.\");\n // will be recorded as\n // a comment of \" blah -- bloo \"\n this.state = S_DTD_COMMENT;\n }\n }\n sDTDPI() {\n if (this.captureToChar(QUESTION)) {\n this.text += \"?\";\n this.state = S_DTD_PI_ENDING;\n }\n }\n sDTDPIEnding() {\n const c = this.getCodeNorm();\n this.text += String.fromCodePoint(c);\n if (c === GREATER) {\n this.state = S_DTD;\n }\n }\n sText() {\n //\n // We did try a version of saxes where the S_TEXT state was split in two\n // states: one for text inside the root element, and one for text\n // outside. This was avoiding having to test this.tags.length to decide\n // what implementation to actually use.\n //\n // Peformance testing on gigabyte-size files did not show any advantage to\n // using the two states solution instead of the current one. Conversely, it\n // made the code a bit more complicated elsewhere. For instance, a comment\n // can appear before the root element so when a comment ended it was\n // necessary to determine whether to return to the S_TEXT state or to the\n // new text-outside-root state.\n //\n if (this.tags.length !== 0) {\n this.handleTextInRoot();\n }\n else {\n this.handleTextOutsideRoot();\n }\n }\n sEntity() {\n // This is essentially a specialized version of captureToChar(SEMICOLON...)\n let { i: start } = this;\n const { chunk } = this;\n // eslint-disable-next-line no-labels, no-restricted-syntax\n loop: \n // eslint-disable-next-line no-constant-condition\n while (true) {\n switch (this.getCode()) {\n case NL_LIKE:\n this.entity += `${chunk.slice(start, this.prevI)}\\n`;\n start = this.i;\n break;\n case SEMICOLON: {\n const { entityReturnState } = this;\n const entity = this.entity + chunk.slice(start, this.prevI);\n this.state = entityReturnState;\n let parsed;\n if (entity === \"\") {\n this.fail(\"empty entity name.\");\n parsed = \"&;\";\n }\n else {\n parsed = this.parseEntity(entity);\n this.entity = \"\";\n }\n if (entityReturnState !== S_TEXT || this.textHandler !== undefined) {\n this.text += parsed;\n }\n // eslint-disable-next-line no-labels\n break loop;\n }\n case EOC:\n this.entity += chunk.slice(start);\n // eslint-disable-next-line no-labels\n break loop;\n default:\n }\n }\n }\n sOpenWaka() {\n // Reminder: a state handler is called with at least one character\n // available in the current chunk. So the first call to get code inside of\n // a state handler cannot return ``EOC``. That's why we don't test\n // for it.\n const c = this.getCode();\n // either a /, ?, !, or text is coming next.\n if (isNameStartChar(c)) {\n this.state = S_OPEN_TAG;\n this.unget();\n this.xmlDeclPossible = false;\n }\n else {\n switch (c) {\n case FORWARD_SLASH:\n this.state = S_CLOSE_TAG;\n this.xmlDeclPossible = false;\n break;\n case BANG:\n this.state = S_OPEN_WAKA_BANG;\n this.openWakaBang = \"\";\n this.xmlDeclPossible = false;\n break;\n case QUESTION:\n this.state = S_PI_FIRST_CHAR;\n break;\n default:\n this.fail(\"disallowed character in tag name\");\n this.state = S_TEXT;\n this.xmlDeclPossible = false;\n }\n }\n }\n sOpenWakaBang() {\n this.openWakaBang += String.fromCodePoint(this.getCodeNorm());\n switch (this.openWakaBang) {\n case \"[CDATA[\":\n if (!this.sawRoot && !this.reportedTextBeforeRoot) {\n this.fail(\"text data outside of root node.\");\n this.reportedTextBeforeRoot = true;\n }\n if (this.closedRoot && !this.reportedTextAfterRoot) {\n this.fail(\"text data outside of root node.\");\n this.reportedTextAfterRoot = true;\n }\n this.state = S_CDATA;\n this.openWakaBang = \"\";\n break;\n case \"--\":\n this.state = S_COMMENT;\n this.openWakaBang = \"\";\n break;\n case \"DOCTYPE\":\n this.state = S_DOCTYPE;\n if (this.doctype || this.sawRoot) {\n this.fail(\"inappropriately located doctype declaration.\");\n }\n this.openWakaBang = \"\";\n break;\n default:\n // 7 happens to be the maximum length of the string that can possibly\n // match one of the cases above.\n if (this.openWakaBang.length >= 7) {\n this.fail(\"incorrect syntax.\");\n }\n }\n }\n sComment() {\n if (this.captureToChar(MINUS)) {\n this.state = S_COMMENT_ENDING;\n }\n }\n sCommentEnding() {\n var _a;\n const c = this.getCodeNorm();\n if (c === MINUS) {\n this.state = S_COMMENT_ENDED;\n (_a = this.commentHandler) === null || _a === void 0 ? void 0 : _a.call(this, this.text);\n this.text = \"\";\n }\n else {\n this.text += `-${String.fromCodePoint(c)}`;\n this.state = S_COMMENT;\n }\n }\n sCommentEnded() {\n const c = this.getCodeNorm();\n if (c !== GREATER) {\n this.fail(\"malformed comment.\");\n // will be recorded as\n // a comment of \" blah -- bloo \"\n this.text += `--${String.fromCodePoint(c)}`;\n this.state = S_COMMENT;\n }\n else {\n this.state = S_TEXT;\n }\n }\n sCData() {\n if (this.captureToChar(CLOSE_BRACKET)) {\n this.state = S_CDATA_ENDING;\n }\n }\n sCDataEnding() {\n const c = this.getCodeNorm();\n if (c === CLOSE_BRACKET) {\n this.state = S_CDATA_ENDING_2;\n }\n else {\n this.text += `]${String.fromCodePoint(c)}`;\n this.state = S_CDATA;\n }\n }\n sCDataEnding2() {\n var _a;\n const c = this.getCodeNorm();\n switch (c) {\n case GREATER: {\n (_a = this.cdataHandler) === null || _a === void 0 ? void 0 : _a.call(this, this.text);\n this.text = \"\";\n this.state = S_TEXT;\n break;\n }\n case CLOSE_BRACKET:\n this.text += \"]\";\n break;\n default:\n this.text += `]]${String.fromCodePoint(c)}`;\n this.state = S_CDATA;\n }\n }\n // We need this separate state to check the first character fo the pi target\n // with this.nameStartCheck which allows less characters than this.nameCheck.\n sPIFirstChar() {\n const c = this.getCodeNorm();\n // This is first because in the case where the file is well-formed this is\n // the branch taken. We optimize for well-formedness.\n if (this.nameStartCheck(c)) {\n this.piTarget += String.fromCodePoint(c);\n this.state = S_PI_REST;\n }\n else if (c === QUESTION || isS(c)) {\n this.fail(\"processing instruction without a target.\");\n this.state = c === QUESTION ? S_PI_ENDING : S_PI_BODY;\n }\n else {\n this.fail(\"disallowed character in processing instruction name.\");\n this.piTarget += String.fromCodePoint(c);\n this.state = S_PI_REST;\n }\n }\n sPIRest() {\n // Capture characters into a piTarget while ``this.nameCheck`` run on the\n // character read returns true.\n const { chunk, i: start } = this;\n // eslint-disable-next-line no-constant-condition\n while (true) {\n const c = this.getCodeNorm();\n if (c === EOC) {\n this.piTarget += chunk.slice(start);\n return;\n }\n // NL cannot satisfy this.nameCheck so we don't have to test specifically\n // for it.\n if (!this.nameCheck(c)) {\n this.piTarget += chunk.slice(start, this.prevI);\n const isQuestion = c === QUESTION;\n if (isQuestion || isS(c)) {\n if (this.piTarget === \"xml\") {\n if (!this.xmlDeclPossible) {\n this.fail(\"an XML declaration must be at the start of the document.\");\n }\n this.state = isQuestion ? S_XML_DECL_ENDING : S_XML_DECL_NAME_START;\n }\n else {\n this.state = isQuestion ? S_PI_ENDING : S_PI_BODY;\n }\n }\n else {\n this.fail(\"disallowed character in processing instruction name.\");\n this.piTarget += String.fromCodePoint(c);\n }\n break;\n }\n }\n }\n sPIBody() {\n if (this.text.length === 0) {\n const c = this.getCodeNorm();\n if (c === QUESTION) {\n this.state = S_PI_ENDING;\n }\n else if (!isS(c)) {\n this.text = String.fromCodePoint(c);\n }\n }\n // The question mark character is not valid inside any of the XML\n // declaration name/value pairs.\n else if (this.captureToChar(QUESTION)) {\n this.state = S_PI_ENDING;\n }\n }\n sPIEnding() {\n var _a;\n const c = this.getCodeNorm();\n if (c === GREATER) {\n const { piTarget } = this;\n if (piTarget.toLowerCase() === \"xml\") {\n this.fail(\"the XML declaration must appear at the start of the document.\");\n }\n (_a = this.piHandler) === null || _a === void 0 ? void 0 : _a.call(this, {\n target: piTarget,\n body: this.text,\n });\n this.piTarget = this.text = \"\";\n this.state = S_TEXT;\n }\n else if (c === QUESTION) {\n // We ran into ?? as part of a processing instruction. We initially took\n // the first ? as a sign that the PI was ending, but it is not. So we have\n // to add it to the body but we take the new ? as a sign that the PI is\n // ending.\n this.text += \"?\";\n }\n else {\n this.text += `?${String.fromCodePoint(c)}`;\n this.state = S_PI_BODY;\n }\n this.xmlDeclPossible = false;\n }\n sXMLDeclNameStart() {\n const c = this.skipSpaces();\n // The question mark character is not valid inside any of the XML\n // declaration name/value pairs.\n if (c === QUESTION) {\n // It is valid to go to S_XML_DECL_ENDING from this state.\n this.state = S_XML_DECL_ENDING;\n return;\n }\n if (c !== EOC) {\n this.state = S_XML_DECL_NAME;\n this.name = String.fromCodePoint(c);\n }\n }\n sXMLDeclName() {\n const c = this.captureTo(XML_DECL_NAME_TERMINATOR);\n // The question mark character is not valid inside any of the XML\n // declaration name/value pairs.\n if (c === QUESTION) {\n this.state = S_XML_DECL_ENDING;\n this.name += this.text;\n this.text = \"\";\n this.fail(\"XML declaration is incomplete.\");\n return;\n }\n if (!(isS(c) || c === EQUAL)) {\n return;\n }\n this.name += this.text;\n this.text = \"\";\n if (!this.xmlDeclExpects.includes(this.name)) {\n switch (this.name.length) {\n case 0:\n this.fail(\"did not expect any more name/value pairs.\");\n break;\n case 1:\n this.fail(`expected the name ${this.xmlDeclExpects[0]}.`);\n break;\n default:\n this.fail(`expected one of ${this.xmlDeclExpects.join(\", \")}`);\n }\n }\n this.state = c === EQUAL ? S_XML_DECL_VALUE_START : S_XML_DECL_EQ;\n }\n sXMLDeclEq() {\n const c = this.getCodeNorm();\n // The question mark character is not valid inside any of the XML\n // declaration name/value pairs.\n if (c === QUESTION) {\n this.state = S_XML_DECL_ENDING;\n this.fail(\"XML declaration is incomplete.\");\n return;\n }\n if (isS(c)) {\n return;\n }\n if (c !== EQUAL) {\n this.fail(\"value required.\");\n }\n this.state = S_XML_DECL_VALUE_START;\n }\n sXMLDeclValueStart() {\n const c = this.getCodeNorm();\n // The question mark character is not valid inside any of the XML\n // declaration name/value pairs.\n if (c === QUESTION) {\n this.state = S_XML_DECL_ENDING;\n this.fail(\"XML declaration is incomplete.\");\n return;\n }\n if (isS(c)) {\n return;\n }\n if (!isQuote(c)) {\n this.fail(\"value must be quoted.\");\n this.q = SPACE;\n }\n else {\n this.q = c;\n }\n this.state = S_XML_DECL_VALUE;\n }\n sXMLDeclValue() {\n const c = this.captureTo([this.q, QUESTION]);\n // The question mark character is not valid inside any of the XML\n // declaration name/value pairs.\n if (c === QUESTION) {\n this.state = S_XML_DECL_ENDING;\n this.text = \"\";\n this.fail(\"XML declaration is incomplete.\");\n return;\n }\n if (c === EOC) {\n return;\n }\n const value = this.text;\n this.text = \"\";\n switch (this.name) {\n case \"version\": {\n this.xmlDeclExpects = [\"encoding\", \"standalone\"];\n const version = value;\n this.xmlDecl.version = version;\n // This is the test specified by XML 1.0 but it is fine for XML 1.1.\n if (!/^1\\.[0-9]+$/.test(version)) {\n this.fail(\"version number must match /^1\\\\.[0-9]+$/.\");\n }\n // When forceXMLVersion is set, the XML declaration is ignored.\n else if (!this.opt.forceXMLVersion) {\n this.setXMLVersion(version);\n }\n break;\n }\n case \"encoding\":\n if (!/^[A-Za-z][A-Za-z0-9._-]*$/.test(value)) {\n this.fail(\"encoding value must match \\\n/^[A-Za-z0-9][A-Za-z0-9._-]*$/.\");\n }\n this.xmlDeclExpects = [\"standalone\"];\n this.xmlDecl.encoding = value;\n break;\n case \"standalone\":\n if (value !== \"yes\" && value !== \"no\") {\n this.fail(\"standalone value must match \\\"yes\\\" or \\\"no\\\".\");\n }\n this.xmlDeclExpects = [];\n this.xmlDecl.standalone = value;\n break;\n default:\n // We don't need to raise an error here since we've already raised one\n // when checking what name was expected.\n }\n this.name = \"\";\n this.state = S_XML_DECL_SEPARATOR;\n }\n sXMLDeclSeparator() {\n const c = this.getCodeNorm();\n // The question mark character is not valid inside any of the XML\n // declaration name/value pairs.\n if (c === QUESTION) {\n // It is valid to go to S_XML_DECL_ENDING from this state.\n this.state = S_XML_DECL_ENDING;\n return;\n }\n if (!isS(c)) {\n this.fail(\"whitespace required.\");\n this.unget();\n }\n this.state = S_XML_DECL_NAME_START;\n }\n sXMLDeclEnding() {\n var _a;\n const c = this.getCodeNorm();\n if (c === GREATER) {\n if (this.piTarget !== \"xml\") {\n this.fail(\"processing instructions are not allowed before root.\");\n }\n else if (this.name !== \"version\" &&\n this.xmlDeclExpects.includes(\"version\")) {\n this.fail(\"XML declaration must contain a version.\");\n }\n (_a = this.xmldeclHandler) === null || _a === void 0 ? void 0 : _a.call(this, this.xmlDecl);\n this.name = \"\";\n this.piTarget = this.text = \"\";\n this.state = S_TEXT;\n }\n else {\n // We got here because the previous character was a ?, but the question\n // mark character is not valid inside any of the XML declaration\n // name/value pairs.\n this.fail(\"The character ? is disallowed anywhere in XML declarations.\");\n }\n this.xmlDeclPossible = false;\n }\n sOpenTag() {\n var _a;\n const c = this.captureNameChars();\n if (c === EOC) {\n return;\n }\n const tag = this.tag = {\n name: this.name,\n attributes: Object.create(null),\n };\n this.name = \"\";\n if (this.xmlnsOpt) {\n this.topNS = tag.ns = Object.create(null);\n }\n (_a = this.openTagStartHandler) === null || _a === void 0 ? void 0 : _a.call(this, tag);\n this.sawRoot = true;\n if (!this.fragmentOpt && this.closedRoot) {\n this.fail(\"documents may contain only one root.\");\n }\n switch (c) {\n case GREATER:\n this.openTag();\n break;\n case FORWARD_SLASH:\n this.state = S_OPEN_TAG_SLASH;\n break;\n default:\n if (!isS(c)) {\n this.fail(\"disallowed character in tag name.\");\n }\n this.state = S_ATTRIB;\n }\n }\n sOpenTagSlash() {\n if (this.getCode() === GREATER) {\n this.openSelfClosingTag();\n }\n else {\n this.fail(\"forward-slash in opening tag not followed by >.\");\n this.state = S_ATTRIB;\n }\n }\n sAttrib() {\n const c = this.skipSpaces();\n if (c === EOC) {\n return;\n }\n if (isNameStartChar(c)) {\n this.unget();\n this.state = S_ATTRIB_NAME;\n }\n else if (c === GREATER) {\n this.openTag();\n }\n else if (c === FORWARD_SLASH) {\n this.state = S_OPEN_TAG_SLASH;\n }\n else {\n this.fail(\"disallowed character in attribute name.\");\n }\n }\n sAttribName() {\n const c = this.captureNameChars();\n if (c === EQUAL) {\n this.state = S_ATTRIB_VALUE;\n }\n else if (isS(c)) {\n this.state = S_ATTRIB_NAME_SAW_WHITE;\n }\n else if (c === GREATER) {\n this.fail(\"attribute without value.\");\n this.pushAttrib(this.name, this.name);\n this.name = this.text = \"\";\n this.openTag();\n }\n else if (c !== EOC) {\n this.fail(\"disallowed character in attribute name.\");\n }\n }\n sAttribNameSawWhite() {\n const c = this.skipSpaces();\n switch (c) {\n case EOC:\n return;\n case EQUAL:\n this.state = S_ATTRIB_VALUE;\n break;\n default:\n this.fail(\"attribute without value.\");\n // Should we do this???\n // this.tag.attributes[this.name] = \"\";\n this.text = \"\";\n this.name = \"\";\n if (c === GREATER) {\n this.openTag();\n }\n else if (isNameStartChar(c)) {\n this.unget();\n this.state = S_ATTRIB_NAME;\n }\n else {\n this.fail(\"disallowed character in attribute name.\");\n this.state = S_ATTRIB;\n }\n }\n }\n sAttribValue() {\n const c = this.getCodeNorm();\n if (isQuote(c)) {\n this.q = c;\n this.state = S_ATTRIB_VALUE_QUOTED;\n }\n else if (!isS(c)) {\n this.fail(\"unquoted attribute value.\");\n this.state = S_ATTRIB_VALUE_UNQUOTED;\n this.unget();\n }\n }\n sAttribValueQuoted() {\n // We deliberately do not use captureTo here. The specialized code we use\n // here is faster than using captureTo.\n const { q, chunk } = this;\n let { i: start } = this;\n // eslint-disable-next-line no-constant-condition\n while (true) {\n switch (this.getCode()) {\n case q:\n this.pushAttrib(this.name, this.text + chunk.slice(start, this.prevI));\n this.name = this.text = \"\";\n this.q = null;\n this.state = S_ATTRIB_VALUE_CLOSED;\n return;\n case AMP:\n this.text += chunk.slice(start, this.prevI);\n this.state = S_ENTITY;\n this.entityReturnState = S_ATTRIB_VALUE_QUOTED;\n return;\n case NL:\n case NL_LIKE:\n case TAB:\n this.text += `${chunk.slice(start, this.prevI)} `;\n start = this.i;\n break;\n case LESS:\n this.text += chunk.slice(start, this.prevI);\n this.fail(\"disallowed character.\");\n return;\n case EOC:\n this.text += chunk.slice(start);\n return;\n default:\n }\n }\n }\n sAttribValueClosed() {\n const c = this.getCodeNorm();\n if (isS(c)) {\n this.state = S_ATTRIB;\n }\n else if (c === GREATER) {\n this.openTag();\n }\n else if (c === FORWARD_SLASH) {\n this.state = S_OPEN_TAG_SLASH;\n }\n else if (isNameStartChar(c)) {\n this.fail(\"no whitespace between attributes.\");\n this.unget();\n this.state = S_ATTRIB_NAME;\n }\n else {\n this.fail(\"disallowed character in attribute name.\");\n }\n }\n sAttribValueUnquoted() {\n // We don't do anything regarding EOL or space handling for unquoted\n // attributes. We already have failed by the time we get here, and the\n // contract that saxes upholds states that upon failure, it is not safe to\n // rely on the data passed to event handlers (other than\n // ``onerror``). Passing \"bad\" data is not a problem.\n const c = this.captureTo(ATTRIB_VALUE_UNQUOTED_TERMINATOR);\n switch (c) {\n case AMP:\n this.state = S_ENTITY;\n this.entityReturnState = S_ATTRIB_VALUE_UNQUOTED;\n break;\n case LESS:\n this.fail(\"disallowed character.\");\n break;\n case EOC:\n break;\n default:\n if (this.text.includes(\"]]>\")) {\n this.fail(\"the string \\\"]]>\\\" is disallowed in char data.\");\n }\n this.pushAttrib(this.name, this.text);\n this.name = this.text = \"\";\n if (c === GREATER) {\n this.openTag();\n }\n else {\n this.state = S_ATTRIB;\n }\n }\n }\n sCloseTag() {\n const c = this.captureNameChars();\n if (c === GREATER) {\n this.closeTag();\n }\n else if (isS(c)) {\n this.state = S_CLOSE_TAG_SAW_WHITE;\n }\n else if (c !== EOC) {\n this.fail(\"disallowed character in closing tag.\");\n }\n }\n sCloseTagSawWhite() {\n switch (this.skipSpaces()) {\n case GREATER:\n this.closeTag();\n break;\n case EOC:\n break;\n default:\n this.fail(\"disallowed character in closing tag.\");\n }\n }\n // END OF STATE ENGINE METHODS\n handleTextInRoot() {\n // This is essentially a specialized version of captureTo which is optimized\n // for performing the ]]> check. A previous version of this code, checked\n // ``this.text`` for the presence of ]]>. It simplified the code but was\n // very costly when character data contained a lot of entities to be parsed.\n //\n // Since we are using a specialized loop, we also keep track of the presence\n // of ]]> in text data. The sequence ]]> is forbidden to appear as-is.\n //\n let { i: start, forbiddenState } = this;\n const { chunk, textHandler: handler } = this;\n // eslint-disable-next-line no-labels, no-restricted-syntax\n scanLoop: \n // eslint-disable-next-line no-constant-condition\n while (true) {\n switch (this.getCode()) {\n case LESS: {\n this.state = S_OPEN_WAKA;\n if (handler !== undefined) {\n const { text } = this;\n const slice = chunk.slice(start, this.prevI);\n if (text.length !== 0) {\n handler(text + slice);\n this.text = \"\";\n }\n else if (slice.length !== 0) {\n handler(slice);\n }\n }\n forbiddenState = FORBIDDEN_START;\n // eslint-disable-next-line no-labels\n break scanLoop;\n }\n case AMP:\n this.state = S_ENTITY;\n this.entityReturnState = S_TEXT;\n if (handler !== undefined) {\n this.text += chunk.slice(start, this.prevI);\n }\n forbiddenState = FORBIDDEN_START;\n // eslint-disable-next-line no-labels\n break scanLoop;\n case CLOSE_BRACKET:\n switch (forbiddenState) {\n case FORBIDDEN_START:\n forbiddenState = FORBIDDEN_BRACKET;\n break;\n case FORBIDDEN_BRACKET:\n forbiddenState = FORBIDDEN_BRACKET_BRACKET;\n break;\n case FORBIDDEN_BRACKET_BRACKET:\n break;\n default:\n throw new Error(\"impossible state\");\n }\n break;\n case GREATER:\n if (forbiddenState === FORBIDDEN_BRACKET_BRACKET) {\n this.fail(\"the string \\\"]]>\\\" is disallowed in char data.\");\n }\n forbiddenState = FORBIDDEN_START;\n break;\n case NL_LIKE:\n if (handler !== undefined) {\n this.text += `${chunk.slice(start, this.prevI)}\\n`;\n }\n start = this.i;\n forbiddenState = FORBIDDEN_START;\n break;\n case EOC:\n if (handler !== undefined) {\n this.text += chunk.slice(start);\n }\n // eslint-disable-next-line no-labels\n break scanLoop;\n default:\n forbiddenState = FORBIDDEN_START;\n }\n }\n this.forbiddenState = forbiddenState;\n }\n handleTextOutsideRoot() {\n // This is essentially a specialized version of captureTo which is optimized\n // for a specialized task. We keep track of the presence of non-space\n // characters in the text since these are errors when appearing outside the\n // document root element.\n let { i: start } = this;\n const { chunk, textHandler: handler } = this;\n let nonSpace = false;\n // eslint-disable-next-line no-labels, no-restricted-syntax\n outRootLoop: \n // eslint-disable-next-line no-constant-condition\n while (true) {\n const code = this.getCode();\n switch (code) {\n case LESS: {\n this.state = S_OPEN_WAKA;\n if (handler !== undefined) {\n const { text } = this;\n const slice = chunk.slice(start, this.prevI);\n if (text.length !== 0) {\n handler(text + slice);\n this.text = \"\";\n }\n else if (slice.length !== 0) {\n handler(slice);\n }\n }\n // eslint-disable-next-line no-labels\n break outRootLoop;\n }\n case AMP:\n this.state = S_ENTITY;\n this.entityReturnState = S_TEXT;\n if (handler !== undefined) {\n this.text += chunk.slice(start, this.prevI);\n }\n nonSpace = true;\n // eslint-disable-next-line no-labels\n break outRootLoop;\n case NL_LIKE:\n if (handler !== undefined) {\n this.text += `${chunk.slice(start, this.prevI)}\\n`;\n }\n start = this.i;\n break;\n case EOC:\n if (handler !== undefined) {\n this.text += chunk.slice(start);\n }\n // eslint-disable-next-line no-labels\n break outRootLoop;\n default:\n if (!isS(code)) {\n nonSpace = true;\n }\n }\n }\n if (!nonSpace) {\n return;\n }\n // We use the reportedTextBeforeRoot and reportedTextAfterRoot flags\n // to avoid reporting errors for every single character that is out of\n // place.\n if (!this.sawRoot && !this.reportedTextBeforeRoot) {\n this.fail(\"text data outside of root node.\");\n this.reportedTextBeforeRoot = true;\n }\n if (this.closedRoot && !this.reportedTextAfterRoot) {\n this.fail(\"text data outside of root node.\");\n this.reportedTextAfterRoot = true;\n }\n }\n pushAttribNS(name, value) {\n var _a;\n const { prefix, local } = this.qname(name);\n const attr = { name, prefix, local, value };\n this.attribList.push(attr);\n (_a = this.attributeHandler) === null || _a === void 0 ? void 0 : _a.call(this, attr);\n if (prefix === \"xmlns\") {\n const trimmed = value.trim();\n if (this.currentXMLVersion === \"1.0\" && trimmed === \"\") {\n this.fail(\"invalid attempt to undefine prefix in XML 1.0\");\n }\n this.topNS[local] = trimmed;\n nsPairCheck(this, local, trimmed);\n }\n else if (name === \"xmlns\") {\n const trimmed = value.trim();\n this.topNS[\"\"] = trimmed;\n nsPairCheck(this, \"\", trimmed);\n }\n }\n pushAttribPlain(name, value) {\n var _a;\n const attr = { name, value };\n this.attribList.push(attr);\n (_a = this.attributeHandler) === null || _a === void 0 ? void 0 : _a.call(this, attr);\n }\n /**\n * End parsing. This performs final well-formedness checks and resets the\n * parser to a clean state.\n *\n * @returns this\n */\n end() {\n var _a, _b;\n if (!this.sawRoot) {\n this.fail(\"document must contain a root element.\");\n }\n const { tags } = this;\n while (tags.length > 0) {\n const tag = tags.pop();\n this.fail(`unclosed tag: ${tag.name}`);\n }\n if ((this.state !== S_BEGIN) && (this.state !== S_TEXT)) {\n this.fail(\"unexpected end.\");\n }\n const { text } = this;\n if (text.length !== 0) {\n (_a = this.textHandler) === null || _a === void 0 ? void 0 : _a.call(this, text);\n this.text = \"\";\n }\n this._closed = true;\n (_b = this.endHandler) === null || _b === void 0 ? void 0 : _b.call(this);\n this._init();\n return this;\n }\n /**\n * Resolve a namespace prefix.\n *\n * @param prefix The prefix to resolve.\n *\n * @returns The namespace URI or ``undefined`` if the prefix is not defined.\n */\n resolve(prefix) {\n var _a, _b;\n let uri = this.topNS[prefix];\n if (uri !== undefined) {\n return uri;\n }\n const { tags } = this;\n for (let index = tags.length - 1; index >= 0; index--) {\n uri = tags[index].ns[prefix];\n if (uri !== undefined) {\n return uri;\n }\n }\n uri = this.ns[prefix];\n if (uri !== undefined) {\n return uri;\n }\n return (_b = (_a = this.opt).resolvePrefix) === null || _b === void 0 ? void 0 : _b.call(_a, prefix);\n }\n /**\n * Parse a qname into its prefix and local name parts.\n *\n * @param name The name to parse\n *\n * @returns\n */\n qname(name) {\n // This is faster than using name.split(\":\").\n const colon = name.indexOf(\":\");\n if (colon === -1) {\n return { prefix: \"\", local: name };\n }\n const local = name.slice(colon + 1);\n const prefix = name.slice(0, colon);\n if (prefix === \"\" || local === \"\" || local.includes(\":\")) {\n this.fail(`malformed name: ${name}.`);\n }\n return { prefix, local };\n }\n processAttribsNS() {\n var _a;\n const { attribList } = this;\n const tag = this.tag;\n {\n // add namespace info to tag\n const { prefix, local } = this.qname(tag.name);\n tag.prefix = prefix;\n tag.local = local;\n const uri = tag.uri = (_a = this.resolve(prefix)) !== null && _a !== void 0 ? _a : \"\";\n if (prefix !== \"\") {\n if (prefix === \"xmlns\") {\n this.fail(\"tags may not have \\\"xmlns\\\" as prefix.\");\n }\n if (uri === \"\") {\n this.fail(`unbound namespace prefix: ${JSON.stringify(prefix)}.`);\n tag.uri = prefix;\n }\n }\n }\n if (attribList.length === 0) {\n return;\n }\n const { attributes } = tag;\n const seen = new Set();\n // Note: do not apply default ns to attributes:\n // http://www.w3.org/TR/REC-xml-names/#defaulting\n for (const attr of attribList) {\n const { name, prefix, local } = attr;\n let uri;\n let eqname;\n if (prefix === \"\") {\n uri = name === \"xmlns\" ? XMLNS_NAMESPACE : \"\";\n eqname = name;\n }\n else {\n uri = this.resolve(prefix);\n // if there's any attributes with an undefined namespace,\n // then fail on them now.\n if (uri === undefined) {\n this.fail(`unbound namespace prefix: ${JSON.stringify(prefix)}.`);\n uri = prefix;\n }\n eqname = `{${uri}}${local}`;\n }\n if (seen.has(eqname)) {\n this.fail(`duplicate attribute: ${eqname}.`);\n }\n seen.add(eqname);\n attr.uri = uri;\n attributes[name] = attr;\n }\n this.attribList = [];\n }\n processAttribsPlain() {\n const { attribList } = this;\n // eslint-disable-next-line prefer-destructuring\n const attributes = this.tag.attributes;\n for (const { name, value } of attribList) {\n if (attributes[name] !== undefined) {\n this.fail(`duplicate attribute: ${name}.`);\n }\n attributes[name] = value;\n }\n this.attribList = [];\n }\n /**\n * Handle a complete open tag. This parser code calls this once it has seen\n * the whole tag. This method checks for well-formeness and then emits\n * ``onopentag``.\n */\n openTag() {\n var _a;\n this.processAttribs();\n const { tags } = this;\n const tag = this.tag;\n tag.isSelfClosing = false;\n // There cannot be any pending text here due to the onopentagstart that was\n // necessarily emitted before we get here. So we do not check text.\n (_a = this.openTagHandler) === null || _a === void 0 ? void 0 : _a.call(this, tag);\n tags.push(tag);\n this.state = S_TEXT;\n this.name = \"\";\n }\n /**\n * Handle a complete self-closing tag. This parser code calls this once it has\n * seen the whole tag. This method checks for well-formeness and then emits\n * ``onopentag`` and ``onclosetag``.\n */\n openSelfClosingTag() {\n var _a, _b, _c;\n this.processAttribs();\n const { tags } = this;\n const tag = this.tag;\n tag.isSelfClosing = true;\n // There cannot be any pending text here due to the onopentagstart that was\n // necessarily emitted before we get here. So we do not check text.\n (_a = this.openTagHandler) === null || _a === void 0 ? void 0 : _a.call(this, tag);\n (_b = this.closeTagHandler) === null || _b === void 0 ? void 0 : _b.call(this, tag);\n const top = this.tag = (_c = tags[tags.length - 1]) !== null && _c !== void 0 ? _c : null;\n if (top === null) {\n this.closedRoot = true;\n }\n this.state = S_TEXT;\n this.name = \"\";\n }\n /**\n * Handle a complete close tag. This parser code calls this once it has seen\n * the whole tag. This method checks for well-formeness and then emits\n * ``onclosetag``.\n */\n closeTag() {\n const { tags, name } = this;\n // Our state after this will be S_TEXT, no matter what, and we can clear\n // tagName now.\n this.state = S_TEXT;\n this.name = \"\";\n if (name === \"\") {\n this.fail(\"weird empty close tag.\");\n this.text += \"\";\n return;\n }\n const handler = this.closeTagHandler;\n let l = tags.length;\n while (l-- > 0) {\n const tag = this.tag = tags.pop();\n this.topNS = tag.ns;\n handler === null || handler === void 0 ? void 0 : handler(tag);\n if (tag.name === name) {\n break;\n }\n this.fail(\"unexpected close tag.\");\n }\n if (l === 0) {\n this.closedRoot = true;\n }\n else if (l < 0) {\n this.fail(`unmatched closing tag: ${name}.`);\n this.text += ``;\n }\n }\n /**\n * Resolves an entity. Makes any necessary well-formedness checks.\n *\n * @param entity The entity to resolve.\n *\n * @returns The parsed entity.\n */\n parseEntity(entity) {\n // startsWith would be significantly slower for this test.\n if (entity[0] !== \"#\") {\n const defined = this.ENTITIES[entity];\n if (defined !== undefined) {\n return defined;\n }\n this.fail(this.isName(entity) ? \"undefined entity.\" :\n \"disallowed character in entity name.\");\n return `&${entity};`;\n }\n let num = NaN;\n if (entity[1] === \"x\" && /^#x[0-9a-f]+$/i.test(entity)) {\n num = parseInt(entity.slice(2), 16);\n }\n else if (/^#[0-9]+$/.test(entity)) {\n num = parseInt(entity.slice(1), 10);\n }\n // The character reference is required to match the CHAR production.\n if (!this.isChar(num)) {\n this.fail(\"malformed character entity.\");\n return `&${entity};`;\n }\n return String.fromCodePoint(num);\n }\n}\nexports.SaxesParser = SaxesParser;\n//# sourceMappingURL=saxes.js.map","\"use strict\";\nvar __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n var desc = Object.getOwnPropertyDescriptor(m, k);\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n desc = { enumerable: true, get: function() { return m[k]; } };\n }\n Object.defineProperty(o, k2, desc);\n}) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n}));\nvar __exportStar = (this && this.__exportStar) || function(m, exports) {\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\n__exportStar(require(\"./lib/RdfXmlParser\"), exports);\n//# sourceMappingURL=index.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.ParseError = void 0;\n/**\n * An error that includes line and column in the error message.\n */\nclass ParseError extends Error {\n constructor(parser, message) {\n const saxParser = parser.saxParser;\n super(parser.trackPosition ? `Line ${saxParser.line} column ${saxParser.column + 1}: ${message}` : message);\n }\n}\nexports.ParseError = ParseError;\n//# sourceMappingURL=ParseError.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.ParseType = exports.RdfXmlParser = void 0;\nconst relative_to_absolute_iri_1 = require(\"relative-to-absolute-iri\");\nconst saxes_1 = require(\"@rubensworks/saxes\");\nconst readable_stream_1 = require(\"readable-stream\");\nconst ParseError_1 = require(\"./ParseError\");\nconst rdf_data_factory_1 = require(\"rdf-data-factory\");\nconst validate_iri_1 = require(\"validate-iri\");\nclass RdfXmlParser extends readable_stream_1.Transform {\n constructor(args) {\n super({ readableObjectMode: true });\n this.activeTagStack = [];\n this.nodeIds = {};\n if (args) {\n Object.assign(this, args);\n this.options = args;\n }\n if (!this.dataFactory) {\n this.dataFactory = new rdf_data_factory_1.DataFactory();\n }\n if (!this.baseIRI) {\n this.baseIRI = '';\n }\n if (!this.defaultGraph) {\n this.defaultGraph = this.dataFactory.defaultGraph();\n }\n if (this.validateUri !== false) {\n this.validateUri = true;\n }\n if (!this.iriValidationStrategy) {\n this.iriValidationStrategy = this.validateUri ? validate_iri_1.IriValidationStrategy.Pragmatic : validate_iri_1.IriValidationStrategy.None;\n }\n this.saxParser = new saxes_1.SaxesParser({ xmlns: true, position: this.trackPosition });\n this.attachSaxListeners();\n }\n /**\n * Parses the given text stream into a quad stream.\n * @param {NodeJS.EventEmitter} stream A text stream.\n * @return {RDF.Stream} A quad stream.\n */\n import(stream) {\n const output = new readable_stream_1.PassThrough({ readableObjectMode: true });\n stream.on('error', (error) => parsed.emit('error', error));\n stream.on('data', (data) => output.push(data));\n stream.on('end', () => output.push(null));\n const parsed = output.pipe(new RdfXmlParser(this.options));\n return parsed;\n }\n _transform(chunk, encoding, callback) {\n try {\n this.saxParser.write(chunk);\n }\n catch (e) {\n return callback(e);\n }\n callback();\n }\n /**\n * Create a new parse error instance.\n * @param {string} message An error message.\n * @return {Error} An error instance.\n */\n newParseError(message) {\n return new ParseError_1.ParseError(this, message);\n }\n /**\n * Convert the given value to a IRI by taking into account the baseIRI.\n *\n * This will follow the RDF/XML spec for converting values with baseIRIs to a IRI.\n *\n * @param {string} value The value to convert to an IRI.\n * @param {IActiveTag} activeTag The active tag.\n * @return {NamedNode} an IRI.\n */\n valueToUri(value, activeTag) {\n return this.uriToNamedNode((0, relative_to_absolute_iri_1.resolve)(value, activeTag.baseIRI));\n }\n /**\n * Convert the given value URI string to a named node.\n *\n * This throw an error if the URI is invalid.\n *\n * @param {string} uri A URI string.\n * @return {NamedNode} a named node.\n */\n uriToNamedNode(uri) {\n // Validate URI\n const uriValidationResult = (0, validate_iri_1.validateIri)(uri, this.iriValidationStrategy);\n if (uriValidationResult instanceof Error) {\n throw this.newParseError(uriValidationResult.message);\n }\n return this.dataFactory.namedNode(uri);\n }\n /**\n * Validate the given value as an NCName: https://www.w3.org/TR/xml-names/#NT-NCName\n * If it is invalid, an error will thrown emitted.\n * @param {string} value A value.\n */\n validateNcname(value) {\n // Validate term as an NCName: https://www.w3.org/TR/xml-names/#NT-NCName\n if (!RdfXmlParser.NCNAME_MATCHER.test(value)) {\n throw this.newParseError(`Not a valid NCName: ${value}`);\n }\n }\n attachSaxListeners() {\n this.saxParser.on('error', (error) => this.emit('error', error));\n this.saxParser.on('opentag', this.onTag.bind(this));\n this.saxParser.on('text', this.onText.bind(this));\n this.saxParser.on('cdata', this.onText.bind(this));\n this.saxParser.on('closetag', this.onCloseTag.bind(this));\n this.saxParser.on('doctype', this.onDoctype.bind(this));\n }\n /**\n * Handle the given tag.\n * @param {SaxesTagNS} tag A SAX tag.\n */\n onTag(tag) {\n // Get parent tag\n const parentTag = this.activeTagStack.length\n ? this.activeTagStack[this.activeTagStack.length - 1] : null;\n let currentParseType = ParseType.RESOURCE;\n if (parentTag) {\n parentTag.hadChildren = true;\n currentParseType = parentTag.childrenParseType;\n }\n // Check if this tag needs to be converted to a string\n if (parentTag && parentTag.childrenStringTags) {\n // Convert this tag to a string\n const tagName = tag.name;\n let attributes = '';\n for (const attributeKey in tag.attributes) {\n attributes += ` ${attributeKey}=\"${tag.attributes[attributeKey].value}\"`;\n }\n const tagContents = `${tagName}${attributes}`;\n const tagString = `<${tagContents}>`;\n parentTag.childrenStringTags.push(tagString);\n // Inherit the array, so that deeper tags are appended to this same array\n const stringActiveTag = { childrenStringTags: parentTag.childrenStringTags };\n stringActiveTag.childrenStringEmitClosingTag = ``;\n this.activeTagStack.push(stringActiveTag);\n // Halt any further processing\n return;\n }\n const activeTag = {};\n if (parentTag) {\n // Inherit language scope and baseIRI from parent\n activeTag.language = parentTag.language;\n activeTag.baseIRI = parentTag.baseIRI;\n }\n else {\n activeTag.baseIRI = this.baseIRI;\n }\n this.activeTagStack.push(activeTag);\n if (currentParseType === ParseType.RESOURCE) {\n this.onTagResource(tag, activeTag, parentTag, !parentTag);\n }\n else { // currentParseType === ParseType.PROPERTY\n this.onTagProperty(tag, activeTag, parentTag);\n }\n }\n /**\n * Handle the given node element in resource-mode.\n * @param {SaxesTagNS} tag A SAX tag.\n * @param {IActiveTag} activeTag The currently active tag.\n * @param {IActiveTag} parentTag The parent tag or null.\n * @param {boolean} rootTag If we are currently processing the root tag.\n */\n onTagResource(tag, activeTag, parentTag, rootTag) {\n activeTag.childrenParseType = ParseType.PROPERTY;\n // Assume that the current node is a _typed_ node (2.13), unless we find an rdf:Description as node name\n let typedNode = true;\n if (tag.uri === RdfXmlParser.RDF) {\n // Check forbidden property element names\n if (!rootTag && RdfXmlParser.FORBIDDEN_NODE_ELEMENTS.indexOf(tag.local) >= 0) {\n throw this.newParseError(`Illegal node element name: ${tag.local}`);\n }\n switch (tag.local) {\n case 'RDF':\n // Tags under must always be resources\n activeTag.childrenParseType = ParseType.RESOURCE;\n case 'Description':\n typedNode = false;\n }\n }\n const predicates = [];\n const objects = [];\n // Collect all attributes as triples\n // Assign subject value only after all attributes have been processed, because baseIRI may change the final val\n let activeSubjectValue = null;\n let claimSubjectNodeId = false;\n let subjectValueBlank = false;\n let explicitType = null;\n for (const attributeKey in tag.attributes) {\n const attribute = tag.attributes[attributeKey];\n if (parentTag && attribute.uri === RdfXmlParser.RDF) {\n switch (attribute.local) {\n case 'about':\n if (activeSubjectValue) {\n throw this.newParseError(`Only one of rdf:about, rdf:nodeID and rdf:ID can be present, \\\nwhile ${attribute.value} and ${activeSubjectValue} where found.`);\n }\n activeSubjectValue = attribute.value;\n continue;\n case 'ID':\n if (activeSubjectValue) {\n throw this.newParseError(`Only one of rdf:about, rdf:nodeID and rdf:ID can be present, \\\nwhile ${attribute.value} and ${activeSubjectValue} where found.`);\n }\n this.validateNcname(attribute.value);\n activeSubjectValue = '#' + attribute.value;\n claimSubjectNodeId = true;\n continue;\n case 'nodeID':\n if (activeSubjectValue) {\n throw this.newParseError(`Only one of rdf:about, rdf:nodeID and rdf:ID can be present, \\\nwhile ${attribute.value} and ${activeSubjectValue} where found.`);\n }\n this.validateNcname(attribute.value);\n activeSubjectValue = attribute.value;\n subjectValueBlank = true;\n continue;\n case 'bagID':\n throw this.newParseError(`rdf:bagID is not supported.`);\n case 'type':\n // Emit the rdf:type later as named node instead of the default literal\n explicitType = attribute.value;\n continue;\n case 'aboutEach':\n throw this.newParseError(`rdf:aboutEach is not supported.`);\n case 'aboutEachPrefix':\n throw this.newParseError(`rdf:aboutEachPrefix is not supported.`);\n case 'li':\n throw this.newParseError(`rdf:li on node elements are not supported.`);\n }\n }\n else if (attribute.uri === RdfXmlParser.XML) {\n if (attribute.local === 'lang') {\n activeTag.language = attribute.value === '' ? null : attribute.value.toLowerCase();\n continue;\n }\n else if (attribute.local === 'base') {\n // SAX Parser does not expand xml:base, based on DOCTYPE, so we have to do it manually\n activeTag.baseIRI = (0, relative_to_absolute_iri_1.resolve)(attribute.value, activeTag.baseIRI);\n continue;\n }\n }\n // Interpret attributes at this point as properties on this node,\n // but we ignore attributes that have no prefix or known expanded URI\n if (attribute.prefix !== 'xml' && attribute.prefix !== 'xmlns'\n && (attribute.prefix !== '' || attribute.local !== 'xmlns')\n && attribute.uri) {\n predicates.push(this.uriToNamedNode(attribute.uri + attribute.local));\n objects.push(attribute.value);\n }\n }\n // Create the subject value _after_ all attributes have been processed\n if (activeSubjectValue !== null) {\n activeTag.subject = subjectValueBlank\n ? this.dataFactory.blankNode(activeSubjectValue) : this.valueToUri(activeSubjectValue, activeTag);\n if (claimSubjectNodeId) {\n this.claimNodeId(activeTag.subject);\n }\n }\n // Force the creation of a subject if it doesn't exist yet\n if (!activeTag.subject) {\n activeTag.subject = this.dataFactory.blankNode();\n }\n // Emit the type if we're at a typed node\n if (typedNode) {\n const type = this.uriToNamedNode(tag.uri + tag.local);\n this.emitTriple(activeTag.subject, this.dataFactory.namedNode(RdfXmlParser.RDF + 'type'), type, parentTag ? parentTag.reifiedStatementId : null);\n }\n if (parentTag) {\n // If the parent tag defined a predicate, add the current tag as property value\n if (parentTag.predicate) {\n if (parentTag.childrenCollectionSubject) {\n // RDF:List-based properties\n const linkTerm = this.dataFactory.blankNode();\n // Emit

OR \n this.emitTriple(parentTag.childrenCollectionSubject, parentTag.childrenCollectionPredicate, linkTerm, parentTag.reifiedStatementId);\n // Emit value\n this.emitTriple(linkTerm, this.dataFactory.namedNode(RdfXmlParser.RDF + 'first'), activeTag.subject, activeTag.reifiedStatementId);\n // Store in the parent node\n parentTag.childrenCollectionSubject = linkTerm;\n parentTag.childrenCollectionPredicate = this.dataFactory.namedNode(RdfXmlParser.RDF + 'rest');\n }\n else { // !parentTag.predicateEmitted\n // Set-based properties\n this.emitTriple(parentTag.subject, parentTag.predicate, activeTag.subject, parentTag.reifiedStatementId);\n // Emit pending properties on the parent tag that had no defined subject yet.\n for (let i = 0; i < parentTag.predicateSubPredicates.length; i++) {\n this.emitTriple(activeTag.subject, parentTag.predicateSubPredicates[i], parentTag.predicateSubObjects[i], null);\n }\n // Cleanup so we don't emit them again when the parent tag is closed\n parentTag.predicateSubPredicates = [];\n parentTag.predicateSubObjects = [];\n parentTag.predicateEmitted = true;\n }\n }\n // Emit all collected triples\n for (let i = 0; i < predicates.length; i++) {\n const object = this.dataFactory.literal(objects[i], activeTag.datatype || activeTag.language);\n this.emitTriple(activeTag.subject, predicates[i], object, parentTag.reifiedStatementId);\n }\n // Emit the rdf:type as named node instead of literal\n if (explicitType) {\n this.emitTriple(activeTag.subject, this.dataFactory.namedNode(RdfXmlParser.RDF + 'type'), this.uriToNamedNode(explicitType), null);\n }\n }\n }\n /**\n * Handle the given property element in property-mode.\n * @param {SaxesTagNS} tag A SAX tag.\n * @param {IActiveTag} activeTag The currently active tag.\n * @param {IActiveTag} parentTag The parent tag or null.\n */\n onTagProperty(tag, activeTag, parentTag) {\n activeTag.childrenParseType = ParseType.RESOURCE;\n activeTag.subject = parentTag.subject; // Inherit parent subject\n if (tag.uri === RdfXmlParser.RDF && tag.local === 'li') {\n // Convert rdf:li to rdf:_x\n if (!parentTag.listItemCounter) {\n parentTag.listItemCounter = 1;\n }\n activeTag.predicate = this.uriToNamedNode(tag.uri + '_' + parentTag.listItemCounter++);\n }\n else {\n activeTag.predicate = this.uriToNamedNode(tag.uri + tag.local);\n }\n // Check forbidden property element names\n if (tag.uri === RdfXmlParser.RDF\n && RdfXmlParser.FORBIDDEN_PROPERTY_ELEMENTS.indexOf(tag.local) >= 0) {\n throw this.newParseError(`Illegal property element name: ${tag.local}`);\n }\n activeTag.predicateSubPredicates = [];\n activeTag.predicateSubObjects = [];\n let parseType = false;\n let attributedProperty = false;\n // Collect all attributes as triples\n // Assign subject value only after all attributes have been processed, because baseIRI may change the final val\n let activeSubSubjectValue = null;\n let subSubjectValueBlank = true;\n const predicates = [];\n const objects = [];\n for (const propertyAttributeKey in tag.attributes) {\n const propertyAttribute = tag.attributes[propertyAttributeKey];\n if (propertyAttribute.uri === RdfXmlParser.RDF) {\n switch (propertyAttribute.local) {\n case 'resource':\n if (activeSubSubjectValue) {\n throw this.newParseError(`Found both rdf:resource (${propertyAttribute.value}) and rdf:nodeID (${activeSubSubjectValue}).`);\n }\n if (parseType) {\n throw this.newParseError(`rdf:parseType is not allowed on property elements with rdf:resource (${propertyAttribute.value})`);\n }\n activeTag.hadChildren = true;\n activeSubSubjectValue = propertyAttribute.value;\n subSubjectValueBlank = false;\n continue;\n case 'datatype':\n if (attributedProperty) {\n throw this.newParseError(`Found both non-rdf:* property attributes and rdf:datatype (${propertyAttribute.value}).`);\n }\n if (parseType) {\n throw this.newParseError(`rdf:parseType is not allowed on property elements with rdf:datatype (${propertyAttribute.value})`);\n }\n activeTag.datatype = this.valueToUri(propertyAttribute.value, activeTag);\n continue;\n case 'nodeID':\n if (attributedProperty) {\n throw this.newParseError(`Found both non-rdf:* property attributes and rdf:nodeID (${propertyAttribute.value}).`);\n }\n if (activeTag.hadChildren) {\n throw this.newParseError(`Found both rdf:resource and rdf:nodeID (${propertyAttribute.value}).`);\n }\n if (parseType) {\n throw this.newParseError(`rdf:parseType is not allowed on property elements with rdf:nodeID (${propertyAttribute.value})`);\n }\n this.validateNcname(propertyAttribute.value);\n activeTag.hadChildren = true;\n activeSubSubjectValue = propertyAttribute.value;\n subSubjectValueBlank = true;\n continue;\n case 'bagID':\n throw this.newParseError(`rdf:bagID is not supported.`);\n case 'parseType':\n // Validation\n if (attributedProperty) {\n throw this.newParseError(`rdf:parseType is not allowed when non-rdf:* property attributes are present`);\n }\n if (activeTag.datatype) {\n throw this.newParseError(`rdf:parseType is not allowed on property elements with rdf:datatype (${activeTag.datatype.value})`);\n }\n if (activeSubSubjectValue) {\n throw this.newParseError(`rdf:parseType is not allowed on property elements with rdf:nodeID or rdf:resource (${activeSubSubjectValue})`);\n }\n if (propertyAttribute.value === 'Resource') {\n parseType = true;\n activeTag.childrenParseType = ParseType.PROPERTY;\n // Turn this property element into a node element\n const nestedBNode = this.dataFactory.blankNode();\n this.emitTriple(activeTag.subject, activeTag.predicate, nestedBNode, activeTag.reifiedStatementId);\n activeTag.subject = nestedBNode;\n activeTag.predicate = null;\n }\n else if (propertyAttribute.value === 'Collection') {\n parseType = true;\n // Interpret children as being part of an rdf:List\n activeTag.hadChildren = true;\n activeTag.childrenCollectionSubject = activeTag.subject;\n activeTag.childrenCollectionPredicate = activeTag.predicate;\n subSubjectValueBlank = false;\n }\n else if (propertyAttribute.value === 'Literal') {\n parseType = true;\n // Interpret children as being part of a literal string\n activeTag.childrenTagsToString = true;\n activeTag.childrenStringTags = [];\n }\n continue;\n case 'ID':\n this.validateNcname(propertyAttribute.value);\n activeTag.reifiedStatementId = this.valueToUri('#' + propertyAttribute.value, activeTag);\n this.claimNodeId(activeTag.reifiedStatementId);\n continue;\n }\n }\n else if (propertyAttribute.uri === RdfXmlParser.XML && propertyAttribute.local === 'lang') {\n activeTag.language = propertyAttribute.value === ''\n ? null : propertyAttribute.value.toLowerCase();\n continue;\n }\n // Interpret attributes at this point as properties via implicit blank nodes on the property,\n // but we ignore attributes that have no prefix or known expanded URI\n if (propertyAttribute.prefix !== 'xml' && propertyAttribute.prefix !== 'xmlns'\n && (propertyAttribute.prefix !== '' || propertyAttribute.local !== 'xmlns')\n && propertyAttribute.uri) {\n if (parseType || activeTag.datatype) {\n throw this.newParseError(`Found illegal rdf:* properties on property element with attribute: ${propertyAttribute.value}`);\n }\n activeTag.hadChildren = true;\n attributedProperty = true;\n predicates.push(this.uriToNamedNode(propertyAttribute.uri + propertyAttribute.local));\n objects.push(this.dataFactory.literal(propertyAttribute.value, activeTag.datatype || activeTag.language));\n }\n }\n // Create the subject value _after_ all attributes have been processed\n if (activeSubSubjectValue !== null) {\n const subjectParent = activeTag.subject;\n activeTag.subject = subSubjectValueBlank\n ? this.dataFactory.blankNode(activeSubSubjectValue) : this.valueToUri(activeSubSubjectValue, activeTag);\n this.emitTriple(subjectParent, activeTag.predicate, activeTag.subject, activeTag.reifiedStatementId);\n // Emit our buffered triples\n for (let i = 0; i < predicates.length; i++) {\n this.emitTriple(activeTag.subject, predicates[i], objects[i], null);\n }\n activeTag.predicateEmitted = true;\n }\n else if (subSubjectValueBlank) {\n // The current property element has no defined subject\n // Let's buffer the properties until the child node defines a subject,\n // or if the tag closes.\n activeTag.predicateSubPredicates = predicates;\n activeTag.predicateSubObjects = objects;\n activeTag.predicateEmitted = false;\n }\n }\n /**\n * Emit the given triple to the stream.\n * @param {Term} subject A subject term.\n * @param {Term} predicate A predicate term.\n * @param {Term} object An object term.\n * @param {Term} statementId An optional resource that identifies the triple.\n * If truthy, then the given triple will also be emitted reified.\n */\n emitTriple(subject, predicate, object, statementId) {\n this.push(this.dataFactory.quad(subject, predicate, object, this.defaultGraph));\n // Reify triple\n if (statementId) {\n this.push(this.dataFactory.quad(statementId, this.dataFactory.namedNode(RdfXmlParser.RDF + 'type'), this.dataFactory.namedNode(RdfXmlParser.RDF + 'Statement'), this.defaultGraph));\n this.push(this.dataFactory.quad(statementId, this.dataFactory.namedNode(RdfXmlParser.RDF + 'subject'), subject, this.defaultGraph));\n this.push(this.dataFactory.quad(statementId, this.dataFactory.namedNode(RdfXmlParser.RDF + 'predicate'), predicate, this.defaultGraph));\n this.push(this.dataFactory.quad(statementId, this.dataFactory.namedNode(RdfXmlParser.RDF + 'object'), object, this.defaultGraph));\n }\n }\n /**\n * Register the given term as a node ID.\n * If one was already registered, this will emit an error.\n *\n * This is used to check duplicate occurrences of rdf:ID in scope of the baseIRI.\n * @param {Term} term An RDF term.\n */\n claimNodeId(term) {\n if (!this.allowDuplicateRdfIds) {\n if (this.nodeIds[term.value]) {\n throw this.newParseError(`Found multiple occurrences of rdf:ID='${term.value}'.`);\n }\n this.nodeIds[term.value] = true;\n }\n }\n /**\n * Handle the given text string.\n * @param {string} text A parsed text string.\n */\n onText(text) {\n const activeTag = this.activeTagStack.length\n ? this.activeTagStack[this.activeTagStack.length - 1] : null;\n if (activeTag) {\n if (activeTag.childrenStringTags) {\n activeTag.childrenStringTags.push(text);\n }\n else if (activeTag.predicate) {\n activeTag.text = text;\n }\n }\n }\n /**\n * Handle the closing of the last tag.\n */\n onCloseTag() {\n const poppedTag = this.activeTagStack.pop();\n // If we were converting a tag to a string, and the tag was not self-closing, close it here.\n if (poppedTag.childrenStringEmitClosingTag) {\n poppedTag.childrenStringTags.push(poppedTag.childrenStringEmitClosingTag);\n }\n // Set the literal value if we were collecting XML tags to string\n if (poppedTag.childrenTagsToString) {\n poppedTag.datatype = this.dataFactory.namedNode(RdfXmlParser.RDF + 'XMLLiteral');\n poppedTag.text = poppedTag.childrenStringTags.join('');\n poppedTag.hadChildren = false; // Force a literal triple to be emitted hereafter\n }\n if (poppedTag.childrenCollectionSubject) {\n // Terminate the rdf:List\n this.emitTriple(poppedTag.childrenCollectionSubject, poppedTag.childrenCollectionPredicate, this.dataFactory.namedNode(RdfXmlParser.RDF + 'nil'), poppedTag.reifiedStatementId);\n }\n else if (poppedTag.predicate) {\n if (!poppedTag.hadChildren && poppedTag.childrenParseType !== ParseType.PROPERTY) {\n // Property element contains text\n this.emitTriple(poppedTag.subject, poppedTag.predicate, this.dataFactory.literal(poppedTag.text || '', poppedTag.datatype || poppedTag.language), poppedTag.reifiedStatementId);\n }\n else if (!poppedTag.predicateEmitted) {\n // Emit remaining properties on an anonymous property element\n const subject = this.dataFactory.blankNode();\n this.emitTriple(poppedTag.subject, poppedTag.predicate, subject, poppedTag.reifiedStatementId);\n for (let i = 0; i < poppedTag.predicateSubPredicates.length; i++) {\n this.emitTriple(subject, poppedTag.predicateSubPredicates[i], poppedTag.predicateSubObjects[i], null);\n }\n }\n }\n }\n /**\n * Fetch local DOCTYPE ENTITY's and make the parser recognise them.\n * @param {string} doctype The read doctype.\n */\n onDoctype(doctype) {\n doctype.replace(//g, (match, prefix, uri) => {\n this.saxParser.ENTITIES[prefix] = uri;\n return '';\n });\n }\n}\nexports.RdfXmlParser = RdfXmlParser;\nRdfXmlParser.MIME_TYPE = 'application/rdf+xml';\nRdfXmlParser.RDF = 'http://www.w3.org/1999/02/22-rdf-syntax-ns#';\nRdfXmlParser.XML = 'http://www.w3.org/XML/1998/namespace';\nRdfXmlParser.FORBIDDEN_NODE_ELEMENTS = [\n 'RDF',\n 'ID',\n 'about',\n 'bagID',\n 'parseType',\n 'resource',\n 'nodeID',\n 'li',\n 'aboutEach',\n 'aboutEachPrefix',\n];\nRdfXmlParser.FORBIDDEN_PROPERTY_ELEMENTS = [\n 'Description',\n 'RDF',\n 'ID',\n 'about',\n 'bagID',\n 'parseType',\n 'resource',\n 'nodeID',\n 'aboutEach',\n 'aboutEachPrefix',\n];\n// tslint:disable-next-line:max-line-length\nRdfXmlParser.NCNAME_MATCHER = /^([A-Za-z\\xC0-\\xD6\\xD8-\\xF6\\u{F8}-\\u{2FF}\\u{370}-\\u{37D}\\u{37F}-\\u{1FFF}\\u{200C}-\\u{200D}\\u{2070}-\\u{218F}\\u{2C00}-\\u{2FEF}\\u{3001}-\\u{D7FF}\\u{F900}-\\u{FDCF}\\u{FDF0}-\\u{FFFD}\\u{10000}-\\u{EFFFF}_])([A-Za-z\\xC0-\\xD6\\xD8-\\xF6\\u{F8}-\\u{2FF}\\u{370}-\\u{37D}\\u{37F}-\\u{1FFF}\\u{200C}-\\u{200D}\\u{2070}-\\u{218F}\\u{2C00}-\\u{2FEF}\\u{3001}-\\u{D7FF}\\u{F900}-\\u{FDCF}\\u{FDF0}-\\u{FFFD}\\u{10000}-\\u{EFFFF}_\\-.0-9#xB7\\u{0300}-\\u{036F}\\u{203F}-\\u{2040}])*$/u;\nvar ParseType;\n(function (ParseType) {\n ParseType[ParseType[\"RESOURCE\"] = 0] = \"RESOURCE\";\n ParseType[ParseType[\"PROPERTY\"] = 1] = \"PROPERTY\";\n})(ParseType || (exports.ParseType = ParseType = {}));\n//# sourceMappingURL=RdfXmlParser.js.map","\"use strict\";\nvar __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\n}) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n}));\nvar __exportStar = (this && this.__exportStar) || function(m, exports) {\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\n__exportStar(require(\"./lib/BlankNode\"), exports);\n__exportStar(require(\"./lib/DataFactory\"), exports);\n__exportStar(require(\"./lib/DefaultGraph\"), exports);\n__exportStar(require(\"./lib/Literal\"), exports);\n__exportStar(require(\"./lib/NamedNode\"), exports);\n__exportStar(require(\"./lib/Quad\"), exports);\n__exportStar(require(\"./lib/Variable\"), exports);\n//# sourceMappingURL=index.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.BlankNode = void 0;\n/**\n * A term that represents an RDF blank node with a label.\n */\nclass BlankNode {\n constructor(value) {\n this.termType = 'BlankNode';\n this.value = value;\n }\n equals(other) {\n return !!other && other.termType === 'BlankNode' && other.value === this.value;\n }\n}\nexports.BlankNode = BlankNode;\n//# sourceMappingURL=BlankNode.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.DataFactory = void 0;\nconst BlankNode_1 = require(\"./BlankNode\");\nconst DefaultGraph_1 = require(\"./DefaultGraph\");\nconst Literal_1 = require(\"./Literal\");\nconst NamedNode_1 = require(\"./NamedNode\");\nconst Quad_1 = require(\"./Quad\");\nconst Variable_1 = require(\"./Variable\");\nlet dataFactoryCounter = 0;\n/**\n * A factory for instantiating RDF terms and quads.\n */\nclass DataFactory {\n constructor(options) {\n this.blankNodeCounter = 0;\n options = options || {};\n this.blankNodePrefix = options.blankNodePrefix || `df_${dataFactoryCounter++}_`;\n }\n /**\n * @param value The IRI for the named node.\n * @return A new instance of NamedNode.\n * @see NamedNode\n */\n namedNode(value) {\n return new NamedNode_1.NamedNode(value);\n }\n /**\n * @param value The optional blank node identifier.\n * @return A new instance of BlankNode.\n * If the `value` parameter is undefined a new identifier\n * for the blank node is generated for each call.\n * @see BlankNode\n */\n blankNode(value) {\n return new BlankNode_1.BlankNode(value || `${this.blankNodePrefix}${this.blankNodeCounter++}`);\n }\n /**\n * @param value The literal value.\n * @param languageOrDatatype The optional language or datatype.\n * If `languageOrDatatype` is a NamedNode,\n * then it is used for the value of `NamedNode.datatype`.\n * Otherwise `languageOrDatatype` is used for the value\n * of `NamedNode.language`.\n * @return A new instance of Literal.\n * @see Literal\n */\n literal(value, languageOrDatatype) {\n return new Literal_1.Literal(value, languageOrDatatype);\n }\n /**\n * This method is optional.\n * @param value The variable name\n * @return A new instance of Variable.\n * @see Variable\n */\n variable(value) {\n return new Variable_1.Variable(value);\n }\n /**\n * @return An instance of DefaultGraph.\n */\n defaultGraph() {\n return DefaultGraph_1.DefaultGraph.INSTANCE;\n }\n /**\n * @param subject The quad subject term.\n * @param predicate The quad predicate term.\n * @param object The quad object term.\n * @param graph The quad graph term.\n * @return A new instance of Quad.\n * @see Quad\n */\n quad(subject, predicate, object, graph) {\n return new Quad_1.Quad(subject, predicate, object, graph || this.defaultGraph());\n }\n /**\n * Create a deep copy of the given term using this data factory.\n * @param original An RDF term.\n * @return A deep copy of the given term.\n */\n fromTerm(original) {\n // TODO: remove nasty any casts when this TS bug has been fixed:\n // https://github.com/microsoft/TypeScript/issues/26933\n switch (original.termType) {\n case 'NamedNode':\n return this.namedNode(original.value);\n case 'BlankNode':\n return this.blankNode(original.value);\n case 'Literal':\n if (original.language) {\n return this.literal(original.value, original.language);\n }\n if (!original.datatype.equals(Literal_1.Literal.XSD_STRING)) {\n return this.literal(original.value, this.fromTerm(original.datatype));\n }\n return this.literal(original.value);\n case 'Variable':\n return this.variable(original.value);\n case 'DefaultGraph':\n return this.defaultGraph();\n case 'Quad':\n return this.quad(this.fromTerm(original.subject), this.fromTerm(original.predicate), this.fromTerm(original.object), this.fromTerm(original.graph));\n }\n }\n /**\n * Create a deep copy of the given quad using this data factory.\n * @param original An RDF quad.\n * @return A deep copy of the given quad.\n */\n fromQuad(original) {\n return this.fromTerm(original);\n }\n /**\n * Reset the internal blank node counter.\n */\n resetBlankNodeCounter() {\n this.blankNodeCounter = 0;\n }\n}\nexports.DataFactory = DataFactory;\n//# sourceMappingURL=DataFactory.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.DefaultGraph = void 0;\n/**\n * A singleton term instance that represents the default graph.\n * It's only allowed to assign a DefaultGraph to the .graph property of a Quad.\n */\nclass DefaultGraph {\n constructor() {\n this.termType = 'DefaultGraph';\n this.value = '';\n // Private constructor\n }\n equals(other) {\n return !!other && other.termType === 'DefaultGraph';\n }\n}\nexports.DefaultGraph = DefaultGraph;\nDefaultGraph.INSTANCE = new DefaultGraph();\n//# sourceMappingURL=DefaultGraph.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.Literal = void 0;\nconst NamedNode_1 = require(\"./NamedNode\");\n/**\n * A term that represents an RDF literal, containing a string with an optional language tag or datatype.\n */\nclass Literal {\n constructor(value, languageOrDatatype) {\n this.termType = 'Literal';\n this.value = value;\n if (typeof languageOrDatatype === 'string') {\n this.language = languageOrDatatype;\n this.datatype = Literal.RDF_LANGUAGE_STRING;\n }\n else if (languageOrDatatype) {\n this.language = '';\n this.datatype = languageOrDatatype;\n }\n else {\n this.language = '';\n this.datatype = Literal.XSD_STRING;\n }\n }\n equals(other) {\n return !!other && other.termType === 'Literal' && other.value === this.value &&\n other.language === this.language && this.datatype.equals(other.datatype);\n }\n}\nexports.Literal = Literal;\nLiteral.RDF_LANGUAGE_STRING = new NamedNode_1.NamedNode('http://www.w3.org/1999/02/22-rdf-syntax-ns#langString');\nLiteral.XSD_STRING = new NamedNode_1.NamedNode('http://www.w3.org/2001/XMLSchema#string');\n//# sourceMappingURL=Literal.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.NamedNode = void 0;\n/**\n * A term that contains an IRI.\n */\nclass NamedNode {\n constructor(value) {\n this.termType = 'NamedNode';\n this.value = value;\n }\n equals(other) {\n return !!other && other.termType === 'NamedNode' && other.value === this.value;\n }\n}\nexports.NamedNode = NamedNode;\n//# sourceMappingURL=NamedNode.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.Quad = void 0;\n/**\n * An instance of DefaultGraph represents the default graph.\n * It's only allowed to assign a DefaultGraph to the .graph property of a Quad.\n */\nclass Quad {\n constructor(subject, predicate, object, graph) {\n this.termType = 'Quad';\n this.value = '';\n this.subject = subject;\n this.predicate = predicate;\n this.object = object;\n this.graph = graph;\n }\n equals(other) {\n // `|| !other.termType` is for backwards-compatibility with old factories without RDF* support.\n return !!other && (other.termType === 'Quad' || !other.termType) &&\n this.subject.equals(other.subject) &&\n this.predicate.equals(other.predicate) &&\n this.object.equals(other.object) &&\n this.graph.equals(other.graph);\n }\n}\nexports.Quad = Quad;\n//# sourceMappingURL=Quad.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.Variable = void 0;\n/**\n * A term that represents a variable.\n */\nclass Variable {\n constructor(value) {\n this.termType = 'Variable';\n this.value = value;\n }\n equals(other) {\n return !!other && other.termType === 'Variable' && other.value === this.value;\n }\n}\nexports.Variable = Variable;\n//# sourceMappingURL=Variable.js.map","\"use strict\";\nvar __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\n}) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n}));\nvar __exportStar = (this && this.__exportStar) || function(m, exports) {\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\n__exportStar(require(\"./lib/Resolve\"), exports);\n//# sourceMappingURL=index.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.removeDotSegmentsOfPath = exports.removeDotSegments = exports.resolve = void 0;\n/**\n * Convert the given relative IRI to an absolute IRI\n * by taking into account the given optional baseIRI.\n *\n * @param {string} relativeIRI The relative IRI to convert to an absolute IRI.\n * @param {string} baseIRI The optional base IRI.\n * @return {string} an absolute IRI.\n */\nfunction resolve(relativeIRI, baseIRI) {\n baseIRI = baseIRI || '';\n const baseFragmentPos = baseIRI.indexOf('#');\n // Ignore any fragments in the base IRI\n if (baseFragmentPos > 0) {\n baseIRI = baseIRI.substr(0, baseFragmentPos);\n }\n // Convert empty value directly to base IRI\n if (!relativeIRI.length) {\n // At this point, the baseIRI MUST be absolute, otherwise we error\n if (baseIRI.indexOf(':') < 0) {\n throw new Error(`Found invalid baseIRI '${baseIRI}' for value '${relativeIRI}'`);\n }\n return baseIRI;\n }\n // If the value starts with a query character, concat directly (but strip the existing query)\n if (relativeIRI.startsWith('?')) {\n const baseQueryPos = baseIRI.indexOf('?');\n if (baseQueryPos > 0) {\n baseIRI = baseIRI.substr(0, baseQueryPos);\n }\n return baseIRI + relativeIRI;\n }\n // If the value starts with a fragment character, concat directly\n if (relativeIRI.startsWith('#')) {\n return baseIRI + relativeIRI;\n }\n // Ignore baseIRI if it is empty\n if (!baseIRI.length) {\n const relativeColonPos = relativeIRI.indexOf(':');\n if (relativeColonPos < 0) {\n throw new Error(`Found invalid relative IRI '${relativeIRI}' for a missing baseIRI`);\n }\n return removeDotSegmentsOfPath(relativeIRI, relativeColonPos);\n }\n // Ignore baseIRI if the value is absolute\n const valueColonPos = relativeIRI.indexOf(':');\n if (valueColonPos >= 0) {\n return removeDotSegmentsOfPath(relativeIRI, valueColonPos);\n }\n // At this point, the baseIRI MUST be absolute, otherwise we error\n const baseColonPos = baseIRI.indexOf(':');\n if (baseColonPos < 0) {\n throw new Error(`Found invalid baseIRI '${baseIRI}' for value '${relativeIRI}'`);\n }\n const baseIRIScheme = baseIRI.substr(0, baseColonPos + 1);\n // Inherit the baseIRI scheme if the value starts with '//'\n if (relativeIRI.indexOf('//') === 0) {\n return baseIRIScheme + removeDotSegmentsOfPath(relativeIRI, valueColonPos);\n }\n // Check cases where '://' occurs in the baseIRI, and where there is no '/' after a ':' anymore.\n let baseSlashAfterColonPos;\n if (baseIRI.indexOf('//', baseColonPos) === baseColonPos + 1) {\n // If there is no additional '/' after the '//'.\n baseSlashAfterColonPos = baseIRI.indexOf('/', baseColonPos + 3);\n if (baseSlashAfterColonPos < 0) {\n // If something other than a '/' follows the '://', append the value after a '/',\n // otherwise, prefix the value with only the baseIRI scheme.\n if (baseIRI.length > baseColonPos + 3) {\n return baseIRI + '/' + removeDotSegmentsOfPath(relativeIRI, valueColonPos);\n }\n else {\n return baseIRIScheme + removeDotSegmentsOfPath(relativeIRI, valueColonPos);\n }\n }\n }\n else {\n // If there is not even a single '/' after the ':'\n baseSlashAfterColonPos = baseIRI.indexOf('/', baseColonPos + 1);\n if (baseSlashAfterColonPos < 0) {\n // If we don't have a '/' after the ':',\n // prefix the value with only the baseIRI scheme.\n return baseIRIScheme + removeDotSegmentsOfPath(relativeIRI, valueColonPos);\n }\n }\n // If the value starts with a '/', then prefix it with everything before the first effective slash of the base IRI.\n if (relativeIRI.indexOf('/') === 0) {\n return baseIRI.substr(0, baseSlashAfterColonPos) + removeDotSegments(relativeIRI);\n }\n let baseIRIPath = baseIRI.substr(baseSlashAfterColonPos);\n const baseIRILastSlashPos = baseIRIPath.lastIndexOf('/');\n // Ignore everything after the last '/' in the baseIRI path\n if (baseIRILastSlashPos >= 0 && baseIRILastSlashPos < baseIRIPath.length - 1) {\n baseIRIPath = baseIRIPath.substr(0, baseIRILastSlashPos + 1);\n // Also remove the first character of the relative path if it starts with '.' (and not '..' or './')\n // This change is only allowed if there is something else following the path\n if (relativeIRI[0] === '.' && relativeIRI[1] !== '.' && relativeIRI[1] !== '/' && relativeIRI[2]) {\n relativeIRI = relativeIRI.substr(1);\n }\n }\n // Prefix the value with the baseIRI path where\n relativeIRI = baseIRIPath + relativeIRI;\n // Remove dot segment from the IRI\n relativeIRI = removeDotSegments(relativeIRI);\n // Prefix our transformed value with the part of the baseIRI until the first '/' after the first ':'.\n return baseIRI.substr(0, baseSlashAfterColonPos) + relativeIRI;\n}\nexports.resolve = resolve;\n/**\n * Remove dot segments from the given path,\n * as described in https://www.ietf.org/rfc/rfc3986.txt (page 32).\n * @param {string} path An IRI path.\n * @return {string} A path, will always start with a '/'.\n */\nfunction removeDotSegments(path) {\n // Prepare a buffer with segments between each '/.\n // Each segment represents an array of characters.\n const segmentBuffers = [];\n let i = 0;\n while (i < path.length) {\n // Remove '/.' or '/..'\n switch (path[i]) {\n case '/':\n if (path[i + 1] === '.') {\n if (path[i + 2] === '.') {\n // Start a new segment if we find an invalid character after the '.'\n if (!isCharacterAllowedAfterRelativePathSegment(path[i + 3])) {\n segmentBuffers.push([]);\n i++;\n break;\n }\n // Go to parent directory,\n // so we remove a parent segment\n segmentBuffers.pop();\n // Ensure that we end with a slash if there is a trailing '/..'\n if (!path[i + 3]) {\n segmentBuffers.push([]);\n }\n i += 3;\n }\n else {\n // Start a new segment if we find an invalid character after the '.'\n if (!isCharacterAllowedAfterRelativePathSegment(path[i + 2])) {\n segmentBuffers.push([]);\n i++;\n break;\n }\n // Ensure that we end with a slash if there is a trailing '/.'\n if (!path[i + 2]) {\n segmentBuffers.push([]);\n }\n // Go to the current directory,\n // so we do nothing\n i += 2;\n }\n }\n else {\n // Start a new segment\n segmentBuffers.push([]);\n i++;\n }\n break;\n case '#':\n case '?':\n // Query and fragment string should be appended unchanged\n if (!segmentBuffers.length) {\n segmentBuffers.push([]);\n }\n segmentBuffers[segmentBuffers.length - 1].push(path.substr(i));\n // Break the while loop\n i = path.length;\n break;\n default:\n // Not a special character, just append it to our buffer\n if (!segmentBuffers.length) {\n segmentBuffers.push([]);\n }\n segmentBuffers[segmentBuffers.length - 1].push(path[i]);\n i++;\n break;\n }\n }\n return '/' + segmentBuffers.map((buffer) => buffer.join('')).join('/');\n}\nexports.removeDotSegments = removeDotSegments;\n/**\n * Removes dot segments of the given IRI.\n * @param {string} iri An IRI (or part of IRI).\n * @param {number} colonPosition The position of the first ':' in the IRI.\n * @return {string} The IRI where dot segments were removed.\n */\nfunction removeDotSegmentsOfPath(iri, colonPosition) {\n // Determine where we should start looking for the first '/' that indicates the start of the path\n let searchOffset = colonPosition + 1;\n if (colonPosition >= 0) {\n if (iri[colonPosition + 1] === '/' && iri[colonPosition + 2] === '/') {\n searchOffset = colonPosition + 3;\n }\n }\n else {\n if (iri[0] === '/' && iri[1] === '/') {\n searchOffset = 2;\n }\n }\n // Determine the path\n const pathSeparator = iri.indexOf('/', searchOffset);\n if (pathSeparator < 0) {\n return iri;\n }\n const base = iri.substr(0, pathSeparator);\n const path = iri.substr(pathSeparator);\n // Remove dot segments from the path\n return base + removeDotSegments(path);\n}\nexports.removeDotSegmentsOfPath = removeDotSegmentsOfPath;\nfunction isCharacterAllowedAfterRelativePathSegment(character) {\n return !character || character === '#' || character === '?' || character === '/';\n}\n//# sourceMappingURL=Resolve.js.map","\"use strict\";\nvar __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n var desc = Object.getOwnPropertyDescriptor(m, k);\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n desc = { enumerable: true, get: function() { return m[k]; } };\n }\n Object.defineProperty(o, k2, desc);\n}) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n}));\nvar __exportStar = (this && this.__exportStar) || function(m, exports) {\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\n__exportStar(require(\"./lib/Validate\"), exports);\n//# sourceMappingURL=index.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.validateIri = exports.IriValidationStrategy = void 0;\nfunction buildAbsoluteIriRfc3987Regex() {\n // The syntax is defined in https://www.rfc-editor.org/rfc/rfc3987#section-2.2\n // Rules are defined in reversed order\n const sub_delims_raw = `!$&'()*+,;=`;\n const sub_delims = `[${sub_delims_raw}]`;\n const pct_encoded = `%[a-fA-F0-9]{2}`;\n const dec_octet = '([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])';\n const ipv4address = `${dec_octet}\\\\.${dec_octet}\\\\.${dec_octet}\\\\.${dec_octet}`;\n const h16 = `[a-fA-F0-9]{1,4}`;\n const ls32 = `(${h16}:${h16}|${ipv4address})`;\n const ipv6address = `((${h16}:){6}${ls32}|::(${h16}:){5}${ls32}|(${h16})?::(${h16}:){4}${ls32}|((${h16}:){0,1}${h16})?::(${h16}:){3}${ls32}|((${h16}:){0,2}${h16})?::(${h16}:){2}${ls32}|((${h16}:){0,3}${h16})?::${h16}:${ls32}|((${h16}:){0,4}${h16})?::${ls32}|((${h16}:){0,5}${h16})?::${h16}|((${h16}:){0,6}${h16})?::)`;\n const ipvfuture = `v[a-fA-F0-9]+\\\\.(${sub_delims}|${sub_delims}|\":)+`;\n const ip_literal = `\\\\[(${ipv6address}|${ipvfuture})\\\\]`;\n const port = `[0-9]*`;\n const scheme = `[a-zA-Z][a-zA-Z0-9+\\\\-.]*`;\n const iprivate_raw = `\\u{E000}-\\u{F8FF}\\u{F0000}-\\u{FFFFD}\\u{100000}-\\u{10FFFD}`;\n const iprivate = `[${iprivate_raw}]`;\n const ucschar_raw = `\\u{A0}-\\u{D7FF}\\u{F900}-\\u{FDCF}\\u{FDF0}-\\u{FFEF}\\u{10000}-\\u{1FFFD}\\u{20000}-\\u{2FFFD}\\u{30000}-\\u{3FFFD}\\u{40000}-\\u{4FFFD}\\u{50000}-\\u{5FFFD}\\u{60000}-\\u{6FFFD}\\u{70000}-\\u{7FFFD}\\u{80000}-\\u{8FFFD}\\u{90000}-\\u{9FFFD}\\u{A0000}-\\u{AFFFD}\\u{B0000}-\\u{BFFFD}\\u{C0000}-\\u{CFFFD}\\u{D0000}-\\u{DFFFD}\\u{E1000}-\\u{EFFFD}`;\n const iunreserved_raw = `a-zA-Z0-9\\\\-._~${ucschar_raw}`;\n const iunreserved = `[${iunreserved_raw}]`;\n const ipchar = `(${iunreserved}|${pct_encoded}|${sub_delims}|[:@])*`;\n const ifragment = `(${ipchar}|[\\\\/?])*`;\n const iquery = `(${ipchar}|${iprivate}|[\\\\/?])*`;\n const isegment_nz = `(${ipchar})+`;\n const isegment = `(${ipchar})*`;\n const ipath_empty = '';\n const ipath_rootless = `${isegment_nz}(\\\\/${isegment})*`;\n const ipath_absolute = `\\\\/(${isegment_nz}(\\\\/${isegment})*)?`;\n const ipath_abempty = `(\\\\/${isegment})*`;\n const ireg_name = `(${iunreserved}|${pct_encoded}|${sub_delims})*`;\n const ihost = `(${ip_literal}|${ipv4address}|${ireg_name})`;\n const iuserinfo = `(${iunreserved}|${pct_encoded}|${sub_delims}|:)*`;\n const iauthority = `(${iuserinfo}@)?${ihost}(:${port})?`;\n const ihier_part = `(\\\\/\\\\/${iauthority}${ipath_abempty}|${ipath_absolute}|${ipath_rootless}|${ipath_empty})`;\n const iri = `^${scheme}:${ihier_part}(\\\\?${iquery})?(#${ifragment})?$`;\n return new RegExp(iri, 'u');\n}\nconst STRICT_IRI_REGEX = buildAbsoluteIriRfc3987Regex();\n// eslint-disable-next-line no-control-regex\nconst PRAGMATIC_IRI_REGEX = /^[A-Za-z][\\d+-.A-Za-z]*:[^\\u0000-\\u0020\"<>\\\\^`{|}]*$/u;\n/**\n * Possible ways of validating an IRI\n */\nvar IriValidationStrategy;\n(function (IriValidationStrategy) {\n /**\n * Validates the IRI according to RFC 3987.\n */\n IriValidationStrategy[\"Strict\"] = \"strict\";\n /**\n * Validates that the IRI has a valid scheme and does not contain any character forbidden by the Turtle specification.\n */\n IriValidationStrategy[\"Pragmatic\"] = \"pragmatic\";\n /**\n * Does not validate the IRI at all.\n */\n IriValidationStrategy[\"None\"] = \"none\";\n})(IriValidationStrategy = exports.IriValidationStrategy || (exports.IriValidationStrategy = {}));\n/**\n * Validate a given IRI according to the given strategy.\n *\n * By default the IRI is fully validated according to RFC 3987.\n * But it is possible to do a lighter a faster validation using the \"pragmatic\" strategy.\n *\n * @param {string} iri a string that may be an IRI.\n * @param {IriValidationStrategy} strategy IRI validation strategy.\n * @return {Error | undefined} An error if the IRI is invalid, or undefined if it is valid.\n */\nfunction validateIri(iri, strategy = IriValidationStrategy.Strict) {\n switch (strategy) {\n case IriValidationStrategy.Strict:\n return STRICT_IRI_REGEX.test(iri) ? undefined : new Error(`Invalid IRI according to RFC 3987: '${iri}'`);\n case IriValidationStrategy.Pragmatic:\n return PRAGMATIC_IRI_REGEX.test(iri) ? undefined : new Error(`Invalid IRI according to RDF Turtle: '${iri}'`);\n case IriValidationStrategy.None:\n return undefined;\n default:\n return new Error(`Not supported validation strategy \"${strategy}\"`);\n }\n}\nexports.validateIri = validateIri;\n//# sourceMappingURL=Validate.js.map","\"use strict\";\n/**\n * Character classes and associated utilities for the 5th edition of XML 1.0.\n *\n * @author Louis-Dominique Dubeau\n * @license MIT\n * @copyright Louis-Dominique Dubeau\n */\nObject.defineProperty(exports, \"__esModule\", { value: true });\n//\n// Fragments.\n//\nexports.CHAR = \"\\t\\n\\r -\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\";\nexports.S = \" \\t\\r\\n\";\n// tslint:disable-next-line:max-line-length\nexports.NAME_START_CHAR = \":A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\uD800\\uDC00-\\uDB7F\\uDFFF\";\nexports.NAME_CHAR = \"-\" + exports.NAME_START_CHAR + \".0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040\";\n//\n// Regular expressions.\n//\nexports.CHAR_RE = new RegExp(\"^[\" + exports.CHAR + \"]$\", \"u\");\nexports.S_RE = new RegExp(\"^[\" + exports.S + \"]+$\", \"u\");\nexports.NAME_START_CHAR_RE = new RegExp(\"^[\" + exports.NAME_START_CHAR + \"]$\", \"u\");\nexports.NAME_CHAR_RE = new RegExp(\"^[\" + exports.NAME_CHAR + \"]$\", \"u\");\nexports.NAME_RE = new RegExp(\"^[\" + exports.NAME_START_CHAR + \"][\" + exports.NAME_CHAR + \"]*$\", \"u\");\nexports.NMTOKEN_RE = new RegExp(\"^[\" + exports.NAME_CHAR + \"]+$\", \"u\");\nvar TAB = 9;\nvar NL = 0xA;\nvar CR = 0xD;\nvar SPACE = 0x20;\n//\n// Lists.\n//\n/** All characters in the ``S`` production. */\nexports.S_LIST = [SPACE, NL, CR, TAB];\n/**\n * Determines whether a codepoint matches the ``CHAR`` production.\n *\n * @param c The code point.\n *\n * @returns ``true`` if the codepoint matches ``CHAR``.\n */\nfunction isChar(c) {\n return (c >= SPACE && c <= 0xD7FF) ||\n c === NL || c === CR || c === TAB ||\n (c >= 0xE000 && c <= 0xFFFD) ||\n (c >= 0x10000 && c <= 0x10FFFF);\n}\nexports.isChar = isChar;\n/**\n * Determines whether a codepoint matches the ``S`` (space) production.\n *\n * @param c The code point.\n *\n * @returns ``true`` if the codepoint matches ``S``.\n */\nfunction isS(c) {\n return c === SPACE || c === NL || c === CR || c === TAB;\n}\nexports.isS = isS;\n/**\n * Determines whether a codepoint matches the ``NAME_START_CHAR`` production.\n *\n * @param c The code point.\n *\n * @returns ``true`` if the codepoint matches ``NAME_START_CHAR``.\n */\nfunction isNameStartChar(c) {\n return ((c >= 0x41 && c <= 0x5A) ||\n (c >= 0x61 && c <= 0x7A) ||\n c === 0x3A ||\n c === 0x5F ||\n c === 0x200C ||\n c === 0x200D ||\n (c >= 0xC0 && c <= 0xD6) ||\n (c >= 0xD8 && c <= 0xF6) ||\n (c >= 0x00F8 && c <= 0x02FF) ||\n (c >= 0x0370 && c <= 0x037D) ||\n (c >= 0x037F && c <= 0x1FFF) ||\n (c >= 0x2070 && c <= 0x218F) ||\n (c >= 0x2C00 && c <= 0x2FEF) ||\n (c >= 0x3001 && c <= 0xD7FF) ||\n (c >= 0xF900 && c <= 0xFDCF) ||\n (c >= 0xFDF0 && c <= 0xFFFD) ||\n (c >= 0x10000 && c <= 0xEFFFF));\n}\nexports.isNameStartChar = isNameStartChar;\n/**\n * Determines whether a codepoint matches the ``NAME_CHAR`` production.\n *\n * @param c The code point.\n *\n * @returns ``true`` if the codepoint matches ``NAME_CHAR``.\n */\nfunction isNameChar(c) {\n return isNameStartChar(c) ||\n (c >= 0x30 && c <= 0x39) ||\n c === 0x2D ||\n c === 0x2E ||\n c === 0xB7 ||\n (c >= 0x0300 && c <= 0x036F) ||\n (c >= 0x203F && c <= 0x2040);\n}\nexports.isNameChar = isNameChar;\n//# sourceMappingURL=ed5.js.map","\"use strict\";\n/**\n * Character classes and associated utilities for the 2nd edition of XML 1.1.\n *\n * @author Louis-Dominique Dubeau\n * @license MIT\n * @copyright Louis-Dominique Dubeau\n */\nObject.defineProperty(exports, \"__esModule\", { value: true });\n//\n// Fragments.\n//\nexports.CHAR = \"\\u0001-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\";\nexports.RESTRICTED_CHAR = \"\\u0001-\\u0008\\u000B\\u000C\\u000E-\\u001F\\u007F-\\u0084\\u0086-\\u009F\";\nexports.S = \" \\t\\r\\n\";\n// tslint:disable-next-line:max-line-length\nexports.NAME_START_CHAR = \":A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\uD800\\uDC00-\\uDB7F\\uDFFF\";\nexports.NAME_CHAR = \"-\" + exports.NAME_START_CHAR + \".0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040\";\n//\n// Regular expressions.\n//\nexports.CHAR_RE = new RegExp(\"^[\" + exports.CHAR + \"]$\", \"u\");\nexports.RESTRICTED_CHAR_RE = new RegExp(\"^[\" + exports.RESTRICTED_CHAR + \"]$\", \"u\");\nexports.S_RE = new RegExp(\"^[\" + exports.S + \"]+$\", \"u\");\nexports.NAME_START_CHAR_RE = new RegExp(\"^[\" + exports.NAME_START_CHAR + \"]$\", \"u\");\nexports.NAME_CHAR_RE = new RegExp(\"^[\" + exports.NAME_CHAR + \"]$\", \"u\");\nexports.NAME_RE = new RegExp(\"^[\" + exports.NAME_START_CHAR + \"][\" + exports.NAME_CHAR + \"]*$\", \"u\");\nexports.NMTOKEN_RE = new RegExp(\"^[\" + exports.NAME_CHAR + \"]+$\", \"u\");\nvar TAB = 9;\nvar NL = 0xA;\nvar CR = 0xD;\nvar SPACE = 0x20;\n//\n// Lists.\n//\n/** All characters in the ``S`` production. */\nexports.S_LIST = [SPACE, NL, CR, TAB];\n/**\n * Determines whether a codepoint matches the ``CHAR`` production.\n *\n * @param c The code point.\n *\n * @returns ``true`` if the codepoint matches ``CHAR``.\n */\nfunction isChar(c) {\n return (c >= 0x0001 && c <= 0xD7FF) ||\n (c >= 0xE000 && c <= 0xFFFD) ||\n (c >= 0x10000 && c <= 0x10FFFF);\n}\nexports.isChar = isChar;\n/**\n * Determines whether a codepoint matches the ``RESTRICTED_CHAR`` production.\n *\n * @param c The code point.\n *\n * @returns ``true`` if the codepoint matches ``RESTRICTED_CHAR``.\n */\nfunction isRestrictedChar(c) {\n return (c >= 0x1 && c <= 0x8) ||\n c === 0xB ||\n c === 0xC ||\n (c >= 0xE && c <= 0x1F) ||\n (c >= 0x7F && c <= 0x84) ||\n (c >= 0x86 && c <= 0x9F);\n}\nexports.isRestrictedChar = isRestrictedChar;\n/**\n * Determines whether a codepoint matches the ``CHAR`` production and does not\n * match the ``RESTRICTED_CHAR`` production. ``isCharAndNotRestricted(x)`` is\n * equivalent to ``isChar(x) && !isRestrictedChar(x)``. This function is faster\n * than running the two-call equivalent.\n *\n * @param c The code point.\n *\n * @returns ``true`` if the codepoint matches ``CHAR`` and does not match\n * ``RESTRICTED_CHAR``.\n */\nfunction isCharAndNotRestricted(c) {\n return (c === 0x9) ||\n (c === 0xA) ||\n (c === 0xD) ||\n (c > 0x1F && c < 0x7F) ||\n (c === 0x85) ||\n (c > 0x9F && c <= 0xD7FF) ||\n (c >= 0xE000 && c <= 0xFFFD) ||\n (c >= 0x10000 && c <= 0x10FFFF);\n}\nexports.isCharAndNotRestricted = isCharAndNotRestricted;\n/**\n * Determines whether a codepoint matches the ``S`` (space) production.\n *\n * @param c The code point.\n *\n * @returns ``true`` if the codepoint matches ``S``.\n */\nfunction isS(c) {\n return c === SPACE || c === NL || c === CR || c === TAB;\n}\nexports.isS = isS;\n/**\n * Determines whether a codepoint matches the ``NAME_START_CHAR`` production.\n *\n * @param c The code point.\n *\n * @returns ``true`` if the codepoint matches ``NAME_START_CHAR``.\n */\n// tslint:disable-next-line:cyclomatic-complexity\nfunction isNameStartChar(c) {\n return ((c >= 0x41 && c <= 0x5A) ||\n (c >= 0x61 && c <= 0x7A) ||\n c === 0x3A ||\n c === 0x5F ||\n c === 0x200C ||\n c === 0x200D ||\n (c >= 0xC0 && c <= 0xD6) ||\n (c >= 0xD8 && c <= 0xF6) ||\n (c >= 0x00F8 && c <= 0x02FF) ||\n (c >= 0x0370 && c <= 0x037D) ||\n (c >= 0x037F && c <= 0x1FFF) ||\n (c >= 0x2070 && c <= 0x218F) ||\n (c >= 0x2C00 && c <= 0x2FEF) ||\n (c >= 0x3001 && c <= 0xD7FF) ||\n (c >= 0xF900 && c <= 0xFDCF) ||\n (c >= 0xFDF0 && c <= 0xFFFD) ||\n (c >= 0x10000 && c <= 0xEFFFF));\n}\nexports.isNameStartChar = isNameStartChar;\n/**\n * Determines whether a codepoint matches the ``NAME_CHAR`` production.\n *\n * @param c The code point.\n *\n * @returns ``true`` if the codepoint matches ``NAME_CHAR``.\n */\nfunction isNameChar(c) {\n return isNameStartChar(c) ||\n (c >= 0x30 && c <= 0x39) ||\n c === 0x2D ||\n c === 0x2E ||\n c === 0xB7 ||\n (c >= 0x0300 && c <= 0x036F) ||\n (c >= 0x203F && c <= 0x2040);\n}\nexports.isNameChar = isNameChar;\n//# sourceMappingURL=ed2.js.map","\"use strict\";\n/**\n * Character class utilities for XML NS 1.0 edition 3.\n *\n * @author Louis-Dominique Dubeau\n * @license MIT\n * @copyright Louis-Dominique Dubeau\n */\nObject.defineProperty(exports, \"__esModule\", { value: true });\n//\n// Fragments.\n//\n// tslint:disable-next-line:max-line-length\nexports.NC_NAME_START_CHAR = \"A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\uD800\\uDC00-\\uDB7F\\uDFFF\";\nexports.NC_NAME_CHAR = \"-\" + exports.NC_NAME_START_CHAR + \".0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040\";\n//\n// Regular expressions.\n//\nexports.NC_NAME_START_CHAR_RE = new RegExp(\"^[\" + exports.NC_NAME_START_CHAR + \"]$\", \"u\");\nexports.NC_NAME_CHAR_RE = new RegExp(\"^[\" + exports.NC_NAME_CHAR + \"]$\", \"u\");\nexports.NC_NAME_RE = new RegExp(\"^[\" + exports.NC_NAME_START_CHAR + \"][\" + exports.NC_NAME_CHAR + \"]*$\", \"u\");\n/**\n * Determines whether a codepoint matches [[NC_NAME_START_CHAR]].\n *\n * @param c The code point.\n *\n * @returns ``true`` if the codepoint matches.\n */\n// tslint:disable-next-line:cyclomatic-complexity\nfunction isNCNameStartChar(c) {\n return ((c >= 0x41 && c <= 0x5A) ||\n c === 0x5F ||\n (c >= 0x61 && c <= 0x7A) ||\n (c >= 0xC0 && c <= 0xD6) ||\n (c >= 0xD8 && c <= 0xF6) ||\n (c >= 0x00F8 && c <= 0x02FF) ||\n (c >= 0x0370 && c <= 0x037D) ||\n (c >= 0x037F && c <= 0x1FFF) ||\n (c >= 0x200C && c <= 0x200D) ||\n (c >= 0x2070 && c <= 0x218F) ||\n (c >= 0x2C00 && c <= 0x2FEF) ||\n (c >= 0x3001 && c <= 0xD7FF) ||\n (c >= 0xF900 && c <= 0xFDCF) ||\n (c >= 0xFDF0 && c <= 0xFFFD) ||\n (c >= 0x10000 && c <= 0xEFFFF));\n}\nexports.isNCNameStartChar = isNCNameStartChar;\n/**\n * Determines whether a codepoint matches [[NC_NAME_CHAR]].\n *\n * @param c The code point.\n *\n * @returns ``true`` if the codepoint matches.\n */\nfunction isNCNameChar(c) {\n return isNCNameStartChar(c) ||\n (c === 0x2D ||\n c === 0x2E ||\n (c >= 0x30 && c <= 0x39) ||\n c === 0x00B7 ||\n (c >= 0x0300 && c <= 0x036F) ||\n (c >= 0x203F && c <= 0x2040));\n}\nexports.isNCNameChar = isNCNameChar;\n//# sourceMappingURL=ed3.js.map","import { RdfXmlParser } from 'rdfxml-streaming-parser';\nclass CustomRdfXmlParser extends RdfXmlParser {\n constructor({ factory, ...args } = {}) {\n super({ ...args, dataFactory: factory });\n }\n}\nexport default CustomRdfXmlParser;\n"],"names":["Object","defineProperty","exports","value","SaxesParser","EVENTS","ed5","ed2","NSed3","isS","isChar10","isChar","isNameStartChar","isNameChar","S_LIST","NAME_RE","isChar11","isNCNameStartChar","isNCNameChar","NC_NAME_RE","XML_NAMESPACE","XMLNS_NAMESPACE","rootNS","__proto__","xml","xmlns","XML_ENTITIES","amp","gt","lt","quot","apos","EOC","NL_LIKE","S_BEGIN","S_BEGIN_WHITESPACE","S_DOCTYPE","S_DOCTYPE_QUOTE","S_DTD","S_DTD_QUOTED","S_DTD_OPEN_WAKA","S_DTD_OPEN_WAKA_BANG","S_DTD_COMMENT","S_DTD_COMMENT_ENDING","S_DTD_COMMENT_ENDED","S_DTD_PI","S_DTD_PI_ENDING","S_TEXT","S_ENTITY","S_OPEN_WAKA","S_OPEN_WAKA_BANG","S_COMMENT","S_COMMENT_ENDING","S_COMMENT_ENDED","S_CDATA","S_CDATA_ENDING","S_CDATA_ENDING_2","S_PI_FIRST_CHAR","S_PI_REST","S_PI_BODY","S_PI_ENDING","S_XML_DECL_NAME_START","S_XML_DECL_NAME","S_XML_DECL_EQ","S_XML_DECL_VALUE_START","S_XML_DECL_VALUE","S_XML_DECL_SEPARATOR","S_XML_DECL_ENDING","S_OPEN_TAG","S_OPEN_TAG_SLASH","S_ATTRIB","S_ATTRIB_NAME","S_ATTRIB_NAME_SAW_WHITE","S_ATTRIB_VALUE","S_ATTRIB_VALUE_QUOTED","S_ATTRIB_VALUE_CLOSED","S_ATTRIB_VALUE_UNQUOTED","S_CLOSE_TAG","S_CLOSE_TAG_SAW_WHITE","TAB","NL","CR","SPACE","BANG","DQUOTE","AMP","SQUOTE","MINUS","FORWARD_SLASH","SEMICOLON","LESS","EQUAL","GREATER","QUESTION","OPEN_BRACKET","CLOSE_BRACKET","NEL","LS","isQuote","c","QUOTES","DOCTYPE_TERMINATOR","DTD_TERMINATOR","XML_DECL_NAME_TERMINATOR","ATTRIB_VALUE_UNQUOTED_TERMINATOR","nsPairCheck","parser","prefix","uri","fail","nsMappingCheck","mapping","local","keys","isNCName","name","test","isName","FORBIDDEN_START","FORBIDDEN_BRACKET","FORBIDDEN_BRACKET_BRACKET","EVENT_NAME_TO_HANDLER_NAME","xmldecl","text","processinginstruction","doctype","comment","opentagstart","attribute","opentag","closetag","cdata","error","end","ready","closed","this","_closed","constructor","opt","fragmentOpt","fragment","xmlnsOpt","trackPosition","position","fileName","nameStartCheck","nameCheck","processAttribs","processAttribsNS","pushAttrib","pushAttribNS","ns","assign","additional","additionalNamespaces","processAttribsPlain","pushAttribPlain","stateTable","sBegin","sBeginWhitespace","sDoctype","sDoctypeQuote","sDTD","sDTDQuoted","sDTDOpenWaka","sDTDOpenWakaBang","sDTDComment","sDTDCommentEnding","sDTDCommentEnded","sDTDPI","sDTDPIEnding","sText","sEntity","sOpenWaka","sOpenWakaBang","sComment","sCommentEnding","sCommentEnded","sCData","sCDataEnding","sCDataEnding2","sPIFirstChar","sPIRest","sPIBody","sPIEnding","sXMLDeclNameStart","sXMLDeclName","sXMLDeclEq","sXMLDeclValueStart","sXMLDeclValue","sXMLDeclSeparator","sXMLDeclEnding","sOpenTag","sOpenTagSlash","sAttrib","sAttribName","sAttribNameSawWhite","sAttribValue","sAttribValueQuoted","sAttribValueClosed","sAttribValueUnquoted","sCloseTag","sCloseTagSawWhite","_init","_a","openWakaBang","piTarget","entity","q","tags","tag","topNS","chunk","chunkPosition","i","prevI","carriedFromPrevious","undefined","forbiddenState","attribList","state","reportedTextBeforeRoot","reportedTextAfterRoot","closedRoot","sawRoot","xmlDeclPossible","xmlDeclExpects","entityReturnState","defaultXMLVersion","forceXMLVersion","Error","setXMLVersion","positionAtNewLine","xmlDecl","version","encoding","standalone","line","column","ENTITIES","create","readyHandler","call","columnIndex","on","handler","off","makeError","message","msg","length","err","errorHandler","write","toString","limit","lastCode","charCodeAt","slice","close","getCode10","code","final","getCode11","next","getCodeNorm","getCode","unget","captureTo","chars","start","isNLLike","includes","captureToChar","char","captureNameChars","skipSpaces","currentXMLVersion","iBefore","doctypeHandler","String","fromCodePoint","owb","handleTextInRoot","handleTextOutsideRoot","loop","parsed","parseEntity","textHandler","commentHandler","cdataHandler","isQuestion","toLowerCase","piHandler","target","body","join","xmldeclHandler","attributes","openTagStartHandler","openTag","openSelfClosingTag","closeTag","scanLoop","nonSpace","outRootLoop","qname","attr","push","attributeHandler","trimmed","trim","_b","pop","endHandler","resolve","index","resolvePrefix","colon","indexOf","JSON","stringify","seen","Set","eqname","has","add","isSelfClosing","openTagHandler","_c","closeTagHandler","top","l","defined","num","NaN","parseInt","__createBinding","o","m","k","k2","desc","getOwnPropertyDescriptor","__esModule","writable","configurable","enumerable","get","__exportStar","p","prototype","hasOwnProperty","ParseError","saxParser","super","ParseType","RdfXmlParser","relative_to_absolute_iri_1","saxes_1","readable_stream_1","ParseError_1","rdf_data_factory_1","validate_iri_1","Transform","args","readableObjectMode","activeTagStack","nodeIds","options","dataFactory","DataFactory","baseIRI","defaultGraph","validateUri","iriValidationStrategy","IriValidationStrategy","Pragmatic","None","attachSaxListeners","import","stream","output","PassThrough","emit","data","pipe","_transform","callback","e","newParseError","valueToUri","activeTag","uriToNamedNode","uriValidationResult","validateIri","namedNode","validateNcname","NCNAME_MATCHER","onTag","bind","onText","onCloseTag","onDoctype","parentTag","currentParseType","RESOURCE","hadChildren","childrenParseType","childrenStringTags","tagName","attributeKey","tagContents","tagString","stringActiveTag","childrenStringEmitClosingTag","language","onTagResource","onTagProperty","rootTag","PROPERTY","typedNode","RDF","FORBIDDEN_NODE_ELEMENTS","predicates","objects","activeSubjectValue","claimSubjectNodeId","subjectValueBlank","explicitType","XML","subject","blankNode","claimNodeId","type","emitTriple","reifiedStatementId","predicate","childrenCollectionSubject","linkTerm","childrenCollectionPredicate","predicateSubPredicates","predicateSubObjects","predicateEmitted","object","literal","datatype","listItemCounter","FORBIDDEN_PROPERTY_ELEMENTS","parseType","attributedProperty","activeSubSubjectValue","subSubjectValueBlank","propertyAttributeKey","propertyAttribute","nestedBNode","childrenTagsToString","subjectParent","statementId","quad","term","allowDuplicateRdfIds","poppedTag","replace","match","MIME_TYPE","BlankNode","termType","equals","other","BlankNode_1","DefaultGraph_1","Literal_1","NamedNode_1","Quad_1","Variable_1","dataFactoryCounter","blankNodeCounter","blankNodePrefix","NamedNode","languageOrDatatype","Literal","variable","Variable","DefaultGraph","INSTANCE","graph","Quad","fromTerm","original","XSD_STRING","fromQuad","resetBlankNodeCounter","RDF_LANGUAGE_STRING","relativeIRI","baseFragmentPos","substr","startsWith","baseQueryPos","relativeColonPos","removeDotSegmentsOfPath","valueColonPos","baseColonPos","baseIRIScheme","baseSlashAfterColonPos","removeDotSegments","baseIRIPath","baseIRILastSlashPos","lastIndexOf","path","segmentBuffers","isCharacterAllowedAfterRelativePathSegment","map","buffer","iri","colonPosition","searchOffset","pathSeparator","base","character","buildAbsoluteIriRfc3987Regex","sub_delims_raw","sub_delims","pct_encoded","dec_octet","ipv4address","h16","ls32","ipv6address","ipvfuture","ip_literal","port","scheme","iprivate_raw","iprivate","ucschar_raw","iunreserved_raw","iunreserved","ipchar","ifragment","iquery","isegment_nz","isegment","ipath_empty","ipath_rootless","ipath_absolute","ipath_abempty","ireg_name","ihost","iuserinfo","iauthority","ihier_part","RegExp","STRICT_IRI_REGEX","PRAGMATIC_IRI_REGEX","strategy","Strict","CHAR","S","NAME_START_CHAR","NAME_CHAR","CHAR_RE","S_RE","NAME_START_CHAR_RE","NAME_CHAR_RE","NMTOKEN_RE","RESTRICTED_CHAR","RESTRICTED_CHAR_RE","isRestrictedChar","isCharAndNotRestricted","NC_NAME_START_CHAR","NC_NAME_CHAR","NC_NAME_START_CHAR_RE","NC_NAME_CHAR_RE","CustomRdfXmlParser","factory"],"sourceRoot":""} \ No newline at end of file diff --git a/dist/js/148.2b6347d2.js b/dist/js/148.2b6347d2.js new file mode 100644 index 0000000..1dcd991 --- /dev/null +++ b/dist/js/148.2b6347d2.js @@ -0,0 +1,2 @@ +"use strict";(self["webpackChunkmobilitydcatap_ui"]=self["webpackChunkmobilitydcatap_ui"]||[]).push([[148],{97148:function(t,e,n){n.r(e),n.d(e,{default:function(){return d}});var r=n(86397),a=n(65804),i=n(46674),o=n(66731);class s{constructor(t,{baseIRI:e="",factory:n=a.A,...r}={}){const s={blankNode:n.blankNode.bind(n),defaultGraph:n.defaultGraph.bind(n),literal:n.literal.bind(n),namedNode:n.namedNode.bind(n),quad:n.quad.bind(n)},c=new o.A({baseIRI:e,factory:s,...r});return t.pipe(c),(0,i.A)(c)}}var c=s;class u extends r.A{constructor(t){super(c,t)}}var d=u},86397:function(t,e){class n{constructor(t,e){this.Impl=t,this.options=e}import(t,e){const n=new this.Impl(t,{...this.options,...e});return t.on("end",(()=>{n.readable||n.emit("end")})),t.on("error",(t=>{n.emit("error",t)})),n}}e.A=n},46674:function(t,e){const n=new Set(["_write","_writableState","writable"]);function r(t){return new Proxy(t,{has(t,e){return!n.has(e)&&Reflect.has(...arguments)},get(t,e){if(n.has(e))return;const r=Reflect.get(...arguments);return r&&"function"===typeof r.bind?r.bind(t):r},set(t,e,r){if(!n.has(e))return Reflect.set(...arguments)}})}e.A=r}}]); +//# sourceMappingURL=148.2b6347d2.js.map \ No newline at end of file diff --git a/dist/js/148.2b6347d2.js.map b/dist/js/148.2b6347d2.js.map new file mode 100644 index 0000000..733d62a --- /dev/null +++ b/dist/js/148.2b6347d2.js.map @@ -0,0 +1 @@ +{"version":3,"file":"js/148.2b6347d2.js","mappings":"+NAIA,MAAMA,EACJ,WAAAC,CAAaC,GAAO,QAAEC,EAAU,GAAE,QAAEC,EAAU,OAAQC,GAAS,CAAC,GAC9D,MAAMC,EAAe,CACnBC,UAAWH,EAAQG,UAAUC,KAAKJ,GAClCK,aAAcL,EAAQK,aAAaD,KAAKJ,GACxCM,QAASN,EAAQM,QAAQF,KAAKJ,GAC9BO,UAAWP,EAAQO,UAAUH,KAAKJ,GAClCQ,KAAMR,EAAQQ,KAAKJ,KAAKJ,IAGpBS,EAAS,IAAI,IAAa,CAAEV,UAASC,QAASE,KAAiBD,IAIrE,OAFAH,EAAMY,KAAKD,IAEJ,OAAWA,EACpB,EAGF,QCnBA,MAAME,UAAe,IACnB,WAAAd,CAAae,GACXC,MAAM,EAAcD,EACtB,EAGF,O,sBCTA,MAAME,EACJ,WAAAjB,CAAakB,EAAMH,GACjBI,KAAKD,KAAOA,EACZC,KAAKJ,QAAUA,CACjB,CAEA,MAAAK,CAAQnB,EAAOc,GACb,MAAMM,EAAS,IAAIF,KAAKD,KAAKjB,EAAO,IAAKkB,KAAKJ,WAAYA,IAY1D,OAVAd,EAAMqB,GAAG,OAAO,KACTD,EAAOE,UACVF,EAAOG,KAAK,MACd,IAGFvB,EAAMqB,GAAG,SAASG,IAChBJ,EAAOG,KAAK,QAASC,EAAG,IAGnBJ,CACT,EAGF,K,sBCvBA,MAAMK,EAAY,IAAIC,IAAI,CAAC,SAAU,iBAAkB,aAEvD,SAASJ,EAAUK,GACjB,OAAO,IAAIC,MAAMD,EAAQ,CACvB,GAAAE,CAAKC,EAAQC,GACX,OAAIN,EAAUI,IAAIE,IAIXC,QAAQH,OAAOI,UACxB,EACA,GAAAC,CAAKJ,EAAQC,GACX,GAAIN,EAAUI,IAAIE,GAChB,OAGF,MAAMI,EAASH,QAAQE,OAAOD,WAE9B,OAAIE,GAAiC,oBAAhBA,EAAO7B,KACnB6B,EAAO7B,KAAKwB,GAGdK,CACT,EACA,GAAAC,CAAKN,EAAQC,EAAKM,GAChB,IAAIZ,EAAUI,IAAIE,GAIlB,OAAOC,QAAQI,OAAOH,UACxB,GAEJ,CAEA,K","sources":["webpack://mobilitydcatap-ui/./node_modules/@zazuko/formats-lazy/node_modules/@rdfjs/parser-n3/lib/ParserStream.js","webpack://mobilitydcatap-ui/./node_modules/@zazuko/formats-lazy/node_modules/@rdfjs/parser-n3/index.js","webpack://mobilitydcatap-ui/./node_modules/@zazuko/formats-lazy/node_modules/@rdfjs/sink/index.js","webpack://mobilitydcatap-ui/./node_modules/duplex-to/readable.js"],"sourcesContent":["import rdf from '@rdfjs/data-model'\nimport toReadable from 'duplex-to/readable.js'\nimport { StreamParser } from 'n3'\n\nclass ParserStream {\n constructor (input, { baseIRI = '', factory = rdf, ...rest } = {}) {\n const boundFactory = {\n blankNode: factory.blankNode.bind(factory),\n defaultGraph: factory.defaultGraph.bind(factory),\n literal: factory.literal.bind(factory),\n namedNode: factory.namedNode.bind(factory),\n quad: factory.quad.bind(factory)\n }\n\n const parser = new StreamParser({ baseIRI, factory: boundFactory, ...rest })\n\n input.pipe(parser)\n\n return toReadable(parser)\n }\n}\n\nexport default ParserStream\n","import Sink from '@rdfjs/sink'\nimport ParserStream from './lib/ParserStream.js'\n\nclass Parser extends Sink {\n constructor (options) {\n super(ParserStream, options)\n }\n}\n\nexport default Parser\n","class Sink {\n constructor (Impl, options) {\n this.Impl = Impl\n this.options = options\n }\n\n import (input, options) {\n const output = new this.Impl(input, { ...this.options, ...options })\n\n input.on('end', () => {\n if (!output.readable) {\n output.emit('end')\n }\n })\n\n input.on('error', err => {\n output.emit('error', err)\n })\n\n return output\n }\n}\n\nexport default Sink\n","const blackList = new Set(['_write', '_writableState', 'writable'])\n\nfunction readable (duplex) {\n return new Proxy(duplex, {\n has (target, key) {\n if (blackList.has(key)) {\n return false\n }\n\n return Reflect.has(...arguments)\n },\n get (target, key) {\n if (blackList.has(key)) {\n return undefined\n }\n\n const result = Reflect.get(...arguments)\n\n if (result && typeof result.bind === 'function') {\n return result.bind(target)\n }\n\n return result\n },\n set (target, key, value) {\n if (blackList.has(key)) {\n return undefined\n }\n\n return Reflect.set(...arguments)\n }\n })\n}\n\nexport default readable\n"],"names":["ParserStream","constructor","input","baseIRI","factory","rest","boundFactory","blankNode","bind","defaultGraph","literal","namedNode","quad","parser","pipe","Parser","options","super","Sink","Impl","this","import","output","on","readable","emit","err","blackList","Set","duplex","Proxy","has","target","key","Reflect","arguments","get","result","set","value"],"sourceRoot":""} \ No newline at end of file diff --git a/dist/js/200.4dc78eed.js b/dist/js/200.4dc78eed.js new file mode 100644 index 0000000..50206fc --- /dev/null +++ b/dist/js/200.4dc78eed.js @@ -0,0 +1,2 @@ +(self["webpackChunkmobilitydcatap_ui"]=self["webpackChunkmobilitydcatap_ui"]||[]).push([[200],{34200:function(e,t,i){if("function"!==typeof queueMicrotask){let e=Promise.resolve();try{queueMicrotask=t=>e.then(t).catch((e=>setTimeout((()=>{throw e}),0)))}catch(u){}}const r=i(76063),s=i(95049),_=/^([A-Za-z\xc0-\xd6\xd8-\xf6\xf8-\u{02ff}\u{0370}-\u{037d}\u{037f}-\u{1fff}\u{200c}-\u{200d}\u{2070}-\u{218f}\u{2c00}-\u{2fef}\u{3001}-\u{d7ff}\u{f900}-\u{fdcf}\u{fdf0}-\u{fffd}\u{10000}-\u{effff}]([A-Za-z\xc0-\xd6\xd8-\xf6\xf8-\u{02ff}\u{0370}-\u{037d}\u{037f}-\u{1fff}\u{200c}-\u{200d}\u{2070}-\u{218f}\u{2c00}-\u{2fef}\u{3001}-\u{d7ff}\u{f900}-\u{fdcf}\u{fdf0}-\u{fffd}\u{10000}-\u{effff}_\-0-9\xb7\u{0300}-\u{036f}\u{203f}-\u{2040}.]*[A-Za-z\xc0-\xd6\xd8-\xf6\xf8-\u{02ff}\u{0370}-\u{037d}\u{037f}-\u{1fff}\u{200c}-\u{200d}\u{2070}-\u{218f}\u{2c00}-\u{2fef}\u{3001}-\u{d7ff}\u{f900}-\u{fdcf}\u{fdf0}-\u{fffd}\u{10000}-\u{effff}_\-0-9\xb7\u{0300}-\u{036f}\u{203f}-\u{2040}])?)?$/u,f=1,n=2,c=4;class o extends s{constructor(e={}){super(e);let{prefixes:t={},lists:i=null,debug:s=!1,style:o=null}=e;if(Object.assign(this,{_b_debug:s,_s_indent:"\t",_b_simplify_default_graph:!1,_xc_directives:0,_s_token_prefix:"@prefix"}),o){o.indent&&(this._s_indent=o.indent.replace(/[^\s]/g,""));let e=o.directives||o.directives;if(e)switch(e){case"sparql":this._xc_directives=f,this._s_token_prefix="prefix";break;case"Sparql":this._xc_directives=f|n,this._s_token_prefix="Prefix";break;case"SPARQL":this._xc_directives=f|c,this._s_token_prefix="PREFIX";break;case"turtle":break;case"Turtle":this._xc_directives=n,this._s_token_prefix="@Prefix";break;case"TURTLE":this._xc_directives=c,this._s_token_prefix="@PREFIX";break;default:throw new Error(`Value not understood for 'directives' option: ${e}`)}}i&&(this._serialize_list_object=function(e,t){let i=this._transcode_list(e);return this._encode_objects(i,t)});let u=this._s_token_prefix,a=this._xc_directives&f?"\n":" .\n",l="";try{for(let e in t){if(!_.test(e))throw new Error(`Invlalid prefix id for text/turtle RDF serialization format: '${e}'`);l+=`${u} ${e}: ${r.namedNode(t[e]).verbose()}${a}`}}catch(h){queueMicrotask((()=>{this.emit("error",h)}))}l&&this.push(l)}_serialize_prefixes(e){let t=2===this._xc_state?"\n\n":"";this._xc_state=0,this._h_prefixes={...this._h_prefixes};let i=this._s_token_prefix,s=this._xc_directives&f?"\n":" .\n";for(let f in e){if(!_.test(f))throw new Error(`Invlalid prefix id for text/turtle RDF serialization format: '${f}'`);t+=`${i} ${f}: ${r.namedNode(e[f]).verbose()}${s}`,this._h_prefixes[f]=e[f]}return r.cache_prefixes(this._h_prefixes),t}_serialize_c3(e){let{_h_prefixes:t,_s_indent:i}=this,s=2!==this._xc_state?"\n":"";this._xc_state=2;let _="",f=null;for(let n in e){if("`"===n[0]){let t=this._apply_directive(n,e[n]);t.write&&(s+=_+t.write,_=""),t.exit&&(f=t.exit);continue}let c=s.length;s+=_+r.c1_node(n,t).terse(t)+" ";let o="",u="",a=e[n],l=s.length,h=!0,d=null;for(let e in a){if("`"===e[0]){let t=this._apply_directive(e,a[e]);t.write&&(s+=(o?u:"\n")+i+t.write,u="",o=i),t.exit&&(d=t.exit);continue}let _=a[e],f=this._encode_objects(_);if(!f)continue;if(h=!1,"_"===e[0]&&":"===e[1])throw new Error(`Cannot use blank node in predicate position of c3 hash; subject:'${n}', predicate:'${e}'`);let c=r.c1_named_node(e,t),l=c.isRdfTypeAlias?"a":c.terse(t);s+=u+o+l+" "+f,this._xc_state=2,u=" ;\n",o=i,d&&d()}h?s=s.slice(0,c)+s.slice(l):(_="\n",s+=`${u?" ":o}.\n`,f&&f())}return s+="\n",s}_encode_objects(e,t=1){let{_h_prefixes:i,_s_indent:s,_hm_coercions:_}=this;switch(typeof e){case"string":return r.c1(e,i).terse(i);case"number":return r.number(e).terse(i);case"boolean":return r.boolean(e).terse(i);case"object":if(null===e)throw new Error("Refusing to serialize null value given as an object of quad");if(Array.isArray(e)||e instanceof Set){let i="",r="";for(let s of e)Array.isArray(s)?i+=r+this._serialize_list_object(s,t):i+=r+this._encode_objects(s,t),r=", ";return i}if(Object===e.constructor){let _="[",f=!0,n=null;for(let c in e)if(f=!1,_+="\n"+s.repeat(1+t),"`"!==c[0])_+=r.c1(c,i).terse(i)+" "+this._encode_objects(e[c],t+1)+" ;";else{let t=this._apply_directive(c,e[c]);t.write&&(_+=t.write),t.exit&&(n=t.exit)}return _+=(f?"":"\n"+s.repeat(t))+"]",n&&n(),_}if(_.has(e.constructor)){let r=_.get(e.constructor).apply(this,[e,t]);return r.terse(i)}if(e.isGraphyTerm)return e.terse(i);if(e.termType)return r.from.term(e).terse(i);default:throw new Error(`Bad type for RDF object: [${typeof e}] ${e?e.constructor:e}`)}}_serialize_collection_object(e,t){let i=this._s_indent,r="(";for(let s of e){let e="";e=Array.isArray(s)?this._serialize_collection_object(s,t+1):this._encode_objects(s,t+1),r+="\n"+i.repeat(1+t)+e}return e.length&&(r+="\n"+i.repeat(t)),r+=")",r}_serialize_quad(e){let t=this._h_prefixes,i=r.from.quad(e);this._s_push+=(2!==this._xc_state?"\n":"")+i.subject.terse(t)+" "+i.predicate.terse(t)+" "+i.object.terse(t)+" .\n\n",this._xc_state=2}}Object.assign(o.prototype,{anonymous_blank_nodes:!0,_serialize_c3r:o.prototype._serialize_c3,_serialize_c4r:o.prototype._serialize_c4,_serialize_comment:s.prototype._serialize_hash_comment,_serialize_list_object:o.prototype._serialize_collection_object}),e.exports=function(e){return new o(e)}}}]); +//# sourceMappingURL=200.4dc78eed.js.map \ No newline at end of file diff --git a/dist/js/200.4dc78eed.js.map b/dist/js/200.4dc78eed.js.map new file mode 100644 index 0000000..065f16b --- /dev/null +++ b/dist/js/200.4dc78eed.js.map @@ -0,0 +1 @@ +{"version":3,"file":"js/200.4dc78eed.js","mappings":"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","sources":["webpack://mobilitydcatap-ui/./node_modules/@graphy/content.ttl.write/main.js"],"sourcesContent":["\n\n\n// queueMicrotask shim\n{\n\t// not defined or not a function\n\tif('function' !== typeof queueMicrotask) {\n\t\t// create resolved promise\n\t\tlet dp_resolve = Promise.resolve();\n\n\t\t// try to redefine\n\t\ttry {\n\t\t\t// eslint-disable-next-line no-global-assign\n\t\t\tqueueMicrotask = fk => dp_resolve.then(fk)\n\t\t\t\t.catch(e_callback => setTimeout(() => {\n\t\t\t\t\tthrow e_callback;\n\t\t\t\t}, 0));\n\t\t}\n\t\t// oh well, at least we tried\n\t\tcatch(e_define) {}\n\t}\n}\n\n\n\nconst factory = require('@graphy/core.data.factory');\nconst Writable = require('@graphy/core.class.writable');\n\n// eslint-disable-next-line no-misleading-character-class\nconst RT_PREFIXED_NAME_NAMESPACE_VALID = /^([A-Za-z\\xc0-\\xd6\\xd8-\\xf6\\xf8-\\u{02ff}\\u{0370}-\\u{037d}\\u{037f}-\\u{1fff}\\u{200c}-\\u{200d}\\u{2070}-\\u{218f}\\u{2c00}-\\u{2fef}\\u{3001}-\\u{d7ff}\\u{f900}-\\u{fdcf}\\u{fdf0}-\\u{fffd}\\u{10000}-\\u{effff}]([A-Za-z\\xc0-\\xd6\\xd8-\\xf6\\xf8-\\u{02ff}\\u{0370}-\\u{037d}\\u{037f}-\\u{1fff}\\u{200c}-\\u{200d}\\u{2070}-\\u{218f}\\u{2c00}-\\u{2fef}\\u{3001}-\\u{d7ff}\\u{f900}-\\u{fdcf}\\u{fdf0}-\\u{fffd}\\u{10000}-\\u{effff}_\\-0-9\\xb7\\u{0300}-\\u{036f}\\u{203f}-\\u{2040}.]*[A-Za-z\\xc0-\\xd6\\xd8-\\xf6\\xf8-\\u{02ff}\\u{0370}-\\u{037d}\\u{037f}-\\u{1fff}\\u{200c}-\\u{200d}\\u{2070}-\\u{218f}\\u{2c00}-\\u{2fef}\\u{3001}-\\u{d7ff}\\u{f900}-\\u{fdcf}\\u{fdf0}-\\u{fffd}\\u{10000}-\\u{effff}_\\-0-9\\xb7\\u{0300}-\\u{036f}\\u{203f}-\\u{2040}])?)?$/u;\nconst N_MAX_STRING_BUFFER = 1 << 12;\n\nconst XC_DIRECTIVES_TYPE_SPARQL = 0b001;\nconst XC_DIRECTIVES_CASE_PASCAL = 0b010;\nconst XC_DIRECTIVES_CASE_UPPER = 0b100;\n\n\n\nclass Turtle_Writer extends Writable {\n\tconstructor(gc_writer={}) {\n\t\tsuper(gc_writer);\n\n\t\tlet {\n\t\t\tprefixes: h_prefixes={},\n\t\t\tlists: gc_lists=null,\n\t\t\tdebug: b_debug=false,\n\t\t\tstyle: gc_style=null,\n\t\t} = gc_writer;\n\n\t\tObject.assign(this, {\n\t\t\t_b_debug: b_debug,\n\t\t\t_s_indent: '\\t',\n\t\t\t_b_simplify_default_graph: false,\n\t\t\t_xc_directives: 0,\n\t\t\t_s_token_prefix: '@prefix',\n\t\t});\n\n\n\t\t// style config\n\t\tif(gc_style) {\n\t\t\t// indent\n\t\t\tif(gc_style.indent) {\n\t\t\t\tthis._s_indent = gc_style.indent.replace(/[^\\s]/g, '');\n\t\t\t}\n\n\t\t\t// use sparql directives\n\t\t\tlet z_directives = gc_style.directives || gc_style.directives;\n\t\t\tif(z_directives) {\n\t\t\t\tswitch(z_directives) {\n\t\t\t\t\tcase 'sparql': {\n\t\t\t\t\t\tthis._xc_directives = XC_DIRECTIVES_TYPE_SPARQL;\n\t\t\t\t\t\tthis._s_token_prefix = 'prefix';\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\n\t\t\t\t\tcase 'Sparql': {\n\t\t\t\t\t\tthis._xc_directives = XC_DIRECTIVES_TYPE_SPARQL | XC_DIRECTIVES_CASE_PASCAL;\n\t\t\t\t\t\tthis._s_token_prefix = 'Prefix';\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\n\t\t\t\t\tcase 'SPARQL': {\n\t\t\t\t\t\tthis._xc_directives = XC_DIRECTIVES_TYPE_SPARQL | XC_DIRECTIVES_CASE_UPPER;\n\t\t\t\t\t\tthis._s_token_prefix = 'PREFIX';\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\n\t\t\t\t\tcase 'turtle': {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\n\t\t\t\t\tcase 'Turtle': {\n\t\t\t\t\t\tthis._xc_directives = XC_DIRECTIVES_CASE_PASCAL;\n\t\t\t\t\t\tthis._s_token_prefix = '@Prefix';\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\n\t\t\t\t\tcase 'TURTLE': {\n\t\t\t\t\t\tthis._xc_directives = XC_DIRECTIVES_CASE_UPPER;\n\t\t\t\t\t\tthis._s_token_prefix = '@PREFIX';\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\n\t\t\t\t\tdefault: {\n\t\t\t\t\t\tthrow new Error(`Value not understood for 'directives' option: ${z_directives}`);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\n\n\t\t// custom list keys\n\t\tif(gc_lists) {\n\t\t\t// serialize list object\n\t\t\tthis._serialize_list_object = function(a_list, n_nest_level) {\n\t\t\t\t// transcode list object\n\t\t\t\tlet hc2_transcoded = this._transcode_list(a_list);\n\n\t\t\t\t// serialize object\n\t\t\t\treturn this._encode_objects(hc2_transcoded, n_nest_level);\n\t\t\t};\n\t\t}\n\n\t\t// serialize initial prefix mappings\n\t\tlet s_token_prefix = this._s_token_prefix;\n\t\tlet s_prefix_eol = (this._xc_directives & XC_DIRECTIVES_TYPE_SPARQL)? '\\n': ' .\\n';\n\t\tlet s_prefixes = '';\n\t\ttry {\n\t\t\t// each user-defined prefix\n\t\t\tfor(let s_prefix_id in h_prefixes) {\n\t\t\t\t// invalid prefix id\n\t\t\t\tif(!RT_PREFIXED_NAME_NAMESPACE_VALID.test(s_prefix_id)) {\n\t\t\t\t\tthrow new Error(`Invlalid prefix id for text/turtle RDF serialization format: '${s_prefix_id}'`);\n\t\t\t\t}\n\n\t\t\t\t// append to string\n\t\t\t\ts_prefixes += `${s_token_prefix} ${s_prefix_id}: ${factory.namedNode(h_prefixes[s_prefix_id]).verbose()}${s_prefix_eol}`;\n\t\t\t}\n\t\t}\n\t\t// serialization error\n\t\tcatch(e_serialize) {\n\t\t\tqueueMicrotask(() => {\n\t\t\t\tthis.emit('error', e_serialize);\n\t\t\t});\n\t\t}\n\n\t\t// push prefixes\n\t\tif(s_prefixes) this.push(s_prefixes);\n\t}\n\n\t// serialize prefixes\n\t_serialize_prefixes(h_prefixes) {\n\t\t// build prefixes string\n\t\tlet s_prefixes = (2 === this._xc_state)? '\\n\\n': '';\n\n\t\t// update state\n\t\tthis._xc_state = 0;\n\n\t\t// clone prefixes\n\t\tthis._h_prefixes = {...this._h_prefixes};\n\n\t\t// ref prefix token\n\t\tlet s_token_prefix = this._s_token_prefix;\n\n\t\t// prep eol string\n\t\tlet s_prefix_eol = (this._xc_directives & XC_DIRECTIVES_TYPE_SPARQL)? '\\n': ' .\\n';\n\n\t\t// each user-defined prefix\n\t\tfor(let s_prefix_id in h_prefixes) {\n\t\t\t// invalid prefix id\n\t\t\tif(!RT_PREFIXED_NAME_NAMESPACE_VALID.test(s_prefix_id)) {\n\t\t\t\tthrow new Error(`Invlalid prefix id for text/turtle RDF serialization format: '${s_prefix_id}'`);\n\t\t\t}\n\n\t\t\t// append to string\n\t\t\ts_prefixes += `${s_token_prefix} ${s_prefix_id}: ${factory.namedNode(h_prefixes[s_prefix_id]).verbose()}${s_prefix_eol}`;\n\n\t\t\t// set prefix\n\t\t\tthis._h_prefixes[s_prefix_id] = h_prefixes[s_prefix_id];\n\t\t}\n\n\t\t// recache\n\t\tfactory.cache_prefixes(this._h_prefixes);\n\n\t\t// return prefix string\n\t\treturn s_prefixes;\n\t}\n\n\n\n\t// serialize c3 hash\n\t_serialize_c3(hc3_triples) {\n\t\tlet {\n\t\t\t_h_prefixes: h_prefixes,\n\t\t\t_s_indent: s_indent,\n\n\t\t} = this;\n\t\t// break line if non-data state\n\t\tlet s_write = 2 !== this._xc_state? '\\n': '';\n\t\t// update state\n\t\tthis._xc_state = 2;\n\n\t\t// triple delimiter\n\t\tlet s_delim_triples = '';\n\t\t// subject exit listener\n\t\tlet f_exit_subject = null;\n\t\t// each subject\n\t\tfor(let sc1_subject in hc3_triples) {\n\t\t\t// directive\n\t\t\tif('`' === sc1_subject[0]) {\n\t\t\t\tlet g_apply = this._apply_directive(sc1_subject, hc3_triples[sc1_subject]);\n\t\t\t\t// write data\n\t\t\t\tif(g_apply.write) {\n\t\t\t\t\ts_write += s_delim_triples+g_apply.write;\n\t\t\t\t\t// do not break next line\n\t\t\t\t\ts_delim_triples = '';\n\t\t\t\t}\n\t\t\t\t// save exit listener\n\t\t\t\tif(g_apply.exit) f_exit_subject = g_apply.exit;\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\t// position before subject\n\t\t\tlet i_triples = s_write.length;\n\t\t\t// serialize subject\n\t\t\ts_write += s_delim_triples+factory.c1_node(sc1_subject, h_prefixes).terse(h_prefixes)+' ';\n\t\t\t// pair indent & terminator\n\t\t\tlet s_indent_pairs = '';\n\t\t\tlet s_term_pairs = '';\n\t\t\t// ref pairs\n\t\t\tlet hc2_pairs = hc3_triples[sc1_subject];\n\t\t\t// position before pairs\n\t\t\tlet i_pairs = s_write.length;\n\t\t\t// were objects written?\n\t\t\tlet b_empty = true;\n\t\t\t// predicate exit listener\n\t\t\tlet f_exit_predicate = null;\n\t\t\t// each predicate\n\t\t\tfor(let sc1_predicate in hc2_pairs) {\n\t\t\t\t// directive\n\t\t\t\tif('`' === sc1_predicate[0]) {\n\t\t\t\t\t// apply directive\n\t\t\t\t\tlet g_apply = this._apply_directive(sc1_predicate, hc2_pairs[sc1_predicate]);\n\t\t\t\t\t// write data\n\t\t\t\t\tif(g_apply.write) {\n\t\t\t\t\t\t// break line\n\t\t\t\t\t\ts_write += (s_indent_pairs? s_term_pairs: '\\n')+s_indent+g_apply.write;\n\t\t\t\t\t\t// pair already terminated\n\t\t\t\t\t\ts_term_pairs = '';\n\t\t\t\t\t\t// indent next pair\n\t\t\t\t\t\ts_indent_pairs = s_indent;\n\t\t\t\t\t}\n\t\t\t\t\t// save exit listener\n\t\t\t\t\tif(g_apply.exit) f_exit_predicate = g_apply.exit;\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\t// ref objects\n\t\t\t\tlet z_objects = hc2_pairs[sc1_predicate];\n\t\t\t\t// serialize objects\n\t\t\t\tlet st_objects = this._encode_objects(z_objects);\n\t\t\t\t// no objects; skip pair\n\t\t\t\tif(!st_objects) continue;\n\t\t\t\t// not empty\n\t\t\t\tb_empty = false;\n\t\t\t\t// cannot use blank node in predicate position\n\t\t\t\tif('_' === sc1_predicate[0] && ':' === sc1_predicate[1]) {\n\t\t\t\t\tthrow new Error(`Cannot use blank node in predicate position of c3 hash; subject:'${sc1_subject}', predicate:'${sc1_predicate}'`);\n\t\t\t\t}\n\t\t\t\t// create predicate\n\t\t\t\tlet kt_predicate = factory.c1_named_node(sc1_predicate, h_prefixes);\n\t\t\t\t// tersify rdf:type\n\t\t\t\tlet st_predicate = kt_predicate.isRdfTypeAlias? 'a': kt_predicate.terse(h_prefixes);\n\t\t\t\t// serialize predicate and object(s)\n\t\t\t\ts_write += s_term_pairs+s_indent_pairs+st_predicate+' '+st_objects;\n\t\t\t\t// update state\n\t\t\t\tthis._xc_state = 2;\n\t\t\t\t\t// // string buffer became too large\n\t\t\t\t\t// if(s_write.length >= N_MAX_STRING_BUFFER) {\n\t\t\t\t\t// \tdebugger;\n\t\t\t\t\t// }\n\t\t\t\t// terminate next pair\n\t\t\t\ts_term_pairs = ' ;\\n';\n\t\t\t\t// indent next pair\n\t\t\t\ts_indent_pairs = s_indent;\n\t\t\t\t// call exit predicate listener\n\t\t\t\tif(f_exit_predicate) f_exit_predicate();\n\t\t\t}\n\t\t\t// empty triples; cut out\n\t\t\tif(b_empty) {\n\t\t\t\ts_write = s_write.slice(0, i_triples)+s_write.slice(i_pairs);\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\t// delimit triple(s)\n\t\t\ts_delim_triples = '\\n';\n\t\t\t// close triple\n\t\t\ts_write += `${s_term_pairs? ' ': s_indent_pairs}.\\n`; //\n\t\t\t// call exit subject listener\n\t\t\tif(f_exit_subject) f_exit_subject();\n\t\t}\n\n\t\ts_write += '\\n';\n\t\treturn s_write;\n\t}\n\n\n\t// write objects\n\t_encode_objects(z_objects, n_nest_level=1) {\n\t\tlet {\n\t\t\t_h_prefixes: h_prefixes,\n\t\t\t_s_indent: s_indent,\n\t\t\t_hm_coercions: hm_coercions,\n\t\t} = this;\n\n\t\t// deduce object value type\n\t\tswitch(typeof z_objects) {\n\t\t\t// concise-term string\n\t\t\tcase 'string': return factory.c1(z_objects, h_prefixes).terse(h_prefixes);\n\n\t\t\t// numeric type\n\t\t\tcase 'number': return factory.number(z_objects).terse(h_prefixes);\n\n\t\t\t// boolean type\n\t\t\tcase 'boolean': return factory.boolean(z_objects).terse(h_prefixes);\n\n\t\t\t// object\n\t\t\tcase 'object': {\n\t\t\t\t// null; reject\n\t\t\t\tif(null === z_objects) throw new Error('Refusing to serialize null value given as an object of quad');\n\n\t\t\t\t// array, list of objects\n\t\t\t\tif(Array.isArray(z_objects) || z_objects instanceof Set) {\n\t\t\t\t\tlet s_write = '';\n\n\t\t\t\t\t// object terminator\n\t\t\t\t\tlet s_term_object = '';\n\n\t\t\t\t\t// each object\n\t\t\t\t\tfor(let z_item of z_objects) {\n\t\t\t\t\t\t// item is an array; serialize list\n\t\t\t\t\t\tif(Array.isArray(z_item)) {\n\t\t\t\t\t\t\ts_write += s_term_object + this._serialize_list_object(z_item, n_nest_level);\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// non-array\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t// recurse on item\n\t\t\t\t\t\t\ts_write += s_term_object + this._encode_objects(z_item, n_nest_level);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// terminate next object\n\t\t\t\t\t\ts_term_object = ', ';\n\t\t\t\t\t}\n\n\t\t\t\t\treturn s_write;\n\t\t\t\t}\n\t\t\t\t// plain object, blank node\n\t\t\t\telse if(Object === z_objects.constructor) {\n\t\t\t\t\t// open blank node block\n\t\t\t\t\tlet s_write = '[';\n\n\t\t\t\t\t// whether the block is empty\n\t\t\t\t\tlet b_empty = true;\n\n\t\t\t\t\t// object exit listener\n\t\t\t\t\tlet f_exit_object = null;\n\n\t\t\t\t\t// each pair\n\t\t\t\t\tfor(let sc1_predicate in z_objects) {\n\t\t\t\t\t\t// block is not empty\n\t\t\t\t\t\tb_empty = false;\n\n\t\t\t\t\t\t// terminate previous pair\n\t\t\t\t\t\ts_write += '\\n'+s_indent.repeat(1+n_nest_level);\n\n\t\t\t\t\t\t// directive; serialize it\n\t\t\t\t\t\tif('`' === sc1_predicate[0]) {\n\t\t\t\t\t\t\tlet g_apply = this._apply_directive(sc1_predicate, z_objects[sc1_predicate]);\n\n\t\t\t\t\t\t\t// write data\n\t\t\t\t\t\t\tif(g_apply.write) s_write += g_apply.write;\n\n\t\t\t\t\t\t\t// save exit listener\n\t\t\t\t\t\t\tif(g_apply.exit) f_exit_object = g_apply.exit;\n\t\t\t\t\t\t\tcontinue;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// write predicate and object(s)\n\t\t\t\t\t\ts_write += factory.c1(sc1_predicate, h_prefixes).terse(h_prefixes) + ' '\n\t\t\t\t\t\t\t+ this._encode_objects(z_objects[sc1_predicate], n_nest_level+1) +' ;';\n\t\t\t\t\t}\n\n\t\t\t\t\t// close blank node block\n\t\t\t\t\ts_write += (b_empty? '': '\\n'+s_indent.repeat(n_nest_level))+']';\n\n\t\t\t\t\t// call exit object listener\n\t\t\t\t\tif(f_exit_object) f_exit_object();\n\n\t\t\t\t\t// serialize current predicate to blank node\n\t\t\t\t\treturn s_write;\n\t\t\t\t}\n\t\t\t\t// coercable instance\n\t\t\t\telse if(hm_coercions.has(z_objects.constructor)) {\n\t\t\t\t\t// convert javascript object to term object\n\t\t\t\t\tlet kt_converted = hm_coercions.get(z_objects.constructor).apply(this, [z_objects, n_nest_level]);\n\n\t\t\t\t\t// serialize\n\t\t\t\t\treturn kt_converted.terse(h_prefixes);\n\t\t\t\t}\n\t\t\t\t// graphy term\n\t\t\t\telse if(z_objects.isGraphyTerm) {\n\t\t\t\t\treturn z_objects.terse(h_prefixes);\n\t\t\t\t}\n\t\t\t\t// RDFJS term\n\t\t\t\telse if(z_objects.termType) {\n\t\t\t\t\treturn factory.from.term(z_objects).terse(h_prefixes);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// fallthrough: other\n\t\t\tdefault: {\n\t\t\t\tthrow new Error(`Bad type for RDF object: [${typeof z_objects}] ${z_objects? z_objects.constructor: z_objects}`);\n\t\t\t}\n\t\t}\n\t}\n\n\t// serialize collection object\n\t_serialize_collection_object(a_collection, n_nest_level) {\n\t\tlet s_indent = this._s_indent;\n\n\t\t// open collection block\n\t\tlet s_write = '(';\n\n\t\t// each item\n\t\tfor(let z_item of a_collection) {\n\t\t\tlet s_objects = '';\n\n\t\t\t// item is array; serialize as sub-collection\n\t\t\tif(Array.isArray(z_item)) {\n\t\t\t\ts_objects = this._serialize_collection_object(z_item, n_nest_level+1);\n\t\t\t}\n\t\t\t// non-array item\n\t\t\telse {\n\t\t\t\ts_objects = this._encode_objects(z_item, n_nest_level+1);\n\t\t\t}\n\n\t\t\t// serialize collection\n\t\t\ts_write += '\\n'+s_indent.repeat(1+n_nest_level)+s_objects;\n\t\t}\n\n\t\t// break line if anything was written (including comments)\n\t\tif(a_collection.length) s_write += '\\n'+s_indent.repeat(n_nest_level);\n\n\t\t// close collection block\n\t\ts_write += ')';\n\n\t\treturn s_write;\n\t}\n\n\t// rdfjs quad\n\t_serialize_quad(g_quad) {\n\t\tlet h_prefixes = this._h_prefixes;\n\t\tlet kq_quad = factory.from.quad(g_quad);\n\n\n\t\t// serialize quad\n\t\tthis._s_push += (2 !== this._xc_state? '\\n': '')\n\t\t\t\t\t\t+kq_quad.subject.terse(h_prefixes)+' '\n\t\t\t+kq_quad.predicate.terse(h_prefixes)+' '\n\t\t\t+kq_quad.object.terse(h_prefixes)+' .\\n\\n';\n\n\n\t\t// update state\n\t\tthis._xc_state = 2;\n\t}\n}\n\nObject.assign(Turtle_Writer.prototype, {\n\tanonymous_blank_nodes: true,\n\t_serialize_c3r: Turtle_Writer.prototype._serialize_c3,\n\t_serialize_c4r: Turtle_Writer.prototype._serialize_c4,\n\t_serialize_comment: Writable.prototype._serialize_hash_comment,\n\t_serialize_list_object: Turtle_Writer.prototype._serialize_collection_object,\n});\n\nmodule.exports = function(gc_writer) {\n\treturn new Turtle_Writer(gc_writer);\n};\n"],"names":["queueMicrotask","dp_resolve","Promise","resolve","fk","then","catch","e_callback","setTimeout","e_define","factory","Writable","RT_PREFIXED_NAME_NAMESPACE_VALID","XC_DIRECTIVES_TYPE_SPARQL","XC_DIRECTIVES_CASE_PASCAL","XC_DIRECTIVES_CASE_UPPER","Turtle_Writer","constructor","gc_writer","super","prefixes","h_prefixes","lists","gc_lists","debug","b_debug","style","gc_style","Object","assign","this","_b_debug","_s_indent","_b_simplify_default_graph","_xc_directives","_s_token_prefix","indent","replace","z_directives","directives","Error","_serialize_list_object","a_list","n_nest_level","hc2_transcoded","_transcode_list","_encode_objects","s_token_prefix","s_prefix_eol","s_prefixes","s_prefix_id","test","namedNode","verbose","e_serialize","emit","push","_serialize_prefixes","_xc_state","_h_prefixes","cache_prefixes","_serialize_c3","hc3_triples","s_indent","s_write","s_delim_triples","f_exit_subject","sc1_subject","g_apply","_apply_directive","write","exit","i_triples","length","c1_node","terse","s_indent_pairs","s_term_pairs","hc2_pairs","i_pairs","b_empty","f_exit_predicate","sc1_predicate","z_objects","st_objects","kt_predicate","c1_named_node","st_predicate","isRdfTypeAlias","slice","_hm_coercions","hm_coercions","c1","number","boolean","Array","isArray","Set","s_term_object","z_item","f_exit_object","repeat","has","kt_converted","get","apply","isGraphyTerm","termType","from","term","_serialize_collection_object","a_collection","s_objects","_serialize_quad","g_quad","kq_quad","quad","_s_push","subject","predicate","object","prototype","anonymous_blank_nodes","_serialize_c3r","_serialize_c4r","_serialize_c4","_serialize_comment","_serialize_hash_comment","module","exports"],"sourceRoot":""} \ No newline at end of file diff --git a/dist/js/208.65de7a32.js b/dist/js/208.65de7a32.js new file mode 100644 index 0000000..a9298cb --- /dev/null +++ b/dist/js/208.65de7a32.js @@ -0,0 +1,2 @@ +(self["webpackChunkmobilitydcatap_ui"]=self["webpackChunkmobilitydcatap_ui"]||[]).push([[208],{92208:function(e,t,r){const i=r(77761),s=r(19488);class n extends s{constructor(e){super(i,e)}}e.exports=n},77761:function(e,t,r){const i=r(44564),s=r(59080),{finished:n}=r(28399),o=r(75984);class a extends o{constructor(e,{baseIRI:t="",factory:r=s}={}){const o=new i.StreamParser({baseIRI:t,factory:r});super(o,{objectMode:!0}),o.on("prefix",((e,t)=>{this.emit("prefix",e,t)})),o.on("error",(e=>{this.destroy(e)})),n(this,(()=>{o.end()})),e.pipe(o)}}e.exports=a},59080:function(e,t,r){const i=r(90690);e.exports=i},86534:function(e){class t{constructor(e){this.value=e||"b"+ ++t.nextId}equals(e){return!!e&&e.termType===this.termType&&e.value===this.value}}t.prototype.termType="BlankNode",t.nextId=0,e.exports=t},90690:function(e,t,r){const i=r(86534),s=r(597),n=r(94648),o=r(89999),a=r(83753),u=r(2781),c=r(27722);function h(e){return new a(e)}function l(e){return new i(e)}function d(e,t){return"string"===typeof t?-1===t.indexOf(":")?new o(e,t):new o(e,null,j.namedNode(t)):new o(e,null,t)}function f(e){return new c(e)}function p(){return j.defaultGraphInstance}function _(e,t,r){return j.quad(e,t,r)}function m(e,t,r,i){return new u(e,t,r,i||j.defaultGraphInstance)}function b(e){return n.call(j,e)}function y(e){return n.call(j,e)}const j={namedNode:h,blankNode:l,literal:d,variable:f,defaultGraph:p,triple:_,quad:m,fromTerm:b,fromQuad:y,defaultGraphInstance:new s};e.exports=j},597:function(e){class t{equals(e){return!!e&&e.termType===this.termType}}t.prototype.termType="DefaultGraph",t.prototype.value="",e.exports=t},89999:function(e,t,r){const i=r(83753);class s{constructor(e,t,r){this.value=e,this.datatype=s.stringDatatype,this.language="",t?(this.language=t,this.datatype=s.langStringDatatype):r&&(this.datatype=r)}equals(e){return!!e&&e.termType===this.termType&&e.value===this.value&&e.language===this.language&&e.datatype.equals(this.datatype)}}s.prototype.termType="Literal",s.langStringDatatype=new i("http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"),s.stringDatatype=new i("http://www.w3.org/2001/XMLSchema#string"),e.exports=s},83753:function(e){class t{constructor(e){this.value=e}equals(e){return!!e&&e.termType===this.termType&&e.value===this.value}}t.prototype.termType="NamedNode",e.exports=t},2781:function(e,t,r){const i=r(597);class s{constructor(e,t,r,s){this.subject=e,this.predicate=t,this.object=r,this.graph=s||new i}equals(e){return!!e&&("Quad"===e.termType||!e.termType)&&e.subject.equals(this.subject)&&e.predicate.equals(this.predicate)&&e.object.equals(this.object)&&e.graph.equals(this.graph)}}s.prototype.termType="Quad",s.prototype.value="",e.exports=s},27722:function(e){class t{constructor(e){this.value=e}equals(e){return!!e&&e.termType===this.termType&&e.value===this.value}}t.prototype.termType="Variable",e.exports=t},94648:function(e){function t(e){if(!e)return null;if("BlankNode"===e.termType)return this.blankNode(e.value);if("DefaultGraph"===e.termType)return this.defaultGraph();if("Literal"===e.termType)return this.literal(e.value,e.language||this.namedNode(e.datatype.value));if("NamedNode"===e.termType)return this.namedNode(e.value);if("Quad"===e.termType){const t=this.fromTerm(e.subject),r=this.fromTerm(e.predicate),i=this.fromTerm(e.object),s=this.fromTerm(e.graph);return this.quad(t,r,i,s)}if("Variable"===e.termType)return this.variable(e.value);throw new Error(`unknown termType ${e.termType}`)}e.exports=t},19488:function(e){class t{constructor(e,t){this.Impl=e,this.options=t}import(e,t){const r=new this.Impl(e,Object.assign({},this.options,t));return e.on("end",(()=>{r.readable||r.emit("end")})),e.on("error",(e=>{r.emit("error",e)})),r}}e.exports=t},44564:function(e,t,r){"use strict";r.r(t),r.d(t,{BlankNode:function(){return a.PB},DataFactory:function(){return a.Ay},DefaultGraph:function(){return a.yV},EntityIndex:function(){return k},Lexer:function(){return s.A},Literal:function(){return a.uS},NamedNode:function(){return a.Yo},Parser:function(){return n.A},Quad:function(){return a.kO},Reasoner:function(){return F},Store:function(){return q},StoreFactory:function(){return B},StreamParser:function(){return E.A},StreamWriter:function(){return L},Term:function(){return a.x1},Triple:function(){return a.n7},Util:function(){return i},Variable:function(){return a.rT},Writer:function(){return x},default:function(){return D},getRulesFromDataset:function(){return G},termFromId:function(){return a.iN},termToId:function(){return a.FL}});var i={};r.r(i),r.d(i,{inDefaultGraph:function(){return f},isBlankNode:function(){return c},isDefaultGraph:function(){return d},isLiteral:function(){return h},isNamedNode:function(){return u},isVariable:function(){return l},prefix:function(){return p},prefixes:function(){return _}});var s=r(3524),n=r(33291),o=r(65852),a=r(28612);function u(e){return!!e&&"NamedNode"===e.termType}function c(e){return!!e&&"BlankNode"===e.termType}function h(e){return!!e&&"Literal"===e.termType}function l(e){return!!e&&"Variable"===e.termType}function d(e){return!!e&&"DefaultGraph"===e.termType}function f(e){return d(e.graph)}function p(e,t){return _({"":e.value||e},t)("")}function _(e,t){const r=Object.create(null);for(const s in e)i(s,e[s]);function i(e,i){if("string"===typeof i){const s=Object.create(null);r[e]=e=>s[e]||(s[e]=t.namedNode(i+e))}else if(!(e in r))throw new Error(`Unknown prefix: ${e}`);return r[e]}return t=t||a.Ay,i}const m=a.Ay.defaultGraph(),{rdf:b,xsd:y}=o.A,j=/["\\\t\n\r\b\f\u0000-\u0019\ud800-\udbff]/,I=/["\\\t\n\r\b\f\u0000-\u0019]|[\ud800-\udbff][\udc00-\udfff]/g,g={"\\":"\\\\",'"':'\\"',"\t":"\\t","\n":"\\n","\r":"\\r","\b":"\\b","\f":"\\f"};class v extends a.x1{equals(e){return e===this}}class x{constructor(e,t){if(this._prefixRegex=/$0^/,e&&"function"!==typeof e.write&&(t=e,e=null),t=t||{},this._lists=t.lists,e)this._outputStream=e,this._endStream=void 0===t.end||!!t.end;else{let e="";this._outputStream={write(t,r,i){e+=t,i&&i()},end:t=>{t&&t(null,e)}},this._endStream=!0}this._subject=null,/triple|quad/i.test(t.format)?(this._lineMode=!0,this._writeQuad=this._writeQuadLine):(this._lineMode=!1,this._graph=m,this._prefixIRIs=Object.create(null),t.prefixes&&this.addPrefixes(t.prefixes),t.baseIRI&&(this._baseMatcher=new RegExp(`^${T(t.baseIRI)}${t.baseIRI.endsWith("/")?"":"[#?]"}`),this._baseLength=t.baseIRI.length))}get _inDefaultGraph(){return m.equals(this._graph)}_write(e,t){this._outputStream.write(e,"utf8",t)}_writeQuad(e,t,r,i,s){try{i.equals(this._graph)||(this._write((null===this._subject?"":this._inDefaultGraph?".\n":"\n}\n")+(m.equals(i)?"":`${this._encodeIriOrBlank(i)} {\n`)),this._graph=i,this._subject=null),e.equals(this._subject)?t.equals(this._predicate)?this._write(`, ${this._encodeObject(r)}`,s):this._write(`;\n ${this._encodePredicate(this._predicate=t)} ${this._encodeObject(r)}`,s):this._write(`${(null===this._subject?"":".\n")+this._encodeSubject(this._subject=e)} ${this._encodePredicate(this._predicate=t)} ${this._encodeObject(r)}`,s)}catch(n){s&&s(n)}}_writeQuadLine(e,t,r,i,s){delete this._prefixMatch,this._write(this.quadToString(e,t,r,i),s)}quadToString(e,t,r,i){return`${this._encodeSubject(e)} ${this._encodeIriOrBlank(t)} ${this._encodeObject(r)}${i&&i.value?` ${this._encodeIriOrBlank(i)} .\n`:" .\n"}`}quadsToString(e){let t="";for(const r of e)t+=this.quadToString(r.subject,r.predicate,r.object,r.graph);return t}_encodeSubject(e){return"Quad"===e.termType?this._encodeQuad(e):this._encodeIriOrBlank(e)}_encodeIriOrBlank(e){if("NamedNode"!==e.termType)return this._lists&&e.value in this._lists&&(e=this.list(this._lists[e.value])),"id"in e?e.id:`_:${e.value}`;let t=e.value;this._baseMatcher&&this._baseMatcher.test(t)&&(t=t.substr(this._baseLength)),j.test(t)&&(t=t.replace(I,w));const r=this._prefixRegex.exec(t);return r?r[1]?this._prefixIRIs[r[1]]+r[2]:t:`<${t}>`}_encodeLiteral(e){let t=e.value;if(j.test(t)&&(t=t.replace(I,w)),e.language)return`"${t}"@${e.language}`;if(this._lineMode){if(e.datatype.value===y.string)return`"${t}"`}else switch(e.datatype.value){case y.string:return`"${t}"`;case y.boolean:if("true"===t||"false"===t)return t;break;case y.integer:if(/^[+-]?\d+$/.test(t))return t;break;case y.decimal:if(/^[+-]?\d*\.\d+$/.test(t))return t;break;case y.double:if(/^[+-]?(?:\d+\.\d*|\.?\d+)[eE][+-]?\d+$/.test(t))return t;break}return`"${t}"^^${this._encodeIriOrBlank(e.datatype)}`}_encodePredicate(e){return e.value===b.type?"a":this._encodeIriOrBlank(e)}_encodeObject(e){switch(e.termType){case"Quad":return this._encodeQuad(e);case"Literal":return this._encodeLiteral(e);default:return this._encodeIriOrBlank(e)}}_encodeQuad({subject:e,predicate:t,object:r,graph:i}){return`<<${this._encodeSubject(e)} ${this._encodePredicate(t)} ${this._encodeObject(r)}${d(i)?"":` ${this._encodeIriOrBlank(i)}`}>>`}_blockedWrite(){throw new Error("Cannot write because the writer has been closed.")}addQuad(e,t,r,i,s){void 0===r?this._writeQuad(e.subject,e.predicate,e.object,e.graph,t):"function"===typeof i?this._writeQuad(e,t,r,m,i):this._writeQuad(e,t,r,i||m,s)}addQuads(e){for(let t=0;t.\n`)}if(r){let e="",t="";for(const r in this._prefixIRIs)e+=e?`|${r}`:r,t+=(t?"|":"")+this._prefixIRIs[r];e=T(e,/[\]\/\(\)\*\+\?\.\\\$]/g,"\\$&"),this._prefixRegex=new RegExp(`^(?:${t})[^/]*$|^(${e})([_a-zA-Z][\\-_a-zA-Z0-9]*)$`)}this._write(r?"\n":"",t)}blank(e,t){let r,i,s=e;switch(void 0===e?s=[]:e.termType?s=[{predicate:e,object:t}]:"length"in e||(s=[e]),i=s.length){case 0:return new v("[]");case 1:if(r=s[0],!(r.object instanceof v))return new v(`[ ${this._encodePredicate(r.predicate)} ${this._encodeObject(r.object)} ]`);default:let t="[";for(let n=0;n{t=null,e(r,i)});if(this._endStream)try{return this._outputStream.end(t)}catch(r){}t&&t()}}function w(e){let t=g[e];return void 0===t&&(1===e.length?(t=e.charCodeAt(0).toString(16),t="\\u0000".substr(0,6-t.length)+t):(t=(1024*(e.charCodeAt(0)-55296)+e.charCodeAt(1)+9216).toString(16),t="\\U00000000".substr(0,10-t.length)+t)),t}function T(e){return e.replace(/[\]\/\(\)\*\+\?\.\\\$]/g,"\\$&")}var N=r(85721);const $=Symbol("iter");function S(e,t,r=4){if(0===r)return Object.assign(e,t);for(const i in t)e[i]=S(e[i]||Object.create(null),t[i],r-1);return e}function Q(e,t,r=4){let i=!1;for(const s in e)if(s in t){const n=0===r?null:Q(e[s],t[s],r-1);if(!1!==n)i=i||Object.create(null),i[s]=n;else if(3===r)return!1}return i}function O(e,t,r=4){let i=!1;for(const s in e)if(s in t){if(0!==r){const n=O(e[s],t[s],r-1);if(!1!==n)i=i||Object.create(null),i[s]=n;else if(3===r)return!1}}else i=i||Object.create(null),i[s]=0===r?null:S({},e[s],r-1);return i}class k{constructor(e={}){this._id=1,this._ids=Object.create(null),this._ids[""]=1,this._entities=Object.create(null),this._entities[1]="",this._blankNodeIndex=0,this._factory=e.factory||a.Ay}_termFromId(e){if("."===e[0]){const t=this._entities,r=e.split("."),i=this._factory.quad(this._termFromId(t[r[1]]),this._termFromId(t[r[2]]),this._termFromId(t[r[3]]),r[4]&&this._termFromId(t[r[4]]));return i}return(0,a.iN)(e,this._factory)}_termToNumericId(e){if("Quad"===e.termType){const t=this._termToNumericId(e.subject),r=this._termToNumericId(e.predicate),i=this._termToNumericId(e.object);let s;return t&&r&&i&&(d(e.graph)||(s=this._termToNumericId(e.graph)))&&this._ids[s?`.${t}.${r}.${i}.${s}`:`.${t}.${r}.${i}`]}return this._ids[(0,a.FL)(e)]}_termToNewNumericId(e){const t=e&&"Quad"===e.termType?`.${this._termToNewNumericId(e.subject)}.${this._termToNewNumericId(e.predicate)}.${this._termToNewNumericId(e.object)}${d(e.graph)?"":`.${this._termToNewNumericId(e.graph)}`}`:(0,a.FL)(e);return this._ids[t]||(this._ids[this._entities[++this._id]=t]=this._id)}createBlankNode(e){let t,r;if(e){t=e=`_:${e}`,r=1;while(this._ids[t])t=e+r++}else do{t="_:b"+this._blankNodeIndex++}while(this._ids[t]);return this._ids[t]=++this._id,this._entities[this._id]=t,this._factory.blankNode(t.substr(2))}}class q{constructor(e,t){this._size=0,this._graphs=Object.create(null),t||!e||e[0]||(t=e,e=null),t=t||{},this._factory=t.factory||a.Ay,this._entityIndex=t.entityIndex||new k({factory:this._factory}),this._entities=this._entityIndex._entities,this._termFromId=this._entityIndex._termFromId.bind(this._entityIndex),this._termToNumericId=this._entityIndex._termToNumericId.bind(this._entityIndex),this._termToNewNumericId=this._entityIndex._termToNewNumericId.bind(this._entityIndex),e&&this.addQuads(e)}get size(){let e=this._size;if(null!==e)return e;e=0;const t=this._graphs;let r,i;for(const s in t)for(const n in r=t[s].subjects)for(const t in i=r[n])e+=Object.keys(i[t]).length;return this._size=e}_addToIndex(e,t,r,i){const s=e[t]||(e[t]={}),n=s[r]||(s[r]={}),o=i in n;return o||(n[i]=null),!o}_removeFromIndex(e,t,r,i){const s=e[t],n=s[r];delete n[i];for(const o in n)return;delete s[r];for(const o in s)return;delete e[t]}*_findInIndex(e,t,r,i,s,n,o,a){let u,c,h;const l=this._entities,d=this._termFromId(l[a]),f={subject:null,predicate:null,object:null};t&&((u=e,e={})[t]=u[t]);for(const p in e)if(c=e[p]){f[s]=this._termFromId(l[p]),r&&((u=c,c={})[r]=u[r]);for(const e in c)if(h=c[e]){f[n]=this._termFromId(l[e]);const t=i?i in h?[i]:[]:Object.keys(h);for(let e=0;e{r in t||(t[r]=!0,e(this._termFromId(this._entities[r],this._factory)))}}add(e){return this.addQuad(e),this}addQuad(e,t,r,i){t||(i=e.graph,r=e.object,t=e.predicate,e=e.subject),i=i?this._termToNewNumericId(i):1;let s=this._graphs[i];return s||(s=this._graphs[i]={subjects:{},predicates:{},objects:{}},Object.freeze(s)),e=this._termToNewNumericId(e),t=this._termToNewNumericId(t),r=this._termToNewNumericId(r),!!this._addToIndex(s.subjects,e,t,r)&&(this._addToIndex(s.predicates,t,r,e),this._addToIndex(s.objects,r,e,t),this._size=null,!0)}addQuads(e){for(let t=0;t{this.addQuad(e)})),e}removeQuad(e,t,r,i){t||({subject:e,predicate:t,object:r,graph:i}=e),i=i?this._termToNumericId(i):1;const s=this._graphs;let n,o,a;if(!(e=e&&this._termToNumericId(e))||!(t=t&&this._termToNumericId(t))||!(r=r&&this._termToNumericId(r))||!(n=s[i])||!(o=n.subjects[e])||!(a=o[t])||!(r in a))return!1;for(e in this._removeFromIndex(n.subjects,e,t,r),this._removeFromIndex(n.predicates,t,r,e),this._removeFromIndex(n.objects,r,e,t),null!==this._size&&this._size--,n.subjects)return!0;return delete s[i],!0}removeQuads(e){for(let t=0;t{this.removeQuad(e)})),e}removeMatches(e,t,r,i){const s=new N.Readable({objectMode:!0}),n=this.readQuads(e,t,r,i);return s._read=e=>{while(--e>=0){const{done:e,value:t}=n.next();if(e)return void s.push(null);s.push(t)}},this.remove(s)}deleteGraph(e){return this.removeMatches(null,null,null,e)}getQuads(e,t,r,i){return[...this.readQuads(e,t,r,i)]}*readQuads(e,t,r,i){const s=this._getGraphs(i);let n,o,a,u;if(!(e&&!(o=this._termToNumericId(e))||t&&!(a=this._termToNumericId(t))||r&&!(u=this._termToNumericId(r))))for(const c in s)(n=s[c])&&(o?u?yield*this._findInIndex(n.objects,u,o,a,"object","subject","predicate",c):yield*this._findInIndex(n.subjects,o,a,null,"subject","predicate","object",c):a?yield*this._findInIndex(n.predicates,a,u,null,"predicate","object","subject",c):u?yield*this._findInIndex(n.objects,u,null,null,"object","subject","predicate",c):yield*this._findInIndex(n.subjects,null,null,null,"subject","predicate","object",c))}match(e,t,r,i){return new P(this,e,t,r,i,{entityIndex:this._entityIndex})}countQuads(e,t,r,i){const s=this._getGraphs(i);let n,o,a,u,c=0;if(e&&!(o=this._termToNumericId(e))||t&&!(a=this._termToNumericId(t))||r&&!(u=this._termToNumericId(r)))return 0;for(const h in s)(n=s[h])&&(c+=e?r?this._countInIndex(n.objects,u,o,a):this._countInIndex(n.subjects,o,a,u):t?this._countInIndex(n.predicates,a,u,o):this._countInIndex(n.objects,u,o,a));return c}forEach(e,t,r,i,s){this.some((t=>(e(t,this),!1)),t,r,i,s)}every(e,t,r,i,s){return!this.some((t=>!e(t,this)),t,r,i,s)}some(e,t,r,i,s){for(const n of this.readQuads(t,r,i,s))if(e(n))return!0;return!1}getSubjects(e,t,r){const i=[];return this.forSubjects((e=>{i.push(e)}),e,t,r),i}forSubjects(e,t,r,i){const s=this._getGraphs(i);let n,o,a;if(e=this._uniqueEntities(e),!(t&&!(o=this._termToNumericId(t))||r&&!(a=this._termToNumericId(r))))for(i in s)(n=s[i])&&(o?a?this._loopBy2Keys(n.predicates,o,a,e):this._loopByKey1(n.subjects,o,e):a?this._loopByKey0(n.objects,a,e):this._loop(n.subjects,e))}getPredicates(e,t,r){const i=[];return this.forPredicates((e=>{i.push(e)}),e,t,r),i}forPredicates(e,t,r,i){const s=this._getGraphs(i);let n,o,a;if(e=this._uniqueEntities(e),!(t&&!(o=this._termToNumericId(t))||r&&!(a=this._termToNumericId(r))))for(i in s)(n=s[i])&&(o?a?this._loopBy2Keys(n.objects,a,o,e):this._loopByKey0(n.subjects,o,e):a?this._loopByKey1(n.predicates,a,e):this._loop(n.predicates,e))}getObjects(e,t,r){const i=[];return this.forObjects((e=>{i.push(e)}),e,t,r),i}forObjects(e,t,r,i){const s=this._getGraphs(i);let n,o,a;if(e=this._uniqueEntities(e),!(t&&!(o=this._termToNumericId(t))||r&&!(a=this._termToNumericId(r))))for(i in s)(n=s[i])&&(o?a?this._loopBy2Keys(n.subjects,o,a,e):this._loopByKey1(n.objects,o,e):a?this._loopByKey0(n.predicates,a,e):this._loop(n.objects,e))}getGraphs(e,t,r){const i=[];return this.forGraphs((e=>{i.push(e)}),e,t,r),i}forGraphs(e,t,r,i){for(const s in this._graphs)this.some((t=>(e(t.graph),!0)),t,r,i,this._termFromId(this._entities[s]))}createBlankNode(e){return this._entityIndex.createBlankNode(e)}extractLists({remove:e=!1,ignoreErrors:t=!1}={}){const r={},i=t?()=>!0:(e,t)=>{throw new Error(`${e.value} ${t}`)},s=this.getQuads(null,o.A.rdf.rest,o.A.rdf.nil,null),n=e?[...s]:[];return s.forEach((t=>{const s=[];let a,u,c=!1;const h=t.graph;let l=t.subject;while(l&&!c){const e=this.getQuads(null,null,l,null),t=this.getQuads(l,null,null,null);let r,d=null,f=null,p=null;for(let s=0;sthis.has(e)));const t=this._graphs,r=e._graphs;let i,s,n,o,a;for(const u in r){if(!(i=t[u]))return!1;i=i.subjects;for(const e in s=r[u].subjects){if(!(n=i[e]))return!1;for(const t in o=s[e]){if(!(a=n[t]))return!1;for(const e in o[t])if(!(e in a))return!1}}}return!0}deleteMatches(e,t,r,i){for(const s of this.match(e,t,r,i))this.removeQuad(s);return this}difference(e){if(e&&e instanceof P&&(e=e.filtered),e===this)return new q({entityIndex:this._entityIndex});if(e instanceof q&&e._entityIndex===this._entityIndex){const t=new q({entityIndex:this._entityIndex}),r=O(this._graphs,e._graphs);return r&&(t._graphs=r,t._size=null),t}return this.filter((t=>!e.has(t)))}equals(e){return e instanceof P&&(e=e.filtered),e===this||this.size===e.size&&this.contains(e)}filter(e){const t=new q({entityIndex:this._entityIndex});for(const r of this)e(r,this)&&t.add(r);return t}intersection(e){if(e instanceof P&&(e=e.filtered),e===this){const e=new q({entityIndex:this._entityIndex});return e._graphs=S(Object.create(null),this._graphs),e._size=this._size,e}if(e instanceof q&&this._entityIndex===e._entityIndex){const t=new q({entityIndex:this._entityIndex}),r=Q(e._graphs,this._graphs);return r&&(t._graphs=r,t._size=null),t}return this.filter((t=>e.has(t)))}map(e){const t=new q({entityIndex:this._entityIndex});for(const r of this)t.add(e(r,this));return t}reduce(e,t){const r=this.readQuads();let i=void 0===t?r.next().value:t;for(const s of r)i=e(i,s,this);return i}toArray(){return this.getQuads()}toCanonical(){throw new Error("not implemented")}toStream(){return this.match()}toString(){return(new x).quadsToString(this)}union(e){const t=new q({entityIndex:this._entityIndex});return t._graphs=S(Object.create(null),this._graphs),t._size=this._size,t.addAll(e),t}*[Symbol.iterator](){yield*this.readQuads()}}function A(e,t,r=0){const i=t[r];if(i&&!(i in e))return!1;let s=!1;for(const n in i?{[i]:e[i]}:e){const i=2===r?null:A(e[n],t,r+1);!1!==i&&(s=s||Object.create(null),s[n]=i)}return s}class P extends N.Readable{constructor(e,t,r,i,s,n){super({objectMode:!0}),Object.assign(this,{n3Store:e,subject:t,predicate:r,object:i,graph:s,options:n})}get filtered(){if(!this._filtered){const{n3Store:e,graph:t,object:r,predicate:i,subject:s}=this,n=this._filtered=new q({factory:e._factory,entityIndex:this.options.entityIndex});let o,a,u;if(s&&!(o=n._termToNumericId(s))||i&&!(a=n._termToNumericId(i))||r&&!(u=n._termToNumericId(r)))return n;const c=e._getGraphs(t);for(const h in c){let e,t,r;!o&&a?(t=A(c[h].predicates,[a,u,o]))&&(e=A(c[h].subjects,[o,a,u]),r=A(c[h].objects,[u,o,a])):u?(r=A(c[h].objects,[u,o,a]))&&(e=A(c[h].subjects,[o,a,u]),t=A(c[h].predicates,[a,u,o])):(e=A(c[h].subjects,[o,a,u]))&&(t=A(c[h].predicates,[a,u,o]),r=A(c[h].objects,[u,o,a])),e&&(n._graphs[h]={subjects:e,predicates:t,objects:r})}n._size=null}return this._filtered}get size(){return this.filtered.size}_read(e){e>0&&!this[$]&&(this[$]=this[Symbol.iterator]());const t=this[$];while(--e>=0){const{done:e,value:r}=t.next();if(e)return void this.push(null);this.push(r)}}addAll(e){return this.filtered.addAll(e)}contains(e){return this.filtered.contains(e)}deleteMatches(e,t,r,i){return this.filtered.deleteMatches(e,t,r,i)}difference(e){return this.filtered.difference(e)}equals(e){return this.filtered.equals(e)}every(e,t,r,i,s){return this.filtered.every(e,t,r,i,s)}filter(e){return this.filtered.filter(e)}forEach(e,t,r,i,s){return this.filtered.forEach(e,t,r,i,s)}import(e){return this.filtered.import(e)}intersection(e){return this.filtered.intersection(e)}map(e){return this.filtered.map(e)}some(e,t,r,i,s){return this.filtered.some(e,t,r,i,s)}toCanonical(){return this.filtered.toCanonical()}toStream(){return this._filtered?this._filtered.toStream():this.n3Store.match(this.subject,this.predicate,this.object,this.graph)}union(e){return this._filtered?this._filtered.union(e):this.n3Store.match(this.subject,this.predicate,this.object,this.graph).addAll(e)}toArray(){return this._filtered?this._filtered.toArray():this.n3Store.getQuads(this.subject,this.predicate,this.object,this.graph)}reduce(e,t){return this.filtered.reduce(e,t)}toString(){return(new x).quadsToString(this)}add(e){return this.filtered.add(e)}delete(e){return this.filtered.delete(e)}has(e){return this.filtered.has(e)}match(e,t,r,i){return new P(this.filtered,e,t,r,i,this.options)}*[Symbol.iterator](){yield*this._filtered||this.n3Store.readQuads(this.subject,this.predicate,this.object,this.graph)}}class B{dataset(e){return new q(e)}}function G(e){const t=[];for(const{subject:r,object:i}of e.match(null,a.Ay.namedNode("http://www.w3.org/2000/10/swap/log#implies"),null,a.Ay.defaultGraph())){const s=[...e.match(null,null,null,r)],n=[...e.match(null,null,null,i)];t.push({premise:s,conclusion:n})}return t}class F{constructor(e){this._store=e}_add(e,t,r,i,s){this._store._addToIndex(i.subjects,e,t,r)&&(this._store._addToIndex(i.predicates,t,r,e),this._store._addToIndex(i.objects,r,e,t),s())}_evaluatePremise(e,t,r,i=0){let s,n,o,a,u;const[c,h,l]=e.premise[i].value,d=t[e.premise[i].content],f=!(o=c.value);for(o in f?d:{[o]:d[o]})if(a=d[o]){for(o in f&&(c.value=Number(o)),s=!(o=h.value),s?a:{[o]:a[o]})if(u=a[o]){for(o in s&&(h.value=Number(o)),n=!(o=l.value),n?u:{[o]:u[o]})n&&(l.value=Number(o)),i===e.premise.length-1?e.conclusion.forEach((e=>{this._add(e.subject.value,e.predicate.value,e.object.value,t,(()=>{r(e)}))})):this._evaluatePremise(e,t,r,i+1);n&&(l.value=null)}s&&(h.value=null)}f&&(c.value=null)}_evaluateRules(e,t,r){for(let i=0;i{r.push([e.subject.value,e.predicate.value,e.object.value,t])}))}const s=e=>{e.forEach((e=>{this._add(e.subject.value,e.predicate.value,e.object.value,t,(()=>{i(e)}))}))};let n;this._evaluateRules(e,t,i);while(void 0!==(n=r.pop())){const[e,r,o,a]=n,u=a.basePremise.subject.value;u||(a.basePremise.subject.value=e);const c=a.basePremise.predicate.value;c||(a.basePremise.predicate.value=r);const h=a.basePremise.object.value;h||(a.basePremise.object.value=o),0===a.premise.length?s(a.conclusion):this._evaluatePremise(a,t,i),u||(a.basePremise.subject.value=null),c||(a.basePremise.predicate.value=null),h||(a.basePremise.object.value=null)}}_createRule({premise:e,conclusion:t}){const r={},i=e=>"Variable"===e.termType?r[e.value]=r[e.value]||{}:{value:this._store._termToNewNumericId(e)},s=e=>({subject:i(e.subject),predicate:i(e.predicate),object:i(e.object)});return{premise:e.map((e=>s(e))),conclusion:t.map((e=>s(e))),variables:Object.values(r)}}reason(e){Array.isArray(e)||(e=G(e)),e=e.map((e=>this._createRule(e)));for(const r of e)for(const t of e)for(let e=0;e{e.value=null}))}}for(const r of e){const e=new Set;r.premise=r.premise.map((t=>R(t,e)))}const t=this._store._getGraphs();for(const r in t)this._reasonGraphNaive(e,t[r]);this._store._size=null}}function R({subject:e,predicate:t,object:r},i){const s=e.value||i.has(e)||(i.add(e),!1),n=t.value||i.has(t)||(i.add(t),!1),o=r.value||i.has(r)||(i.add(r),!1);return!s&&n?{content:"predicates",value:[t,r,e]}:o?{content:"objects",value:[r,e,t]}:{content:"subjects",value:[e,t,r]}}function z(e,t){return null===e.value&&(e.value=t.value),e.value===t.value}var E=r(66731);class L extends N.Transform{constructor(e){super({encoding:"utf8",writableObjectMode:!0});const t=this._writer=new x({write:(e,t,r)=>{this.push(e),r&&r()},end:e=>{this.push(null),e&&e()}},e);this._transform=(e,r,i)=>{t.addQuad(e,i)},this._flush=e=>{t.end(e)}}import(e){return e.on("data",(e=>{this.write(e)})),e.on("end",(()=>{this.end()})),e.on("error",(e=>{this.emit("error",e)})),e.on("prefix",((e,t)=>{this._writer.addPrefix(e,t)})),this}}var D={Lexer:s.A,Parser:n.A,Writer:x,Store:q,StoreFactory:B,EntityIndex:k,StreamParser:E.A,StreamWriter:L,Util:i,Reasoner:F,DataFactory:a.Ay,Term:a.x1,NamedNode:a.Yo,Literal:a.uS,BlankNode:a.PB,Variable:a.rT,DefaultGraph:a.yV,Quad:a.kO,Triple:a.n7,termFromId:a.iN,termToId:a.FL}},75984:function(e,t,r){const{finished:i,Readable:s}=r(28399);function n(){return new Promise((e=>setTimeout(e,0)))}class o extends s{constructor(e,{end:t=!0,map:r,...i}={}){super({read:o.readFrom(e,{end:t,map:r}),...i})}static readFrom(e,{end:t=!0,map:r=e=>e}={}){let s=!1;i(e,(()=>{s=!0}));const o=async function(){while(1){const i=e.read();if(i){if(!this.push(r(i)))return!1}else{if(s&&t&&this.push(null),s)return!0;await n()}}};return o}}e.exports=o}}]); +//# sourceMappingURL=208.65de7a32.js.map \ No newline at end of file diff --git a/dist/js/208.65de7a32.js.map b/dist/js/208.65de7a32.js.map new file mode 100644 index 0000000..5d9a77a --- /dev/null +++ b/dist/js/208.65de7a32.js.map @@ -0,0 +1 @@ +{"version":3,"file":"js/208.65de7a32.js","mappings":"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","sources":["webpack://mobilitydcatap-ui/./node_modules/@rdfjs/parser-n3/index.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/parser-n3/lib/ParserStream.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/parser-n3/node_modules/@rdfjs/data-model/index.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/parser-n3/node_modules/@rdfjs/data-model/lib/BlankNode.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/parser-n3/node_modules/@rdfjs/data-model/lib/DataFactory.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/parser-n3/node_modules/@rdfjs/data-model/lib/DefaultGraph.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/parser-n3/node_modules/@rdfjs/data-model/lib/Literal.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/parser-n3/node_modules/@rdfjs/data-model/lib/NamedNode.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/parser-n3/node_modules/@rdfjs/data-model/lib/Quad.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/parser-n3/node_modules/@rdfjs/data-model/lib/Variable.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/parser-n3/node_modules/@rdfjs/data-model/lib/fromTerm.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/sink/index.js","webpack://mobilitydcatap-ui/./node_modules/n3/src/N3Util.js","webpack://mobilitydcatap-ui/./node_modules/n3/src/N3Writer.js","webpack://mobilitydcatap-ui/./node_modules/n3/src/N3Store.js","webpack://mobilitydcatap-ui/./node_modules/n3/src/N3StoreFactory.js","webpack://mobilitydcatap-ui/./node_modules/n3/src/N3Reasoner.js","webpack://mobilitydcatap-ui/./node_modules/n3/src/N3StreamWriter.js","webpack://mobilitydcatap-ui/./node_modules/n3/src/index.js","webpack://mobilitydcatap-ui/./node_modules/readable-to-readable/index.js"],"sourcesContent":["const ParserStream = require('./lib/ParserStream')\nconst Sink = require('@rdfjs/sink')\n\nclass Parser extends Sink {\n constructor (options) {\n super(ParserStream, options)\n }\n}\n\nmodule.exports = Parser\n","const N3 = require('n3')\nconst rdf = require('@rdfjs/data-model')\nconst { finished } = require('readable-stream')\nconst ReadableToReadable = require('readable-to-readable')\n\nclass ParserStream extends ReadableToReadable {\n constructor (input, { baseIRI = '', factory = rdf } = {}) {\n const parser = new N3.StreamParser({ baseIRI, factory })\n\n super(parser, { objectMode: true })\n\n parser.on('prefix', (prefix, term) => {\n this.emit('prefix', prefix, term)\n })\n\n parser.on('error', err => {\n this.destroy(err)\n })\n\n finished(this, () => {\n parser.end()\n })\n\n input.pipe(parser)\n }\n}\n\nmodule.exports = ParserStream\n","const DataFactory = require('./lib/DataFactory.js')\n\nmodule.exports = DataFactory\n","class BlankNode {\n constructor (id) {\n this.value = id || ('b' + (++BlankNode.nextId))\n }\n\n equals (other) {\n return !!other && other.termType === this.termType && other.value === this.value\n }\n}\n\nBlankNode.prototype.termType = 'BlankNode'\n\nBlankNode.nextId = 0\n\nmodule.exports = BlankNode\n","const BlankNode = require('./BlankNode.js')\nconst DefaultGraph = require('./DefaultGraph.js')\nconst fromTermRaw = require('./fromTerm.js')\nconst Literal = require('./Literal.js')\nconst NamedNode = require('./NamedNode.js')\nconst Quad = require('./Quad.js')\nconst Variable = require('./Variable.js')\n\nfunction namedNode (value) {\n return new NamedNode(value)\n}\n\nfunction blankNode (value) {\n return new BlankNode(value)\n}\n\nfunction literal (value, languageOrDatatype) {\n if (typeof languageOrDatatype === 'string') {\n if (languageOrDatatype.indexOf(':') === -1) {\n return new Literal(value, languageOrDatatype)\n }\n\n return new Literal(value, null, DataFactory.namedNode(languageOrDatatype))\n }\n\n return new Literal(value, null, languageOrDatatype)\n}\n\nfunction variable (value) {\n return new Variable(value)\n}\n\nfunction defaultGraph () {\n return DataFactory.defaultGraphInstance\n}\n\nfunction triple (subject, predicate, object) {\n return DataFactory.quad(subject, predicate, object)\n}\n\nfunction quad (subject, predicate, object, graph) {\n return new Quad(subject, predicate, object, graph || DataFactory.defaultGraphInstance)\n}\n\nfunction fromTerm (original) {\n return fromTermRaw.call(DataFactory, original)\n}\n\nfunction fromQuad (original) {\n return fromTermRaw.call(DataFactory, original)\n}\n\nconst DataFactory = {\n namedNode,\n blankNode,\n literal,\n variable,\n defaultGraph,\n triple,\n quad,\n fromTerm,\n fromQuad,\n defaultGraphInstance: new DefaultGraph()\n}\n\nmodule.exports = DataFactory\n","class DefaultGraph {\n equals (other) {\n return !!other && other.termType === this.termType\n }\n}\n\nDefaultGraph.prototype.termType = 'DefaultGraph'\nDefaultGraph.prototype.value = ''\n\nmodule.exports = DefaultGraph\n","const NamedNode = require('./NamedNode.js')\n\nclass Literal {\n constructor (value, language, datatype) {\n this.value = value\n this.datatype = Literal.stringDatatype\n this.language = ''\n\n if (language) {\n this.language = language\n this.datatype = Literal.langStringDatatype\n } else if (datatype) {\n this.datatype = datatype\n }\n }\n\n equals (other) {\n return !!other && other.termType === this.termType && other.value === this.value &&\n other.language === this.language && other.datatype.equals(this.datatype)\n }\n}\n\nLiteral.prototype.termType = 'Literal'\n\nLiteral.langStringDatatype = new NamedNode('http://www.w3.org/1999/02/22-rdf-syntax-ns#langString')\nLiteral.stringDatatype = new NamedNode('http://www.w3.org/2001/XMLSchema#string')\n\nmodule.exports = Literal\n","class NamedNode {\n constructor (iri) {\n this.value = iri\n }\n\n equals (other) {\n return !!other && other.termType === this.termType && other.value === this.value\n }\n}\n\nNamedNode.prototype.termType = 'NamedNode'\n\nmodule.exports = NamedNode\n","const DefaultGraph = require('./DefaultGraph.js')\n\nclass Quad {\n constructor (subject, predicate, object, graph) {\n this.subject = subject\n this.predicate = predicate\n this.object = object\n\n if (graph) {\n this.graph = graph\n } else {\n this.graph = new DefaultGraph()\n }\n }\n\n equals (other) {\n // `|| !other.termType` is for backwards-compatibility with old factories without RDF* support.\n return !!other && (other.termType === 'Quad' || !other.termType) &&\n other.subject.equals(this.subject) && other.predicate.equals(this.predicate) &&\n other.object.equals(this.object) && other.graph.equals(this.graph)\n }\n}\n\nQuad.prototype.termType = 'Quad'\nQuad.prototype.value = ''\n\nmodule.exports = Quad\n","class Variable {\n constructor (name) {\n this.value = name\n }\n\n equals (other) {\n return !!other && other.termType === this.termType && other.value === this.value\n }\n}\n\nVariable.prototype.termType = 'Variable'\n\nmodule.exports = Variable\n","function fromTerm (original) {\n if (!original) {\n return null\n }\n\n if (original.termType === 'BlankNode') {\n return this.blankNode(original.value)\n }\n\n if (original.termType === 'DefaultGraph') {\n return this.defaultGraph()\n }\n\n if (original.termType === 'Literal') {\n return this.literal(original.value, original.language || this.namedNode(original.datatype.value))\n }\n\n if (original.termType === 'NamedNode') {\n return this.namedNode(original.value)\n }\n\n if (original.termType === 'Quad') {\n const subject = this.fromTerm(original.subject)\n const predicate = this.fromTerm(original.predicate)\n const object = this.fromTerm(original.object)\n const graph = this.fromTerm(original.graph)\n\n return this.quad(subject, predicate, object, graph)\n }\n\n if (original.termType === 'Variable') {\n return this.variable(original.value)\n }\n\n throw new Error(`unknown termType ${original.termType}`)\n}\n\nmodule.exports = fromTerm\n","class Sink {\n constructor (Impl, options) {\n this.Impl = Impl\n this.options = options\n }\n\n import (input, options) {\n const output = new this.Impl(input, Object.assign({}, this.options, options))\n\n input.on('end', () => {\n if (!output.readable) {\n output.emit('end')\n }\n })\n\n input.on('error', (err) => {\n output.emit('error', err)\n })\n\n return output\n }\n}\n\nmodule.exports = Sink\n","// **N3Util** provides N3 utility functions.\n\nimport N3DataFactory from './N3DataFactory';\n\n// Tests whether the given term represents an IRI\nexport function isNamedNode(term) {\n return !!term && term.termType === 'NamedNode';\n}\n\n// Tests whether the given term represents a blank node\nexport function isBlankNode(term) {\n return !!term && term.termType === 'BlankNode';\n}\n\n// Tests whether the given term represents a literal\nexport function isLiteral(term) {\n return !!term && term.termType === 'Literal';\n}\n\n// Tests whether the given term represents a variable\nexport function isVariable(term) {\n return !!term && term.termType === 'Variable';\n}\n\n// Tests whether the given term represents the default graph\nexport function isDefaultGraph(term) {\n return !!term && term.termType === 'DefaultGraph';\n}\n\n// Tests whether the given quad is in the default graph\nexport function inDefaultGraph(quad) {\n return isDefaultGraph(quad.graph);\n}\n\n// Creates a function that prepends the given IRI to a local name\nexport function prefix(iri, factory) {\n return prefixes({ '': iri.value || iri }, factory)('');\n}\n\n// Creates a function that allows registering and expanding prefixes\nexport function prefixes(defaultPrefixes, factory) {\n // Add all of the default prefixes\n const prefixes = Object.create(null);\n for (const prefix in defaultPrefixes)\n processPrefix(prefix, defaultPrefixes[prefix]);\n // Set the default factory if none was specified\n factory = factory || N3DataFactory;\n\n // Registers a new prefix (if an IRI was specified)\n // or retrieves a function that expands an existing prefix (if no IRI was specified)\n function processPrefix(prefix, iri) {\n // Create a new prefix if an IRI is specified or the prefix doesn't exist\n if (typeof iri === 'string') {\n // Create a function that expands the prefix\n const cache = Object.create(null);\n prefixes[prefix] = local => {\n return cache[local] || (cache[local] = factory.namedNode(iri + local));\n };\n }\n else if (!(prefix in prefixes)) {\n throw new Error(`Unknown prefix: ${prefix}`);\n }\n return prefixes[prefix];\n }\n return processPrefix;\n}\n","// **N3Writer** writes N3 documents.\nimport namespaces from './IRIs';\nimport { default as N3DataFactory, Term } from './N3DataFactory';\nimport { isDefaultGraph } from './N3Util';\n\nconst DEFAULTGRAPH = N3DataFactory.defaultGraph();\n\nconst { rdf, xsd } = namespaces;\n\n// Characters in literals that require escaping\nconst escape = /[\"\\\\\\t\\n\\r\\b\\f\\u0000-\\u0019\\ud800-\\udbff]/,\n escapeAll = /[\"\\\\\\t\\n\\r\\b\\f\\u0000-\\u0019]|[\\ud800-\\udbff][\\udc00-\\udfff]/g,\n escapedCharacters = {\n '\\\\': '\\\\\\\\', '\"': '\\\\\"', '\\t': '\\\\t',\n '\\n': '\\\\n', '\\r': '\\\\r', '\\b': '\\\\b', '\\f': '\\\\f',\n };\n\n// ## Placeholder class to represent already pretty-printed terms\nclass SerializedTerm extends Term {\n // Pretty-printed nodes are not equal to any other node\n // (e.g., [] does not equal [])\n equals(other) {\n return other === this;\n }\n}\n\n// ## Constructor\nexport default class N3Writer {\n constructor(outputStream, options) {\n // ### `_prefixRegex` matches a prefixed name or IRI that begins with one of the added prefixes\n this._prefixRegex = /$0^/;\n\n // Shift arguments if the first argument is not a stream\n if (outputStream && typeof outputStream.write !== 'function')\n options = outputStream, outputStream = null;\n options = options || {};\n this._lists = options.lists;\n\n // If no output stream given, send the output as string through the end callback\n if (!outputStream) {\n let output = '';\n this._outputStream = {\n write(chunk, encoding, done) { output += chunk; done && done(); },\n end: done => { done && done(null, output); },\n };\n this._endStream = true;\n }\n else {\n this._outputStream = outputStream;\n this._endStream = options.end === undefined ? true : !!options.end;\n }\n\n // Initialize writer, depending on the format\n this._subject = null;\n if (!(/triple|quad/i).test(options.format)) {\n this._lineMode = false;\n this._graph = DEFAULTGRAPH;\n this._prefixIRIs = Object.create(null);\n options.prefixes && this.addPrefixes(options.prefixes);\n if (options.baseIRI) {\n this._baseMatcher = new RegExp(`^${escapeRegex(options.baseIRI)\n }${options.baseIRI.endsWith('/') ? '' : '[#?]'}`);\n this._baseLength = options.baseIRI.length;\n }\n }\n else {\n this._lineMode = true;\n this._writeQuad = this._writeQuadLine;\n }\n }\n\n // ## Private methods\n\n // ### Whether the current graph is the default graph\n get _inDefaultGraph() {\n return DEFAULTGRAPH.equals(this._graph);\n }\n\n // ### `_write` writes the argument to the output stream\n _write(string, callback) {\n this._outputStream.write(string, 'utf8', callback);\n }\n\n // ### `_writeQuad` writes the quad to the output stream\n _writeQuad(subject, predicate, object, graph, done) {\n try {\n // Write the graph's label if it has changed\n if (!graph.equals(this._graph)) {\n // Close the previous graph and start the new one\n this._write((this._subject === null ? '' : (this._inDefaultGraph ? '.\\n' : '\\n}\\n')) +\n (DEFAULTGRAPH.equals(graph) ? '' : `${this._encodeIriOrBlank(graph)} {\\n`));\n this._graph = graph;\n this._subject = null;\n }\n // Don't repeat the subject if it's the same\n if (subject.equals(this._subject)) {\n // Don't repeat the predicate if it's the same\n if (predicate.equals(this._predicate))\n this._write(`, ${this._encodeObject(object)}`, done);\n // Same subject, different predicate\n else\n this._write(`;\\n ${\n this._encodePredicate(this._predicate = predicate)} ${\n this._encodeObject(object)}`, done);\n }\n // Different subject; write the whole quad\n else\n this._write(`${(this._subject === null ? '' : '.\\n') +\n this._encodeSubject(this._subject = subject)} ${\n this._encodePredicate(this._predicate = predicate)} ${\n this._encodeObject(object)}`, done);\n }\n catch (error) { done && done(error); }\n }\n\n // ### `_writeQuadLine` writes the quad to the output stream as a single line\n _writeQuadLine(subject, predicate, object, graph, done) {\n // Write the quad without prefixes\n delete this._prefixMatch;\n this._write(this.quadToString(subject, predicate, object, graph), done);\n }\n\n // ### `quadToString` serializes a quad as a string\n quadToString(subject, predicate, object, graph) {\n return `${this._encodeSubject(subject)} ${\n this._encodeIriOrBlank(predicate)} ${\n this._encodeObject(object)\n }${graph && graph.value ? ` ${this._encodeIriOrBlank(graph)} .\\n` : ' .\\n'}`;\n }\n\n // ### `quadsToString` serializes an array of quads as a string\n quadsToString(quads) {\n let quadsString = '';\n for (const quad of quads)\n quadsString += this.quadToString(quad.subject, quad.predicate, quad.object, quad.graph);\n return quadsString;\n }\n\n // ### `_encodeSubject` represents a subject\n _encodeSubject(entity) {\n return entity.termType === 'Quad' ?\n this._encodeQuad(entity) : this._encodeIriOrBlank(entity);\n }\n\n // ### `_encodeIriOrBlank` represents an IRI or blank node\n _encodeIriOrBlank(entity) {\n // A blank node or list is represented as-is\n if (entity.termType !== 'NamedNode') {\n // If it is a list head, pretty-print it\n if (this._lists && (entity.value in this._lists))\n entity = this.list(this._lists[entity.value]);\n return 'id' in entity ? entity.id : `_:${entity.value}`;\n }\n let iri = entity.value;\n // Use relative IRIs if requested and possible\n if (this._baseMatcher && this._baseMatcher.test(iri))\n iri = iri.substr(this._baseLength);\n // Escape special characters\n if (escape.test(iri))\n iri = iri.replace(escapeAll, characterReplacer);\n // Try to represent the IRI as prefixed name\n const prefixMatch = this._prefixRegex.exec(iri);\n return !prefixMatch ? `<${iri}>` :\n (!prefixMatch[1] ? iri : this._prefixIRIs[prefixMatch[1]] + prefixMatch[2]);\n }\n\n // ### `_encodeLiteral` represents a literal\n _encodeLiteral(literal) {\n // Escape special characters\n let value = literal.value;\n if (escape.test(value))\n value = value.replace(escapeAll, characterReplacer);\n\n // Write a language-tagged literal\n if (literal.language)\n return `\"${value}\"@${literal.language}`;\n\n // Write dedicated literals per data type\n if (this._lineMode) {\n // Only abbreviate strings in N-Triples or N-Quads\n if (literal.datatype.value === xsd.string)\n return `\"${value}\"`;\n }\n else {\n // Use common datatype abbreviations in Turtle or TriG\n switch (literal.datatype.value) {\n case xsd.string:\n return `\"${value}\"`;\n case xsd.boolean:\n if (value === 'true' || value === 'false')\n return value;\n break;\n case xsd.integer:\n if (/^[+-]?\\d+$/.test(value))\n return value;\n break;\n case xsd.decimal:\n if (/^[+-]?\\d*\\.\\d+$/.test(value))\n return value;\n break;\n case xsd.double:\n if (/^[+-]?(?:\\d+\\.\\d*|\\.?\\d+)[eE][+-]?\\d+$/.test(value))\n return value;\n break;\n }\n }\n\n // Write a regular datatyped literal\n return `\"${value}\"^^${this._encodeIriOrBlank(literal.datatype)}`;\n }\n\n // ### `_encodePredicate` represents a predicate\n _encodePredicate(predicate) {\n return predicate.value === rdf.type ? 'a' : this._encodeIriOrBlank(predicate);\n }\n\n // ### `_encodeObject` represents an object\n _encodeObject(object) {\n switch (object.termType) {\n case 'Quad':\n return this._encodeQuad(object);\n case 'Literal':\n return this._encodeLiteral(object);\n default:\n return this._encodeIriOrBlank(object);\n }\n }\n\n // ### `_encodeQuad` encodes an RDF-star quad\n _encodeQuad({ subject, predicate, object, graph }) {\n return `<<${\n this._encodeSubject(subject)} ${\n this._encodePredicate(predicate)} ${\n this._encodeObject(object)}${\n isDefaultGraph(graph) ? '' : ` ${this._encodeIriOrBlank(graph)}`}>>`;\n }\n\n // ### `_blockedWrite` replaces `_write` after the writer has been closed\n _blockedWrite() {\n throw new Error('Cannot write because the writer has been closed.');\n }\n\n // ### `addQuad` adds the quad to the output stream\n addQuad(subject, predicate, object, graph, done) {\n // The quad was given as an object, so shift parameters\n if (object === undefined)\n this._writeQuad(subject.subject, subject.predicate, subject.object, subject.graph, predicate);\n // The optional `graph` parameter was not provided\n else if (typeof graph === 'function')\n this._writeQuad(subject, predicate, object, DEFAULTGRAPH, graph);\n // The `graph` parameter was provided\n else\n this._writeQuad(subject, predicate, object, graph || DEFAULTGRAPH, done);\n }\n\n // ### `addQuads` adds the quads to the output stream\n addQuads(quads) {\n for (let i = 0; i < quads.length; i++)\n this.addQuad(quads[i]);\n }\n\n // ### `addPrefix` adds the prefix to the output stream\n addPrefix(prefix, iri, done) {\n const prefixes = {};\n prefixes[prefix] = iri;\n this.addPrefixes(prefixes, done);\n }\n\n // ### `addPrefixes` adds the prefixes to the output stream\n addPrefixes(prefixes, done) {\n // Ignore prefixes if not supported by the serialization\n if (!this._prefixIRIs)\n return done && done();\n\n // Write all new prefixes\n let hasPrefixes = false;\n for (let prefix in prefixes) {\n let iri = prefixes[prefix];\n if (typeof iri !== 'string')\n iri = iri.value;\n hasPrefixes = true;\n // Finish a possible pending quad\n if (this._subject !== null) {\n this._write(this._inDefaultGraph ? '.\\n' : '\\n}\\n');\n this._subject = null, this._graph = '';\n }\n // Store and write the prefix\n this._prefixIRIs[iri] = (prefix += ':');\n this._write(`@prefix ${prefix} <${iri}>.\\n`);\n }\n // Recreate the prefix matcher\n if (hasPrefixes) {\n let IRIlist = '', prefixList = '';\n for (const prefixIRI in this._prefixIRIs) {\n IRIlist += IRIlist ? `|${prefixIRI}` : prefixIRI;\n prefixList += (prefixList ? '|' : '') + this._prefixIRIs[prefixIRI];\n }\n IRIlist = escapeRegex(IRIlist, /[\\]\\/\\(\\)\\*\\+\\?\\.\\\\\\$]/g, '\\\\$&');\n this._prefixRegex = new RegExp(`^(?:${prefixList})[^\\/]*$|` +\n `^(${IRIlist})([_a-zA-Z][\\\\-_a-zA-Z0-9]*)$`);\n }\n // End a prefix block with a newline\n this._write(hasPrefixes ? '\\n' : '', done);\n }\n\n // ### `blank` creates a blank node with the given content\n blank(predicate, object) {\n let children = predicate, child, length;\n // Empty blank node\n if (predicate === undefined)\n children = [];\n // Blank node passed as blank(Term(\"predicate\"), Term(\"object\"))\n else if (predicate.termType)\n children = [{ predicate: predicate, object: object }];\n // Blank node passed as blank({ predicate: predicate, object: object })\n else if (!('length' in predicate))\n children = [predicate];\n\n switch (length = children.length) {\n // Generate an empty blank node\n case 0:\n return new SerializedTerm('[]');\n // Generate a non-nested one-triple blank node\n case 1:\n child = children[0];\n if (!(child.object instanceof SerializedTerm))\n return new SerializedTerm(`[ ${this._encodePredicate(child.predicate)} ${\n this._encodeObject(child.object)} ]`);\n // Generate a multi-triple or nested blank node\n default:\n let contents = '[';\n // Write all triples in order\n for (let i = 0; i < length; i++) {\n child = children[i];\n // Write only the object is the predicate is the same as the previous\n if (child.predicate.equals(predicate))\n contents += `, ${this._encodeObject(child.object)}`;\n // Otherwise, write the predicate and the object\n else {\n contents += `${(i ? ';\\n ' : '\\n ') +\n this._encodePredicate(child.predicate)} ${\n this._encodeObject(child.object)}`;\n predicate = child.predicate;\n }\n }\n return new SerializedTerm(`${contents}\\n]`);\n }\n }\n\n // ### `list` creates a list node with the given content\n list(elements) {\n const length = elements && elements.length || 0, contents = new Array(length);\n for (let i = 0; i < length; i++)\n contents[i] = this._encodeObject(elements[i]);\n return new SerializedTerm(`(${contents.join(' ')})`);\n }\n\n // ### `end` signals the end of the output stream\n end(done) {\n // Finish a possible pending quad\n if (this._subject !== null) {\n this._write(this._inDefaultGraph ? '.\\n' : '\\n}\\n');\n this._subject = null;\n }\n // Disallow further writing\n this._write = this._blockedWrite;\n\n // Try to end the underlying stream, ensuring done is called exactly one time\n let singleDone = done && ((error, result) => { singleDone = null, done(error, result); });\n if (this._endStream) {\n try { return this._outputStream.end(singleDone); }\n catch (error) { /* error closing stream */ }\n }\n singleDone && singleDone();\n }\n}\n\n// Replaces a character by its escaped version\nfunction characterReplacer(character) {\n // Replace a single character by its escaped version\n let result = escapedCharacters[character];\n if (result === undefined) {\n // Replace a single character with its 4-bit unicode escape sequence\n if (character.length === 1) {\n result = character.charCodeAt(0).toString(16);\n result = '\\\\u0000'.substr(0, 6 - result.length) + result;\n }\n // Replace a surrogate pair with its 8-bit unicode escape sequence\n else {\n result = ((character.charCodeAt(0) - 0xD800) * 0x400 +\n character.charCodeAt(1) + 0x2400).toString(16);\n result = '\\\\U00000000'.substr(0, 10 - result.length) + result;\n }\n }\n return result;\n}\n\nfunction escapeRegex(regex) {\n return regex.replace(/[\\]\\/\\(\\)\\*\\+\\?\\.\\\\\\$]/g, '\\\\$&');\n}\n","// **N3Store** objects store N3 quads by graph in memory.\nimport { Readable } from 'readable-stream';\nimport { default as N3DataFactory, termToId, termFromId } from './N3DataFactory';\nimport namespaces from './IRIs';\nimport { isDefaultGraph } from './N3Util';\nimport N3Writer from './N3Writer';\n\nconst ITERATOR = Symbol('iter');\n\nfunction merge(target, source, depth = 4) {\n if (depth === 0)\n return Object.assign(target, source);\n\n for (const key in source)\n target[key] = merge(target[key] || Object.create(null), source[key], depth - 1);\n\n return target;\n}\n\n/**\n * Determines the intersection of the `_graphs` index s1 and s2.\n * s1 and s2 *must* belong to Stores that share an `_entityIndex`.\n *\n * False is returned when there is no intersection; this should\n * *not* be set as the value for an index.\n */\nfunction intersect(s1, s2, depth = 4) {\n let target = false;\n\n for (const key in s1) {\n if (key in s2) {\n const intersection = depth === 0 ? null : intersect(s1[key], s2[key], depth - 1);\n if (intersection !== false) {\n target = target || Object.create(null);\n target[key] = intersection;\n }\n // Depth 3 is the 'subjects', 'predicates' and 'objects' keys.\n // If the 'subjects' index is empty, so will the 'predicates' and 'objects' index.\n else if (depth === 3) {\n return false;\n }\n }\n }\n\n return target;\n}\n\n/**\n * Determines the difference of the `_graphs` index s1 and s2.\n * s1 and s2 *must* belong to Stores that share an `_entityIndex`.\n *\n * False is returned when there is no difference; this should\n * *not* be set as the value for an index.\n */\nfunction difference(s1, s2, depth = 4) {\n let target = false;\n\n for (const key in s1) {\n // When the key is not in the index, then none of the triples defined by s1[key] are\n // in s2 and so we want to copy them over to the resultant store.\n if (!(key in s2)) {\n target = target || Object.create(null);\n target[key] = depth === 0 ? null : merge({}, s1[key], depth - 1);\n }\n else if (depth !== 0) {\n const diff = difference(s1[key], s2[key], depth - 1);\n if (diff !== false) {\n target = target || Object.create(null);\n target[key] = diff;\n }\n // Depth 3 is the 'subjects', 'predicates' and 'objects' keys.\n // If the 'subjects' index is empty, so will the 'predicates' and 'objects' index.\n else if (depth === 3) {\n return false;\n }\n }\n }\n\n return target;\n}\n\n// ## Constructor\nexport class N3EntityIndex {\n constructor(options = {}) {\n this._id = 1;\n // `_ids` maps entities such as `http://xmlns.com/foaf/0.1/name` to numbers,\n // saving memory by using only numbers as keys in `_graphs`\n this._ids = Object.create(null);\n this._ids[''] = 1;\n // inverse of `_ids`\n this._entities = Object.create(null);\n this._entities[1] = '';\n // `_blankNodeIndex` is the index of the last automatically named blank node\n this._blankNodeIndex = 0;\n this._factory = options.factory || N3DataFactory;\n }\n\n _termFromId(id) {\n if (id[0] === '.') {\n const entities = this._entities;\n const terms = id.split('.');\n const q = this._factory.quad(\n this._termFromId(entities[terms[1]]),\n this._termFromId(entities[terms[2]]),\n this._termFromId(entities[terms[3]]),\n terms[4] && this._termFromId(entities[terms[4]]),\n );\n return q;\n }\n return termFromId(id, this._factory);\n }\n\n _termToNumericId(term) {\n if (term.termType === 'Quad') {\n const s = this._termToNumericId(term.subject),\n p = this._termToNumericId(term.predicate),\n o = this._termToNumericId(term.object);\n let g;\n\n return s && p && o && (isDefaultGraph(term.graph) || (g = this._termToNumericId(term.graph))) &&\n this._ids[g ? `.${s}.${p}.${o}.${g}` : `.${s}.${p}.${o}`];\n }\n return this._ids[termToId(term)];\n }\n\n _termToNewNumericId(term) {\n // This assumes that no graph term is present - we may wish to error if there is one\n const str = term && term.termType === 'Quad' ?\n `.${this._termToNewNumericId(term.subject)}.${this._termToNewNumericId(term.predicate)}.${this._termToNewNumericId(term.object)}${\n isDefaultGraph(term.graph) ? '' : `.${this._termToNewNumericId(term.graph)}`\n }`\n : termToId(term);\n\n return this._ids[str] || (this._ids[this._entities[++this._id] = str] = this._id);\n }\n\n createBlankNode(suggestedName) {\n let name, index;\n // Generate a name based on the suggested name\n if (suggestedName) {\n name = suggestedName = `_:${suggestedName}`, index = 1;\n while (this._ids[name])\n name = suggestedName + index++;\n }\n // Generate a generic blank node name\n else {\n do { name = `_:b${this._blankNodeIndex++}`; }\n while (this._ids[name]);\n }\n // Add the blank node to the entities, avoiding the generation of duplicates\n this._ids[name] = ++this._id;\n this._entities[this._id] = name;\n return this._factory.blankNode(name.substr(2));\n }\n}\n\n// ## Constructor\nexport default class N3Store {\n constructor(quads, options) {\n // The number of quads is initially zero\n this._size = 0;\n // `_graphs` contains subject, predicate, and object indexes per graph\n this._graphs = Object.create(null);\n\n // Shift parameters if `quads` is not given\n if (!options && quads && !quads[0])\n options = quads, quads = null;\n options = options || {};\n this._factory = options.factory || N3DataFactory;\n this._entityIndex = options.entityIndex || new N3EntityIndex({ factory: this._factory });\n this._entities = this._entityIndex._entities;\n this._termFromId = this._entityIndex._termFromId.bind(this._entityIndex);\n this._termToNumericId = this._entityIndex._termToNumericId.bind(this._entityIndex);\n this._termToNewNumericId = this._entityIndex._termToNewNumericId.bind(this._entityIndex);\n\n // Add quads if passed\n if (quads)\n this.addQuads(quads);\n }\n\n // ## Public properties\n\n // ### `size` returns the number of quads in the store\n get size() {\n // Return the quad count if if was cached\n let size = this._size;\n if (size !== null)\n return size;\n\n // Calculate the number of quads by counting to the deepest level\n size = 0;\n const graphs = this._graphs;\n let subjects, subject;\n for (const graphKey in graphs)\n for (const subjectKey in (subjects = graphs[graphKey].subjects))\n for (const predicateKey in (subject = subjects[subjectKey]))\n size += Object.keys(subject[predicateKey]).length;\n return this._size = size;\n }\n\n // ## Private methods\n\n // ### `_addToIndex` adds a quad to a three-layered index.\n // Returns if the index has changed, if the entry did not already exist.\n _addToIndex(index0, key0, key1, key2) {\n // Create layers as necessary\n const index1 = index0[key0] || (index0[key0] = {});\n const index2 = index1[key1] || (index1[key1] = {});\n // Setting the key to _any_ value signals the presence of the quad\n const existed = key2 in index2;\n if (!existed)\n index2[key2] = null;\n return !existed;\n }\n\n // ### `_removeFromIndex` removes a quad from a three-layered index\n _removeFromIndex(index0, key0, key1, key2) {\n // Remove the quad from the index\n const index1 = index0[key0], index2 = index1[key1];\n delete index2[key2];\n\n // Remove intermediary index layers if they are empty\n for (const key in index2) return;\n delete index1[key1];\n for (const key in index1) return;\n delete index0[key0];\n }\n\n // ### `_findInIndex` finds a set of quads in a three-layered index.\n // The index base is `index0` and the keys at each level are `key0`, `key1`, and `key2`.\n // Any of these keys can be undefined, which is interpreted as a wildcard.\n // `name0`, `name1`, and `name2` are the names of the keys at each level,\n // used when reconstructing the resulting quad\n // (for instance: _subject_, _predicate_, and _object_).\n // Finally, `graphId` will be the graph of the created quads.\n *_findInIndex(index0, key0, key1, key2, name0, name1, name2, graphId) {\n let tmp, index1, index2;\n const entityKeys = this._entities;\n const graph = this._termFromId(entityKeys[graphId]);\n const parts = { subject: null, predicate: null, object: null };\n\n // If a key is specified, use only that part of index 0.\n if (key0) (tmp = index0, index0 = {})[key0] = tmp[key0];\n for (const value0 in index0) {\n if (index1 = index0[value0]) {\n parts[name0] = this._termFromId(entityKeys[value0]);\n // If a key is specified, use only that part of index 1.\n if (key1) (tmp = index1, index1 = {})[key1] = tmp[key1];\n for (const value1 in index1) {\n if (index2 = index1[value1]) {\n parts[name1] = this._termFromId(entityKeys[value1]);\n // If a key is specified, use only that part of index 2, if it exists.\n const values = key2 ? (key2 in index2 ? [key2] : []) : Object.keys(index2);\n // Create quads for all items found in index 2.\n for (let l = 0; l < values.length; l++) {\n parts[name2] = this._termFromId(entityKeys[values[l]]);\n yield this._factory.quad(parts.subject, parts.predicate, parts.object, graph);\n }\n }\n }\n }\n }\n }\n\n // ### `_loop` executes the callback on all keys of index 0\n _loop(index0, callback) {\n for (const key0 in index0)\n callback(key0);\n }\n\n // ### `_loopByKey0` executes the callback on all keys of a certain entry in index 0\n _loopByKey0(index0, key0, callback) {\n let index1, key1;\n if (index1 = index0[key0]) {\n for (key1 in index1)\n callback(key1);\n }\n }\n\n // ### `_loopByKey1` executes the callback on given keys of all entries in index 0\n _loopByKey1(index0, key1, callback) {\n let key0, index1;\n for (key0 in index0) {\n index1 = index0[key0];\n if (index1[key1])\n callback(key0);\n }\n }\n\n // ### `_loopBy2Keys` executes the callback on given keys of certain entries in index 2\n _loopBy2Keys(index0, key0, key1, callback) {\n let index1, index2, key2;\n if ((index1 = index0[key0]) && (index2 = index1[key1])) {\n for (key2 in index2)\n callback(key2);\n }\n }\n\n // ### `_countInIndex` counts matching quads in a three-layered index.\n // The index base is `index0` and the keys at each level are `key0`, `key1`, and `key2`.\n // Any of these keys can be undefined, which is interpreted as a wildcard.\n _countInIndex(index0, key0, key1, key2) {\n let count = 0, tmp, index1, index2;\n\n // If a key is specified, count only that part of index 0\n if (key0) (tmp = index0, index0 = {})[key0] = tmp[key0];\n for (const value0 in index0) {\n if (index1 = index0[value0]) {\n // If a key is specified, count only that part of index 1\n if (key1) (tmp = index1, index1 = {})[key1] = tmp[key1];\n for (const value1 in index1) {\n if (index2 = index1[value1]) {\n // If a key is specified, count the quad if it exists\n if (key2) (key2 in index2) && count++;\n // Otherwise, count all quads\n else count += Object.keys(index2).length;\n }\n }\n }\n }\n return count;\n }\n\n // ### `_getGraphs` returns an array with the given graph,\n // or all graphs if the argument is null or undefined.\n _getGraphs(graph) {\n graph = graph === '' ? 1 : (graph && (this._termToNumericId(graph) || -1));\n return typeof graph !== 'number' ? this._graphs : { [graph]: this._graphs[graph] };\n }\n\n // ### `_uniqueEntities` returns a function that accepts an entity ID\n // and passes the corresponding entity to callback if it hasn't occurred before.\n _uniqueEntities(callback) {\n const uniqueIds = Object.create(null);\n return id => {\n if (!(id in uniqueIds)) {\n uniqueIds[id] = true;\n callback(this._termFromId(this._entities[id], this._factory));\n }\n };\n }\n\n // ## Public methods\n\n // ### `add` adds the specified quad to the dataset.\n // Returns the dataset instance it was called on.\n // Existing quads, as defined in Quad.equals, will be ignored.\n add(quad) {\n this.addQuad(quad);\n return this;\n }\n\n // ### `addQuad` adds a new quad to the store.\n // Returns if the quad index has changed, if the quad did not already exist.\n addQuad(subject, predicate, object, graph) {\n // Shift arguments if a quad object is given instead of components\n if (!predicate)\n graph = subject.graph, object = subject.object,\n predicate = subject.predicate, subject = subject.subject;\n\n // Convert terms to internal string representation\n graph = graph ? this._termToNewNumericId(graph) : 1;\n\n // Find the graph that will contain the triple\n let graphItem = this._graphs[graph];\n // Create the graph if it doesn't exist yet\n if (!graphItem) {\n graphItem = this._graphs[graph] = { subjects: {}, predicates: {}, objects: {} };\n // Freezing a graph helps subsequent `add` performance,\n // and properties will never be modified anyway\n Object.freeze(graphItem);\n }\n\n // Since entities can often be long IRIs, we avoid storing them in every index.\n // Instead, we have a separate index that maps entities to numbers,\n // which are then used as keys in the other indexes.\n subject = this._termToNewNumericId(subject);\n predicate = this._termToNewNumericId(predicate);\n object = this._termToNewNumericId(object);\n\n if (!this._addToIndex(graphItem.subjects, subject, predicate, object))\n return false;\n this._addToIndex(graphItem.predicates, predicate, object, subject);\n this._addToIndex(graphItem.objects, object, subject, predicate);\n\n // The cached quad count is now invalid\n this._size = null;\n return true;\n }\n\n // ### `addQuads` adds multiple quads to the store\n addQuads(quads) {\n for (let i = 0; i < quads.length; i++)\n this.addQuad(quads[i]);\n }\n\n // ### `delete` removes the specified quad from the dataset.\n // Returns the dataset instance it was called on.\n delete(quad) {\n this.removeQuad(quad);\n return this;\n }\n\n // ### `has` determines whether a dataset includes a certain quad or quad pattern.\n has(subjectOrQuad, predicate, object, graph) {\n if (subjectOrQuad && subjectOrQuad.subject)\n ({ subject: subjectOrQuad, predicate, object, graph } = subjectOrQuad);\n return !this.readQuads(subjectOrQuad, predicate, object, graph).next().done;\n }\n\n // ### `import` adds a stream of quads to the store\n import(stream) {\n stream.on('data', quad => { this.addQuad(quad); });\n return stream;\n }\n\n // ### `removeQuad` removes a quad from the store if it exists\n removeQuad(subject, predicate, object, graph) {\n // Shift arguments if a quad object is given instead of components\n if (!predicate)\n ({ subject, predicate, object, graph } = subject);\n // Convert terms to internal string representation\n graph = graph ? this._termToNumericId(graph) : 1;\n\n // Find internal identifiers for all components\n // and verify the quad exists.\n const graphs = this._graphs;\n let graphItem, subjects, predicates;\n if (!(subject = subject && this._termToNumericId(subject)) || !(predicate = predicate && this._termToNumericId(predicate)) ||\n !(object = object && this._termToNumericId(object)) || !(graphItem = graphs[graph]) ||\n !(subjects = graphItem.subjects[subject]) ||\n !(predicates = subjects[predicate]) ||\n !(object in predicates))\n return false;\n\n // Remove it from all indexes\n this._removeFromIndex(graphItem.subjects, subject, predicate, object);\n this._removeFromIndex(graphItem.predicates, predicate, object, subject);\n this._removeFromIndex(graphItem.objects, object, subject, predicate);\n if (this._size !== null) this._size--;\n\n // Remove the graph if it is empty\n for (subject in graphItem.subjects) return true;\n delete graphs[graph];\n return true;\n }\n\n // ### `removeQuads` removes multiple quads from the store\n removeQuads(quads) {\n for (let i = 0; i < quads.length; i++)\n this.removeQuad(quads[i]);\n }\n\n // ### `remove` removes a stream of quads from the store\n remove(stream) {\n stream.on('data', quad => { this.removeQuad(quad); });\n return stream;\n }\n\n // ### `removeMatches` removes all matching quads from the store\n // Setting any field to `undefined` or `null` indicates a wildcard.\n removeMatches(subject, predicate, object, graph) {\n const stream = new Readable({ objectMode: true });\n\n const iterable = this.readQuads(subject, predicate, object, graph);\n stream._read = size => {\n while (--size >= 0) {\n const { done, value } = iterable.next();\n if (done) {\n stream.push(null);\n return;\n }\n stream.push(value);\n }\n };\n\n return this.remove(stream);\n }\n\n // ### `deleteGraph` removes all triples with the given graph from the store\n deleteGraph(graph) {\n return this.removeMatches(null, null, null, graph);\n }\n\n // ### `getQuads` returns an array of quads matching a pattern.\n // Setting any field to `undefined` or `null` indicates a wildcard.\n getQuads(subject, predicate, object, graph) {\n return [...this.readQuads(subject, predicate, object, graph)];\n }\n\n /**\n * `readQuads` returns a generator of quads matching a pattern.\n * Setting any field to `undefined` or `null` indicates a wildcard.\n * @deprecated Use `match` instead.\n */\n *readQuads(subject, predicate, object, graph) {\n const graphs = this._getGraphs(graph);\n let content, subjectId, predicateId, objectId;\n\n // Translate IRIs to internal index keys.\n if (subject && !(subjectId = this._termToNumericId(subject)) ||\n predicate && !(predicateId = this._termToNumericId(predicate)) ||\n object && !(objectId = this._termToNumericId(object)))\n return;\n\n for (const graphId in graphs) {\n // Only if the specified graph contains triples, there can be results\n if (content = graphs[graphId]) {\n // Choose the optimal index, based on what fields are present\n if (subjectId) {\n if (objectId)\n // If subject and object are given, the object index will be the fastest\n yield* this._findInIndex(content.objects, objectId, subjectId, predicateId,\n 'object', 'subject', 'predicate', graphId);\n else\n // If only subject and possibly predicate are given, the subject index will be the fastest\n yield* this._findInIndex(content.subjects, subjectId, predicateId, null,\n 'subject', 'predicate', 'object', graphId);\n }\n else if (predicateId)\n // If only predicate and possibly object are given, the predicate index will be the fastest\n yield* this._findInIndex(content.predicates, predicateId, objectId, null,\n 'predicate', 'object', 'subject', graphId);\n else if (objectId)\n // If only object is given, the object index will be the fastest\n yield* this._findInIndex(content.objects, objectId, null, null,\n 'object', 'subject', 'predicate', graphId);\n else\n // If nothing is given, iterate subjects and predicates first\n yield* this._findInIndex(content.subjects, null, null, null,\n 'subject', 'predicate', 'object', graphId);\n }\n }\n }\n\n // ### `match` returns a new dataset that is comprised of all quads in the current instance matching the given arguments.\n // The logic described in Quad Matching is applied for each quad in this dataset to check if it should be included in the output dataset.\n // Note: This method always returns a new DatasetCore, even if that dataset contains no quads.\n // Note: Since a DatasetCore is an unordered set, the order of the quads within the returned sequence is arbitrary.\n // Setting any field to `undefined` or `null` indicates a wildcard.\n // For backwards compatibility, the object return also implements the Readable stream interface.\n match(subject, predicate, object, graph) {\n return new DatasetCoreAndReadableStream(this, subject, predicate, object, graph, { entityIndex: this._entityIndex });\n }\n\n // ### `countQuads` returns the number of quads matching a pattern.\n // Setting any field to `undefined` or `null` indicates a wildcard.\n countQuads(subject, predicate, object, graph) {\n const graphs = this._getGraphs(graph);\n let count = 0, content, subjectId, predicateId, objectId;\n\n // Translate IRIs to internal index keys.\n if (subject && !(subjectId = this._termToNumericId(subject)) ||\n predicate && !(predicateId = this._termToNumericId(predicate)) ||\n object && !(objectId = this._termToNumericId(object)))\n return 0;\n\n for (const graphId in graphs) {\n // Only if the specified graph contains triples, there can be results\n if (content = graphs[graphId]) {\n // Choose the optimal index, based on what fields are present\n if (subject) {\n if (object)\n // If subject and object are given, the object index will be the fastest\n count += this._countInIndex(content.objects, objectId, subjectId, predicateId);\n else\n // If only subject and possibly predicate are given, the subject index will be the fastest\n count += this._countInIndex(content.subjects, subjectId, predicateId, objectId);\n }\n else if (predicate) {\n // If only predicate and possibly object are given, the predicate index will be the fastest\n count += this._countInIndex(content.predicates, predicateId, objectId, subjectId);\n }\n else {\n // If only object is possibly given, the object index will be the fastest\n count += this._countInIndex(content.objects, objectId, subjectId, predicateId);\n }\n }\n }\n return count;\n }\n\n // ### `forEach` executes the callback on all quads.\n // Setting any field to `undefined` or `null` indicates a wildcard.\n forEach(callback, subject, predicate, object, graph) {\n this.some(quad => {\n callback(quad, this);\n return false;\n }, subject, predicate, object, graph);\n }\n\n // ### `every` executes the callback on all quads,\n // and returns `true` if it returns truthy for all them.\n // Setting any field to `undefined` or `null` indicates a wildcard.\n every(callback, subject, predicate, object, graph) {\n return !this.some(quad => !callback(quad, this), subject, predicate, object, graph);\n }\n\n // ### `some` executes the callback on all quads,\n // and returns `true` if it returns truthy for any of them.\n // Setting any field to `undefined` or `null` indicates a wildcard.\n some(callback, subject, predicate, object, graph) {\n for (const quad of this.readQuads(subject, predicate, object, graph))\n if (callback(quad))\n return true;\n return false;\n }\n\n // ### `getSubjects` returns all subjects that match the pattern.\n // Setting any field to `undefined` or `null` indicates a wildcard.\n getSubjects(predicate, object, graph) {\n const results = [];\n this.forSubjects(s => { results.push(s); }, predicate, object, graph);\n return results;\n }\n\n // ### `forSubjects` executes the callback on all subjects that match the pattern.\n // Setting any field to `undefined` or `null` indicates a wildcard.\n forSubjects(callback, predicate, object, graph) {\n const graphs = this._getGraphs(graph);\n let content, predicateId, objectId;\n callback = this._uniqueEntities(callback);\n\n // Translate IRIs to internal index keys.\n if (predicate && !(predicateId = this._termToNumericId(predicate)) ||\n object && !(objectId = this._termToNumericId(object)))\n return;\n\n for (graph in graphs) {\n // Only if the specified graph contains triples, there can be results\n if (content = graphs[graph]) {\n // Choose optimal index based on which fields are wildcards\n if (predicateId) {\n if (objectId)\n // If predicate and object are given, the POS index is best.\n this._loopBy2Keys(content.predicates, predicateId, objectId, callback);\n else\n // If only predicate is given, the SPO index is best.\n this._loopByKey1(content.subjects, predicateId, callback);\n }\n else if (objectId)\n // If only object is given, the OSP index is best.\n this._loopByKey0(content.objects, objectId, callback);\n else\n // If no params given, iterate all the subjects\n this._loop(content.subjects, callback);\n }\n }\n }\n\n // ### `getPredicates` returns all predicates that match the pattern.\n // Setting any field to `undefined` or `null` indicates a wildcard.\n getPredicates(subject, object, graph) {\n const results = [];\n this.forPredicates(p => { results.push(p); }, subject, object, graph);\n return results;\n }\n\n // ### `forPredicates` executes the callback on all predicates that match the pattern.\n // Setting any field to `undefined` or `null` indicates a wildcard.\n forPredicates(callback, subject, object, graph) {\n const graphs = this._getGraphs(graph);\n let content, subjectId, objectId;\n callback = this._uniqueEntities(callback);\n\n // Translate IRIs to internal index keys.\n if (subject && !(subjectId = this._termToNumericId(subject)) ||\n object && !(objectId = this._termToNumericId(object)))\n return;\n\n for (graph in graphs) {\n // Only if the specified graph contains triples, there can be results\n if (content = graphs[graph]) {\n // Choose optimal index based on which fields are wildcards\n if (subjectId) {\n if (objectId)\n // If subject and object are given, the OSP index is best.\n this._loopBy2Keys(content.objects, objectId, subjectId, callback);\n else\n // If only subject is given, the SPO index is best.\n this._loopByKey0(content.subjects, subjectId, callback);\n }\n else if (objectId)\n // If only object is given, the POS index is best.\n this._loopByKey1(content.predicates, objectId, callback);\n else\n // If no params given, iterate all the predicates.\n this._loop(content.predicates, callback);\n }\n }\n }\n\n // ### `getObjects` returns all objects that match the pattern.\n // Setting any field to `undefined` or `null` indicates a wildcard.\n getObjects(subject, predicate, graph) {\n const results = [];\n this.forObjects(o => { results.push(o); }, subject, predicate, graph);\n return results;\n }\n\n // ### `forObjects` executes the callback on all objects that match the pattern.\n // Setting any field to `undefined` or `null` indicates a wildcard.\n forObjects(callback, subject, predicate, graph) {\n const graphs = this._getGraphs(graph);\n let content, subjectId, predicateId;\n callback = this._uniqueEntities(callback);\n\n // Translate IRIs to internal index keys.\n if (subject && !(subjectId = this._termToNumericId(subject)) ||\n predicate && !(predicateId = this._termToNumericId(predicate)))\n return;\n\n for (graph in graphs) {\n // Only if the specified graph contains triples, there can be results\n if (content = graphs[graph]) {\n // Choose optimal index based on which fields are wildcards\n if (subjectId) {\n if (predicateId)\n // If subject and predicate are given, the SPO index is best.\n this._loopBy2Keys(content.subjects, subjectId, predicateId, callback);\n else\n // If only subject is given, the OSP index is best.\n this._loopByKey1(content.objects, subjectId, callback);\n }\n else if (predicateId)\n // If only predicate is given, the POS index is best.\n this._loopByKey0(content.predicates, predicateId, callback);\n else\n // If no params given, iterate all the objects.\n this._loop(content.objects, callback);\n }\n }\n }\n\n // ### `getGraphs` returns all graphs that match the pattern.\n // Setting any field to `undefined` or `null` indicates a wildcard.\n getGraphs(subject, predicate, object) {\n const results = [];\n this.forGraphs(g => { results.push(g); }, subject, predicate, object);\n return results;\n }\n\n // ### `forGraphs` executes the callback on all graphs that match the pattern.\n // Setting any field to `undefined` or `null` indicates a wildcard.\n forGraphs(callback, subject, predicate, object) {\n for (const graph in this._graphs) {\n this.some(quad => {\n callback(quad.graph);\n return true; // Halt iteration of some()\n }, subject, predicate, object, this._termFromId(this._entities[graph]));\n }\n }\n\n // ### `createBlankNode` creates a new blank node, returning its name\n createBlankNode(suggestedName) {\n return this._entityIndex.createBlankNode(suggestedName);\n }\n\n // ### `extractLists` finds and removes all list triples\n // and returns the items per list.\n extractLists({ remove = false, ignoreErrors = false } = {}) {\n const lists = {}; // has scalar keys so could be a simple Object\n const onError = ignoreErrors ? (() => true) :\n ((node, message) => { throw new Error(`${node.value} ${message}`); });\n\n // Traverse each list from its tail\n const tails = this.getQuads(null, namespaces.rdf.rest, namespaces.rdf.nil, null);\n const toRemove = remove ? [...tails] : [];\n tails.forEach(tailQuad => {\n const items = []; // the members found as objects of rdf:first quads\n let malformed = false; // signals whether the current list is malformed\n let head; // the head of the list (_:b1 in above example)\n let headPos; // set to subject or object when head is set\n const graph = tailQuad.graph; // make sure list is in exactly one graph\n\n // Traverse the list from tail to end\n let current = tailQuad.subject;\n while (current && !malformed) {\n const objectQuads = this.getQuads(null, null, current, null);\n const subjectQuads = this.getQuads(current, null, null, null);\n let quad, first = null, rest = null, parent = null;\n\n // Find the first and rest of this list node\n for (let i = 0; i < subjectQuads.length && !malformed; i++) {\n quad = subjectQuads[i];\n if (!quad.graph.equals(graph))\n malformed = onError(current, 'not confined to single graph');\n else if (head)\n malformed = onError(current, 'has non-list arcs out');\n\n // one rdf:first\n else if (quad.predicate.value === namespaces.rdf.first) {\n if (first)\n malformed = onError(current, 'has multiple rdf:first arcs');\n else\n toRemove.push(first = quad);\n }\n\n // one rdf:rest\n else if (quad.predicate.value === namespaces.rdf.rest) {\n if (rest)\n malformed = onError(current, 'has multiple rdf:rest arcs');\n else\n toRemove.push(rest = quad);\n }\n\n // alien triple\n else if (objectQuads.length)\n malformed = onError(current, 'can\\'t be subject and object');\n else {\n head = quad; // e.g. { (1 2 3) :p :o }\n headPos = 'subject';\n }\n }\n\n // { :s :p (1 2) } arrives here with no head\n // { (1 2) :p :o } arrives here with head set to the list.\n for (let i = 0; i < objectQuads.length && !malformed; ++i) {\n quad = objectQuads[i];\n if (head)\n malformed = onError(current, 'can\\'t have coreferences');\n // one rdf:rest\n else if (quad.predicate.value === namespaces.rdf.rest) {\n if (parent)\n malformed = onError(current, 'has incoming rdf:rest arcs');\n else\n parent = quad;\n }\n else {\n head = quad; // e.g. { :s :p (1 2) }\n headPos = 'object';\n }\n }\n\n // Store the list item and continue with parent\n if (!first)\n malformed = onError(current, 'has no list head');\n else\n items.unshift(first.object);\n current = parent && parent.subject;\n }\n\n // Don't remove any quads if the list is malformed\n if (malformed)\n remove = false;\n // Store the list under the value of its head\n else if (head)\n lists[head[headPos].value] = items;\n });\n\n // Remove list quads if requested\n if (remove)\n this.removeQuads(toRemove);\n return lists;\n }\n\n /**\n * Returns `true` if the current dataset is a superset of the given dataset; in other words, returns `true` if\n * the given dataset is a subset of, i.e., is contained within, the current dataset.\n *\n * Blank Nodes will be normalized.\n */\n addAll(quads) {\n if (quads instanceof DatasetCoreAndReadableStream)\n quads = quads.filtered;\n\n if (Array.isArray(quads))\n this.addQuads(quads);\n else if (quads instanceof N3Store && quads._entityIndex === this._entityIndex) {\n if (quads._size !== 0) {\n this._graphs = merge(this._graphs, quads._graphs);\n this._size = null; // Invalidate the cached size\n }\n }\n else {\n for (const quad of quads)\n this.add(quad);\n }\n return this;\n }\n\n /**\n * Returns `true` if the current dataset is a superset of the given dataset; in other words, returns `true` if\n * the given dataset is a subset of, i.e., is contained within, the current dataset.\n *\n * Blank Nodes will be normalized.\n */\n contains(other) {\n if (other instanceof DatasetCoreAndReadableStream)\n other = other.filtered;\n\n if (other === this)\n return true;\n\n if (!(other instanceof N3Store) || this._entityIndex !== other._entityIndex)\n return other.every(quad => this.has(quad));\n\n const g1 = this._graphs, g2 = other._graphs;\n let s1, s2, p1, p2, o1;\n for (const graph in g2) {\n if (!(s1 = g1[graph])) return false;\n s1 = s1.subjects;\n for (const subject in (s2 = g2[graph].subjects)) {\n if (!(p1 = s1[subject])) return false;\n for (const predicate in (p2 = s2[subject])) {\n if (!(o1 = p1[predicate])) return false;\n for (const object in p2[predicate])\n if (!(object in o1)) return false;\n }\n }\n }\n return true;\n }\n\n /**\n * This method removes the quads in the current dataset that match the given arguments.\n *\n * The logic described in {@link https://rdf.js.org/dataset-spec/#quad-matching|Quad Matching} is applied for each\n * quad in this dataset, to select the quads which will be deleted.\n *\n * @param subject The optional exact subject to match.\n * @param predicate The optional exact predicate to match.\n * @param object The optional exact object to match.\n * @param graph The optional exact graph to match.\n */\n deleteMatches(subject, predicate, object, graph) {\n for (const quad of this.match(subject, predicate, object, graph))\n this.removeQuad(quad);\n return this;\n }\n\n /**\n * Returns a new dataset that contains all quads from the current dataset that are not included in the given dataset.\n */\n difference(other) {\n if (other && other instanceof DatasetCoreAndReadableStream)\n other = other.filtered;\n\n if (other === this)\n return new N3Store({ entityIndex: this._entityIndex });\n\n if ((other instanceof N3Store) && other._entityIndex === this._entityIndex) {\n const store = new N3Store({ entityIndex: this._entityIndex });\n const graphs = difference(this._graphs, other._graphs);\n if (graphs) {\n store._graphs = graphs;\n store._size = null;\n }\n return store;\n }\n\n return this.filter(quad => !other.has(quad));\n }\n\n /**\n * Returns true if the current dataset contains the same graph structure as the given dataset.\n *\n * Blank Nodes will be normalized.\n */\n equals(other) {\n if (other instanceof DatasetCoreAndReadableStream)\n other = other.filtered;\n\n return other === this || (this.size === other.size && this.contains(other));\n }\n\n /**\n * Creates a new dataset with all the quads that pass the test implemented by the provided `iteratee`.\n *\n * This method is aligned with Array.prototype.filter() in ECMAScript-262.\n */\n filter(iteratee) {\n const store = new N3Store({ entityIndex: this._entityIndex });\n for (const quad of this)\n if (iteratee(quad, this))\n store.add(quad);\n return store;\n }\n\n /**\n * Returns a new dataset containing all quads from the current dataset that are also included in the given dataset.\n */\n intersection(other) {\n if (other instanceof DatasetCoreAndReadableStream)\n other = other.filtered;\n\n if (other === this) {\n const store = new N3Store({ entityIndex: this._entityIndex });\n store._graphs = merge(Object.create(null), this._graphs);\n store._size = this._size;\n return store;\n }\n else if ((other instanceof N3Store) && this._entityIndex === other._entityIndex) {\n const store = new N3Store({ entityIndex: this._entityIndex });\n const graphs = intersect(other._graphs, this._graphs);\n if (graphs) {\n store._graphs = graphs;\n store._size = null;\n }\n return store;\n }\n\n return this.filter(quad => other.has(quad));\n }\n\n /**\n * Returns a new dataset containing all quads returned by applying `iteratee` to each quad in the current dataset.\n */\n map(iteratee) {\n const store = new N3Store({ entityIndex: this._entityIndex });\n for (const quad of this)\n store.add(iteratee(quad, this));\n return store;\n }\n\n /**\n * This method calls the `iteratee` method on each `quad` of the `Dataset`. The first time the `iteratee` method\n * is called, the `accumulator` value is the `initialValue`, or, if not given, equals the first quad of the `Dataset`.\n * The return value of each call to the `iteratee` method is used as the `accumulator` value for the next call.\n *\n * This method returns the return value of the last `iteratee` call.\n *\n * This method is aligned with `Array.prototype.reduce()` in ECMAScript-262.\n */\n reduce(callback, initialValue) {\n const iter = this.readQuads();\n let accumulator = initialValue === undefined ? iter.next().value : initialValue;\n for (const quad of iter)\n accumulator = callback(accumulator, quad, this);\n return accumulator;\n }\n\n /**\n * Returns the set of quads within the dataset as a host-language-native sequence, for example an `Array` in\n * ECMAScript-262.\n *\n * Since a `Dataset` is an unordered set, the order of the quads within the returned sequence is arbitrary.\n */\n toArray() {\n return this.getQuads();\n }\n\n /**\n * Returns an N-Quads string representation of the dataset, preprocessed with the\n * {@link https://json-ld.github.io/normalization/spec/|RDF Dataset Normalization} algorithm.\n */\n toCanonical() {\n throw new Error('not implemented');\n }\n\n /**\n * Returns a stream that contains all quads of the dataset.\n */\n toStream() {\n return this.match();\n }\n\n /**\n * Returns an N-Quads string representation of the dataset.\n *\n * No prior normalization is required, therefore the results for the same quads may vary depending on the `Dataset`\n * implementation.\n */\n toString() {\n return (new N3Writer()).quadsToString(this);\n }\n\n /**\n * Returns a new `Dataset` that is a concatenation of this dataset and the quads given as an argument.\n */\n union(quads) {\n const store = new N3Store({ entityIndex: this._entityIndex });\n store._graphs = merge(Object.create(null), this._graphs);\n store._size = this._size;\n\n store.addAll(quads);\n return store;\n }\n\n // ### Store is an iterable.\n // Can be used where iterables are expected: for...of loops, array spread operator,\n // `yield*`, and destructuring assignment (order is not guaranteed).\n *[Symbol.iterator]() {\n yield* this.readQuads();\n }\n}\n\n/**\n * Returns a subset of the `index` with that part of the index\n * matching the `ids` array. `ids` contains 3 elements that are\n * either numerical ids; or `null`.\n *\n * `false` is returned when there are no matching indices; this should\n * *not* be set as the value for an index.\n */\nfunction indexMatch(index, ids, depth = 0) {\n const ind = ids[depth];\n if (ind && !(ind in index))\n return false;\n\n let target = false;\n for (const key in (ind ? { [ind]: index[ind] } : index)) {\n const result = depth === 2 ? null : indexMatch(index[key], ids, depth + 1);\n\n if (result !== false) {\n target = target || Object.create(null);\n target[key] = result;\n }\n }\n return target;\n}\n\n/**\n * A class that implements both DatasetCore and Readable.\n */\nclass DatasetCoreAndReadableStream extends Readable {\n constructor(n3Store, subject, predicate, object, graph, options) {\n super({ objectMode: true });\n Object.assign(this, { n3Store, subject, predicate, object, graph, options });\n }\n\n get filtered() {\n if (!this._filtered) {\n const { n3Store, graph, object, predicate, subject } = this;\n const newStore = this._filtered = new N3Store({ factory: n3Store._factory, entityIndex: this.options.entityIndex });\n\n let subjectId, predicateId, objectId;\n\n // Translate IRIs to internal index keys.\n if (subject && !(subjectId = newStore._termToNumericId(subject)) ||\n predicate && !(predicateId = newStore._termToNumericId(predicate)) ||\n object && !(objectId = newStore._termToNumericId(object)))\n return newStore;\n\n const graphs = n3Store._getGraphs(graph);\n for (const graphKey in graphs) {\n let subjects, predicates, objects;\n\n if (!subjectId && predicateId) {\n if (predicates = indexMatch(graphs[graphKey].predicates, [predicateId, objectId, subjectId])) {\n subjects = indexMatch(graphs[graphKey].subjects, [subjectId, predicateId, objectId]);\n objects = indexMatch(graphs[graphKey].objects, [objectId, subjectId, predicateId]);\n }\n }\n else if (objectId) {\n if (objects = indexMatch(graphs[graphKey].objects, [objectId, subjectId, predicateId])) {\n subjects = indexMatch(graphs[graphKey].subjects, [subjectId, predicateId, objectId]);\n predicates = indexMatch(graphs[graphKey].predicates, [predicateId, objectId, subjectId]);\n }\n }\n else if (subjects = indexMatch(graphs[graphKey].subjects, [subjectId, predicateId, objectId])) {\n predicates = indexMatch(graphs[graphKey].predicates, [predicateId, objectId, subjectId]);\n objects = indexMatch(graphs[graphKey].objects, [objectId, subjectId, predicateId]);\n }\n\n if (subjects)\n newStore._graphs[graphKey] = { subjects, predicates, objects };\n }\n newStore._size = null;\n }\n return this._filtered;\n }\n\n get size() {\n return this.filtered.size;\n }\n\n _read(size) {\n if (size > 0 && !this[ITERATOR])\n this[ITERATOR] = this[Symbol.iterator]();\n const iterable = this[ITERATOR];\n while (--size >= 0) {\n const { done, value } = iterable.next();\n if (done) {\n this.push(null);\n return;\n }\n this.push(value);\n }\n }\n\n addAll(quads) {\n return this.filtered.addAll(quads);\n }\n\n contains(other) {\n return this.filtered.contains(other);\n }\n\n deleteMatches(subject, predicate, object, graph) {\n return this.filtered.deleteMatches(subject, predicate, object, graph);\n }\n\n difference(other) {\n return this.filtered.difference(other);\n }\n\n equals(other) {\n return this.filtered.equals(other);\n }\n\n every(callback, subject, predicate, object, graph) {\n return this.filtered.every(callback, subject, predicate, object, graph);\n }\n\n filter(iteratee) {\n return this.filtered.filter(iteratee);\n }\n\n forEach(callback, subject, predicate, object, graph) {\n return this.filtered.forEach(callback, subject, predicate, object, graph);\n }\n\n import(stream) {\n return this.filtered.import(stream);\n }\n\n intersection(other) {\n return this.filtered.intersection(other);\n }\n\n map(iteratee) {\n return this.filtered.map(iteratee);\n }\n\n some(callback, subject, predicate, object, graph) {\n return this.filtered.some(callback, subject, predicate, object, graph);\n }\n\n toCanonical() {\n return this.filtered.toCanonical();\n }\n\n toStream() {\n return this._filtered ?\n this._filtered.toStream()\n : this.n3Store.match(this.subject, this.predicate, this.object, this.graph);\n }\n\n union(quads) {\n return this._filtered ?\n this._filtered.union(quads)\n : this.n3Store.match(this.subject, this.predicate, this.object, this.graph).addAll(quads);\n }\n\n toArray() {\n return this._filtered ? this._filtered.toArray() : this.n3Store.getQuads(this.subject, this.predicate, this.object, this.graph);\n }\n\n reduce(callback, initialValue) {\n return this.filtered.reduce(callback, initialValue);\n }\n\n toString() {\n return (new N3Writer()).quadsToString(this);\n }\n\n add(quad) {\n return this.filtered.add(quad);\n }\n\n delete(quad) {\n return this.filtered.delete(quad);\n }\n\n has(quad) {\n return this.filtered.has(quad);\n }\n\n match(subject, predicate, object, graph) {\n return new DatasetCoreAndReadableStream(this.filtered, subject, predicate, object, graph, this.options);\n }\n\n *[Symbol.iterator]() {\n yield* this._filtered || this.n3Store.readQuads(this.subject, this.predicate, this.object, this.graph);\n }\n}\n","import N3Store from './N3Store';\n\nexport default class N3DatasetCoreFactory {\n dataset(quads) {\n return new N3Store(quads);\n }\n}\n","import DF from './N3DataFactory';\n\n/**\n * Gets rules from a dataset. This will only collect horn rules declared using log:implies.\n */\nexport function getRulesFromDataset(dataset) {\n const rules = [];\n for (const { subject, object } of dataset.match(null, DF.namedNode('http://www.w3.org/2000/10/swap/log#implies'), null, DF.defaultGraph())) {\n const premise = [...dataset.match(null, null, null, subject)];\n const conclusion = [...dataset.match(null, null, null, object)];\n rules.push({ premise, conclusion });\n }\n return rules;\n}\n\nexport default class N3Reasoner {\n constructor(store) {\n this._store = store;\n }\n\n _add(subject, predicate, object, graphItem, cb) {\n // Only add to the remaining indexes if there is not already a value in the index\n if (!this._store._addToIndex(graphItem.subjects, subject, predicate, object)) return;\n this._store._addToIndex(graphItem.predicates, predicate, object, subject);\n this._store._addToIndex(graphItem.objects, object, subject, predicate);\n cb();\n }\n\n // eslint-disable-next-line no-warning-comments\n _evaluatePremise(rule, content, cb, i = 0) {\n let v1, v2, value, index1, index2;\n const [val0, val1, val2] = rule.premise[i].value, index = content[rule.premise[i].content];\n const v0 = !(value = val0.value);\n for (value in v0 ? index : { [value]: index[value] }) {\n if (index1 = index[value]) {\n if (v0) val0.value = Number(value);\n v1 = !(value = val1.value);\n for (value in v1 ? index1 : { [value]: index1[value] }) {\n if (index2 = index1[value]) {\n if (v1) val1.value = Number(value);\n v2 = !(value = val2.value);\n for (value in v2 ? index2 : { [value]: index2[value] }) {\n if (v2) val2.value = Number(value);\n\n if (i === rule.premise.length - 1)\n rule.conclusion.forEach(c => {\n // eslint-disable-next-line max-nested-callbacks\n this._add(c.subject.value, c.predicate.value, c.object.value, content, () => { cb(c); });\n });\n else\n this._evaluatePremise(rule, content, cb, i + 1);\n }\n if (v2) val2.value = null;\n }\n }\n if (v1) val1.value = null;\n }\n }\n if (v0) val0.value = null;\n }\n\n _evaluateRules(rules, content, cb) {\n for (let i = 0; i < rules.length; i++) {\n this._evaluatePremise(rules[i], content, cb);\n }\n }\n\n // A naive reasoning algorithm where rules are just applied by repeatedly applying rules\n // until no more evaluations are made\n _reasonGraphNaive(rules, content) {\n const newRules = [];\n\n function addRule(conclusion) {\n if (conclusion.next)\n conclusion.next.forEach(rule => {\n newRules.push([conclusion.subject.value, conclusion.predicate.value, conclusion.object.value, rule]);\n });\n }\n\n // eslint-disable-next-line func-style\n const addConclusions = conclusion => {\n conclusion.forEach(c => {\n // eslint-disable-next-line max-nested-callbacks\n this._add(c.subject.value, c.predicate.value, c.object.value, content, () => { addRule(c); });\n });\n };\n\n this._evaluateRules(rules, content, addRule);\n\n let r;\n while ((r = newRules.pop()) !== undefined) {\n const [subject, predicate, object, rule] = r;\n const v1 = rule.basePremise.subject.value;\n if (!v1) rule.basePremise.subject.value = subject;\n const v2 = rule.basePremise.predicate.value;\n if (!v2) rule.basePremise.predicate.value = predicate;\n const v3 = rule.basePremise.object.value;\n if (!v3) rule.basePremise.object.value = object;\n\n if (rule.premise.length === 0) {\n addConclusions(rule.conclusion);\n }\n else {\n this._evaluatePremise(rule, content, addRule);\n }\n\n if (!v1) rule.basePremise.subject.value = null;\n if (!v2) rule.basePremise.predicate.value = null;\n if (!v3) rule.basePremise.object.value = null;\n }\n }\n\n _createRule({ premise, conclusion }) {\n const varMapping = {};\n\n const toId = value => value.termType === 'Variable' ?\n // If the term is a variable, then create an empty object that values can be placed into\n (varMapping[value.value] = varMapping[value.value] || {}) :\n // If the term is not a variable, then set the ID value\n { value: this._store._termToNewNumericId(value) };\n\n // eslint-disable-next-line func-style\n const t = term => ({ subject: toId(term.subject), predicate: toId(term.predicate), object: toId(term.object) });\n\n return {\n premise: premise.map(p => t(p)),\n conclusion: conclusion.map(p => t(p)),\n variables: Object.values(varMapping),\n };\n }\n\n reason(rules) {\n if (!Array.isArray(rules)) {\n rules = getRulesFromDataset(rules);\n }\n rules = rules.map(rule => this._createRule(rule));\n\n for (const r1 of rules) {\n for (const r2 of rules) {\n for (let i = 0; i < r2.premise.length; i++) {\n const p = r2.premise[i];\n for (const c of r1.conclusion) {\n if (termEq(p.subject, c.subject) && termEq(p.predicate, c.predicate) && termEq(p.object, c.object)) {\n const set = new Set();\n\n const premise = [];\n\n // Since these *will* be substituted when we apply the rule,\n // we need to do this, so that we index correctly in the subsequent section\n p.subject.value = p.subject.value || 1;\n p.object.value = p.object.value || 1;\n p.predicate.value = p.predicate.value || 1;\n\n for (let j = 0; j < r2.premise.length; j++) {\n if (j !== i) {\n premise.push(getIndex(r2.premise[j], set));\n }\n }\n\n // eslint-disable-next-line no-warning-comments\n // TODO: Create new rule, with new indexing\n // Future, 'collapse' the next statements when they share a premise/base-premise\n (c.next = c.next || []).push({\n premise,\n conclusion: r2.conclusion,\n // This is a single premise of the form { subject, predicate, object },\n // which we can use to instantiate the rule using the new data that was emitted\n basePremise: p,\n });\n }\n r2.variables.forEach(v => { v.value = null; });\n }\n }\n }\n }\n\n for (const rule of rules) {\n const set = new Set();\n rule.premise = rule.premise.map(p => getIndex(p, set));\n }\n\n const graphs = this._store._getGraphs();\n for (const graphId in graphs) {\n this._reasonGraphNaive(rules, graphs[graphId]);\n }\n\n this._store._size = null;\n }\n}\n\nfunction getIndex({ subject, predicate, object }, set) {\n const s = subject.value || set.has(subject) || (set.add(subject), false);\n const p = predicate.value || set.has(predicate) || (set.add(predicate), false);\n const o = object.value || set.has(object) || (set.add(object), false);\n\n return (!s && p) ? { content: 'predicates', value: [predicate, object, subject] } :\n o ? { content: 'objects', value: [object, subject, predicate] } :\n { content: 'subjects', value: [subject, predicate, object] };\n}\n\nfunction termEq(t1, t2) {\n if (t1.value === null) {\n t1.value = t2.value;\n }\n return t1.value === t2.value;\n}\n","// **N3StreamWriter** serializes a quad stream into a text stream.\nimport { Transform } from 'readable-stream';\nimport N3Writer from './N3Writer';\n\n// ## Constructor\nexport default class N3StreamWriter extends Transform {\n constructor(options) {\n super({ encoding: 'utf8', writableObjectMode: true });\n\n // Set up writer with a dummy stream object\n const writer = this._writer = new N3Writer({\n write: (quad, encoding, callback) => { this.push(quad); callback && callback(); },\n end: callback => { this.push(null); callback && callback(); },\n }, options);\n\n // Implement Transform methods on top of writer\n this._transform = (quad, encoding, done) => { writer.addQuad(quad, done); };\n this._flush = done => { writer.end(done); };\n }\n\n// ### Serializes a stream of quads\n import(stream) {\n stream.on('data', quad => { this.write(quad); });\n stream.on('end', () => { this.end(); });\n stream.on('error', error => { this.emit('error', error); });\n stream.on('prefix', (prefix, iri) => { this._writer.addPrefix(prefix, iri); });\n return this;\n }\n}\n","import Lexer from './N3Lexer';\nimport Parser from './N3Parser';\nimport Writer from './N3Writer';\nimport Store, { N3EntityIndex as EntityIndex } from './N3Store';\nimport StoreFactory from './N3StoreFactory';\nimport Reasoner, { getRulesFromDataset } from './N3Reasoner';\nimport StreamParser from './N3StreamParser';\nimport StreamWriter from './N3StreamWriter';\nimport * as Util from './N3Util';\n\nimport {\n default as DataFactory,\n\n Term,\n NamedNode,\n Literal,\n BlankNode,\n Variable,\n DefaultGraph,\n Quad,\n Triple,\n\n termFromId,\n termToId,\n} from './N3DataFactory';\n\n// Named exports\nexport {\n Lexer,\n Parser,\n Writer,\n Store,\n StoreFactory,\n EntityIndex,\n StreamParser,\n StreamWriter,\n Util,\n Reasoner,\n\n DataFactory,\n\n Term,\n NamedNode,\n Literal,\n BlankNode,\n Variable,\n DefaultGraph,\n Quad,\n Triple,\n\n termFromId,\n termToId,\n getRulesFromDataset,\n};\n\n// Export all named exports as a default object for backward compatibility\nexport default {\n Lexer,\n Parser,\n Writer,\n Store,\n StoreFactory,\n EntityIndex,\n StreamParser,\n StreamWriter,\n Util,\n Reasoner,\n\n DataFactory,\n\n Term,\n NamedNode,\n Literal,\n BlankNode,\n Variable,\n DefaultGraph,\n Quad,\n Triple,\n\n termFromId,\n termToId,\n};\n","const { finished, Readable } = require('readable-stream')\n\nfunction nextLoop () {\n return new Promise(resolve => setTimeout(resolve, 0))\n}\n\nclass ReadableToReadable extends Readable {\n constructor (input, { end = true, map, ...args } = {}) {\n super({\n read: ReadableToReadable.readFrom(input, { end, map }),\n ...args\n })\n }\n\n static readFrom (input, { end = true, map = v => v } = {}) {\n let done = false\n\n finished(input, () => {\n done = true\n })\n\n const read = async function () {\n while (true) {\n const chunk = input.read()\n\n if (!chunk) {\n if (done && end) {\n this.push(null)\n }\n\n if (done) {\n return true\n }\n\n await nextLoop()\n } else {\n if (!this.push(map(chunk))) {\n return false\n }\n }\n }\n }\n\n return read\n }\n}\n\nmodule.exports = ReadableToReadable\n"],"names":["ParserStream","Sink","Parser","constructor","options","super","module","exports","N3","rdf","finished","ReadableToReadable","input","baseIRI","factory","parser","StreamParser","objectMode","on","prefix","term","this","emit","err","destroy","end","pipe","DataFactory","BlankNode","id","value","nextId","equals","other","termType","prototype","DefaultGraph","fromTermRaw","Literal","NamedNode","Quad","Variable","namedNode","blankNode","literal","languageOrDatatype","indexOf","variable","defaultGraph","defaultGraphInstance","triple","subject","predicate","object","quad","graph","fromTerm","original","call","fromQuad","language","datatype","stringDatatype","langStringDatatype","iri","name","Error","Impl","import","output","Object","assign","readable","isNamedNode","isBlankNode","isLiteral","isVariable","isDefaultGraph","inDefaultGraph","prefixes","defaultPrefixes","create","processPrefix","cache","local","N3DataFactory","DEFAULTGRAPH","xsd","escapeAll","escapedCharacters","SerializedTerm","N3Writer","outputStream","_prefixRegex","write","_lists","lists","_outputStream","_endStream","undefined","chunk","encoding","done","_subject","test","format","_lineMode","_writeQuad","_writeQuadLine","_graph","_prefixIRIs","addPrefixes","_baseMatcher","RegExp","escapeRegex","endsWith","_baseLength","length","_inDefaultGraph","_write","string","callback","_encodeIriOrBlank","_predicate","_encodeObject","_encodePredicate","_encodeSubject","error","_prefixMatch","quadToString","quadsToString","quads","quadsString","entity","_encodeQuad","list","substr","replace","characterReplacer","prefixMatch","exec","_encodeLiteral","boolean","integer","decimal","double","type","_blockedWrite","addQuad","addQuads","i","addPrefix","hasPrefixes","IRIlist","prefixList","prefixIRI","blank","child","children","contents","elements","Array","join","singleDone","result","character","charCodeAt","toString","regex","ITERATOR","Symbol","merge","target","source","depth","key","intersect","s1","s2","intersection","difference","diff","N3EntityIndex","_id","_ids","_entities","_blankNodeIndex","_factory","_termFromId","entities","terms","split","q","_termToNumericId","s","p","o","g","_termToNewNumericId","str","createBlankNode","suggestedName","index","N3Store","_size","_graphs","_entityIndex","entityIndex","bind","size","graphs","subjects","graphKey","subjectKey","predicateKey","keys","_addToIndex","index0","key0","key1","key2","index1","index2","existed","_removeFromIndex","_findInIndex","name0","name1","name2","graphId","tmp","entityKeys","parts","value0","value1","values","l","_loop","_loopByKey0","_loopByKey1","_loopBy2Keys","_countInIndex","count","_getGraphs","_uniqueEntities","uniqueIds","add","graphItem","predicates","objects","freeze","removeQuad","has","subjectOrQuad","readQuads","next","stream","removeQuads","remove","removeMatches","Readable","iterable","_read","push","deleteGraph","getQuads","content","subjectId","predicateId","objectId","match","DatasetCoreAndReadableStream","countQuads","forEach","some","every","getSubjects","results","forSubjects","getPredicates","forPredicates","getObjects","forObjects","getGraphs","forGraphs","extractLists","ignoreErrors","onError","node","message","tails","rest","nil","toRemove","tailQuad","items","head","headPos","malformed","current","objectQuads","subjectQuads","first","parent","unshift","addAll","filtered","isArray","contains","g1","g2","p1","p2","o1","deleteMatches","store","filter","iteratee","map","reduce","initialValue","iter","accumulator","toArray","toCanonical","toStream","union","iterator","indexMatch","ids","ind","n3Store","_filtered","newStore","delete","N3DatasetCoreFactory","dataset","getRulesFromDataset","rules","premise","conclusion","N3Reasoner","_store","_add","cb","_evaluatePremise","rule","v1","v2","val0","val1","val2","v0","Number","c","_evaluateRules","_reasonGraphNaive","newRules","addRule","addConclusions","r","pop","basePremise","v3","_createRule","varMapping","toId","t","variables","reason","r1","r2","termEq","set","Set","j","getIndex","v","t1","t2","N3StreamWriter","Transform","writableObjectMode","writer","_writer","_transform","_flush","Lexer","Writer","Store","StoreFactory","EntityIndex","StreamWriter","Util","Reasoner","Term","Triple","termFromId","termToId","nextLoop","Promise","resolve","setTimeout","args","read","readFrom","async"],"sourceRoot":""} \ No newline at end of file diff --git a/dist/js/236.207c840f.js b/dist/js/236.207c840f.js new file mode 100644 index 0000000..5d0950c --- /dev/null +++ b/dist/js/236.207c840f.js @@ -0,0 +1,2 @@ +(self["webpackChunkmobilitydcatap_ui"]=self["webpackChunkmobilitydcatap_ui"]||[]).push([[236],{21236:function(t,e,s){if("function"!==typeof queueMicrotask){let t=Promise.resolve();try{queueMicrotask=e=>t.then(e).catch((t=>setTimeout((()=>{throw t}),0)))}catch(O){}}const i=s(41476),r=s(76063),n=/^[a-z][a-z0-9+\-.]*:(?:[^\0-\x20<>"{}|^`\\]|\\u[A-Fa-f0-9]{4}|\\U[A-Fa-f0-9]{8})*$/,a=/^[a-z][a-z0-9+\-.]*:[^\0-\x20<>"{}|^`]*$/,o=/^([^\0-\x20<>"{}|^`\\]|\\u[A-Fa-f0-9]{4}|\\U[A-Fa-f0-9]{8})*$/,l=/^([^\0-\x20<>"{}|^`])*$/,h=/\\u([0-9A-Fa-f]{4})|\\U([0-9A-Fa-f]{8})/g,_=(t,e,s)=>String.fromCodePoint(parseInt(e||s,16)),c=/\s*(?:#[^\n]*\n\s*)*\s*/y,u=/\s*(#[^\n]*\n\s*)*\s*/y,d=/[\\]/,f=/[^\n]+\n/y,p=/^(?:[A-Za-z\xc0-\xd6\xd8-\xf6\xf8-\u{02ff}\u{0370}-\u{037d}\u{037f}-\u{1fff}\u{200c}-\u{200d}\u{2070}-\u{218f}\u{2c00}-\u{2fef}\u{3001}-\u{d7ff}\u{f900}-\u{fdcf}\u{fdf0}-\u{fffd}\u{10000}-\u{effff}_0-9])(?:(?:[A-Za-z\xc0-\xd6\xd8-\xf6\xf8-\u{02ff}\u{0370}-\u{037d}\u{037f}-\u{1fff}\u{200c}-\u{200d}\u{2070}-\u{218f}\u{2c00}-\u{2fef}\u{3001}-\u{d7ff}\u{f900}-\u{fdcf}\u{fdf0}-\u{fffd}\u{10000}-\u{effff}_\-0-9\xb7\u{0300}-\u{036f}\u{203f}-\u{2040}.])*[A-Za-z\xc0-\xd6\xd8-\xf6\xf8-\u{02ff}\u{0370}-\u{037d}\u{037f}-\u{1fff}\u{200c}-\u{200d}\u{2070}-\u{218f}\u{2c00}-\u{2fef}\u{3001}-\u{d7ff}\u{f900}-\u{fdcf}\u{fdf0}-\u{fffd}\u{10000}-\u{effff}_\-0-9\xb7\u{0300}-\u{036f}\u{203f}-\u{2040}])?$/u,m=/^[a-z]+(-[a-z0-9]+)*$/,g=/[ \t]*/y,x=/@([A-Za-z]+(?:-[A-Za-z0-9-]+)*)(?:\s+|(?=[.,;\])#]))/y,b=/<([^>]*)>\s*/y,w=(t,e,s,i,r,n)=>{if(e)switch(e){case"t":return"\t";case"n":return"\n";case"r":return"\r";case"f":return"\f";case"b":return"\b";default:console.assert(`bad regex escape char mapping: '${e}'`)}else{if(s)return s;if(i)return String.fromCodePoint(parseInt(i,16));if(r)return String.fromCodePoint(parseInt(r,16));if(n)throw"\\"===n[0]?new Error(`expected string_literal but invalid escape sequence within contents: '${n}'. failed to parse a valid token`):new Error(`expected string_literal but invalid whitespace character within contents: ${JSON.stringify(n)}. failed to parse a valid token`);console.assert("unexpected no match branch in escape sequence replace callback")}},y=/(?:\\(?:([tnrfb])|([\\"'])|u([0-9A-Fa-f]{4})|U([0-9A-Fa-f]{8}))|([\r\n]|\\.))/g,k=/(?:\\(?:([tnrfb])|([\\"'])|u([0-9A-Fa-f]{4})|U([0-9A-Fa-f]{8}))|([\r\n]|\\[^uU]|\\u[^]{4}|\\U[^]{8}))/g,j=t=>t.replace(y,w),I=t=>{let e=v.exec(t);if(e){let s=e.index;return[t.slice(0,s).replace(k,w),t.slice(s)]}return[t.replace(k,w),""]},[v,E]=(()=>{function t(t){let e=RegExp.prototype.exec.call(this,t);if(e){let t=e[0].length-e[1].length;e.index+=t,e[0]=e[0].slice(t)}return e}let e=(()=>{try{new RegExp("(?(e.exec=s,e)}return t=>t()})();return[e((()=>new RegExp("(?new RegExp('(?]*)>|_:([^\x20\t<]+))[\x20\t]*<([^\\>]*)>[\x20\t]*(?:(?:(<[^\\>]*)>|_:([^\x20\t<]+))[\x20\t]*(?:<([^\\>]*)>|_:([^\x20\t<]+)|)[\x20\t]*\.\s*(#[^\n]*\n\s*|\n\s*)+|"([^"\\]*)(?:(")(?:\^\^<([^\\>]*)>|@([^\x20\t.]+)|)[\x20\t]*(?:<([^\\>]*)>|_:([^\x20\t<]+)|)[\x20\t]*\.\s*(#[^\n]*\n\s*|\n\s*)+)?)/y,$=/(?:<([^>]*)>|_:([^\x20\t<]+))[\x20\t]*<([^>]*)>[\x20\t]*(?:(?:(<[^>]*)>|_:([^\x20\t<]+))[\x20\t]*(?:<([^>]*)>|_:([^\x20\t<]+)|)[\x20\t]*\.\s*(#[^\n]*\n\s*|\n\s*)+|"((?:[^"\\]|\\.)*)(?:(")(?:\^\^<([^>]*)>|@([^\x20\t.]+)|)[\x20\t]*(?:<([^>]*)>|_:([^\x20\t<]+)|)[\x20\t]*\.\s*(#[^\n]*\n\s*|\n\s*)+)?)/y,A=/_:([^\x20\t<]+)/y;class q extends i.Transform{constructor(t){super({decodeStrings:!1,writableObjectMode:!1,readableObjectMode:!0,flush:t.flush,transform:t.transform}),this.on("pipe",(t=>{this._ds_input=t,"function"===typeof t.setEncoding&&t.setEncoding("utf8")}))}pipe(t){let e=t;return e._writableState.objectMode?t.isGraphyWritable&&(t=i.quads_to_writable()):t=i.quads_to_json(),t!==e?(super.pipe(t),t.pipe(e)):super.pipe(e)}}class F{constructor(t){let{input:e=null,relax:s=!1,debug:i=!1}=t,h=t.allow_relative_iris||t.allowRelativeIRIs||t.allowRelativeIris||!1,_=this._dc_factory=r.adopt(t.dataFactory||t.data_factory||r.unfiltered),d=this._f_quad=_.quad;Object.assign(this,{s:t.prepend||"",n:0,_b_debug:i,_b_relax:s,_b_destroyed:!1,_b_trim_start:!0,_f_state:this.statement,_kt_subject:null,_kt_predicate:null,_kt_object:null,_s_literal:""}),this._kt_default_graph=_.defaultGraph(),this._kt_rdfs_lang_string=_.namedNode("http://www.w3.org/1999/02/22-rdf-syntax-ns#langString");let f=this._r_clean=c;t.relaxed&&console.warn(new Error("no such option 'relaxed'; did you mean 'relax' ?").stack.replace(/^Error:/,"Warning:")),"validate"in t&&console.warn(new Error("option 'validate' has been removed and validation is now on by default. Use 'relax' option if you wish to disable validation.").stack.replace(/^Error:/,"Warning:"));let g,x=_.namedNode,b=_.blankNode,w=_.languagedLiteral,y=h?o:n,k=h?l:a,j=this;Object.assign(this,s?{create_named_node:x,create_named_node_escapeless:x,create_blank_node:b,create_languaged_literal:w}:{create_named_node(t){return y.test(t)?x(t):j._error(`invalid IRI: "${t}"`)},create_named_node_escapeless(t){return k.test(t)?x(t):j._error(`invalid IRI: "${t}"`)},create_blank_node(t){return p.test(t)?b(t):j._error(`Invalid blank node label: "${t}"`)},create_languaged_literal(t,e){return m.test(e)?w(t,e):j._error(`Invalid literal language tag: ${e}`)}});let I=!1;if(g=this.transform=new q({transform:(t,e,s)=>{I||(g.emit("ready"),I=!1);let i=this.s+=t;if(this._b_trim_start){f.lastIndex=0;let t=f.exec(i);this.emit_comments&&this.emit_comments(t[1]),this.i=f.lastIndex}else this.i=0;this.n=i.length;try{this.parse(!0)}catch(r){return g.destroy(r)}g.emit("progress",t.length),s()},flush:t=>{if(this.s.length){if(this.s+="\n",this._b_trim_start){f.lastIndex=0;let t=f.exec(this.s);this.emit_comments&&this.emit_comments(t[1]),this.i=f.lastIndex}else this.i=0;try{this.parse()}catch(e){return g.demolish(e)}if(this.s.length)return g.demolish(new Error(`parsing error occurred in state: statement\n ${this.s.substr(0,50)}\n ^ starting here`))}if(this._f_state!==this.statement)return g.demolish(new Error(`parsing error occurred in state: ${this._f_state.name}\n ${this.s.substr(0,50)}\n ^ starting here`));this.s=null,g.emit("progress",0),g.emit("eof"),t()}}),g._destroy=(...t)=>{this.destroy(...t)},this._f_data_quad=(t,e,s,i)=>g.push(d(t,e,s,i)),g.on("newListener",(t=>{"comment"===t&&(f=u,this.emit_comments=t=>{if(!t)return;let e=t.slice(1).replace(/\n\s+$/,"").split(/\n+\s*#/g);for(let s of e)g.emit("comment",s)})})),this.bind(t),e)if(e.stream){let t=e.stream;queueMicrotask((()=>{t.pipe(g)}))}else{if("string"!==typeof e.string)throw new TypeError(`Invalid argument for input parameter: ${"object"===typeof e?JSON.stringify(e):e}`);{let t=e.string;queueMicrotask((()=>{g.end(t,"utf8")}))}}g._graphy_reader=this}_error(t){throw this._b_destroyed=!0,new Error(t)}bind(t){let e=this.transform;t.error&&e.on("error",t.error),t.comment&&e.on("comment",t.comment),t.read&&e.once("read",t.read),t.progress&&e.on("progress",t.progress),t.eof&&e.once("eof",t.eof),t.end&&e.once("end",t.end),t.finish&&e.once("finish",t.finish),t.data&&e.on("data",t.data)}parse(){let t=this._f_state();while("function"===typeof t)t=t.apply(this)}statement(){let t=this.s,e=(this.n,this.i),s=this._f_data_quad,i=this.create_named_node,r=this.create_named_node_escapeless,n=this.create_languaged_literal,a=this.create_blank_node,o=this._dc_factory.simpleLiteral,l=this._dc_factory.datatypedLiteral,c=this._kt_default_graph;for(;;){S.lastIndex=e;let u=S.exec(t);if(u){let i;e=S.lastIndex;let h=!1;if(u[4]){let t=u[4].slice(1);i=r(t)}else if(u[5])i=a(u[5]);else{h=!0;let s=u[9];if(!u[10]){this._s_literal=s,this.i=e;{let t=u[1];this._kt_subject=t||"string"===typeof t?r(t):a(u[2])}this._kt_predicate=r(u[3]);let i=this.strlit_contents();if(i&&this.statement!==i)return i;{let s=this._r_clean;s.lastIndex=this.i;let i=s.exec(t);this.emit_comments&&this.emit_comments(i[1]),e=s.lastIndex;continue}}if(u[11]){let t=this.create_named_node_escapeless(u[11]);i=l(s,t)}else if(u[12]){let t=u[12].toLowerCase();i=n(s,t)}else i=o(s)}let _,d=c;if(h){let t=u[13];t||"string"===typeof t?d=r(t):u[14]&&(d=a(u[14]))}else{let t=u[6];t||"string"===typeof t?d=r(t):u[7]&&(d=a(u[7]))}{let t=u[1];_=t||"string"===typeof t?r(t):a(u[2])}let f=u[3];s(_,r(f),i,d),this.emit_comments&&this.emit_comments(u[8]||u[15])}else{$.lastIndex=e;let r=$.exec(t);if(r){let u;e=$.lastIndex;let f=!1;if(r[4]){let t=r[4].slice(1);u=i(d.test(t)?t.replace(h,_):t)}else if(r[5])u=a(d.test(r[5])?r[5].replace(h,_):r[5]);else{f=!0;let s=r[9];if(!r[10]){this._s_literal=s,this.i=e;{let t=r[1];this._kt_subject=t||"string"===typeof t?i(d.test(t)?t.replace(h,_):t):a(r[2])}this._kt_predicate=i(d.test(r[3])?r[3].replace(h,_):r[3]);let n=this.strlit_contents();if(n&&this.statement!==n)return n;{let s=this._r_clean;s.lastIndex=this.i;let i=s.exec(t);this.emit_comments&&this.emit_comments(i[1]),e=s.lastIndex;continue}}if(s=j(s),r[11]){let t=this.create_named_node(r[11]);u=l(s,t)}else if(r[12]){let t=r[12].toLowerCase();u=n(s,t)}else u=o(s)}let p,m=c;if(f){let t=r[13];t||"string"===typeof t?m=i(d.test(t)?t.replace(h,_):t):r[14]&&(m=a(r[14]))}else{let t=r[6];t||"string"===typeof t?m=i(d.test(t)?t.replace(h,_):t):r[7]&&(m=a(r[7]))}{let t=r[1];p=t||"string"===typeof t?i(d.test(t)?t.replace(h,_):t):a(r[2])}let g=r[3];s(p,i(d.test(g)?g.replace(h,_):g),u,m),this.emit_comments&&this.emit_comments(r[8]||r[15])}else{if(f.lastIndex=e,!f.exec(t))break;e=f.lastIndex,this._error(`Failed to read statement:\n\`${t.substr(e,80).replace(/\n/g,"⏎")} [...]\`\n ^ starting here`)}}}return this.s=t.substr(e),this._f_state=this.statement,1}strlit_contents(){let{s:t,n:e,i:s}=this;E.lastIndex=s;let i=E.exec(t);if(i){let e=i.index,r=t.slice(s,e);return this._s_literal+=j(r),this.i=e+i[0].length,this._b_trim_start=!0,this.datatype_or_langtag()||this.statement}{let i=t.slice(s),[r,n]=I(i);this._s_literal+=r,this.i=s=e-n.length,this._b_trim_start=!1}return sthis.max_token_length?this.parse_error("strlit_contents"):(this._f_state=this.strlit_contents,this.s=t.slice(s),this.eos&&this.eos(),1)}datatype_or_langtag(){let{s:t,n:e,i:s}=this,i=t[s];while(sthis.max_token_length?this.parse_error("datatype_or_langtag"):(this._f_state=this.datatype_or_langtag,this.s=t.slice(s),this.eos&&this.eos(),1)}statement_term(){let{s:t,n:e,i:s}=this,i=t.indexOf(".",s);return i>-1?(this._b_trim_start=!0,this.i=i+1,this.statement):(/^\s*$/.test(t.slice(s))||this.parse_error("statement_term"),this._b_trim_start=!1,this._f_state=this.statement_term,this.s=t.slice(s),this.eos&&this.eos(),1)}post_object(){let{s:t,n:e,i:s}=this;if(g.lastIndex=s,g.exec(t),s=g.lastIndex,s>=e)return this._f_state=this.post_object,this.s=t.slice(s),this.eos&&this.eos(),1;switch(t[s]){case".":return this.i=s+1,this._f_data_quad(this._kt_subject,this._kt_predicate,this._kt_object,this._kt_default_graph),this.statement;case"<":case"_":return this.i=s,this.graph();default:this.i=s,this.parse_error("post_object")}}graph(){let{s:t,n:e,i:s}=this;b.lastIndex=s;let i=b.exec(t);if(i){this.i=b.lastIndex;let t=this.create_named_node(i[1]);return this._f_data_quad(this._kt_subject,this._kt_predicate,this._kt_object,t),this.statement_term()}{A.lastIndex=s;let e=A.exec(t);if(e){this.i=A.lastIndex;let t=this._dc_factory.blankNode(e[1]);return this._f_data_quad(this._kt_subject,this._kt_predicate,this._kt_object,t),this.statement_term()}}return this._f_state=this.graph,this.s=t.slice(s),this.eos&&this.eos(),1}parse_error(t){return this._error(`Failed to read ${t}:\n\`${this.s.substr(this.i,80).replace(/\n/g,"⏎")} [...]\`\n ^ starting here`)}destroy(t){this._f_data_quad=()=>{},!t&&this._ds_input&&this._ds_input.destroy(t),this.transform.demolish(t)}}t.exports=function(...t){let e={};if(t.length){let s=t[0];if(s&&s.input&&"undefined"===typeof s.input.string&&!s.input.stream&&(s=s.input),"string"===typeof s)e.input={string:s};else if(null===s)e.input=null;else if("function"===typeof s.setEncoding)e.input={stream:s};else{if("function"===typeof s.pipeTo)throw new TypeError("Sorry, WHATWG streams are currently not supported :(");if(!s||"object"!==typeof s||"[object Object]"!==Object.prototype.toString.call(s))throw new TypeError(`unexpected input type: ${s}`);if(e=s,t.length>1)throw new TypeError(`unexpected argument(s) after config struct: ${t.slice(1)}`)}if(t.length>1&&(Object.assign(e,t[1]),t.length>2))throw new TypeError(`unexpected argument(s) after input and config struct: ${t.slice(2)}`)}return new F(e).transform}},41476:function(t,e,s){var i=s(48287)["Buffer"],r=s(65606);const n=s(28399);class a extends n.Readable{constructor(t={}){if(super(t),t.iterator)throw new Error("readable stream iterator shortcut not yet implemented")}until(t,e){return new Promise(((s,i)=>{this.on("error",(t=>{i(t)})),e?this.once(t,((...t)=>{s(this,...t)})):this.once(t,s)}))}bucket(t="utf8"){let e=this._readableState;return e.objectMode?new Promise(((t,e)=>{let s=[];this.pipe(new n.Writable({write(t,e,i){s.push(t),i()},writev(t,e){s.push(...t),e()}})).on("error",(t=>{e(t)})).on("finish",(()=>{t(s)}))})):"utf8"===t||"utf-8"===t?new Promise(((e,s)=>{let i="";this.setEncoding(t),this.pipe(new n.Writable({decodeStrings:!1,write(t,e,s){i+=t,s()},writev(t,e){i+=t.join(""),e()}})).on("error",(t=>{s(t)})).on("finish",(()=>{e(i)}))})):"buffer"===t?new Promise(((t,e)=>{let s=i.from([]);this.pipe(new n.Writable({decodeStrings:!0,write(t,e,r){s=i.concat([s,t],s.length+t.length),r()}})).on("error",(t=>{e(t)})).on("finish",(()=>{t(s)}))})):void 0}}class o extends n.Writable{until(t,e){return new Promise(((s,i)=>{this.on("error",(t=>{i(t)})),e?this.once(t,((...t)=>{s(this,...t)})):this.once(t,s)}))}import(t){return t.on("data",(t=>this.write(t))).on("end",(()=>this.end())).on("error",(t=>this.emit("error",t))),this}}class l extends n.Duplex{until(t,e){return new Promise(((s,i)=>{this.on("error",(t=>{i(t)})),e?this.once(t,((...t)=>{s(this,...t)})):this.once(t,s)}))}bucket(t="utf8"){let e=this._readableState;return e.objectMode?new Promise(((t,e)=>{let s=[];this.pipe(new n.Writable({write(t,e,i){s.push(t),i()},writev(t,e){s.push(...t),e()}})).on("error",(t=>{e(t)})).on("finish",(()=>{t(s)}))})):"utf8"===t||"utf-8"===t?new Promise(((e,s)=>{let i="";this.setEncoding(t),this.pipe(new n.Writable({decodeStrings:!1,write(t,e,s){i+=t,s()},writev(t,e){i+=t.join(""),e()}})).on("error",(t=>{s(t)})).on("finish",(()=>{e(i)}))})):"buffer"===t?new Promise(((t,e)=>{let s=i.from([]);this.pipe(new n.Writable({decodeStrings:!0,write(t,e,r){s=i.concat([s,t],s.length+t.length),r()}})).on("error",(t=>{e(t)})).on("finish",(()=>{t(s)}))})):void 0}}class h extends n.Transform{until(t,e){return new Promise(((s,i)=>{this.on("error",(t=>{i(t)})),e?this.once(t,((...t)=>{s(this,...t)})):this.once(t,s)}))}bucket(t="utf8"){let e=this._readableState;return e.objectMode?new Promise(((t,e)=>{let s=[];this.pipe(new n.Writable({write(t,e,i){s.push(t),i()},writev(t,e){s.push(...t),e()}})).on("error",(t=>{e(t)})).on("finish",(()=>{t(s)}))})):"utf8"===t||"utf-8"===t?new Promise(((e,s)=>{let i="";this.setEncoding(t),this.pipe(new n.Writable({decodeStrings:!1,write(t,e,s){i+=t,s()},writev(t,e){i+=t.join(""),e()}})).on("error",(t=>{s(t)})).on("finish",(()=>{e(i)}))})):"buffer"===t?new Promise(((t,e)=>{let s=i.from([]);this.pipe(new n.Writable({decodeStrings:!0,write(t,e,r){s=i.concat([s,t],s.length+t.length),r()}})).on("error",(t=>{e(t)})).on("finish",(()=>{t(s)}))})):void 0}import(t){return t.on("data",(t=>this.write(t))).on("end",(()=>this.end())).on("error",(t=>this.emit("error",t))),this}demolish(t){if(this.push=t=>{if(null!==t)throw new Error("[ERR_STREAM_DESTROYED]: Cannot push after stream was destroyed")},this.emit=function(t,...e){"end"!==t&&Object.getPrototypeOf(this).emit.apply(this,[t,...e])},t)return n.Transform.prototype.destroy.call(this,t)}}const _=new Function("try {return this===global;}catch(e){return false;}")(),[c,u]=(()=>"undefined"===typeof r?[!0,!1]:r.browser?[!0,!0]:"undefined"===r.versions||"undefined"===r.versions.node?[!0,!1]:[!1,!1])();(u||_&&+/^v(\d+)/.exec(r.version)[1]<10)&&(h.prototype.destroy=l.prototype.destroy=function(t,e){this._readableState.destroyed=!0,this._writableState.destroyed=!0;let s=()=>{this._writableState.emitClose&&this._readableState.emitClose&&this.emit("close")};return this._destroy(t||null,(t=>{!e&&t?(r.nextTick((()=>{this.emit("error",t),s()})),this._writableState.errorEmitted=!0):(r.nextTick(s),e&&e(t))})),this},h.prototype._destroy=l.prototype._destroy=(t,e)=>e(t));class d extends h{constructor(t={}){super({...t,writableObjectMode:!0,readableObjectMode:!0}),this._as_inputs=new Set,this.on("pipe",(t=>{this._as_inputs.add(t),t.on("prefix",((...t)=>{this.emit("prefix",...t)})).on("comment",((...t)=>{this.emit("comment",...t)}))})),this.on("unpipe",(t=>{this._as_inputs.delete(t)}))}_destroy(){for(let t of this._as_inputs)t.destroy()}}class f extends d{_transform(t,e,s){s(null,JSON.stringify(t.isolate())+"\n")}}class p extends d{_transform(t,e,s){s(null,{type:"quad",value:t})}}h.QuadsToOther=d,t.exports={...n,Readable:a,Writable:o,Duplex:l,Transform:h,QuadsToOther:d,quads_to_json(){return new f},quads_to_writable(){return new p},source(t,e=null){return e||"string"!==typeof t||(e="utf8"),new a({objectMode:!e&&"string"!==typeof t&&!i.isBuffer(t),read(){this.push(t,e),this.push(null)}})}}}}]); +//# sourceMappingURL=236.207c840f.js.map \ No newline at end of file diff --git a/dist/js/236.207c840f.js.map b/dist/js/236.207c840f.js.map new file mode 100644 index 0000000..918232c --- /dev/null +++ b/dist/js/236.207c840f.js.map @@ -0,0 +1 @@ +{"version":3,"file":"js/236.207c840f.js","mappings":"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","sources":["webpack://mobilitydcatap-ui/./node_modules/@graphy/content.nq.read/main.js","webpack://mobilitydcatap-ui/./node_modules/@graphy/core.iso.stream/main.js"],"sourcesContent":["\n\n\n// queueMicrotask shim\n{\n\t// not defined or not a function\n\tif('function' !== typeof queueMicrotask) {\n\t\t// create resolved promise\n\t\tlet dp_resolve = Promise.resolve();\n\n\t\t// try to redefine\n\t\ttry {\n\t\t\t// eslint-disable-next-line no-global-assign\n\t\t\tqueueMicrotask = fk => dp_resolve.then(fk)\n\t\t\t\t.catch(e_callback => setTimeout(() => {\n\t\t\t\t\tthrow e_callback;\n\t\t\t\t}, 0));\n\t\t}\n\t\t// oh well, at least we tried\n\t\tcatch(e_define) {}\n\t}\n}\n\n\n\nconst stream = require('@graphy/core.iso.stream');\nconst factory = require('@graphy/core.data.factory');\n\nconst RT_ABSOLUTE_IRI_VALID = /^[a-z][a-z0-9+\\-.]*:(?:[^\\0-\\x20<>\"{}|^`\\\\]|\\\\u[A-Fa-f0-9]{4}|\\\\U[A-Fa-f0-9]{8})*$/;\nconst RT_ABSOLUTE_IRI_ESCAPELESS_VALID = /^[a-z][a-z0-9+\\-.]*:[^\\0-\\x20<>\"{}|^`]*$/;\nconst RT_NAMED_NODE_VALID = /^([^\\0-\\x20<>\"{}|^`\\\\]|\\\\u[A-Fa-f0-9]{4}|\\\\U[A-Fa-f0-9]{8})*$/;\nconst RT_NAMED_NODE_ESCAPELESS_VALID = /^([^\\0-\\x20<>\"{}|^`])*$/;\n\nconst R_UNICODE_ANY = /\\\\u([0-9A-Fa-f]{4})|\\\\U([0-9A-Fa-f]{8})/g;\n\nconst F_REPLACE_UNICODE_ANY = \t(s_, s_4, s_8) => String.fromCodePoint(parseInt(s_4 || s_8, 16));\n\n\nconst R_CLEAN = /\\s*(?:#[^\\n]*\\n\\s*)*\\s*/y;\nconst R_CLEAN_COMMENTS = /\\s*(#[^\\n]*\\n\\s*)*\\s*/y;\nconst RT_HAS_ESCAPES = /[\\\\]/;\nconst R_EOL = /[^\\n]+\\n/y;\n\n// eslint-disable-next-line no-misleading-character-class\nconst RT_BLANK_NODE_LABEL_VALID = /^(?:[A-Za-z\\xc0-\\xd6\\xd8-\\xf6\\xf8-\\u{02ff}\\u{0370}-\\u{037d}\\u{037f}-\\u{1fff}\\u{200c}-\\u{200d}\\u{2070}-\\u{218f}\\u{2c00}-\\u{2fef}\\u{3001}-\\u{d7ff}\\u{f900}-\\u{fdcf}\\u{fdf0}-\\u{fffd}\\u{10000}-\\u{effff}_0-9])(?:(?:[A-Za-z\\xc0-\\xd6\\xd8-\\xf6\\xf8-\\u{02ff}\\u{0370}-\\u{037d}\\u{037f}-\\u{1fff}\\u{200c}-\\u{200d}\\u{2070}-\\u{218f}\\u{2c00}-\\u{2fef}\\u{3001}-\\u{d7ff}\\u{f900}-\\u{fdcf}\\u{fdf0}-\\u{fffd}\\u{10000}-\\u{effff}_\\-0-9\\xb7\\u{0300}-\\u{036f}\\u{203f}-\\u{2040}.])*[A-Za-z\\xc0-\\xd6\\xd8-\\xf6\\xf8-\\u{02ff}\\u{0370}-\\u{037d}\\u{037f}-\\u{1fff}\\u{200c}-\\u{200d}\\u{2070}-\\u{218f}\\u{2c00}-\\u{2fef}\\u{3001}-\\u{d7ff}\\u{f900}-\\u{fdcf}\\u{fdf0}-\\u{fffd}\\u{10000}-\\u{effff}_\\-0-9\\xb7\\u{0300}-\\u{036f}\\u{203f}-\\u{2040}])?$/u;\nconst RT_LANGUAGE_VALID = /^[a-z]+(-[a-z0-9]+)*$/;\n\nconst R_WS = /\\s*/y;\nconst R_HWS = /[ \\t]*/y;\nconst R_LANGTAG = /@([A-Za-z]+(?:-[A-Za-z0-9-]+)*)(?:\\s+|(?=[.,;\\])#]))/y;\n\nconst R_IRIREF = /<([^>]*)>\\s*/y;\n\n\n\nconst F_REPLACE_STRLIT_CONTENTS = (s_, s_whitespace, s_auto, s_4, s_8, s_invalid) => {\n\tif(s_whitespace) {\n\t\tswitch(s_whitespace) {\n\t\t\tcase 't': return '\\t';\n\t\t\tcase 'n': return '\\n';\n\t\t\tcase 'r': return '\\r';\n\t\t\tcase 'f': return '\\f';\n\t\t\tcase 'b': return '\\b';\n\t\t\tdefault: {\n\t\t\t\tconsole.assert(`bad regex escape char mapping: '${s_whitespace}'`);\n\t\t\t}\n\t\t}\n\t}\n\telse if(s_auto) {\n\t\treturn s_auto;\n\t}\n\telse if(s_4) {\n\t\treturn String.fromCodePoint(parseInt(s_4, 16));\n\t}\n\telse if(s_8) {\n\t\treturn String.fromCodePoint(parseInt(s_8, 16));\n\t}\n\telse if(s_invalid) {\n\t\t// pointless escape\n\t\tif('\\\\' === s_invalid[0]) {\n\t\t\t\t// // relaxed\n\t\t\t\t// return s_invalid[1];\n\t\t\t// if relaxed then return s_invalid, otherwise throw:\n\t\t\tthrow new Error(`expected string_literal but invalid escape sequence within contents: '${s_invalid}'. failed to parse a valid token`);\n\t\t}\n\t\t// bad character\n\t\telse {\n\t\t\tthrow new Error(`expected string_literal but invalid whitespace character within contents: ${JSON.stringify(s_invalid)}. failed to parse a valid token`);\n\t\t}\n\t}\n\telse {\n\t\tconsole.assert(`unexpected no match branch in escape sequence replace callback`);\n\t}\n};\n\n\nconst R_STRLIT_SHORT_CONTENTS_ESCAPES_HARD = /(?:\\\\(?:([tnrfb])|([\\\\\"'])|u([0-9A-Fa-f]{4})|U([0-9A-Fa-f]{8}))|([\\r\\n]|\\\\.))/g;\nconst R_STRLIT_SHORT_CONTENTS_ESCAPES_SOFT = /(?:\\\\(?:([tnrfb])|([\\\\\"'])|u([0-9A-Fa-f]{4})|U([0-9A-Fa-f]{8}))|([\\r\\n]|\\\\[^uU]|\\\\u[^]{4}|\\\\U[^]{8}))/g;\n\nconst unescape_literal_short_hard = s_literal => s_literal\n\t.replace(R_STRLIT_SHORT_CONTENTS_ESCAPES_HARD, F_REPLACE_STRLIT_CONTENTS);\n\nconst unescape_literal_short_soft = (s_literal) => {\n\tlet m_incomplete = R_STRLIT_ESCAPE_INCOMPLETE.exec(s_literal);\n\n\t// incomplete escape\n\tif(m_incomplete) {\n\t\tlet i_safe = m_incomplete.index;\n\n\t\t// rewind\n\t\treturn [\n\t\t\ts_literal.slice(0, i_safe)\n\t\t\t\t.replace(R_STRLIT_SHORT_CONTENTS_ESCAPES_SOFT, F_REPLACE_STRLIT_CONTENTS),\n\t\t\ts_literal.slice(i_safe),\n\t\t];\n\t}\n\t// done\n\telse {\n\t\treturn [\n\t\t\ts_literal\n\t\t\t\t.replace(R_STRLIT_SHORT_CONTENTS_ESCAPES_SOFT, F_REPLACE_STRLIT_CONTENTS),\n\t\t\t'',\n\t\t];\n\t}\n};\n\n// lookbehind regexes\nconst [\n\tR_STRLIT_ESCAPE_INCOMPLETE,\n\tR_STRLIT_SHORT_DOUBLE_TERM,\n] = (() => {\n\tfunction RegExp_$lookbehind_polyfill(s_input) {\n\t\tlet m_match = RegExp.prototype.exec.call(this, s_input);\n\n\t\tif(m_match) {\n\t\t\tlet i_start = m_match[0].length - m_match[1].length;\n\t\t\tm_match.index += i_start;\n\t\t\tm_match[0] = m_match[0].slice(i_start);\n\t\t}\n\n\t\treturn m_match;\n\t}\n\tlet mk_lookbehind_regex = (() => {\n\t\ttry {\n\t\t\tnew RegExp('(? {\n\t\t\t\tr_polyfill.exec = f_polyfill;\n\t\t\t\treturn r_polyfill;\n\t\t\t};\n\t\t}\n\t\treturn f_lookbehind => f_lookbehind();\n\t})();\n\treturn [\n\t\t// R_STRLIT_ESCAPE_INCOMPLETE\n\t\tmk_lookbehind_regex(\n\t\t\t() => new RegExp('(? new RegExp('(?]*)>|_:([^\\x20\\t<]+))[\\x20\\t]*<([^\\\\>]*)>[\\x20\\t]*(?:(?:(<[^\\\\>]*)>|_:([^\\x20\\t<]+))[\\x20\\t]*(?:<([^\\\\>]*)>|_:([^\\x20\\t<]+)|)[\\x20\\t]*\\.\\s*(#[^\\n]*\\n\\s*|\\n\\s*)+|\"([^\"\\\\]*)(?:(\")(?:\\^\\^<([^\\\\>]*)>|@([^\\x20\\t.]+)|)[\\x20\\t]*(?:<([^\\\\>]*)>|_:([^\\x20\\t<]+)|)[\\x20\\t]*\\.\\s*(#[^\\n]*\\n\\s*|\\n\\s*)+)?)/y;\nconst R_QUAD = /(?:<([^>]*)>|_:([^\\x20\\t<]+))[\\x20\\t]*<([^>]*)>[\\x20\\t]*(?:(?:(<[^>]*)>|_:([^\\x20\\t<]+))[\\x20\\t]*(?:<([^>]*)>|_:([^\\x20\\t<]+)|)[\\x20\\t]*\\.\\s*(#[^\\n]*\\n\\s*|\\n\\s*)+|\"((?:[^\"\\\\]|\\\\.)*)(?:(\")(?:\\^\\^<([^>]*)>|@([^\\x20\\t.]+)|)[\\x20\\t]*(?:<([^>]*)>|_:([^\\x20\\t<]+)|)[\\x20\\t]*\\.\\s*(#[^\\n]*\\n\\s*|\\n\\s*)+)?)/y;\nconst R_BLANK_NODE = /_:([^\\x20\\t<]+)/y;\n\n\n\nclass NQuads_Reader extends stream.Transform {\n\tconstructor(g_impls) {\n\t\tsuper({\n\t\t\t// do not decode strings into buffers\n\t\t\tdecodeStrings: false,\n\n\t\t\t// accept strings as input on writable side\n\t\t\twritableObjectMode: false,\n\n\t\t\t// output quad objects on readable side\n\t\t\treadableObjectMode: true,\n\n\t\t\t// implementations\n\t\t\tflush: g_impls.flush,\n\t\t\ttransform: g_impls.transform,\n\t\t});\n\n\t\t// when the writable side is piped into\n\t\tthis.on('pipe', (ds_input) => {\n\t\t\tthis._ds_input = ds_input;\n\n\t\t\t// input stream has encoding option; ensure stream encoding is utf8\n\t\t\tif('function' === typeof ds_input.setEncoding) {\n\t\t\t\tds_input.setEncoding('utf8');\n\t\t\t}\n\t\t});\n\t}\n\n\t// intercept pipe\n\tpipe(ds_out) {\n\t\tlet ds_dst = ds_out;\n\n\t\t// non-object mode\n\t\tif(!ds_dst._writableState.objectMode) {\n\t\t\t// transform to JSON\n\t\t\tds_out = stream.quads_to_json();\n\t\t}\n\t\t// yet object mode and graphy writable\n\t\telse if(ds_out.isGraphyWritable) {\n\t\t\t// transform to quad-stream\n\t\t\tds_out = stream.quads_to_writable();\n\t\t}\n\n\t\t// interim stream created\n\t\tif(ds_out !== ds_dst) {\n\t\t\t// forward output to super\n\t\t\tsuper.pipe(ds_out);\n\n\t\t\t// pipe outpu to destination\n\t\t\treturn ds_out.pipe(ds_dst);\n\t\t}\n\t\t// forward as-is to super\n\t\telse {\n\t\t\treturn super.pipe(ds_dst);\n\t\t}\n\t}\n}\n\nclass Reader {\n\tconstructor(g_config) {\n\t\tlet {\n\t\t\t// input medium\n\t\t\tinput: g_input=null,\n\n\t\t\t// relax validation\n\t\t\trelax: b_relax=false,\n\n\t\t\t// debug\n\t\t\tdebug: b_debug=false,\n\t\t} = g_config;\n\n\t\t// allow relative iris flag\n\t\tlet b_allow_relative_iris = g_config.allow_relative_iris || g_config.allowRelativeIRIs || g_config.allowRelativeIris || false;\n\n\t\t// adopt factory\n\t\tlet dc_factory = this._dc_factory = factory.adopt(g_config.dataFactory || g_config.data_factory || factory.unfiltered);\n\n\t\tlet f_quad = this._f_quad = dc_factory.quad;\n\n\t\t// fields\n\t\tObject.assign(this, {\n\t\t\t// string buffer, accept left-over string from previous data chunk\n\t\t\ts: g_config.prepend || '',\n\n\t\t\t// string buffer length\n\t\t\tn: 0,\n\n\t\t\t_b_debug: b_debug,\n\n\t\t\t_b_relax: b_relax,\n\n\t\t\t_b_destroyed: false,\n\n\t\t\t_b_trim_start: true,\n\n\t\t\t_f_state: this.statement,\n\n\t\t\t_kt_subject: null,\n\t\t\t_kt_predicate: null,\n\t\t\t_kt_object: null,\n\n\t\t\t_s_literal: '',\n\t\t});\n\n\t\tthis._kt_default_graph = dc_factory.defaultGraph();\n\t\tthis._kt_rdfs_lang_string = dc_factory.namedNode('http://www.w3.org/1999/02/22-rdf-syntax-ns#langString');\n\n\t\t// clean regex\n\t\tlet r_clean = this._r_clean = R_CLEAN;\n\n\t\tif(g_config.relaxed) {\n\t\t\tconsole.warn((new Error(`no such option 'relaxed'; did you mean 'relax' ?`)).stack.replace(/^Error:/, 'Warning:'));\n\t\t}\n\t\tif('validate' in g_config) {\n\t\t\tconsole.warn((new Error(`option 'validate' has been removed and validation is now on by default. Use 'relax' option if you wish to disable validation.`)).stack.replace(/^Error:/, 'Warning:'));\n\t\t}\n\n\t\tlet namedNode = dc_factory.namedNode;\n\t\tlet blankNode = dc_factory.blankNode;\n\t\tlet languagedLiteral = dc_factory.languagedLiteral;\n\n\t\t// test for valid named node\n\t\tlet rt_named_node_valid = b_allow_relative_iris? RT_NAMED_NODE_VALID: RT_ABSOLUTE_IRI_VALID;\n\n\t\t// test for valid named node escapeless\n\t\tlet rt_named_node_valid_escapeless = b_allow_relative_iris? RT_NAMED_NODE_ESCAPELESS_VALID: RT_ABSOLUTE_IRI_ESCAPELESS_VALID;\n\n\t\t// validation\n\t\tlet k_self = this;\n\t\tObject.assign(this, !b_relax\n\t\t\t? {\n\t\t\t\tcreate_named_node(p_iri) {\n\t\t\t\t\tif(!rt_named_node_valid.test(p_iri)) return k_self._error(`invalid IRI: \"${p_iri}\"`);\n\t\t\t\t\treturn namedNode(p_iri);\n\t\t\t\t},\n\n\t\t\t\tcreate_named_node_escapeless(p_iri) {\n\t\t\t\t\tif(!rt_named_node_valid_escapeless.test(p_iri)) return k_self._error(`invalid IRI: \"${p_iri}\"`);\n\t\t\t\t\treturn namedNode(p_iri);\n\t\t\t\t},\n\n\t\t\t\tcreate_blank_node(s_label) {\n\t\t\t\t\tif(!RT_BLANK_NODE_LABEL_VALID.test(s_label)) return k_self._error(`Invalid blank node label: \"${s_label}\"`);\n\t\t\t\t\treturn blankNode(s_label);\n\t\t\t\t},\n\n\t\t\t\tcreate_languaged_literal(s_contents, s_language) {\n\t\t\t\t\tif(!RT_LANGUAGE_VALID.test(s_language)) {\n\t\t\t\t\t\treturn k_self._error(`Invalid literal language tag: ${s_language}`);\n\t\t\t\t\t}\n\n\t\t\t\t\treturn languagedLiteral(s_contents, s_language);\n\t\t\t\t},\n\t\t\t}\n\t\t\t: {\n\t\t\t\tcreate_named_node: namedNode,\n\n\t\t\t\tcreate_named_node_escapeless: namedNode,\n\n\t\t\t\tcreate_blank_node: blankNode,\n\n\t\t\t\tcreate_languaged_literal: languagedLiteral,\n\t\t\t});\n\n\t\t// transform stream\n\t\tlet ds_transform;\n\n\t\t// whether or not data has been received before\n\t\tlet b_init = false;\n\n\t\t// create transform\n\t\tds_transform = this.transform = new NQuads_Reader({\n\t\t\t// on data event\n\t\t\ttransform: (s_chunk, s_encoding, fk_chunk) => {\n\t\t\t\t// first transform\n\t\t\t\tif(!b_init) {\n\t\t\t\t\t// notify that data will begin\n\t\t\t\t\tds_transform.emit('ready');\n\n\t\t\t\t\t// do not emit 'ready' event again\n\t\t\t\t\tb_init = false;\n\t\t\t\t}\n\n\t\t\t\t// concatenate current chunk to previous chunk\n\t\t\t\tlet s = this.s += s_chunk;\n\n\t\t\t\t// remove whitespace & comments from beginning\n\t\t\t\tif(this._b_trim_start) {\n\t\t\t\t\tr_clean.lastIndex = 0;\n\t\t\t\t\tlet m_clean = r_clean.exec(s);\n\t\t\t\t\tif(this.emit_comments) {\n\t\t\t\t\t\tthis.emit_comments(m_clean[1]);\n\t\t\t\t\t}\n\n\t\t\t\t\t// update index and prepare to match statement\n\t\t\t\t\tthis.i = r_clean.lastIndex;\n\t\t\t\t}\n\t\t\t\t// do not remove whitespace; reset index\n\t\t\t\telse {\n\t\t\t\t\tthis.i = 0;\n\t\t\t\t}\n\n\t\t\t\t// cache chunk length\n\t\t\t\tthis.n = s.length;\n\n\t\t\t\t// resume parsing\n\t\t\t\ttry {\n\t\t\t\t\tthis.parse(true);\n\t\t\t\t}\n\t\t\t\t// read error occurred; emit and destroy stream\n\t\t\t\tcatch(e_read) {\n\t\t\t\t\treturn ds_transform.destroy(e_read);\n\t\t\t\t}\n\n\t\t\t\t// emit progress event updates\n\t\t\t\tds_transform.emit('progress', s_chunk.length);\n\n\t\t\t\t// done transforming this chunk\n\t\t\t\tfk_chunk();\n\t\t\t},\n\n\t\t\t// once there's no more data to consume, invoke eof\n\t\t\tflush: (fk_flush) => {\n\t\t\t\t// there is still unparsed data\n\t\t\t\tif(this.s.length) {\n\t\t\t\t\t// append newline to end so we can match token\n\t\t\t\t\tthis.s += '\\n';\n\n\t\t\t\t\t// remove whitespace & comments from beginning\n\t\t\t\t\tif(this._b_trim_start) {\n\t\t\t\t\t\tr_clean.lastIndex = 0;\n\t\t\t\t\t\tlet m_clean = r_clean.exec(this.s);\n\t\t\t\t\t\tif(this.emit_comments) {\n\t\t\t\t\t\t\tthis.emit_comments(m_clean[1]);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// update index and prepare to match statement\n\t\t\t\t\t\tthis.i = r_clean.lastIndex;\n\t\t\t\t\t}\n\t\t\t\t\t// do not remove whitespace; reset index\n\t\t\t\t\telse {\n\t\t\t\t\t\tthis.i = 0;\n\t\t\t\t\t}\n\n\t\t\t\t\t// parse\n\t\t\t\t\ttry {\n\t\t\t\t\t\tthis.parse();\n\t\t\t\t\t}\n\t\t\t\t\t// read error occurred; pass to flush errback and exit method\n\t\t\t\t\tcatch(e_read) {\n\t\t\t\t\t\t// destroying during flush means overriding push\n\t\t\t\t\t\treturn ds_transform.demolish(e_read);\n\t\t\t\t\t}\n\n\t\t\t\t\t// still unparsed characters; pass to flush errback and exit method\n\t\t\t\t\tif(this.s.length) {\n\t\t\t\t\t\treturn ds_transform.demolish(new Error(`parsing error occurred in state: statement\\n ${this.s.substr(0, 50)}\\n ^ starting here`));\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// invalid state\n\t\t\t\tif(this._f_state !== this.statement) {\n\t\t\t\t\treturn ds_transform.demolish(new Error(`parsing error occurred in state: ${this._f_state.name}\\n ${this.s.substr(0, 50)}\\n ^ starting here`));\n\t\t\t\t}\n\n\t\t\t\t// make buffer's alloc eligible for gc\n\t\t\t\tthis.s = null;\n\n\t\t\t\t// final progress update: no additional bytes were read\n\t\t\t\tds_transform.emit('progress', 0);\n\n\t\t\t\t// call end event listener\n\t\t\t\tds_transform.emit('eof');\n\n\t\t\t\t// done flushing, close read stream\n\t\t\t\tfk_flush();\n\t\t\t},\n\t\t});\n\n\t\t// destroy\n\t\tds_transform._destroy = (...a_args) => {\n\t\t\tthis.destroy(...a_args);\n\t\t};\n\n\t\t// data quad\n\t\tthis._f_data_quad = (kt_subject, kt_predicate, kt_object, kt_graph) => ds_transform.push(f_quad(kt_subject, kt_predicate, kt_object, kt_graph));\n\n\t\t// new listener added\n\t\tds_transform.on('newListener', (s_event) => {\n\t\t\t// comment\n\t\t\tif('comment' === s_event) {\n\t\t\t\tr_clean = R_CLEAN_COMMENTS;\n\t\t\t\tthis.emit_comments = (s_captured) => {\n\t\t\t\t\tif(!s_captured) return;\n\t\t\t\t\tlet a_comments = s_captured.slice(1).replace(/\\n\\s+$/, '').split(/\\n+\\s*#/g);\n\n\t\t\t\t\tfor(let s_comment of a_comments) {\n\t\t\t\t\t\tds_transform.emit('comment', s_comment);\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t}\n\t\t});\n\n\t\t// bind events to transform stream\n\t\tthis.bind(g_config);\n\n\t\t// input given\n\t\tif(g_input) {\n\t\t\t// input is stream\n\t\t\tif(g_input.stream) {\n\t\t\t\tlet ds_input = g_input.stream;\n\n\t\t\t\t// go async so caller has chance to bind event listeners\n\t\t\t\tqueueMicrotask(() => {\n\t\t\t\t\tds_input.pipe(ds_transform);\n\t\t\t\t});\n\t\t\t}\n\t\t\t// string\n\t\t\telse if('string' === typeof g_input.string) {\n\t\t\t\tlet s_input = g_input.string;\n\n\t\t\t\t// go async so caller has chance to bind event listeners\n\t\t\t\tqueueMicrotask(() => {\n\t\t\t\t\tds_transform.end(s_input, 'utf8');\n\t\t\t\t});\n\t\t\t}\n\t\t\t// invalid arg\n\t\t\telse {\n\t\t\t\tthrow new TypeError(`Invalid argument for input parameter: ${'object' === typeof g_input? JSON.stringify(g_input): g_input}`);\n\t\t\t}\n\t\t}\n\n\t\tds_transform._graphy_reader = this;\n\t}\n\n\t_error(s_message) {\n\t\tthis._b_destroyed = true;\n\t\tthrow new Error(s_message);\n\t}\n\n\n\n\tbind(g_config) {\n\t\tlet ds_transform = this.transform;\n\t\tif(g_config.error) ds_transform.on('error', g_config.error);\n\t\tif(g_config.comment) ds_transform.on('comment', g_config.comment);\n\t\tif(g_config.read) ds_transform.once('read', g_config.read);\n\t\tif(g_config.progress) ds_transform.on('progress', g_config.progress);\n\t\tif(g_config.eof) ds_transform.once('eof', g_config.eof);\n\t\tif(g_config.end) ds_transform.once('end', g_config.end);\n\t\tif(g_config.finish) ds_transform.once('finish', g_config.finish);\n\t\tif(g_config.data) ds_transform.on('data', g_config.data);\n\t}\n\n\t// begin parsing, keep applying until no more stack bail-outs\n\tparse() {\n\t\tlet f_sync = this._f_state();\n\t\twhile('function' === typeof f_sync) {\n\t\t\tf_sync = f_sync.apply(this);\n\t\t}\n\t}\n\n\tstatement() {\n\t\tlet s = this.s;\n\t\tlet n = this.n;\n\t\tlet i = this.i;\n\t\tlet f_data_quad = this._f_data_quad;\n\t\tlet create_named_node = this.create_named_node;\n\t\tlet create_named_node_escapeless = this.create_named_node_escapeless;\n\t\tlet create_languaged_literal = this.create_languaged_literal;\n\t\tlet create_blank_node = this.create_blank_node;\n\t\tlet simpleLiteral = this._dc_factory.simpleLiteral;\n\t\tlet datatypedLiteral = this._dc_factory.datatypedLiteral;\n\t\tlet kt_default_graph = this._kt_default_graph;\n\n\t\t// match triples/quads\n\t\tfor(;;) {\n\t\t\t// prepare sticky regex index\n\t\t\tR_QUAD_ESCAPELESS_SP.lastIndex = i;\n\t\t\t// execute regex\n\t\t\tlet m_statement_e_sp = R_QUAD_ESCAPELESS_SP.exec(s);\n\n\t\t\t// regex was a match\n\t\t\tif(m_statement_e_sp) {\n\t\t\t\t// advance index\n\t\t\t\ti = R_QUAD_ESCAPELESS_SP.lastIndex;\n\n\t\t\t\t// prep object term\n\t\t\t\tlet kt_object;\n\t\t\t\t// where to find the graph component\n\t\t\t\tlet b_graph_late = false;\n\n\t\t\t\t// object term type is named node\n\t\t\t\tif(m_statement_e_sp[4]) {\n\t\t\t\t\tlet p_object = m_statement_e_sp[4].slice(1);\n\t\t\t\t\tkt_object = create_named_node_escapeless(p_object);\n\t\t\t\t}\n\t\t\t\t// object term type is blank node\n\t\t\t\telse if(m_statement_e_sp[5]) {\n\t\t\t\t\tkt_object = create_blank_node(m_statement_e_sp[5]);\n\t\t\t\t}\n\t\t\t\t// object term type is literal\n\t\t\t\telse {\n\t\t\t\t\t// graph is in late capture group\n\t\t\t\t\tb_graph_late = true;\n\n\t\t\t\t\t// contents\n\t\t\t\t\tlet s_contents = m_statement_e_sp[9];\n\t\t\t\t\t// string terminator\n\t\t\t\t\tif(m_statement_e_sp[10]) {\n\t\t\t\t\t\t// datatype is present\n\t\t\t\t\t\tif(m_statement_e_sp[11]) {\n\t\t\t\t\t\t\t// create datatype term\n\t\t\t\t\t\t\tlet kt_datatype = this.create_named_node_escapeless(m_statement_e_sp[11]);\n\t\t\t\t\t\t\t// create object term\n\t\t\t\t\t\t\tkt_object = datatypedLiteral(s_contents, kt_datatype);\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// language tag is present\n\t\t\t\t\t\telse if(m_statement_e_sp[12]) {\n\t\t\t\t\t\t\t// normalize language\n\t\t\t\t\t\t\tlet s_language = m_statement_e_sp[12].toLowerCase();\n\t\t\t\t\t\t\t// create object term\n\t\t\t\t\t\t\tkt_object = create_languaged_literal(s_contents, s_language);\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// simple literal\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tkt_object = simpleLiteral(s_contents);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t// no string terminator\n\t\t\t\t\telse {\n\t\t\t\t\t\t// save contents\n\t\t\t\t\t\tthis._s_literal = s_contents;\n\t\t\t\t\t\t// update index\n\t\t\t\t\t\tthis.i = i;\n\t\t\t\t\t\t// save subject\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlet s_subject = m_statement_e_sp[1];\n\t\t\t\t\t\t\t// named node\n\t\t\t\t\t\t\tif(s_subject || 'string' === typeof s_subject) {\n\t\t\t\t\t\t\t\tthis._kt_subject = create_named_node_escapeless(s_subject);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t// blank node\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tthis._kt_subject = create_blank_node(m_statement_e_sp[2]);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// save predicate\n\t\t\t\t\t\tthis._kt_predicate = create_named_node_escapeless(m_statement_e_sp[3]);\n\t\t\t\t\t\t// parse contents\n\t\t\t\t\t\tlet z_bail = this.strlit_contents();\n\t\t\t\t\t\t// bail out of stack\n\t\t\t\t\t\tif(z_bail && this.statement !== z_bail) {\n\t\t\t\t\t\t\treturn z_bail;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// statement completed\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t// clean\n\t\t\t\t\t\t\tlet r_clean = this._r_clean;\n\t\t\t\t\t\t\tr_clean.lastIndex = this.i;\n\t\t\t\t\t\t\tlet m_clean = r_clean.exec(s);\n\t\t\t\t\t\t\tif(this.emit_comments) {\n\t\t\t\t\t\t\t\tthis.emit_comments(m_clean[1]);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t// update local index and prepare to match next statement\n\t\t\t\t\t\t\ti = r_clean.lastIndex;\n\t\t\t\t\t\t\t// resume\n\t\t\t\t\t\t\tcontinue;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tlet kt_graph = kt_default_graph;\n\n\t\t\t\t// graph after literal\n\t\t\t\tif(b_graph_late) {\n\t\t\t\t\t// ref capture group\n\t\t\t\t\tlet s_graph = m_statement_e_sp[13];\n\n\t\t\t\t\t// named node\n\t\t\t\t\tif(s_graph || 'string' === typeof s_graph) {\n\t\t\t\t\t\tkt_graph = create_named_node_escapeless(s_graph);\n\t\t\t\t\t}\n\t\t\t\t\t// blank node\n\t\t\t\t\telse if(m_statement_e_sp[14]) {\n\t\t\t\t\t\tkt_graph = create_blank_node(m_statement_e_sp[14]);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t// graph after node\n\t\t\t\telse {\n\t\t\t\t\t// ref capture group\n\t\t\t\t\tlet s_graph = m_statement_e_sp[6];\n\n\t\t\t\t\t// named node\n\t\t\t\t\tif(s_graph || 'string' === typeof s_graph) {\n\t\t\t\t\t\tkt_graph = create_named_node_escapeless(s_graph);\n\t\t\t\t\t}\n\t\t\t\t\t// blank node\n\t\t\t\t\telse if(m_statement_e_sp[7]) {\n\t\t\t\t\t\tkt_graph = create_blank_node(m_statement_e_sp[7]);\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tlet kt_subject;\n\t\t\t\t{\n\t\t\t\t\tlet s_subject = m_statement_e_sp[1];\n\t\t\t\t\t// named node\n\t\t\t\t\tif(s_subject || 'string' === typeof s_subject) {\n\t\t\t\t\t\tkt_subject = create_named_node_escapeless(s_subject);\n\t\t\t\t\t}\n\t\t\t\t\t// blank node\n\t\t\t\t\telse {\n\t\t\t\t\t\tkt_subject = create_blank_node(m_statement_e_sp[2]);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tlet s_predicate = m_statement_e_sp[3];\n\t\t\t\t// emit data event\n\t\t\t\tf_data_quad(\n\t\t\t\t\tkt_subject,\n\t\t\t\t\tcreate_named_node_escapeless(s_predicate),\n\t\t\t\t\tkt_object,\n\t\t\t\t\tkt_graph,\n\t\t\t\t);\n\t\t\t\t// comments\n\t\t\t\tif(this.emit_comments) {\n\t\t\t\t\tthis.emit_comments(m_statement_e_sp[8] || m_statement_e_sp[15]);\n\t\t\t\t}\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// prepare sticky regex index\n\t\t\t\tR_QUAD.lastIndex = i;\n\t\t\t\t// execute regex\n\t\t\t\tlet m_statement = R_QUAD.exec(s);\n\n\t\t\t\t// regex was a match\n\t\t\t\tif(m_statement) {\n\t\t\t\t\t// advance index\n\t\t\t\t\ti = R_QUAD.lastIndex;\n\n\t\t\t\t\t// prep object term\n\t\t\t\t\tlet kt_object;\n\t\t\t\t\t// where to find the graph component\n\t\t\t\t\tlet b_graph_late = false;\n\n\t\t\t\t\t// object term type is named node\n\t\t\t\t\tif(m_statement[4]) {\n\t\t\t\t\t\tlet p_object = m_statement[4].slice(1);\n\t\t\t\t\t\tkt_object = create_named_node(RT_HAS_ESCAPES.test(p_object)? p_object.replace(R_UNICODE_ANY, F_REPLACE_UNICODE_ANY): p_object);\n\t\t\t\t\t}\n\t\t\t\t\t// object term type is blank node\n\t\t\t\t\telse if(m_statement[5]) {\n\t\t\t\t\t\tkt_object = create_blank_node(RT_HAS_ESCAPES.test(m_statement[5])? m_statement[5].replace(R_UNICODE_ANY, F_REPLACE_UNICODE_ANY): m_statement[5]);\n\t\t\t\t\t}\n\t\t\t\t\t// object term type is literal\n\t\t\t\t\telse {\n\t\t\t\t\t\t// graph is in late capture group\n\t\t\t\t\t\tb_graph_late = true;\n\n\t\t\t\t\t\t// contents\n\t\t\t\t\t\tlet s_contents = m_statement[9];\n\t\t\t\t\t\t// string terminator\n\t\t\t\t\t\tif(m_statement[10]) {\n\t\t\t\t\t\t\t// unescape contents\n\t\t\t\t\t\t\ts_contents = unescape_literal_short_hard(s_contents);\n\n\t\t\t\t\t\t\t// datatype is present\n\t\t\t\t\t\t\tif(m_statement[11]) {\n\t\t\t\t\t\t\t\t// create datatype term\n\t\t\t\t\t\t\t\tlet kt_datatype = this.create_named_node(m_statement[11]);\n\t\t\t\t\t\t\t\t// create object term\n\t\t\t\t\t\t\t\tkt_object = datatypedLiteral(s_contents, kt_datatype);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t// language tag is present\n\t\t\t\t\t\t\telse if(m_statement[12]) {\n\t\t\t\t\t\t\t\t// normalize language\n\t\t\t\t\t\t\t\tlet s_language = m_statement[12].toLowerCase();\n\t\t\t\t\t\t\t\t// create object term\n\t\t\t\t\t\t\t\tkt_object = create_languaged_literal(s_contents, s_language);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t// simple literal\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tkt_object = simpleLiteral(s_contents);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// no string terminator\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t// save contents\n\t\t\t\t\t\t\tthis._s_literal = s_contents;\n\t\t\t\t\t\t\t// update index\n\t\t\t\t\t\t\tthis.i = i;\n\t\t\t\t\t\t\t// save subject\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlet s_subject = m_statement[1];\n\t\t\t\t\t\t\t\t// named node\n\t\t\t\t\t\t\t\tif(s_subject || 'string' === typeof s_subject) {\n\t\t\t\t\t\t\t\t\tthis._kt_subject = create_named_node(RT_HAS_ESCAPES.test(s_subject)? s_subject.replace(R_UNICODE_ANY, F_REPLACE_UNICODE_ANY): s_subject);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t// blank node\n\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\tthis._kt_subject = create_blank_node(m_statement[2]);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t// save predicate\n\t\t\t\t\t\t\tthis._kt_predicate = create_named_node(RT_HAS_ESCAPES.test(m_statement[3])? m_statement[3].replace(R_UNICODE_ANY, F_REPLACE_UNICODE_ANY): m_statement[3]);\n\t\t\t\t\t\t\t// parse contents\n\t\t\t\t\t\t\tlet z_bail = this.strlit_contents();\n\t\t\t\t\t\t\t// bail out of stack\n\t\t\t\t\t\t\tif(z_bail && this.statement !== z_bail) {\n\t\t\t\t\t\t\t\treturn z_bail;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t// statement completed\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t// clean\n\t\t\t\t\t\t\t\tlet r_clean = this._r_clean;\n\t\t\t\t\t\t\t\tr_clean.lastIndex = this.i;\n\t\t\t\t\t\t\t\tlet m_clean = r_clean.exec(s);\n\t\t\t\t\t\t\t\tif(this.emit_comments) {\n\t\t\t\t\t\t\t\t\tthis.emit_comments(m_clean[1]);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t// update local index and prepare to match next statement\n\t\t\t\t\t\t\t\ti = r_clean.lastIndex;\n\t\t\t\t\t\t\t\t// resume\n\t\t\t\t\t\t\t\tcontinue;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tlet kt_graph = kt_default_graph;\n\n\t\t\t\t\t// graph after literal\n\t\t\t\t\tif(b_graph_late) {\n\t\t\t\t\t\t// ref capture group\n\t\t\t\t\t\tlet s_graph = m_statement[13];\n\n\t\t\t\t\t\t// named node\n\t\t\t\t\t\tif(s_graph || 'string' === typeof s_graph) {\n\t\t\t\t\t\t\tkt_graph = create_named_node(RT_HAS_ESCAPES.test(s_graph)? s_graph.replace(R_UNICODE_ANY, F_REPLACE_UNICODE_ANY): s_graph);\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// blank node\n\t\t\t\t\t\telse if(m_statement[14]) {\n\t\t\t\t\t\t\tkt_graph = create_blank_node(m_statement[14]);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t// graph after node\n\t\t\t\t\telse {\n\t\t\t\t\t\t// ref capture group\n\t\t\t\t\t\tlet s_graph = m_statement[6];\n\n\t\t\t\t\t\t// named node\n\t\t\t\t\t\tif(s_graph || 'string' === typeof s_graph) {\n\t\t\t\t\t\t\tkt_graph = create_named_node(RT_HAS_ESCAPES.test(s_graph)? s_graph.replace(R_UNICODE_ANY, F_REPLACE_UNICODE_ANY): s_graph);\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// blank node\n\t\t\t\t\t\telse if(m_statement[7]) {\n\t\t\t\t\t\t\tkt_graph = create_blank_node(m_statement[7]);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tlet kt_subject;\n\t\t\t\t\t{\n\t\t\t\t\t\tlet s_subject = m_statement[1];\n\t\t\t\t\t\t// named node\n\t\t\t\t\t\tif(s_subject || 'string' === typeof s_subject) {\n\t\t\t\t\t\t\tkt_subject = create_named_node(RT_HAS_ESCAPES.test(s_subject)? s_subject.replace(R_UNICODE_ANY, F_REPLACE_UNICODE_ANY): s_subject);\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// blank node\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tkt_subject = create_blank_node(m_statement[2]);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tlet s_predicate = m_statement[3];\n\t\t\t\t\t// emit data event\n\t\t\t\t\tf_data_quad(\n\t\t\t\t\t\tkt_subject,\n\t\t\t\t\t\tcreate_named_node(RT_HAS_ESCAPES.test(s_predicate)? s_predicate.replace(R_UNICODE_ANY, F_REPLACE_UNICODE_ANY): s_predicate),\n\t\t\t\t\t\tkt_object,\n\t\t\t\t\t\tkt_graph,\n\t\t\t\t\t);\n\t\t\t\t\t// comments\n\t\t\t\t\tif(this.emit_comments) {\n\t\t\t\t\t\tthis.emit_comments(m_statement[8] || m_statement[15]);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\tR_EOL.lastIndex = i;\n\n\t\t\t\t\tif(R_EOL.exec(s)) {\n\t\t\t\t\t\t// advance index\n\t\t\t\t\t\ti = R_EOL.lastIndex;\n\t\t\t\t\t\tthis._error(`Failed to read statement:\\n\\`${s.substr(i, 80).replace(/\\n/g, '\\u23CE')} [...]\\`\\n ^ starting here`);\n\n\t\t\t\t\t// match counter: 2\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\t// break loop to retry on next chunk if eos\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t} // brace #2\n\t\t\t} // brace #1\n\t\t} // end of while\n\n\t\t// update unparsed data string\n\t\tthis.s = s.substr(i);\n\n\t\t// resume here\n\t\tthis._f_state = this.statement;\n\n\t\t// exit\n\t\treturn 1;\n\t}\n\n\n\tstrlit_contents() {\n\t\tlet {s, n, i} = this;\n\n\t\t// try to find end\n\t\tR_STRLIT_SHORT_DOUBLE_TERM.lastIndex = i;\n\t\tlet m_term = R_STRLIT_SHORT_DOUBLE_TERM.exec(s);\n\n\t\t// end is in this chunk\n\t\tif(m_term) {\n\t\t\t// index of terminator\n\t\t\tlet i_term = m_term.index;\n\n\t\t\t// extract dirty potion\n\t\t\tlet s_dirty = s.slice(i, i_term);\n\n\t\t\t// clean and save\n\t\t\tthis._s_literal += unescape_literal_short_hard(s_dirty);\n\n\t\t\t// advance index beyond terminator\n\t\t\tthis.i = i_term + m_term[0].length;\n\n\t\t\t// resume eating whitespace at start of next chunk\n\t\t\tthis._b_trim_start = true;\n\n\t\t\t// proceed with datatype_or_lang, then bail out of stack or resume parsing\n\t\t\treturn this.datatype_or_langtag() || this.statement;\n\t\t}\n\t\t// end is not in this chunk\n\t\telse {\n\t\t\t// extract whole portion\n\t\t\tlet s_dirty = s.slice(i);\n\n\t\t\t// unescape to clean part\n\t\t\tlet [s_clean, s_incomplete] = unescape_literal_short_soft(s_dirty);\n\n\t\t\t// save\n\t\t\tthis._s_literal += s_clean;\n\n\t\t\t// set unparsed index\n\t\t\tthis.i = i = n - s_incomplete.length;\n\n\t\t\t// do not eat whitespace at start of next chunk\n\t\t\tthis._b_trim_start = false;\n\t\t}\n\n\t\t// not yet eos\n\t\tif(i < this.n) {\n\t\t\t// expected token was not found\n\t\t\tif(0 === i) {\n\t\t\t\t// we've exceeded the maximum token length\n\t\t\t\tif(this.n > this.max_token_length) {\n\t\t\t\t\treturn this.parse_error('strlit_contents');\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// resume here\n\t\tthis._f_state = this.strlit_contents;\n\n\t\t// store what is unparsed\n\t\tthis.s = s.slice(i);\n\n\t\t// if we're not parsing a stream, then this is an error\n\t\tif(this.eos) this.eos();\n\t\treturn 1;\n\t}\n\n\n\n\t// parse state for datatype_or_langtag\n\tdatatype_or_langtag() {\n\t\t// destruct chunk, length, and index\n\t\tlet {s, n, i} = this;\n\n\t\t// ref character\n\t\tlet x = s[i];\n\n\t\twhile(i < n) { // eslint-disable-line no-unmodified-loop-condition\n\t\t\t// datatype\n\t\t\tif('^' === x) {\n\t\t\t\t// enough to speculate datatype\n\t\t\t\tif((i+2) < n) {\n\t\t\t\t\t// correct token\n\t\t\t\t\tif('^' === s[i+1]) {\n\t\t\t\t\t\t// advance index beyond token\n\t\t\t\t\t\tR_IRIREF.lastIndex = i + 2;\n\n\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\tlet m_iriref = R_IRIREF.exec(s);\n\n\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\tif(m_iriref) {\n\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\tthis.i = R_IRIREF.lastIndex;\n\n\t\t\t\t\t\t\t// prepare iri\n\t\t\t\t\t\t\tlet p_datatype = m_iriref[1].replace(R_UNICODE_ANY, F_REPLACE_UNICODE_ANY);\n\n\t\t\t\t\t\t\t// create datatype term\n\t\t\t\t\t\t\tlet kt_datatype = this.create_named_node(p_datatype);\n\n\t\t\t\t\t\t\t// create object term\n\t\t\t\t\t\t\tthis._kt_object = this._dc_factory.datatypedLiteral(this._s_literal, kt_datatype);\n\n\t\t\t\t\t\t\t// free literal string\n\t\t\t\t\t\t\tthis._s_literal = '';\n\n\t\t\t\t\t\t\t// graph state\n\t\t\t\t\t\t\treturn this.post_object();\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// failed to match; try again next chunk\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t// invalid\n\t\t\t\t\telse {\n\t\t\t\t\t\tthis._error(`Failed to read token after literal:\\n\\`${s.substr(i+1, 80).replace(/\\n/g, '\\u23CE')} [...]\\`\\n ^ starting here`);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t// not enough to speculate; try again next chunk\n\t\t\t\telse {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\t// language tag\n\t\t\telse if('@' === x) {\n\t\t\t\t// prepare sticky regex index\n\t\t\t\tR_LANGTAG.lastIndex = i;\n\t\t\t\t// execute regex\n\t\t\t\tlet m_langtag = R_LANGTAG.exec(s);\n\n\t\t\t\t// regex was a match\n\t\t\t\tif(m_langtag) {\n\t\t\t\t\t// advance index\n\t\t\t\t\tthis.i = R_LANGTAG.lastIndex;\n\n\t\t\t\t\t// use direct factory method since regex is validation\n\t\t\t\t\tthis._kt_object = this._dc_factory.languagedLiteral(this._s_literal, m_langtag[1]);\n\n\t\t\t\t\t// free literal string\n\t\t\t\t\tthis._s_literal = '';\n\n\t\t\t\t\t// graph state\n\t\t\t\t\treturn this.post_object();\n\t\t\t\t}\n\t\t\t\t// interrupted by eos; try again next chunk\n\t\t\t\telse {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\t// graph component\n\t\t\telse if('<' === x || '_' === x) {\n\t\t\t\t// save simple literal\n\t\t\t\tthis._kt_object = this._dc_factory.simpleLiteral(this._s_literal);\n\n\t\t\t\t// free literal string\n\t\t\t\tthis._s_literal = '';\n\n\t\t\t\t// continue parsing graph component\n\t\t\t\treturn this.graph();\n\t\t\t}\n\t\t\t// triple terminator\n\t\t\telse if('.' === x) {\n\t\t\t\t// save simple literal\n\t\t\t\tlet kt_object = this._dc_factory.simpleLiteral(this._s_literal);\n\n\t\t\t\t// free literal string\n\t\t\t\tthis._s_literal = '';\n\n\t\t\t\t// advance index beyond terminator\n\t\t\t\tthis.i = i + 1;\n\n\t\t\t\t// emit data event\n\t\t\t\tthis._f_data_quad(this._kt_subject, this._kt_predicate, kt_object, this._kt_default_graph);\n\n\t\t\t\t// reset state\n\t\t\t\treturn this.statement;\n\n\t\t\t\t// // consume whitespace (and incidentally reset index)\n\t\t\t\t// R_WS.lastIndex = i + 1;\n\t\t\t\t// R_WS.exec(s);\n\t\t\t\t// this.i = R_WS.lastIndex;\n\n\t\t\t\t// // done\n\t\t\t\t// return;\n\t\t\t}\n\t\t\t// other\n\t\t\telse {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t\t// ran out of characters\n\t\t// update index value\n\t\tthis.i = i;\n\n\t\t// not yet eos\n\t\tif(i < this.n) {\n\t\t\t// expected token was not found\n\t\t\tif(0 === i) {\n\t\t\t\t// we've exceeded the maximum token length\n\t\t\t\tif(this.n > this.max_token_length) {\n\t\t\t\t\treturn this.parse_error('datatype_or_langtag');\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// resume here\n\t\tthis._f_state = this.datatype_or_langtag;\n\n\t\t// store what is unparsed\n\t\tthis.s = s.slice(i);\n\n\t\t// if we're not parsing a stream, then this is an error\n\t\tif(this.eos) this.eos();\n\t\treturn 1;\n\t}\n\n\tstatement_term() {\n\t\tlet {s, n, i} = this;\n\n\t\t// find full stop\n\t\tlet i_stop = s.indexOf('.', i);\n\n\t\t// found\n\t\tif(i_stop > -1) {\n\t\t\t// consume whitespace again\n\t\t\tthis._b_trim_start = true;\n\n\t\t\t// advance beyond token\n\t\t\tthis.i = i_stop + 1;\n\n\t\t\t// reset state\n\t\t\treturn this.statement;\n\t\t}\n\t\t// anything other than whitespace\n\t\telse if(!/^\\s*$/.test(s.slice(i))) {\n\t\t\tthis.parse_error('statement_term');\n\t\t}\n\n\t\t// do not consume whitespace\n\t\tthis._b_trim_start = false;\n\n\t\t// resume here\n\t\tthis._f_state = this.statement_term;\n\n\t\t// store what is unparsed\n\t\tthis.s = s.slice(i);\n\n\t\t// if we're not parsing a stream, then this is an error\n\t\tif(this.eos) this.eos();\n\t\treturn 1;\n\t}\n\n\tpost_object() {\n\t\tlet {s, n, i} = this;\n\n\t\t// eat horizontal whitespace\n\t\tR_HWS.lastIndex = i;\n\t\tR_HWS.exec(s);\n\t\ti = R_HWS.lastIndex;\n\n\t\t// ran out of characters\n\t\tif(i >= n) {\n\t\t\t// resume here\n\t\t\tthis._f_state = this.post_object;\n\n\t\t\t// store what is unparsed\n\t\t\tthis.s = s.slice(i);\n\n\t\t\t// if we're not parsing a stream, then this is an error\n\t\t\tif(this.eos) this.eos();\n\t\t\treturn 1;\n\t\t}\n\n\t\t// depending on char\n\t\tswitch(s[i]) {\n\t\t\t// statement term\n\t\t\tcase '.': {\n\t\t\t\t// advance index beyond terminator\n\t\t\t\tthis.i = i + 1;\n\n\t\t\t\t// emit data event\n\t\t\t\tthis._f_data_quad(this._kt_subject, this._kt_predicate, this._kt_object, this._kt_default_graph);\n\n\t\t\t\t// reset state\n\t\t\t\treturn this.statement;\n\t\t\t}\n\n\t\t\t// graph\n\t\t\tcase '<':\n\t\t\tcase '_': {\n\t\t\t\t// save index\n\t\t\t\tthis.i = i;\n\n\t\t\t\t// consume graph component\n\t\t\t\treturn this.graph();\n\t\t\t}\n\n\t\t\t// invalid\n\t\t\tdefault: {\n\t\t\t\t// save index\n\t\t\t\tthis.i = i;\n\n\t\t\t\t// emit parsing error\n\t\t\t\tthis.parse_error('post_object');\n\t\t\t}\n\t\t}\n\t}\n\n\tgraph() {\n\t\tlet {s, n, i} = this;\n\n\n\t\t// prepare sticky regex index\n\t\tR_IRIREF.lastIndex = i;\n\t\t// execute regex\n\t\tlet m_iriref = R_IRIREF.exec(s);\n\n\t\t// regex was a match\n\t\tif(m_iriref) {\n\t\t\t// advance index\n\t\t\tthis.i = R_IRIREF.lastIndex;\n\t\t\t// create graph term\n\t\t\tlet kt_graph = this.create_named_node(m_iriref[1]);\n\n\t\t\t// emit data event\n\t\t\tthis._f_data_quad(this._kt_subject, this._kt_predicate, this._kt_object, kt_graph);\n\n\t\t\t// complete with statement_term\n\t\t\treturn this.statement_term();\n\t\t}\n\t\telse {\n\t\t\t// prepare sticky regex index\n\t\t\tR_BLANK_NODE.lastIndex = i;\n\t\t\t// execute regex\n\t\t\tlet m_blank = R_BLANK_NODE.exec(s);\n\n\t\t\t// regex was a match\n\t\t\tif(m_blank) {\n\t\t\t\t// advance index\n\t\t\t\tthis.i = R_BLANK_NODE.lastIndex;\n\t\t\t\t// create graph term\n\t\t\t\tlet kt_graph = this._dc_factory.blankNode(m_blank[1]);\n\n\t\t\t\t// emit data event\n\t\t\t\tthis._f_data_quad(this._kt_subject, this._kt_predicate, this._kt_object, kt_graph);\n\n\t\t\t\t// complete with statement_term\n\t\t\t\treturn this.statement_term();\n\t\t\t}\n\t\t} // brace #1\n\n\n\t\t// resume here\n\t\tthis._f_state = this.graph;\n\n\t\t// store what is unparsed\n\t\tthis.s = s.slice(i);\n\n\t\t// if we're not parsing a stream, then this is an error\n\t\tif(this.eos) this.eos();\n\t\treturn 1;\n\t}\n\n\tparse_error(s_state) {\n\t\treturn this._error(`Failed to read ${s_state}:\\n\\`${this.s.substr(this.i, 80).replace(/\\n/g, '\\u23CE')} [...]\\`\\n ^ starting here`);\n\t}\n\n\tdestroy(e_destroy) {\n\t\tthis._f_data_quad = () => {};\n\n\t\tif(!e_destroy && this._ds_input) {\n\t\t\tthis._ds_input.destroy(e_destroy);\n\t\t}\n\n\t\tthis.transform.demolish(e_destroy);\n\t}\n}\n\n\nmodule.exports = function(...a_args) {\n\tlet g_config = {};\n\n\t// at least one argument\n\tif(a_args.length) {\n\t\tlet z_arg_0 = a_args[0];\n\n\t\t// input given unspecified\n\t\tif(z_arg_0 && z_arg_0.input && 'undefined' === typeof z_arg_0.input.string && !z_arg_0.input.stream) {\n\t\t\tz_arg_0 = z_arg_0.input;\n\t\t}\n\n\t\t// string\n\t\tif('string' === typeof z_arg_0) {\n\t\t\tg_config.input = {string:z_arg_0};\n\t\t}\n\t\t// null\n\t\telse if(null === z_arg_0) {\n\t\t\tg_config.input = null;\n\t\t}\n\t\t// node stream\n\t\telse if('function' === typeof z_arg_0.setEncoding) {\n\t\t\tg_config.input = {stream:z_arg_0};\n\t\t}\n\t\t// whatwg stream\n\t\telse if('function' === typeof z_arg_0.pipeTo) {\n\t\t\tthrow new TypeError(`Sorry, WHATWG streams are currently not supported :(`);\n\t\t// g_config.input = {stream:z_arg_0};\n\t\t}\n\t\t// config struct\n\t\telse if(z_arg_0 && 'object' === typeof z_arg_0 && '[object Object]' === Object.prototype.toString.call(z_arg_0)) {\n\t\t\tg_config = z_arg_0;\n\n\t\t\t// more args; invalid\n\t\t\tif(a_args.length > 1) {\n\t\t\t\tthrow new TypeError(`unexpected argument(s) after config struct: ${a_args.slice(1)}`);\n\t\t\t}\n\t\t}\n\t\t// unknown\n\t\telse {\n\t\t\tthrow new TypeError(`unexpected input type: ${z_arg_0}`);\n\t\t}\n\n\t\t// more args\n\t\tif(a_args.length > 1) {\n\t\t\t// copy onto struct\n\t\t\tObject.assign(g_config, a_args[1]);\n\n\t\t\t// more args\n\t\t\tif(a_args.length > 2) {\n\t\t\t\tthrow new TypeError(`unexpected argument(s) after input and config struct: ${a_args.slice(2)}`);\n\t\t\t}\n\t\t}\n\t}\n\n\t// create reader, return transform stream\n\treturn (new Reader(g_config)).transform;\n};\n","const stream = require('readable-stream');\n\n\n\nclass Readable extends stream.Readable {\n\tconstructor(gc_readable={}) {\n\t\tsuper(gc_readable);\n\n\t\t// use iterator\n\t\tif(gc_readable.iterator) {\n\t\t\tthrow new Error('readable stream iterator shortcut not yet implemented');\n\t\t}\n\t}\n\n\tuntil(s_event, b_return_stream) {\n\t\treturn new Promise((fk_until, fe_until) => {\n\t\t\t// convert error to rejected promise\n\t\t\tthis.on('error', (e_stream) => {\n\t\t\t\tfe_until(e_stream);\n\t\t\t});\n\n\t\t\t// special cases returns `this`\n\t\t\tif(b_return_stream) {\n\t\t\t\tthis.once(s_event, (...a_args) => {\n\t\t\t\t\tfk_until(this, ...a_args);\n\t\t\t\t});\n\t\t\t}\n\t\t\telse {\n\t\t\t\tthis.once(s_event, fk_until);\n\t\t\t}\n\t\t});\n\t}\n\n\tbucket(s_encoding='utf8') {\n\t\tlet g_readable = this._readableState;\n\n\t\t// object mode\n\t\tif(g_readable.objectMode) {\n\t\t\t// async operation\n\t\t\treturn new Promise((fk_bucket, fe_bucket) => {\n\t\t\t\tlet a_data = [];\n\n\t\t\t\t// pipe to writable\n\t\t\t\tthis.pipe(new stream.Writable({\n\t\t\t\t\twrite(w_event, s_write_encoding, fk_write) {\n\t\t\t\t\t\ta_data.push(w_event);\n\t\t\t\t\t\tfk_write();\n\t\t\t\t\t},\n\n\t\t\t\t\twritev(a_chunks, fk_writev) {\n\t\t\t\t\t\ta_data.push(...a_chunks);\n\t\t\t\t\t\tfk_writev();\n\t\t\t\t\t},\n\t\t\t\t}))\n\t\t\t\t\t// error\n\t\t\t\t\t.on('error', (e_stream) => {\n\t\t\t\t\t\tfe_bucket(e_stream);\n\t\t\t\t\t})\n\t\t\t\t\t// wait for it to finish\n\t\t\t\t\t.on('finish', () => {\n\t\t\t\t\t\tfk_bucket(a_data);\n\t\t\t\t\t});\n\t\t\t});\n\t\t}\n\t\t// utf8-encoded strings\n\t\telse if('utf8' === s_encoding || 'utf-8' === s_encoding) {\n\t\t\t// async operation\n\t\t\treturn new Promise((fk_bucket, fe_bucket) => {\n\t\t\t\tlet s_data = '';\n\n\t\t\t\t// set encoding\n\t\t\t\tthis.setEncoding(s_encoding);\n\n\t\t\t\t// pipe to writable\n\t\t\t\tthis.pipe(new stream.Writable({\n\t\t\t\t\tdecodeStrings: false,\n\n\t\t\t\t\twrite(s_chunk, s_write_encoding, fk_write) {\n\t\t\t\t\t\ts_data += s_chunk;\n\t\t\t\t\t\tfk_write();\n\t\t\t\t\t},\n\n\t\t\t\t\twritev(a_chunks, fk_writev) {\n\t\t\t\t\t\ts_data += a_chunks.join('');\n\t\t\t\t\t\tfk_writev();\n\t\t\t\t\t},\n\t\t\t\t}))\n\t\t\t\t\t// error\n\t\t\t\t\t.on('error', (e_stream) => {\n\t\t\t\t\t\tfe_bucket(e_stream);\n\t\t\t\t\t})\n\t\t\t\t\t// wait for it to finish\n\t\t\t\t\t.on('finish', () => {\n\t\t\t\t\t\tfk_bucket(s_data);\n\t\t\t\t\t});\n\t\t\t});\n\t\t}\n\t\t// buffer\n\t\telse if('buffer' === s_encoding) {\n\t\t\t// async operation\n\t\t\treturn new Promise((fk_bucket, fe_bucket) => {\n\t\t\t\tlet ab_data = Buffer.from([]);\n\n\t\t\t\t// pipe to writable\n\t\t\t\tthis.pipe(new stream.Writable({\n\t\t\t\t\tdecodeStrings: true,\n\n\t\t\t\t\twrite(ab_chunk, s_write_encoding, fk_write) {\n\t\t\t\t\t\tab_data = Buffer.concat([ab_data, ab_chunk], ab_data.length+ab_chunk.length);\n\t\t\t\t\t\tfk_write();\n\t\t\t\t\t},\n\t\t\t\t}))\n\t\t\t\t\t// error\n\t\t\t\t\t.on('error', (e_stream) => {\n\t\t\t\t\t\tfe_bucket(e_stream);\n\t\t\t\t\t})\n\t\t\t\t\t// wait for it to finish\n\t\t\t\t\t.on('finish', () => {\n\t\t\t\t\t\tfk_bucket(ab_data);\n\t\t\t\t\t});\n\t\t\t});\n\t\t}\n\t}\n}\n\nclass Writable extends stream.Writable {\n\tuntil(s_event, b_return_stream) {\n\t\treturn new Promise((fk_until, fe_until) => {\n\t\t\t// convert error to rejected promise\n\t\t\tthis.on('error', (e_stream) => {\n\t\t\t\tfe_until(e_stream);\n\t\t\t});\n\n\t\t\t// special cases returns `this`\n\t\t\tif(b_return_stream) {\n\t\t\t\tthis.once(s_event, (...a_args) => {\n\t\t\t\t\tfk_until(this, ...a_args);\n\t\t\t\t});\n\t\t\t}\n\t\t\telse {\n\t\t\t\tthis.once(s_event, fk_until);\n\t\t\t}\n\t\t});\n\t}\n\n\t// rdfjs impl\n\timport(ds_source) {\n\t\tds_source\n\t\t\t.on('data', w_chunk => this.write(w_chunk))\n\t\t\t.on('end', () => this.end())\n\t\t\t.on('error', e_read => this.emit('error', e_read));\n\n\t\treturn this;\n\t}\n}\n\nclass Duplex extends stream.Duplex {\n\tuntil(s_event, b_return_stream) {\n\t\treturn new Promise((fk_until, fe_until) => {\n\t\t\t// convert error to rejected promise\n\t\t\tthis.on('error', (e_stream) => {\n\t\t\t\tfe_until(e_stream);\n\t\t\t});\n\n\t\t\t// special cases returns `this`\n\t\t\tif(b_return_stream) {\n\t\t\t\tthis.once(s_event, (...a_args) => {\n\t\t\t\t\tfk_until(this, ...a_args);\n\t\t\t\t});\n\t\t\t}\n\t\t\telse {\n\t\t\t\tthis.once(s_event, fk_until);\n\t\t\t}\n\t\t});\n\t}\n\n\tbucket(s_encoding='utf8') {\n\t\tlet g_readable = this._readableState;\n\n\t\t// object mode\n\t\tif(g_readable.objectMode) {\n\t\t\t// async operation\n\t\t\treturn new Promise((fk_bucket, fe_bucket) => {\n\t\t\t\tlet a_data = [];\n\n\t\t\t\t// pipe to writable\n\t\t\t\tthis.pipe(new stream.Writable({\n\t\t\t\t\twrite(w_event, s_write_encoding, fk_write) {\n\t\t\t\t\t\ta_data.push(w_event);\n\t\t\t\t\t\tfk_write();\n\t\t\t\t\t},\n\n\t\t\t\t\twritev(a_chunks, fk_writev) {\n\t\t\t\t\t\ta_data.push(...a_chunks);\n\t\t\t\t\t\tfk_writev();\n\t\t\t\t\t},\n\t\t\t\t}))\n\t\t\t\t\t// error\n\t\t\t\t\t.on('error', (e_stream) => {\n\t\t\t\t\t\tfe_bucket(e_stream);\n\t\t\t\t\t})\n\t\t\t\t\t// wait for it to finish\n\t\t\t\t\t.on('finish', () => {\n\t\t\t\t\t\tfk_bucket(a_data);\n\t\t\t\t\t});\n\t\t\t});\n\t\t}\n\t\t// utf8-encoded strings\n\t\telse if('utf8' === s_encoding || 'utf-8' === s_encoding) {\n\t\t\t// async operation\n\t\t\treturn new Promise((fk_bucket, fe_bucket) => {\n\t\t\t\tlet s_data = '';\n\n\t\t\t\t// set encoding\n\t\t\t\tthis.setEncoding(s_encoding);\n\n\t\t\t\t// pipe to writable\n\t\t\t\tthis.pipe(new stream.Writable({\n\t\t\t\t\tdecodeStrings: false,\n\n\t\t\t\t\twrite(s_chunk, s_write_encoding, fk_write) {\n\t\t\t\t\t\ts_data += s_chunk;\n\t\t\t\t\t\tfk_write();\n\t\t\t\t\t},\n\n\t\t\t\t\twritev(a_chunks, fk_writev) {\n\t\t\t\t\t\ts_data += a_chunks.join('');\n\t\t\t\t\t\tfk_writev();\n\t\t\t\t\t},\n\t\t\t\t}))\n\t\t\t\t\t// error\n\t\t\t\t\t.on('error', (e_stream) => {\n\t\t\t\t\t\tfe_bucket(e_stream);\n\t\t\t\t\t})\n\t\t\t\t\t// wait for it to finish\n\t\t\t\t\t.on('finish', () => {\n\t\t\t\t\t\tfk_bucket(s_data);\n\t\t\t\t\t});\n\t\t\t});\n\t\t}\n\t\t// buffer\n\t\telse if('buffer' === s_encoding) {\n\t\t\t// async operation\n\t\t\treturn new Promise((fk_bucket, fe_bucket) => {\n\t\t\t\tlet ab_data = Buffer.from([]);\n\n\t\t\t\t// pipe to writable\n\t\t\t\tthis.pipe(new stream.Writable({\n\t\t\t\t\tdecodeStrings: true,\n\n\t\t\t\t\twrite(ab_chunk, s_write_encoding, fk_write) {\n\t\t\t\t\t\tab_data = Buffer.concat([ab_data, ab_chunk], ab_data.length+ab_chunk.length);\n\t\t\t\t\t\tfk_write();\n\t\t\t\t\t},\n\t\t\t\t}))\n\t\t\t\t\t// error\n\t\t\t\t\t.on('error', (e_stream) => {\n\t\t\t\t\t\tfe_bucket(e_stream);\n\t\t\t\t\t})\n\t\t\t\t\t// wait for it to finish\n\t\t\t\t\t.on('finish', () => {\n\t\t\t\t\t\tfk_bucket(ab_data);\n\t\t\t\t\t});\n\t\t\t});\n\t\t}\n\t}\n}\n\nclass Transform extends stream.Transform {\n\tuntil(s_event, b_return_stream) {\n\t\treturn new Promise((fk_until, fe_until) => {\n\t\t\t// convert error to rejected promise\n\t\t\tthis.on('error', (e_stream) => {\n\t\t\t\tfe_until(e_stream);\n\t\t\t});\n\n\t\t\t// special cases returns `this`\n\t\t\tif(b_return_stream) {\n\t\t\t\tthis.once(s_event, (...a_args) => {\n\t\t\t\t\tfk_until(this, ...a_args);\n\t\t\t\t});\n\t\t\t}\n\t\t\telse {\n\t\t\t\tthis.once(s_event, fk_until);\n\t\t\t}\n\t\t});\n\t}\n\n\tbucket(s_encoding='utf8') {\n\t\tlet g_readable = this._readableState;\n\n\t\t// object mode\n\t\tif(g_readable.objectMode) {\n\t\t\t// async operation\n\t\t\treturn new Promise((fk_bucket, fe_bucket) => {\n\t\t\t\tlet a_data = [];\n\n\t\t\t\t// pipe to writable\n\t\t\t\tthis.pipe(new stream.Writable({\n\t\t\t\t\twrite(w_event, s_write_encoding, fk_write) {\n\t\t\t\t\t\ta_data.push(w_event);\n\t\t\t\t\t\tfk_write();\n\t\t\t\t\t},\n\n\t\t\t\t\twritev(a_chunks, fk_writev) {\n\t\t\t\t\t\ta_data.push(...a_chunks);\n\t\t\t\t\t\tfk_writev();\n\t\t\t\t\t},\n\t\t\t\t}))\n\t\t\t\t\t// error\n\t\t\t\t\t.on('error', (e_stream) => {\n\t\t\t\t\t\tfe_bucket(e_stream);\n\t\t\t\t\t})\n\t\t\t\t\t// wait for it to finish\n\t\t\t\t\t.on('finish', () => {\n\t\t\t\t\t\tfk_bucket(a_data);\n\t\t\t\t\t});\n\t\t\t});\n\t\t}\n\t\t// utf8-encoded strings\n\t\telse if('utf8' === s_encoding || 'utf-8' === s_encoding) {\n\t\t\t// async operation\n\t\t\treturn new Promise((fk_bucket, fe_bucket) => {\n\t\t\t\tlet s_data = '';\n\n\t\t\t\t// set encoding\n\t\t\t\tthis.setEncoding(s_encoding);\n\n\t\t\t\t// pipe to writable\n\t\t\t\tthis.pipe(new stream.Writable({\n\t\t\t\t\tdecodeStrings: false,\n\n\t\t\t\t\twrite(s_chunk, s_write_encoding, fk_write) {\n\t\t\t\t\t\ts_data += s_chunk;\n\t\t\t\t\t\tfk_write();\n\t\t\t\t\t},\n\n\t\t\t\t\twritev(a_chunks, fk_writev) {\n\t\t\t\t\t\ts_data += a_chunks.join('');\n\t\t\t\t\t\tfk_writev();\n\t\t\t\t\t},\n\t\t\t\t}))\n\t\t\t\t\t// error\n\t\t\t\t\t.on('error', (e_stream) => {\n\t\t\t\t\t\tfe_bucket(e_stream);\n\t\t\t\t\t})\n\t\t\t\t\t// wait for it to finish\n\t\t\t\t\t.on('finish', () => {\n\t\t\t\t\t\tfk_bucket(s_data);\n\t\t\t\t\t});\n\t\t\t});\n\t\t}\n\t\t// buffer\n\t\telse if('buffer' === s_encoding) {\n\t\t\t// async operation\n\t\t\treturn new Promise((fk_bucket, fe_bucket) => {\n\t\t\t\tlet ab_data = Buffer.from([]);\n\n\t\t\t\t// pipe to writable\n\t\t\t\tthis.pipe(new stream.Writable({\n\t\t\t\t\tdecodeStrings: true,\n\n\t\t\t\t\twrite(ab_chunk, s_write_encoding, fk_write) {\n\t\t\t\t\t\tab_data = Buffer.concat([ab_data, ab_chunk], ab_data.length+ab_chunk.length);\n\t\t\t\t\t\tfk_write();\n\t\t\t\t\t},\n\t\t\t\t}))\n\t\t\t\t\t// error\n\t\t\t\t\t.on('error', (e_stream) => {\n\t\t\t\t\t\tfe_bucket(e_stream);\n\t\t\t\t\t})\n\t\t\t\t\t// wait for it to finish\n\t\t\t\t\t.on('finish', () => {\n\t\t\t\t\t\tfk_bucket(ab_data);\n\t\t\t\t\t});\n\t\t\t});\n\t\t}\n\t}\n\n\t// rdfjs impl\n\timport(ds_source) {\n\t\tds_source\n\t\t\t.on('data', w_chunk => this.write(w_chunk))\n\t\t\t.on('end', () => this.end())\n\t\t\t.on('error', e_read => this.emit('error', e_read));\n\n\t\treturn this;\n\t}\n\n\tdemolish(e_destroy) {\n\t\t// do not allow to push\n\t\tthis.push = (z_chunk) => {\n\t\t\t// ignore eof signals from node core\n\t\t\tif(null === z_chunk) return;\n\n\t\t\t// anything else is bad\n\t\t\tthrow new Error(`[ERR_STREAM_DESTROYED]: Cannot push after stream was destroyed`);\n\t\t};\n\n\t\t// do not allow to emit 'end'\n\t\tthis.emit = function(s_event, ...a_args) {\n\t\t\tif('end' === s_event) return;\n\n\t\t\tObject.getPrototypeOf(this).emit.apply(this, [s_event, ...a_args]);\n\t\t};\n\n\t\t// an error was given, destroy the stream as well\n\t\tif(e_destroy) {\n\t\t\treturn stream.Transform.prototype.destroy.call(this, e_destroy);\n\t\t}\n\t}\n}\n\n// eslint-disable-next-line no-new-func\nconst b_is_node = (new Function(/* syntax: js */ `try {return this===global;}catch(e){return false;}`))();\n\n// deduce the runtime environment\nconst [B_BROWSER, B_BROWSERIFY] = (() => 'undefined' === typeof process\n\t? [true, false]\n\t: (process.browser\n\t\t? [true, true]\n\t\t: ('undefined' === process.versions || 'undefined' === process.versions.node\n\t\t\t? [true, false]\n\t\t\t: [false, false])))();\n\n// node.js or browserify; patch for node < v10\nif(B_BROWSERIFY || (b_is_node && (+(/^v(\\d+)/.exec(process.version)[1])) < 10)) {\n\t// override destroy methods\n\tTransform.prototype.destroy = Duplex.prototype.destroy = function(e_destroy, fke_destroy) {\n\t\tthis._readableState.destroyed = true;\n\t\tthis._writableState.destroyed = true;\n\n\t\tlet f_emit_close = () => {\n\t\t\tif(!this._writableState.emitClose) return;\n\t\t\tif(!this._readableState.emitClose) return;\n\t\t\tthis.emit('close');\n\t\t};\n\n\t\tthis._destroy(e_destroy || null, (e_destroy_re) => {\n\t\t\tif(!fke_destroy && e_destroy_re) {\n\t\t\t\tprocess.nextTick(() => {\n\t\t\t\t\tthis.emit('error', e_destroy_re);\n\t\t\t\t\tf_emit_close();\n\t\t\t\t});\n\t\t\t\tthis._writableState.errorEmitted = true;\n\t\t\t}\n\t\t\telse {\n\t\t\t\tprocess.nextTick(f_emit_close);\n\t\t\t\tif(fke_destroy) fke_destroy(e_destroy_re);\n\t\t\t}\n\t\t});\n\n\t\treturn this;\n\t};\n\n\t// override default _destroy implementations\n\tTransform.prototype._destroy = Duplex.prototype._destroy = (e_destroy, fke_destroy) => fke_destroy(e_destroy);\n}\n\nclass QuadsToOther extends Transform {\n\tconstructor(gc_transform={}) {\n\t\tsuper({\n\t\t\t...gc_transform,\n\t\t\twritableObjectMode: true,\n\t\t\treadableObjectMode: true,\n\t\t});\n\n\t\tthis._as_inputs = new Set();\n\n\t\t// forward prefix and comment events\n\t\tthis.on('pipe', (ds_src) => {\n\t\t\tthis._as_inputs.add(ds_src);\n\n\t\t\tds_src\n\t\t\t\t.on('prefix', (...a_args) => {\n\t\t\t\t\tthis.emit('prefix', ...a_args);\n\t\t\t\t})\n\t\t\t\t.on('comment', (...a_args) => {\n\t\t\t\t\tthis.emit('comment', ...a_args);\n\t\t\t\t});\n\t\t});\n\n\t\tthis.on('unpipe', (ds_src) => {\n\t\t\tthis._as_inputs.delete(ds_src);\n\t\t});\n\t}\n\n\t_destroy() {\n\t\tfor(let ds_input of this._as_inputs) {\n\t\t\tds_input.destroy();\n\t\t}\n\t}\n}\n\nclass Quads_To_JSON_Transform extends QuadsToOther {\n\t// serializse json\n\t_transform(g_quad, s_encoding, fk_transform) {\n\t\tfk_transform(null, JSON.stringify(g_quad.isolate())+'\\n');\n\t}\n}\n\nclass Quads_To_Writable extends QuadsToOther {\n\t_transform(g_quad, s_encoding, fk_transform) {\n\t\tfk_transform(null, {\n\t\t\ttype: 'quad',\n\t\t\tvalue: g_quad,\n\t\t});\n\t}\n}\n\nTransform.QuadsToOther = QuadsToOther;\n\nmodule.exports = {\n\t...stream,\n\tReadable,\n\tWritable,\n\tDuplex,\n\tTransform,\n\n\tQuadsToOther,\n\n\t// create a transform from quad objects into JSON strings for trivial serialization\n\tquads_to_json() {\n\t\treturn new Quads_To_JSON_Transform();\n\t},\n\n\t// create a transform from quad objects into writable data events\n\tquads_to_writable() {\n\t\treturn new Quads_To_Writable();\n\t},\n\n\t// create a simple, single-event readable stream\n\tsource(w_push, s_encoding=null) {\n\t\t// encoding not explicit, string given; assume utf8\n\t\tif(!s_encoding && 'string' === typeof w_push) s_encoding = 'utf8';\n\n\t\t// readable\n\t\treturn new Readable({\n\t\t\tobjectMode: !s_encoding && 'string' !== typeof w_push && !Buffer.isBuffer(w_push),\n\n\t\t\tread() {\n\t\t\t\tthis.push(w_push, s_encoding);\n\t\t\t\tthis.push(null);\n\t\t\t},\n\t\t});\n\t},\n};\n"],"names":["queueMicrotask","dp_resolve","Promise","resolve","fk","then","catch","e_callback","setTimeout","e_define","stream","factory","RT_ABSOLUTE_IRI_VALID","RT_ABSOLUTE_IRI_ESCAPELESS_VALID","RT_NAMED_NODE_VALID","RT_NAMED_NODE_ESCAPELESS_VALID","R_UNICODE_ANY","F_REPLACE_UNICODE_ANY","s_","s_4","s_8","String","fromCodePoint","parseInt","R_CLEAN","R_CLEAN_COMMENTS","RT_HAS_ESCAPES","R_EOL","RT_BLANK_NODE_LABEL_VALID","RT_LANGUAGE_VALID","R_HWS","R_LANGTAG","R_IRIREF","F_REPLACE_STRLIT_CONTENTS","s_whitespace","s_auto","s_invalid","console","assert","Error","JSON","stringify","R_STRLIT_SHORT_CONTENTS_ESCAPES_HARD","R_STRLIT_SHORT_CONTENTS_ESCAPES_SOFT","unescape_literal_short_hard","s_literal","replace","unescape_literal_short_soft","m_incomplete","R_STRLIT_ESCAPE_INCOMPLETE","exec","i_safe","index","slice","R_STRLIT_SHORT_DOUBLE_TERM","RegExp_$lookbehind_polyfill","s_input","m_match","RegExp","prototype","call","this","i_start","length","mk_lookbehind_regex","e_compile","f_lookbehind","r_polyfill","f_polyfill","R_QUAD_ESCAPELESS_SP","R_QUAD","R_BLANK_NODE","NQuads_Reader","Transform","constructor","g_impls","super","decodeStrings","writableObjectMode","readableObjectMode","flush","transform","on","ds_input","_ds_input","setEncoding","pipe","ds_out","ds_dst","_writableState","objectMode","isGraphyWritable","quads_to_writable","quads_to_json","Reader","g_config","input","g_input","relax","b_relax","debug","b_debug","b_allow_relative_iris","allow_relative_iris","allowRelativeIRIs","allowRelativeIris","dc_factory","_dc_factory","adopt","dataFactory","data_factory","unfiltered","f_quad","_f_quad","quad","Object","assign","s","prepend","n","_b_debug","_b_relax","_b_destroyed","_b_trim_start","_f_state","statement","_kt_subject","_kt_predicate","_kt_object","_s_literal","_kt_default_graph","defaultGraph","_kt_rdfs_lang_string","namedNode","r_clean","_r_clean","relaxed","warn","stack","ds_transform","blankNode","languagedLiteral","rt_named_node_valid","rt_named_node_valid_escapeless","k_self","create_named_node","create_named_node_escapeless","create_blank_node","create_languaged_literal","p_iri","test","_error","s_label","s_contents","s_language","b_init","s_chunk","s_encoding","fk_chunk","emit","lastIndex","m_clean","emit_comments","i","parse","e_read","destroy","fk_flush","demolish","substr","name","_destroy","a_args","_f_data_quad","kt_subject","kt_predicate","kt_object","kt_graph","push","s_event","s_captured","a_comments","split","s_comment","bind","string","TypeError","end","_graphy_reader","s_message","error","comment","read","once","progress","eof","finish","data","f_sync","apply","f_data_quad","simpleLiteral","datatypedLiteral","kt_default_graph","m_statement_e_sp","b_graph_late","p_object","s_subject","z_bail","strlit_contents","kt_datatype","toLowerCase","s_graph","s_predicate","m_statement","m_term","i_term","s_dirty","datatype_or_langtag","s_clean","s_incomplete","max_token_length","parse_error","eos","x","m_langtag","post_object","graph","m_iriref","p_datatype","statement_term","i_stop","indexOf","m_blank","s_state","e_destroy","module","exports","z_arg_0","pipeTo","toString","Readable","gc_readable","iterator","until","b_return_stream","fk_until","fe_until","e_stream","bucket","g_readable","_readableState","fk_bucket","fe_bucket","a_data","Writable","write","w_event","s_write_encoding","fk_write","writev","a_chunks","fk_writev","s_data","join","ab_data","Buffer","from","ab_chunk","concat","import","ds_source","w_chunk","Duplex","z_chunk","getPrototypeOf","b_is_node","Function","B_BROWSER","B_BROWSERIFY","process","browser","versions","node","version","fke_destroy","destroyed","f_emit_close","emitClose","e_destroy_re","nextTick","errorEmitted","QuadsToOther","gc_transform","_as_inputs","Set","ds_src","add","delete","Quads_To_JSON_Transform","_transform","g_quad","fk_transform","isolate","Quads_To_Writable","type","value","source","w_push","isBuffer"],"sourceRoot":""} \ No newline at end of file diff --git a/dist/js/420.fb240bdb.js b/dist/js/420.fb240bdb.js new file mode 100644 index 0000000..a02b308 --- /dev/null +++ b/dist/js/420.fb240bdb.js @@ -0,0 +1,2 @@ +(self["webpackChunkmobilitydcatap_ui"]=self["webpackChunkmobilitydcatap_ui"]||[]).push([[420],{46420:function(t,e,s){const r=s(69162),a=s(19488);class n extends a{constructor(t){super(r,t)}}t.exports=n},86505:function(t){class e{constructor(t){this.stream=t,this.array=[]}push(t){this.array.push(t)}end(){this.stream.push(this.array),this.stream.push(null)}}t.exports=e},69162:function(t,e,s){const r=s(28399),a=s(86505),n=s(85863);class i extends r{constructor(t,{encoding:e="object"}={}){if(super({objectMode:!0,read:()=>{}}),"object"===e&&(this.encoder=new a(this)),"string"===e&&(this.encoder=new n(this)),!this.encoder)throw new Error(`unknown encoding: ${e}`);t.on("data",(t=>{const e={};let s=e;"DefaultGraph"!==t.graph.termType&&(e["@id"]=t.graph.value,e["@graph"]={},s=e["@graph"]),s["@id"]=i.subjectValue(t.subject),"http://www.w3.org/1999/02/22-rdf-syntax-ns#type"===t.predicate.value?s["@type"]=i.subjectValue(t.object):s[t.predicate.value]=i.objectValue(t.object),this.encoder.push(e)})),t.on("end",(()=>this.encoder.end())),t.on("error",(t=>this.emit("error",t)))}static subjectValue(t){return"BlankNode"===t.termType?"_:"+t.value:t.value}static objectValue(t){return"NamedNode"===t.termType?{"@id":t.value}:"BlankNode"===t.termType?{"@id":"_:"+t.value}:t.language?{"@language":t.language,"@value":t.value}:t.datatype&&"http://www.w3.org/2001/XMLSchema#string"!==t.datatype.value?{"@type":t.datatype.value,"@value":t.value}:t.value}}t.exports=i},85863:function(t){class e{constructor(t){this.stream=t,this.first=!0,this.stream.push("[")}push(t){this.first?this.first=!1:this.stream.push(","),this.stream.push(JSON.stringify(t))}end(){this.stream.push("]"),this.stream.push(null)}}t.exports=e},19488:function(t){class e{constructor(t,e){this.Impl=t,this.options=e}import(t,e){const s=new this.Impl(t,Object.assign({},this.options,e));return t.on("end",(()=>{s.readable||s.emit("end")})),t.on("error",(t=>{s.emit("error",t)})),s}}t.exports=e}}]); +//# sourceMappingURL=420.fb240bdb.js.map \ No newline at end of file diff --git a/dist/js/420.fb240bdb.js.map b/dist/js/420.fb240bdb.js.map new file mode 100644 index 0000000..920c6e5 --- /dev/null +++ b/dist/js/420.fb240bdb.js.map @@ -0,0 +1 @@ +{"version":3,"file":"js/420.fb240bdb.js","mappings":"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","sources":["webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld/index.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld/lib/ObjectEncoder.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld/lib/SerializerStream.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld/lib/StringEncoder.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/sink/index.js"],"sourcesContent":["const SerializerStream = require('./lib/SerializerStream')\nconst Sink = require('@rdfjs/sink')\n\nclass Serializer extends Sink {\n constructor (options) {\n super(SerializerStream, options)\n }\n}\n\nmodule.exports = Serializer\n","class ObjectEncoder {\n constructor (stream) {\n this.stream = stream\n this.array = []\n }\n\n push (jsonld) {\n this.array.push(jsonld)\n }\n\n end () {\n this.stream.push(this.array)\n this.stream.push(null)\n }\n}\n\nmodule.exports = ObjectEncoder\n","const Readable = require('readable-stream')\nconst ObjectEncoder = require('./ObjectEncoder')\nconst StringEncoder = require('./StringEncoder')\n\nclass SerializerStream extends Readable {\n constructor (input, { encoding = 'object' } = {}) {\n super({\n objectMode: true,\n read: () => {}\n })\n\n if (encoding === 'object') {\n this.encoder = new ObjectEncoder(this)\n }\n\n if (encoding === 'string') {\n this.encoder = new StringEncoder(this)\n }\n\n if (!this.encoder) {\n throw new Error(`unknown encoding: ${encoding}`)\n }\n\n input.on('data', quad => {\n const jsonld = {}\n let triple = jsonld\n\n if (quad.graph.termType !== 'DefaultGraph') {\n jsonld['@id'] = quad.graph.value\n jsonld['@graph'] = {}\n triple = jsonld['@graph']\n }\n\n triple['@id'] = SerializerStream.subjectValue(quad.subject)\n\n if (quad.predicate.value === 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type') {\n triple['@type'] = SerializerStream.subjectValue(quad.object)\n } else {\n triple[quad.predicate.value] = SerializerStream.objectValue(quad.object)\n }\n\n this.encoder.push(jsonld)\n })\n\n input.on('end', () => this.encoder.end())\n\n input.on('error', err => this.emit('error', err))\n }\n\n static subjectValue (subject) {\n return subject.termType === 'BlankNode' ? '_:' + subject.value : subject.value\n }\n\n static objectValue (object) {\n if (object.termType === 'NamedNode') {\n return { '@id': object.value }\n }\n\n if (object.termType === 'BlankNode') {\n return { '@id': '_:' + object.value }\n }\n\n if (object.language) {\n return { '@language': object.language, '@value': object.value }\n } else if (object.datatype && object.datatype.value !== 'http://www.w3.org/2001/XMLSchema#string') {\n return { '@type': object.datatype.value, '@value': object.value }\n } else {\n return object.value\n }\n }\n}\n\nmodule.exports = SerializerStream\n","class StringEncoder {\n constructor (stream) {\n this.stream = stream\n this.first = true\n\n this.stream.push('[')\n }\n\n push (jsonld) {\n if (this.first) {\n this.first = false\n } else {\n this.stream.push(',')\n }\n\n this.stream.push(JSON.stringify(jsonld))\n }\n\n end () {\n this.stream.push(']')\n this.stream.push(null)\n }\n}\n\nmodule.exports = StringEncoder\n","class Sink {\n constructor (Impl, options) {\n this.Impl = Impl\n this.options = options\n }\n\n import (input, options) {\n const output = new this.Impl(input, Object.assign({}, this.options, options))\n\n input.on('end', () => {\n if (!output.readable) {\n output.emit('end')\n }\n })\n\n input.on('error', (err) => {\n output.emit('error', err)\n })\n\n return output\n }\n}\n\nmodule.exports = Sink\n"],"names":["SerializerStream","Sink","Serializer","constructor","options","super","module","exports","ObjectEncoder","stream","this","array","push","jsonld","end","Readable","StringEncoder","input","encoding","objectMode","read","encoder","Error","on","quad","triple","graph","termType","value","subjectValue","subject","predicate","object","objectValue","err","emit","language","datatype","first","JSON","stringify","Impl","import","output","Object","assign","readable"],"sourceRoot":""} \ No newline at end of file diff --git a/dist/js/43.fb5b896b.js b/dist/js/43.fb5b896b.js new file mode 100644 index 0000000..699120f --- /dev/null +++ b/dist/js/43.fb5b896b.js @@ -0,0 +1,2 @@ +"use strict";(self["webpackChunkmobilitydcatap_ui"]=self["webpackChunkmobilitydcatap_ui"]||[]).push([[43],{8043:function(t,r,e){e.r(r),e.d(r,{default:function(){return R}});var n=e(86397);function u(t){return"_:"+t.value}var a=u;function o(t,r){return[...t].map((t=>r(t))).join("\n")+"\n"}var i=o;function c(){return""}var s=c;function f(t){return"<"+t.value+">"}var l=f;const p=/["\\\\\n\r]/,d=/["\\\\\n\r]/g,m={'"':'\\"',"\\":"\\\\","\n":"\\n","\r":"\\r"};function w(t){return m[t]}function h(t){return p.test(t)?t.replace(d,w):t}function v(t){const r=h(t.value);return"http://www.w3.org/2001/XMLSchema#string"===t.datatype.value?'"'+r+'"':"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"===t.datatype.value?'"'+r+'"@'+t.language:'"'+r+'"^^'+l(t.datatype)}var y=v;function b(t,r){const e=r(t.subject),n=r(t.predicate),u=r(t.object),a=r(t.graph);return`${e} ${n} ${u} ${a?a+" ":""}.`}var g=b;function T(t){return"?"+t.value}var j=T;function k(t){if(!t)return null;if("BlankNode"===t.termType)return a(t);if("DefaultGraph"===t.termType)return s();if("Literal"===t.termType)return y(t);if("NamedNode"===t.termType)return l(t);if("Quad"===t.termType||t.subject&&t.predicate&&t.object&&t.graph)return g(t,k);if("Variable"===t.termType)return j(t);if(t[Symbol.iterator])return i(t,k);throw new Error(`unknown termType ${t.termType}`)}var $=k,S=e(46674),_=e(14088);class A{constructor(t){const r=new _.Transform({objectMode:!0,transform:(t,r,e)=>{e(null,`${$(t)}\n`)}});return t.pipe(r),(0,S.A)(r)}}var x=A;class N extends n.A{constructor(){super(x)}}var R=N},86397:function(t,r){class e{constructor(t,r){this.Impl=t,this.options=r}import(t,r){const e=new this.Impl(t,{...this.options,...r});return t.on("end",(()=>{e.readable||e.emit("end")})),t.on("error",(t=>{e.emit("error",t)})),e}}r.A=e},46674:function(t,r){const e=new Set(["_write","_writableState","writable"]);function n(t){return new Proxy(t,{has(t,r){return!e.has(r)&&Reflect.has(...arguments)},get(t,r){if(e.has(r))return;const n=Reflect.get(...arguments);return n&&"function"===typeof n.bind?n.bind(t):n},set(t,r,n){if(!e.has(r))return Reflect.set(...arguments)}})}r.A=n}}]); +//# sourceMappingURL=43.fb5b896b.js.map \ No newline at end of file diff --git a/dist/js/43.fb5b896b.js.map b/dist/js/43.fb5b896b.js.map new file mode 100644 index 0000000..f45765b --- /dev/null +++ b/dist/js/43.fb5b896b.js.map @@ -0,0 +1 @@ +{"version":3,"file":"js/43.fb5b896b.js","mappings":"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","sources":["webpack://mobilitydcatap-ui/./node_modules/@zazuko/formats-lazy/node_modules/@rdfjs/to-ntriples/lib/blankNode.js","webpack://mobilitydcatap-ui/./node_modules/@zazuko/formats-lazy/node_modules/@rdfjs/to-ntriples/lib/dataset.js","webpack://mobilitydcatap-ui/./node_modules/@zazuko/formats-lazy/node_modules/@rdfjs/to-ntriples/lib/defaultGraph.js","webpack://mobilitydcatap-ui/./node_modules/@zazuko/formats-lazy/node_modules/@rdfjs/to-ntriples/lib/namedNode.js","webpack://mobilitydcatap-ui/./node_modules/@zazuko/formats-lazy/node_modules/@rdfjs/to-ntriples/lib/literal.js","webpack://mobilitydcatap-ui/./node_modules/@zazuko/formats-lazy/node_modules/@rdfjs/to-ntriples/lib/quad.js","webpack://mobilitydcatap-ui/./node_modules/@zazuko/formats-lazy/node_modules/@rdfjs/to-ntriples/lib/variable.js","webpack://mobilitydcatap-ui/./node_modules/@zazuko/formats-lazy/node_modules/@rdfjs/to-ntriples/index.js","webpack://mobilitydcatap-ui/./node_modules/@zazuko/formats-lazy/node_modules/@rdfjs/serializer-ntriples/lib/SerializerStream.js","webpack://mobilitydcatap-ui/./node_modules/@zazuko/formats-lazy/node_modules/@rdfjs/serializer-ntriples/index.js","webpack://mobilitydcatap-ui/./node_modules/@zazuko/formats-lazy/node_modules/@rdfjs/sink/index.js","webpack://mobilitydcatap-ui/./node_modules/duplex-to/readable.js"],"sourcesContent":["function blankNode (blankNode) {\n return '_:' + blankNode.value // TODO: escape special chars\n}\n\nexport default blankNode\n","function dataset (dataset, toNT) {\n return [...dataset].map(quad => toNT(quad)).join('\\n') + '\\n'\n}\n\nexport default dataset\n","function defaultGraph () {\n return ''\n}\n\nexport default defaultGraph\n","function namedNode (namedNode) {\n return '<' + namedNode.value + '>'\n}\n\nexport default namedNode\n","import namedNode from './namedNode.js'\n\nconst echarRegEx = /[\"\\\\\\\\\\n\\r]/\nconst echarRegExAll = /[\"\\\\\\\\\\n\\r]/g\n\nconst echarReplacement = {\n '\"': '\\\\\"',\n '\\\\': '\\\\\\\\',\n '\\n': '\\\\n',\n '\\r': '\\\\r'\n}\n\nfunction echarReplacer (char) {\n return echarReplacement[char]\n}\n\nfunction escapeValue (value) {\n if (echarRegEx.test(value)) {\n return value.replace(echarRegExAll, echarReplacer)\n }\n\n return value\n}\n\nfunction literal (literal) {\n const escapedValue = escapeValue(literal.value)\n\n if (literal.datatype.value === 'http://www.w3.org/2001/XMLSchema#string') {\n return '\"' + escapedValue + '\"'\n }\n\n if (literal.datatype.value === 'http://www.w3.org/1999/02/22-rdf-syntax-ns#langString') {\n return '\"' + escapedValue + '\"@' + literal.language\n }\n\n return '\"' + escapedValue + '\"^^' + namedNode(literal.datatype)\n}\n\nexport default literal\n","function quad (quad, toNT) {\n const subjectString = toNT(quad.subject)\n const predicateString = toNT(quad.predicate)\n const objectString = toNT(quad.object)\n const graphString = toNT(quad.graph)\n\n return `${subjectString} ${predicateString} ${objectString} ${graphString ? graphString + ' ' : ''}.`\n}\n\nexport default quad\n","function variable (variable) {\n return '?' + variable.value\n}\n\nexport default variable\n","import blankNode from './lib/blankNode.js'\nimport dataset from './lib/dataset.js'\nimport defaultGraph from './lib/defaultGraph.js'\nimport literal from './lib/literal.js'\nimport namedNode from './lib/namedNode.js'\nimport quad from './lib/quad.js'\nimport variable from './lib/variable.js'\n\nfunction toNT (term) {\n if (!term) {\n return null\n }\n\n if (term.termType === 'BlankNode') {\n return blankNode(term)\n }\n\n if (term.termType === 'DefaultGraph') {\n return defaultGraph()\n }\n\n if (term.termType === 'Literal') {\n return literal(term)\n }\n\n if (term.termType === 'NamedNode') {\n return namedNode(term)\n }\n\n // legacy quad support without .termType\n if (term.termType === 'Quad' || (term.subject && term.predicate && term.object && term.graph)) {\n return quad(term, toNT)\n }\n\n if (term.termType === 'Variable') {\n return variable(term)\n }\n\n if (term[Symbol.iterator]) {\n return dataset(term, toNT)\n }\n\n throw new Error(`unknown termType ${term.termType}`)\n}\n\nexport default toNT\n","import toNT from '@rdfjs/to-ntriples'\nimport toReadable from 'duplex-to/readable.js'\nimport { Transform } from 'readable-stream'\n\nclass SerializerStream {\n constructor (input) {\n const stream = new Transform({\n objectMode: true,\n transform: (quad, encoding, callback) => {\n callback(null, `${toNT(quad)}\\n`)\n }\n })\n\n input.pipe(stream)\n\n return toReadable(stream)\n }\n}\n\nexport default SerializerStream\n","import Sink from '@rdfjs/sink'\nimport SerializerStream from './lib/SerializerStream.js'\n\nclass Serializer extends Sink {\n constructor () {\n super(SerializerStream)\n }\n}\n\nexport default Serializer\n","class Sink {\n constructor (Impl, options) {\n this.Impl = Impl\n this.options = options\n }\n\n import (input, options) {\n const output = new this.Impl(input, { ...this.options, ...options })\n\n input.on('end', () => {\n if (!output.readable) {\n output.emit('end')\n }\n })\n\n input.on('error', err => {\n output.emit('error', err)\n })\n\n return output\n }\n}\n\nexport default Sink\n","const blackList = new Set(['_write', '_writableState', 'writable'])\n\nfunction readable (duplex) {\n return new Proxy(duplex, {\n has (target, key) {\n if (blackList.has(key)) {\n return false\n }\n\n return Reflect.has(...arguments)\n },\n get (target, key) {\n if (blackList.has(key)) {\n return undefined\n }\n\n const result = Reflect.get(...arguments)\n\n if (result && typeof result.bind === 'function') {\n return result.bind(target)\n }\n\n return result\n },\n set (target, key, value) {\n if (blackList.has(key)) {\n return undefined\n }\n\n return Reflect.set(...arguments)\n }\n })\n}\n\nexport default readable\n"],"names":["blankNode","value","dataset","toNT","map","quad","join","defaultGraph","namedNode","echarRegEx","echarRegExAll","echarReplacement","echarReplacer","char","escapeValue","test","replace","literal","escapedValue","datatype","language","subjectString","subject","predicateString","predicate","objectString","object","graphString","graph","variable","term","termType","Symbol","iterator","Error","SerializerStream","constructor","input","stream","Transform","objectMode","transform","encoding","callback","pipe","Serializer","super","Sink","Impl","options","this","import","output","on","readable","emit","err","blackList","Set","duplex","Proxy","has","target","key","Reflect","arguments","get","result","bind","set"],"sourceRoot":""} \ No newline at end of file diff --git a/dist/js/49.f2c20221.js b/dist/js/49.f2c20221.js new file mode 100644 index 0000000..0462fa9 --- /dev/null +++ b/dist/js/49.f2c20221.js @@ -0,0 +1,2 @@ +(self["webpackChunkmobilitydcatap_ui"]=self["webpackChunkmobilitydcatap_ui"]||[]).push([[49],{47328:function(e,t,r){if("function"!==typeof queueMicrotask){let e=Promise.resolve();try{queueMicrotask=t=>e.then(t).catch((e=>setTimeout((()=>{throw e}),0)))}catch(a){}}const i=r(76063),s=r(41476),n=32768;class o extends s.Transform{static _flush_buffer(e){e._s_push&&(e.push(e._s_push),e._s_push="")}constructor(e={}){super({writableObjectMode:!0,readableObjectMode:!1});let{prefixes:t={}}=e;this._s_push="",this._n_max_buffer=e.max_buffer||e.maxBuffer||n,this._h_prefixes=i.cache_prefixes(t||{}),this.on("pipe",(e=>{e.on("prefix",((e,t)=>{this.write({type:"prefixes",value:{[e]:t}})})),e.on("comment",(e=>{this.write({type:"comment",value:e})}))})),e.close&&this.once("close",e.close),e.drain&&this.on("drain",e.drain),e.error&&this.on("error",e.error),e.finish&&this.once("finish",e.finish),e.data&&this.on("data",e.data),e.end&&this.once("end",e.end),e.warning&&this.on("warning",e.warning)}_serialize_hash_comment(e){return"# "+e.replace(/\n/g,"\n# ")+"\n"}_serialize_newlines(e=1){return"\n".repeat(e)}_serialize_c4r(e){let t=this._h_prefixes,r=[],s="";for(let i in e)"*"!==i&&r.push(i),s+=this._serialize_c3r(e[i]);if(r.length){let e=`Destination format does not support quads; an implicit union into the default graph was performed on the quads contained in graphs: ${r.map((e=>i.c1(e,t).verbose())).join(", ")}`;this.emit("warning",e)||console.warn(e)}return s}_serialize_c3(){throw new Error(`Write event type 'c3' not supported by ${this.constructor.name}`)}_serialize_c4(){throw new Error(`Write event type 'c4' not supported by ${this.constructor.name}`)}_serialize_c3r(){throw new Error(`Write event type 'c3r' should have been implemented by subclass ${this.constructor.name}`)}_serialize_quad(){throw new Error(`Write event type 'quad' should have been implemented by subclass ${this.constructor.name}`)}_serialize_comment(){}_update_prefixes(e,t=!1){let r={...this._h_prefixes,...e};this._h_prefixes=i.cachePrefixes(r||{},t)}_transform(e,t,r){let i;try{i=this.serialize(e)}catch(s){return r(s),s}if(i)o._flush_buffer(this),this.push(i);else{let e=this._s_push.length;e>this._n_max_buffer?o._flush_buffer(this):e&&queueMicrotask((()=>o._flush_buffer(this)))}r()}_queue(e){this._s_push+=e,this._s_push.length>this._n_max_buffer?o._flush_buffer(this):queueMicrotask((()=>o._flush_buffer(this)))}serialize(e){switch(e.type){case void 0:return this._serialize_quad(e);case"c3r":return this._serialize_c3r(e.value);case"c4r":return this._serialize_c4r(e.value);case"array":{let t="";for(let r of e.value){let e=this.serialize(r);e?t+=e:this._s_push&&(t+=this._s_push,this._s_push="")}return t}case"quad":return this._serialize_quad(e.value);case"c3":return this._serialize_c3(e.value);case"c4":return this._serialize_c4(e.value);case"prefixes":return this._serialize_prefixes(e.value);case"comment":return this._serialize_comment(e.value);case"newline":case"newlines":return this._serialize_newlines(e.value);default:throw new Error(`no such writable data event type for RDF stream: '${e.type}'`)}}rinse(){this._reset(),o._flush_buffer(this)}_flush(){o._flush_buffer(this),this.push(null)}}Object.assign(o.prototype,{isGraphyWritable:!0,_serialize_prefixes:o.prototype._update_prefixes}),e.exports=o},95049:function(e,t,r){const i=r(76063),s=r(47328),n=/^`\[[^\]]+\](.*)$/,o=new Map([[Date,e=>i.dateTime(e)],[Number,e=>i.number(e)]]);class a extends s{constructor(e={}){super(e);let{lists:t=null}=e,r=o;if(e.coercions){r=new Map(r);for(let[t,i]of e.coercions)r.set(t,i)}let i={first:">http://www.w3.org/1999/02/22-rdf-syntax-ns#first",rest:">http://www.w3.org/1999/02/22-rdf-syntax-ns#rest",nil:">http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"};if(t){let{first:e=null,rest:r=null,nil:s=null}=t;e&&(i.first=e),r&&(i.rest=r),s&&(i.nil=s)}Object.assign(this,{_xc_state:0,_hm_coercions:r,_g_lists:i})}_serialize_comment(e,t){let r="";if(2!==this._xc_state&&(r+="\n",this._xc_state=2),t&&t.width){let r=t.width,i=[];while(e.length>r){let t=e.slice(0,r+1),s=/^(.*[^\s])\s+/.exec(t);if(s){let t=s[1];i.push(t),e=e.slice(t.length).replace(/^\s+/,"")}else i.push(e.slice(0,r)),e=e.slice(r)}e=i.join("\n")}return r+(super._serialize_comment(e)||"")}_transcode_list(e,t=this._g_lists){if(e.length){let r=e[0],i=r;return Array.isArray(r)&&(i=this._transcode_list(r,t)),{[t.first]:i,[t.rest]:1===e.length?t.nil:this._transcode_list(e.slice(1),t)}}return t.nil}_apply_directive(e,t){let r,i=n.exec(e);if(!i)throw new Error(`Invalid writable data event directive string: "${e}"`);try{r=JSON.parse(i[1])}catch(o){throw new Error(`Unable to parse JSON in writable data event directive: "${i[1]}"`)}let s=r.type;switch(s){case"comment":if(this._serialize_comment)return{write:this._serialize_comment(t+"",r)};break;case"newlines":if(this._serialize_newlines)return{write:this._serialize_newlines(t)};break;case"config":switch(r.value){case"lists":{let e=this._a_list_serializers;e.push(this._serialize_list_object);let r=this._g_lists,i={first:t.first||r.first,rest:t.rest||r.rest,nil:t.nil||r.nil};return this._serialize_list_object=function(e,t){let r=this._transcode_list(e,i);return this._encode_objects(r,t)},{exit:()=>{this._serialize_list_object=e.pop()}}}default:throw new Error(`No such config key '${r.value}'`)}default:throw new Error(`Invalid writable data event directive type: '${s}'`)}return{}}_serialize_c4(e){let t=this._h_prefixes,r=[],s="";for(let i in e)"*"!==i&&r.push(i),s+=this._serialize_c3(e[i]);if(r.length){let e=`Destination format does not support quads; an implicit union into the default graph was performed on the quads contained in graphs: ${r.map((e=>i.c1(e,t).verbose())).join(", ")}`;this.emit("warning",e)||console.warn(e)}return s}}e.exports=a},41476:function(e,t,r){var i=r(48287)["Buffer"],s=r(65606);const n=r(28399);class o extends n.Readable{constructor(e={}){if(super(e),e.iterator)throw new Error("readable stream iterator shortcut not yet implemented")}until(e,t){return new Promise(((r,i)=>{this.on("error",(e=>{i(e)})),t?this.once(e,((...e)=>{r(this,...e)})):this.once(e,r)}))}bucket(e="utf8"){let t=this._readableState;return t.objectMode?new Promise(((e,t)=>{let r=[];this.pipe(new n.Writable({write(e,t,i){r.push(e),i()},writev(e,t){r.push(...e),t()}})).on("error",(e=>{t(e)})).on("finish",(()=>{e(r)}))})):"utf8"===e||"utf-8"===e?new Promise(((t,r)=>{let i="";this.setEncoding(e),this.pipe(new n.Writable({decodeStrings:!1,write(e,t,r){i+=e,r()},writev(e,t){i+=e.join(""),t()}})).on("error",(e=>{r(e)})).on("finish",(()=>{t(i)}))})):"buffer"===e?new Promise(((e,t)=>{let r=i.from([]);this.pipe(new n.Writable({decodeStrings:!0,write(e,t,s){r=i.concat([r,e],r.length+e.length),s()}})).on("error",(e=>{t(e)})).on("finish",(()=>{e(r)}))})):void 0}}class a extends n.Writable{until(e,t){return new Promise(((r,i)=>{this.on("error",(e=>{i(e)})),t?this.once(e,((...e)=>{r(this,...e)})):this.once(e,r)}))}import(e){return e.on("data",(e=>this.write(e))).on("end",(()=>this.end())).on("error",(e=>this.emit("error",e))),this}}class l extends n.Duplex{until(e,t){return new Promise(((r,i)=>{this.on("error",(e=>{i(e)})),t?this.once(e,((...e)=>{r(this,...e)})):this.once(e,r)}))}bucket(e="utf8"){let t=this._readableState;return t.objectMode?new Promise(((e,t)=>{let r=[];this.pipe(new n.Writable({write(e,t,i){r.push(e),i()},writev(e,t){r.push(...e),t()}})).on("error",(e=>{t(e)})).on("finish",(()=>{e(r)}))})):"utf8"===e||"utf-8"===e?new Promise(((t,r)=>{let i="";this.setEncoding(e),this.pipe(new n.Writable({decodeStrings:!1,write(e,t,r){i+=e,r()},writev(e,t){i+=e.join(""),t()}})).on("error",(e=>{r(e)})).on("finish",(()=>{t(i)}))})):"buffer"===e?new Promise(((e,t)=>{let r=i.from([]);this.pipe(new n.Writable({decodeStrings:!0,write(e,t,s){r=i.concat([r,e],r.length+e.length),s()}})).on("error",(e=>{t(e)})).on("finish",(()=>{e(r)}))})):void 0}}class h extends n.Transform{until(e,t){return new Promise(((r,i)=>{this.on("error",(e=>{i(e)})),t?this.once(e,((...e)=>{r(this,...e)})):this.once(e,r)}))}bucket(e="utf8"){let t=this._readableState;return t.objectMode?new Promise(((e,t)=>{let r=[];this.pipe(new n.Writable({write(e,t,i){r.push(e),i()},writev(e,t){r.push(...e),t()}})).on("error",(e=>{t(e)})).on("finish",(()=>{e(r)}))})):"utf8"===e||"utf-8"===e?new Promise(((t,r)=>{let i="";this.setEncoding(e),this.pipe(new n.Writable({decodeStrings:!1,write(e,t,r){i+=e,r()},writev(e,t){i+=e.join(""),t()}})).on("error",(e=>{r(e)})).on("finish",(()=>{t(i)}))})):"buffer"===e?new Promise(((e,t)=>{let r=i.from([]);this.pipe(new n.Writable({decodeStrings:!0,write(e,t,s){r=i.concat([r,e],r.length+e.length),s()}})).on("error",(e=>{t(e)})).on("finish",(()=>{e(r)}))})):void 0}import(e){return e.on("data",(e=>this.write(e))).on("end",(()=>this.end())).on("error",(e=>this.emit("error",e))),this}demolish(e){if(this.push=e=>{if(null!==e)throw new Error("[ERR_STREAM_DESTROYED]: Cannot push after stream was destroyed")},this.emit=function(e,...t){"end"!==e&&Object.getPrototypeOf(this).emit.apply(this,[e,...t])},e)return n.Transform.prototype.destroy.call(this,e)}}const u=new Function("try {return this===global;}catch(e){return false;}")(),[c,_]=(()=>"undefined"===typeof s?[!0,!1]:s.browser?[!0,!0]:"undefined"===s.versions||"undefined"===s.versions.node?[!0,!1]:[!1,!1])();(_||u&&+/^v(\d+)/.exec(s.version)[1]<10)&&(h.prototype.destroy=l.prototype.destroy=function(e,t){this._readableState.destroyed=!0,this._writableState.destroyed=!0;let r=()=>{this._writableState.emitClose&&this._readableState.emitClose&&this.emit("close")};return this._destroy(e||null,(e=>{!t&&e?(s.nextTick((()=>{this.emit("error",e),r()})),this._writableState.errorEmitted=!0):(s.nextTick(r),t&&t(e))})),this},h.prototype._destroy=l.prototype._destroy=(e,t)=>t(e));class f extends h{constructor(e={}){super({...e,writableObjectMode:!0,readableObjectMode:!0}),this._as_inputs=new Set,this.on("pipe",(e=>{this._as_inputs.add(e),e.on("prefix",((...e)=>{this.emit("prefix",...e)})).on("comment",((...e)=>{this.emit("comment",...e)}))})),this.on("unpipe",(e=>{this._as_inputs.delete(e)}))}_destroy(){for(let e of this._as_inputs)e.destroy()}}class p extends f{_transform(e,t,r){r(null,JSON.stringify(e.isolate())+"\n")}}class d extends f{_transform(e,t,r){r(null,{type:"quad",value:e})}}h.QuadsToOther=f,e.exports={...n,Readable:o,Writable:a,Duplex:l,Transform:h,QuadsToOther:f,quads_to_json(){return new p},quads_to_writable(){return new d},source(e,t=null){return t||"string"!==typeof e||(t="utf8"),new o({objectMode:!t&&"string"!==typeof e&&!i.isBuffer(e),read(){this.push(e,t),this.push(null)}})}}}}]); +//# sourceMappingURL=49.f2c20221.js.map \ No newline at end of file diff --git a/dist/js/49.f2c20221.js.map b/dist/js/49.f2c20221.js.map new file mode 100644 index 0000000..26b824d --- /dev/null +++ b/dist/js/49.f2c20221.js.map @@ -0,0 +1 @@ +{"version":3,"file":"js/49.f2c20221.js","mappings":"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","sources":["webpack://mobilitydcatap-ui/./node_modules/@graphy/core.class.scribable/main.js","webpack://mobilitydcatap-ui/./node_modules/@graphy/core.class.writable/main.js","webpack://mobilitydcatap-ui/./node_modules/@graphy/core.iso.stream/main.js"],"sourcesContent":["\n\n\n// queueMicrotask shim\n{\n\t// not defined or not a function\n\tif('function' !== typeof queueMicrotask) {\n\t\t// create resolved promise\n\t\tlet dp_resolve = Promise.resolve();\n\n\t\t// try to redefine\n\t\ttry {\n\t\t\t// eslint-disable-next-line no-global-assign\n\t\t\tqueueMicrotask = fk => dp_resolve.then(fk)\n\t\t\t\t.catch(e_callback => setTimeout(() => {\n\t\t\t\t\tthrow e_callback;\n\t\t\t\t}, 0));\n\t\t}\n\t\t// oh well, at least we tried\n\t\tcatch(e_define) {}\n\t}\n}\n\n\nconst factory = require('@graphy/core.data.factory');\nconst stream = require('@graphy/core.iso.stream');\n\n\n// max string buffer size\nconst N_DEFAULT_MAX_BUFFER = 1 << 15; // 32 KiB\n\n\nclass Scribable extends stream.Transform {\n\t// flush buffer\n\tstatic _flush_buffer(k_self) {\n\t\t// no buffer; exit\n\t\tif(!k_self._s_push) return;\n\n\t\t// push buffer to stream\n\t\tk_self.push(k_self._s_push);\n\n\t\t// reset buffer\n\t\tk_self._s_push = '';\n\t}\n\n\tconstructor(gc_scribable={}) {\n\t\tsuper({\n\t\t\twritableObjectMode: true,\n\t\t\treadableObjectMode: false,\n\t\t});\n\n\t\tlet {\n\t\t\tprefixes: h_prefixes={},\n\t\t} = gc_scribable;\n\n\t\t// internal buffer\n\t\tthis._s_push = '';\n\n\t\t// max buffer length\n\t\tthis._n_max_buffer = gc_scribable.max_buffer || gc_scribable.maxBuffer || N_DEFAULT_MAX_BUFFER;\n\n\t\t// prefixes\n\t\tthis._h_prefixes = factory.cache_prefixes(h_prefixes || {});\n\n\t\t// on new source(s)\n\t\tthis.on('pipe', (ds_src) => {\n\t\t\t// listen for prefix events\n\t\t\tds_src.on('prefix', (s_prefix_id, p_iri) => {\n\t\t\t\tthis.write({\n\t\t\t\t\ttype: 'prefixes',\n\t\t\t\t\tvalue: {\n\t\t\t\t\t\t[s_prefix_id]: p_iri,\n\t\t\t\t\t},\n\t\t\t\t});\n\t\t\t});\n\n\t\t\t// listen for comment events\n\t\t\tds_src.on('comment', (s_comment) => {\n\t\t\t\tthis.write({\n\t\t\t\t\ttype: 'comment',\n\t\t\t\t\tvalue: s_comment,\n\t\t\t\t});\n\t\t\t});\n\t\t});\n\n\t\t// bind event listeners\n\t\tif(gc_scribable.close) this.once('close', gc_scribable.close);\n\t\tif(gc_scribable.drain) this.on('drain', gc_scribable.drain);\n\t\tif(gc_scribable.error) this.on('error', gc_scribable.error);\n\t\tif(gc_scribable.finish) this.once('finish', gc_scribable.finish);\n\t\tif(gc_scribable.data) this.on('data', gc_scribable.data);\n\t\tif(gc_scribable.end) this.once('end', gc_scribable.end);\n\t\tif(gc_scribable.warning) this.on('warning', gc_scribable.warning);\n\t}\n\n\t_serialize_hash_comment(s_comment) {\n\t\treturn '# '+s_comment.replace(/\\n/g, '\\n# ')+'\\n';\n\t}\n\n\t_serialize_newlines(n_newlines=1) {\n\t\treturn '\\n'.repeat(n_newlines);\n\t}\n\n\t_serialize_c4r(hc4r_quads) {\n\t\tlet h_prefixes = this._h_prefixes;\n\t\tlet a_unions = [];\n\t\tlet s_write = '';\n\n\t\t// each graph in quads hash\n\t\tfor(let sc1_graph in hc4r_quads) {\n\t\t\t// non-default graph; union from dataset\n\t\t\tif('*' !== sc1_graph) a_unions.push(sc1_graph);\n\n\t\t\t// add all quads from graph\n\t\t\ts_write += this._serialize_c3r(hc4r_quads[sc1_graph]);\n\t\t}\n\n\t\t// a union was performed\n\t\tif(a_unions.length) {\n\t\t\t// warn about implicit union\n\t\t\tlet s_warning = `Destination format does not support quads; an implicit union into the default graph was performed on the quads contained in graphs: ${a_unions.map(sc1 => factory.c1(sc1, h_prefixes).verbose()).join(', ')}`;\n\n\t\t\t// emit warning, wasn't listened to; force thru warn/stderr channel\n\t\t\tif(!this.emit('warning', s_warning)) {\n\t\t\t\tconsole.warn(s_warning);\n\t\t\t}\n\t\t}\n\n\t\treturn s_write;\n\t}\n\n\n\t_serialize_c3() {\n\t\tthrow new Error(`Write event type 'c3' not supported by ${this.constructor.name}`);\n\t}\n\n\t_serialize_c4() {\n\t\tthrow new Error(`Write event type 'c4' not supported by ${this.constructor.name}`);\n\t}\n\n\n\n\t_serialize_c3r() {\n\t\tthrow new Error(`Write event type 'c3r' should have been implemented by subclass ${this.constructor.name}`);\n\t}\n\n\t_serialize_quad() {\n\t\tthrow new Error(`Write event type 'quad' should have been implemented by subclass ${this.constructor.name}`);\n\t}\n\n\n\t// ignorable events\n\t_serialize_comment() {} // eslint-disable-line class-methods-use-this\n\n\t// update prefix mappings\n\t_update_prefixes(h_prefixes_in, b_terse=false) {\n\t\t// merge prefixes\n\t\tlet h_prefixes = {\n\t\t\t...this._h_prefixes,\n\t\t\t...h_prefixes_in,\n\t\t};\n\n\t\t// recache prefixes\n\t\tthis._h_prefixes = factory.cachePrefixes(h_prefixes || {}, b_terse);\n\t}\n\n\t// implement stream.Transform\n\t_transform(g_event, s_encoding, fke_transform) {\n\t\tlet w_write;\n\n\t\t// try to serialize input value\n\t\ttry {\n\t\t\tw_write = this.serialize(g_event);\n\t\t}\n\t\t// serialization error\n\t\tcatch(e_serialize) {\n\t\t\t// report error\n\t\t\tfke_transform(e_serialize);\n\n\t\t\t// bail on transform\n\t\t\treturn e_serialize;\n\t\t}\n\n\t\t// data to push\n\t\tif(w_write) {\n\t\t\t// flush internal buffer\n\t\t\tScribable._flush_buffer(this);\n\n\t\t\t// push data to stream\n\t\t\tthis.push(w_write);\n\t\t}\n\t\t// nothing returned from serialization\n\t\telse {\n\t\t\tlet nl_push = this._s_push.length;\n\n\t\t\t// internal buffer high water mark\n\t\t\tif(nl_push > this._n_max_buffer) {\n\t\t\t\tScribable._flush_buffer(this);\n\t\t\t}\n\t\t\t// allow buffer to build\n\t\t\telse if(nl_push) {\n\t\t\t\t// do not worry about clearing timeouts\n\t\t\t\tqueueMicrotask(() => Scribable._flush_buffer(this));\n\t\t\t}\n\t\t}\n\n\t\t// callback\n\t\tfke_transform();\n\t}\n\n\t// queue data to be pushed later\n\t_queue(s_push) {\n\t\tthis._s_push += s_push;\n\n\t\t// internal buffer high water mark\n\t\tif(this._s_push.length > this._n_max_buffer) {\n\t\t\tScribable._flush_buffer(this);\n\t\t}\n\t\telse {\n\t\t\t// do not worry about clearing timeouts\n\t\t\tqueueMicrotask(() => Scribable._flush_buffer(this));\n\t\t}\n\t}\n\n\t// route event object to serialization method\n\tserialize(g_event) {\n\t\tswitch(g_event.type) {\n\t\t\t// rdfjs quad\n\t\t\t// eslint-disable-next-line no-undefined\n\t\t\tcase undefined: return this._serialize_quad(g_event);\n\n\t\t\t// concise triple struct strict-mode\n\t\t\tcase 'c3r': return this._serialize_c3r(g_event.value);\n\n\t\t\t// concise quad struct strict-mode\n\t\t\tcase 'c4r': return this._serialize_c4r(g_event.value);\n\n\t\t\t// array of events\n\t\t\tcase 'array': {\n\t\t\t\t// string building\n\t\t\t\tlet s_write = '';\n\n\t\t\t\t// each subevent\n\t\t\t\tfor(let g_sub of g_event.value) {\n\t\t\t\t\t// build serialization string\n\t\t\t\t\tlet s_push = this.serialize(g_sub);\n\n\t\t\t\t\t// something to push\n\t\t\t\t\tif(s_push) {\n\t\t\t\t\t\ts_write += s_push;\n\t\t\t\t\t}\n\t\t\t\t\t// push was queued\n\t\t\t\t\telse if(this._s_push) {\n\t\t\t\t\t\t// concat to write\n\t\t\t\t\t\ts_write += this._s_push;\n\n\t\t\t\t\t\t// reset push\n\t\t\t\t\t\tthis._s_push = '';\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// all done\n\t\t\t\treturn s_write;\n\t\t\t}\n\n\t\t\t// quad\n\t\t\tcase 'quad': return this._serialize_quad(g_event.value);\n\n\t\t\t// concise triple struct\n\t\t\tcase 'c3': return this._serialize_c3(g_event.value);\n\n\t\t\t// concise quad struct\n\t\t\tcase 'c4': return this._serialize_c4(g_event.value);\n\n\t\t\t// prefixes\n\t\t\tcase 'prefixes': {\n\t\t\t\treturn this._serialize_prefixes(g_event.value);\n\t\t\t}\n\n\t\t\t// comment\n\t\t\tcase 'comment': {\n\t\t\t\treturn this._serialize_comment(g_event.value);\n\t\t\t}\n\n\t\t\t// newline(s)\n\t\t\tcase 'newline':\n\t\t\tcase 'newlines': {\n\t\t\t\treturn this._serialize_newlines(g_event.value);\n\t\t\t}\n\n\t\t\t// no such event type\n\t\t\tdefault: {\n\t\t\t\tthrow new Error(`no such writable data event type for RDF stream: '${g_event.type}'`);\n\t\t\t}\n\t\t}\n\t}\n\n\t// rinse off buffer to writable\n\trinse() {\n\t\tthis._reset();\n\t\tScribable._flush_buffer(this);\n\t}\n\n\t_flush() {\n\t\t// flush buffer\n\t\tScribable._flush_buffer(this);\n\n\t\t// eof\n\t\tthis.push(null);\n\t}\n}\n\nObject.assign(Scribable.prototype, {\n\tisGraphyWritable: true,\n\t_serialize_prefixes: Scribable.prototype._update_prefixes,\n});\n\nmodule.exports = Scribable;\n","\n\n\nconst factory = require('@graphy/core.data.factory');\nconst Scribable = require('@graphy/core.class.scribable');\n\nconst R_DIRECTIVE_CONTENTS = /^`\\[[^\\]]+\\](.*)$/;\n\nconst HM_COERCIONS_DEFAULT = new Map([\n\t[Date, dt => factory.dateTime(dt)],\n\t[Number, x => factory.number(x)],\n]);\n\nclass Writable extends Scribable {\n\tconstructor(gc_writable={}) {\n\t\tsuper(gc_writable);\n\n\t\tlet {\n\t\t\tlists: gc_lists=null,\n\t\t} = gc_writable;\n\n\t\t// start with default coercions map\n\t\tlet hm_coercions = HM_COERCIONS_DEFAULT;\n\n\t\t// user is overriding coercions\n\t\tif(gc_writable.coercions) {\n\t\t\t// copy default map\n\t\t\thm_coercions = new Map(hm_coercions);\n\n\t\t\t// add each entry from user-defined map\n\t\t\tfor(let [dc_type, f_transform] of gc_writable.coercions) {\n\t\t\t\thm_coercions.set(dc_type, f_transform);\n\t\t\t}\n\t\t}\n\n\t\t// lists\n\t\tlet g_lists = {\n\t\t\tfirst: '>http://www.w3.org/1999/02/22-rdf-syntax-ns#first',\n\t\t\trest: '>http://www.w3.org/1999/02/22-rdf-syntax-ns#rest',\n\t\t\tnil: '>http://www.w3.org/1999/02/22-rdf-syntax-ns#nil',\n\t\t};\n\n\t\t// custom transcoder\n\t\tif(gc_lists) {\n\t\t\tlet {\n\t\t\t\tfirst: sc1_first=null,\n\t\t\t\trest: sc1_rest=null,\n\t\t\t\tnil: sc1_nil=null,\n\t\t\t} = gc_lists;\n\n\t\t\tif(sc1_first) g_lists.first = sc1_first;\n\t\t\tif(sc1_rest) g_lists.rest = sc1_rest;\n\t\t\tif(sc1_nil) g_lists.nil = sc1_nil;\n\t\t}\n\n\t\tObject.assign(this, {\n\t\t\t_xc_state: 0,\n\t\t\t_hm_coercions: hm_coercions,\n\t\t\t_g_lists: g_lists,\n\t\t});\n\t}\n\n\t// serialize comment\n\t_serialize_comment(s_comment, g_directive) {\n\t\tlet s_write = '';\n\n\t\t// non-data state\n\t\tif(2 !== this._xc_state) {\n\t\t\t// break line\n\t\t\ts_write += '\\n';\n\n\t\t\t// update state\n\t\t\tthis._xc_state = 2;\n\t\t}\n\n\t\t// comment width\n\t\tif(g_directive && g_directive.width) {\n\t\t\tlet n_width = g_directive.width;\n\n\t\t\tlet a_lines = [];\n\n\t\t\twhile(s_comment.length > n_width) {\n\t\t\t\tlet s_line = s_comment.slice(0, n_width+1);\n\n\t\t\t\tlet m_line = /^(.*[^\\s])\\s+/.exec(s_line);\n\n\t\t\t\tif(m_line) {\n\t\t\t\t\tlet s_push = m_line[1];\n\t\t\t\t\ta_lines.push(s_push);\n\t\t\t\t\ts_comment = s_comment.slice(s_push.length).replace(/^\\s+/, '');\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\ta_lines.push(s_comment.slice(0, n_width));\n\t\t\t\t\ts_comment = s_comment.slice(n_width);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\ts_comment = a_lines.join('\\n');\n\t\t}\n\n\t\treturn s_write+(super._serialize_comment(s_comment) || '');\n\t}\n\n\n\t// transcode list into concise-pairs hash\n\t_transcode_list(a_list, g_lists=this._g_lists) {\n\t\t// empty list\n\t\tif(!a_list.length) {\n\t\t\treturn g_lists.nil;\n\t\t}\n\t\t// non-empty list\n\t\telse {\n\t\t\tlet z_item = a_list[0];\n\t\t\tlet w_first = z_item;\n\n\t\t\t// item is nested list; transcode\n\t\t\tif(Array.isArray(z_item)) {\n\t\t\t\tw_first = this._transcode_list(z_item, g_lists); // eslint-disable-line no-invalid-this\n\t\t\t}\n\n\t\t\treturn {\n\t\t\t\t// first item\n\t\t\t\t[g_lists.first]: w_first,\n\n\t\t\t\t// rest of items\n\t\t\t\t[g_lists.rest]: 1 === a_list.length\n\t\t\t\t\t? g_lists.nil\n\t\t\t\t\t: this._transcode_list(a_list.slice(1), g_lists), // eslint-disable-line no-invalid-this\n\t\t\t};\n\t\t}\n\t}\n\n\t// serialize a writable data event directive\n\t_apply_directive(sc1_directive, w_value) {\n\t\t// directive contents\n\t\tlet m_directive = R_DIRECTIVE_CONTENTS.exec(sc1_directive);\n\t\tif(!m_directive) {\n\t\t\tthrow new Error(`Invalid writable data event directive string: \"${sc1_directive}\"`);\n\t\t}\n\n\t\t// parse as JSON\n\t\tlet g_directive;\n\t\ttry {\n\t\t\tg_directive = JSON.parse(m_directive[1]);\n\t\t}\n\t\tcatch(e_parse) {\n\t\t\tthrow new Error(`Unable to parse JSON in writable data event directive: \"${m_directive[1]}\"`);\n\t\t}\n\n\t\t// directive type\n\t\tlet s_type = g_directive.type;\n\n\t\t// deduce directive type\n\t\tswitch(s_type) {\n\t\t\t// comment\n\t\t\tcase 'comment': {\n\t\t\t\t// serializer supports commenting; serialize comment\n\t\t\t\tif(this._serialize_comment) {\n\t\t\t\t\treturn {\n\t\t\t\t\t\twrite: this._serialize_comment(w_value+'', g_directive),\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\t// newlines\n\t\t\tcase 'newlines': {\n\t\t\t\t// serializer supports newlines; serialize newlines\n\t\t\t\tif(this._serialize_newlines) {\n\t\t\t\t\treturn {\n\t\t\t\t\t\twrite: this._serialize_newlines(w_value),\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\t// config\n\t\t\tcase 'config': {\n\t\t\t\tswitch(g_directive.value) {\n\t\t\t\t\t// list config\n\t\t\t\t\tcase 'lists': {\n\t\t\t\t\t\t// ref stack of list serializers\n\t\t\t\t\t\tlet a_list_serializers = this._a_list_serializers;\n\n\t\t\t\t\t\t// push current method to stack\n\t\t\t\t\t\ta_list_serializers.push(this._serialize_list_object);\n\n\t\t\t\t\t\t// inherit unspecified keys from parent\n\t\t\t\t\t\tlet g_list_default = this._g_lists;\n\n\t\t\t\t\t\t// build list config\n\t\t\t\t\t\tlet g_lists = {\n\t\t\t\t\t\t\tfirst: w_value.first || g_list_default.first,\n\t\t\t\t\t\t\trest: w_value.rest || g_list_default.rest,\n\t\t\t\t\t\t\tnil: w_value.nil || g_list_default.nil,\n\t\t\t\t\t\t};\n\n\t\t\t\t\t\t// redefine list object serialization\n\t\t\t\t\t\tthis._serialize_list_object = function(a_list, n_nest_level) {\n\t\t\t\t\t\t\t// transcode list object\n\t\t\t\t\t\t\tlet hc2_transcoded = this._transcode_list(a_list, g_lists);\n\n\t\t\t\t\t\t\t// serialize object\n\t\t\t\t\t\t\treturn this._encode_objects(hc2_transcoded, n_nest_level);\n\t\t\t\t\t\t};\n\n\t\t\t\t\t\t// return local directive instructions\n\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\texit: () => {\n\t\t\t\t\t\t\t\tthis._serialize_list_object = a_list_serializers.pop();\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t};\n\t\t\t\t\t}\n\n\t\t\t\t\t// no such key\n\t\t\t\t\tdefault: {\n\t\t\t\t\t\tthrow new Error(`No such config key '${g_directive.value}'`);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// other\n\t\t\tdefault: {\n\t\t\t\tthrow new Error(`Invalid writable data event directive type: '${s_type}'`);\n\t\t\t}\n\t\t}\n\n\t\t// nothing\n\t\treturn {};\n\t}\n\n\t// if not overriden by subclass, serialize quads in default graph\n\t_serialize_c4(hc4_quads) {\n\t\tlet h_prefixes = this._h_prefixes;\n\t\tlet a_unions = [];\n\t\tlet s_write = '';\n\n\t\t// each graph in quads hash\n\t\tfor(let sv1_graph in hc4_quads) {\n\t\t\t// non-default graph; union from dataset\n\t\t\tif('*' !== sv1_graph) a_unions.push(sv1_graph);\n\n\t\t\t// add all quads from graph\n\t\t\ts_write += this._serialize_c3(hc4_quads[sv1_graph]);\n\t\t}\n\n\t\t// a union was performed\n\t\tif(a_unions.length) {\n\t\t\t// warn about implicit union\n\t\t\tlet s_warning = `Destination format does not support quads; an implicit union into the default graph was performed on the quads contained in graphs: ${a_unions.map(sc1 => factory.c1(sc1, h_prefixes).verbose()).join(', ')}`;\n\n\t\t\t// emit warning, wasn't listened to; force thru warn/stderr channel\n\t\t\tif(!this.emit('warning', s_warning)) {\n\t\t\t\tconsole.warn(s_warning);\n\t\t\t}\n\t\t}\n\n\t\treturn s_write;\n\t}\n}\n\nmodule.exports = Writable;\n","const stream = require('readable-stream');\n\n\n\nclass Readable extends stream.Readable {\n\tconstructor(gc_readable={}) {\n\t\tsuper(gc_readable);\n\n\t\t// use iterator\n\t\tif(gc_readable.iterator) {\n\t\t\tthrow new Error('readable stream iterator shortcut not yet implemented');\n\t\t}\n\t}\n\n\tuntil(s_event, b_return_stream) {\n\t\treturn new Promise((fk_until, fe_until) => {\n\t\t\t// convert error to rejected promise\n\t\t\tthis.on('error', (e_stream) => {\n\t\t\t\tfe_until(e_stream);\n\t\t\t});\n\n\t\t\t// special cases returns `this`\n\t\t\tif(b_return_stream) {\n\t\t\t\tthis.once(s_event, (...a_args) => {\n\t\t\t\t\tfk_until(this, ...a_args);\n\t\t\t\t});\n\t\t\t}\n\t\t\telse {\n\t\t\t\tthis.once(s_event, fk_until);\n\t\t\t}\n\t\t});\n\t}\n\n\tbucket(s_encoding='utf8') {\n\t\tlet g_readable = this._readableState;\n\n\t\t// object mode\n\t\tif(g_readable.objectMode) {\n\t\t\t// async operation\n\t\t\treturn new Promise((fk_bucket, fe_bucket) => {\n\t\t\t\tlet a_data = [];\n\n\t\t\t\t// pipe to writable\n\t\t\t\tthis.pipe(new stream.Writable({\n\t\t\t\t\twrite(w_event, s_write_encoding, fk_write) {\n\t\t\t\t\t\ta_data.push(w_event);\n\t\t\t\t\t\tfk_write();\n\t\t\t\t\t},\n\n\t\t\t\t\twritev(a_chunks, fk_writev) {\n\t\t\t\t\t\ta_data.push(...a_chunks);\n\t\t\t\t\t\tfk_writev();\n\t\t\t\t\t},\n\t\t\t\t}))\n\t\t\t\t\t// error\n\t\t\t\t\t.on('error', (e_stream) => {\n\t\t\t\t\t\tfe_bucket(e_stream);\n\t\t\t\t\t})\n\t\t\t\t\t// wait for it to finish\n\t\t\t\t\t.on('finish', () => {\n\t\t\t\t\t\tfk_bucket(a_data);\n\t\t\t\t\t});\n\t\t\t});\n\t\t}\n\t\t// utf8-encoded strings\n\t\telse if('utf8' === s_encoding || 'utf-8' === s_encoding) {\n\t\t\t// async operation\n\t\t\treturn new Promise((fk_bucket, fe_bucket) => {\n\t\t\t\tlet s_data = '';\n\n\t\t\t\t// set encoding\n\t\t\t\tthis.setEncoding(s_encoding);\n\n\t\t\t\t// pipe to writable\n\t\t\t\tthis.pipe(new stream.Writable({\n\t\t\t\t\tdecodeStrings: false,\n\n\t\t\t\t\twrite(s_chunk, s_write_encoding, fk_write) {\n\t\t\t\t\t\ts_data += s_chunk;\n\t\t\t\t\t\tfk_write();\n\t\t\t\t\t},\n\n\t\t\t\t\twritev(a_chunks, fk_writev) {\n\t\t\t\t\t\ts_data += a_chunks.join('');\n\t\t\t\t\t\tfk_writev();\n\t\t\t\t\t},\n\t\t\t\t}))\n\t\t\t\t\t// error\n\t\t\t\t\t.on('error', (e_stream) => {\n\t\t\t\t\t\tfe_bucket(e_stream);\n\t\t\t\t\t})\n\t\t\t\t\t// wait for it to finish\n\t\t\t\t\t.on('finish', () => {\n\t\t\t\t\t\tfk_bucket(s_data);\n\t\t\t\t\t});\n\t\t\t});\n\t\t}\n\t\t// buffer\n\t\telse if('buffer' === s_encoding) {\n\t\t\t// async operation\n\t\t\treturn new Promise((fk_bucket, fe_bucket) => {\n\t\t\t\tlet ab_data = Buffer.from([]);\n\n\t\t\t\t// pipe to writable\n\t\t\t\tthis.pipe(new stream.Writable({\n\t\t\t\t\tdecodeStrings: true,\n\n\t\t\t\t\twrite(ab_chunk, s_write_encoding, fk_write) {\n\t\t\t\t\t\tab_data = Buffer.concat([ab_data, ab_chunk], ab_data.length+ab_chunk.length);\n\t\t\t\t\t\tfk_write();\n\t\t\t\t\t},\n\t\t\t\t}))\n\t\t\t\t\t// error\n\t\t\t\t\t.on('error', (e_stream) => {\n\t\t\t\t\t\tfe_bucket(e_stream);\n\t\t\t\t\t})\n\t\t\t\t\t// wait for it to finish\n\t\t\t\t\t.on('finish', () => {\n\t\t\t\t\t\tfk_bucket(ab_data);\n\t\t\t\t\t});\n\t\t\t});\n\t\t}\n\t}\n}\n\nclass Writable extends stream.Writable {\n\tuntil(s_event, b_return_stream) {\n\t\treturn new Promise((fk_until, fe_until) => {\n\t\t\t// convert error to rejected promise\n\t\t\tthis.on('error', (e_stream) => {\n\t\t\t\tfe_until(e_stream);\n\t\t\t});\n\n\t\t\t// special cases returns `this`\n\t\t\tif(b_return_stream) {\n\t\t\t\tthis.once(s_event, (...a_args) => {\n\t\t\t\t\tfk_until(this, ...a_args);\n\t\t\t\t});\n\t\t\t}\n\t\t\telse {\n\t\t\t\tthis.once(s_event, fk_until);\n\t\t\t}\n\t\t});\n\t}\n\n\t// rdfjs impl\n\timport(ds_source) {\n\t\tds_source\n\t\t\t.on('data', w_chunk => this.write(w_chunk))\n\t\t\t.on('end', () => this.end())\n\t\t\t.on('error', e_read => this.emit('error', e_read));\n\n\t\treturn this;\n\t}\n}\n\nclass Duplex extends stream.Duplex {\n\tuntil(s_event, b_return_stream) {\n\t\treturn new Promise((fk_until, fe_until) => {\n\t\t\t// convert error to rejected promise\n\t\t\tthis.on('error', (e_stream) => {\n\t\t\t\tfe_until(e_stream);\n\t\t\t});\n\n\t\t\t// special cases returns `this`\n\t\t\tif(b_return_stream) {\n\t\t\t\tthis.once(s_event, (...a_args) => {\n\t\t\t\t\tfk_until(this, ...a_args);\n\t\t\t\t});\n\t\t\t}\n\t\t\telse {\n\t\t\t\tthis.once(s_event, fk_until);\n\t\t\t}\n\t\t});\n\t}\n\n\tbucket(s_encoding='utf8') {\n\t\tlet g_readable = this._readableState;\n\n\t\t// object mode\n\t\tif(g_readable.objectMode) {\n\t\t\t// async operation\n\t\t\treturn new Promise((fk_bucket, fe_bucket) => {\n\t\t\t\tlet a_data = [];\n\n\t\t\t\t// pipe to writable\n\t\t\t\tthis.pipe(new stream.Writable({\n\t\t\t\t\twrite(w_event, s_write_encoding, fk_write) {\n\t\t\t\t\t\ta_data.push(w_event);\n\t\t\t\t\t\tfk_write();\n\t\t\t\t\t},\n\n\t\t\t\t\twritev(a_chunks, fk_writev) {\n\t\t\t\t\t\ta_data.push(...a_chunks);\n\t\t\t\t\t\tfk_writev();\n\t\t\t\t\t},\n\t\t\t\t}))\n\t\t\t\t\t// error\n\t\t\t\t\t.on('error', (e_stream) => {\n\t\t\t\t\t\tfe_bucket(e_stream);\n\t\t\t\t\t})\n\t\t\t\t\t// wait for it to finish\n\t\t\t\t\t.on('finish', () => {\n\t\t\t\t\t\tfk_bucket(a_data);\n\t\t\t\t\t});\n\t\t\t});\n\t\t}\n\t\t// utf8-encoded strings\n\t\telse if('utf8' === s_encoding || 'utf-8' === s_encoding) {\n\t\t\t// async operation\n\t\t\treturn new Promise((fk_bucket, fe_bucket) => {\n\t\t\t\tlet s_data = '';\n\n\t\t\t\t// set encoding\n\t\t\t\tthis.setEncoding(s_encoding);\n\n\t\t\t\t// pipe to writable\n\t\t\t\tthis.pipe(new stream.Writable({\n\t\t\t\t\tdecodeStrings: false,\n\n\t\t\t\t\twrite(s_chunk, s_write_encoding, fk_write) {\n\t\t\t\t\t\ts_data += s_chunk;\n\t\t\t\t\t\tfk_write();\n\t\t\t\t\t},\n\n\t\t\t\t\twritev(a_chunks, fk_writev) {\n\t\t\t\t\t\ts_data += a_chunks.join('');\n\t\t\t\t\t\tfk_writev();\n\t\t\t\t\t},\n\t\t\t\t}))\n\t\t\t\t\t// error\n\t\t\t\t\t.on('error', (e_stream) => {\n\t\t\t\t\t\tfe_bucket(e_stream);\n\t\t\t\t\t})\n\t\t\t\t\t// wait for it to finish\n\t\t\t\t\t.on('finish', () => {\n\t\t\t\t\t\tfk_bucket(s_data);\n\t\t\t\t\t});\n\t\t\t});\n\t\t}\n\t\t// buffer\n\t\telse if('buffer' === s_encoding) {\n\t\t\t// async operation\n\t\t\treturn new Promise((fk_bucket, fe_bucket) => {\n\t\t\t\tlet ab_data = Buffer.from([]);\n\n\t\t\t\t// pipe to writable\n\t\t\t\tthis.pipe(new stream.Writable({\n\t\t\t\t\tdecodeStrings: true,\n\n\t\t\t\t\twrite(ab_chunk, s_write_encoding, fk_write) {\n\t\t\t\t\t\tab_data = Buffer.concat([ab_data, ab_chunk], ab_data.length+ab_chunk.length);\n\t\t\t\t\t\tfk_write();\n\t\t\t\t\t},\n\t\t\t\t}))\n\t\t\t\t\t// error\n\t\t\t\t\t.on('error', (e_stream) => {\n\t\t\t\t\t\tfe_bucket(e_stream);\n\t\t\t\t\t})\n\t\t\t\t\t// wait for it to finish\n\t\t\t\t\t.on('finish', () => {\n\t\t\t\t\t\tfk_bucket(ab_data);\n\t\t\t\t\t});\n\t\t\t});\n\t\t}\n\t}\n}\n\nclass Transform extends stream.Transform {\n\tuntil(s_event, b_return_stream) {\n\t\treturn new Promise((fk_until, fe_until) => {\n\t\t\t// convert error to rejected promise\n\t\t\tthis.on('error', (e_stream) => {\n\t\t\t\tfe_until(e_stream);\n\t\t\t});\n\n\t\t\t// special cases returns `this`\n\t\t\tif(b_return_stream) {\n\t\t\t\tthis.once(s_event, (...a_args) => {\n\t\t\t\t\tfk_until(this, ...a_args);\n\t\t\t\t});\n\t\t\t}\n\t\t\telse {\n\t\t\t\tthis.once(s_event, fk_until);\n\t\t\t}\n\t\t});\n\t}\n\n\tbucket(s_encoding='utf8') {\n\t\tlet g_readable = this._readableState;\n\n\t\t// object mode\n\t\tif(g_readable.objectMode) {\n\t\t\t// async operation\n\t\t\treturn new Promise((fk_bucket, fe_bucket) => {\n\t\t\t\tlet a_data = [];\n\n\t\t\t\t// pipe to writable\n\t\t\t\tthis.pipe(new stream.Writable({\n\t\t\t\t\twrite(w_event, s_write_encoding, fk_write) {\n\t\t\t\t\t\ta_data.push(w_event);\n\t\t\t\t\t\tfk_write();\n\t\t\t\t\t},\n\n\t\t\t\t\twritev(a_chunks, fk_writev) {\n\t\t\t\t\t\ta_data.push(...a_chunks);\n\t\t\t\t\t\tfk_writev();\n\t\t\t\t\t},\n\t\t\t\t}))\n\t\t\t\t\t// error\n\t\t\t\t\t.on('error', (e_stream) => {\n\t\t\t\t\t\tfe_bucket(e_stream);\n\t\t\t\t\t})\n\t\t\t\t\t// wait for it to finish\n\t\t\t\t\t.on('finish', () => {\n\t\t\t\t\t\tfk_bucket(a_data);\n\t\t\t\t\t});\n\t\t\t});\n\t\t}\n\t\t// utf8-encoded strings\n\t\telse if('utf8' === s_encoding || 'utf-8' === s_encoding) {\n\t\t\t// async operation\n\t\t\treturn new Promise((fk_bucket, fe_bucket) => {\n\t\t\t\tlet s_data = '';\n\n\t\t\t\t// set encoding\n\t\t\t\tthis.setEncoding(s_encoding);\n\n\t\t\t\t// pipe to writable\n\t\t\t\tthis.pipe(new stream.Writable({\n\t\t\t\t\tdecodeStrings: false,\n\n\t\t\t\t\twrite(s_chunk, s_write_encoding, fk_write) {\n\t\t\t\t\t\ts_data += s_chunk;\n\t\t\t\t\t\tfk_write();\n\t\t\t\t\t},\n\n\t\t\t\t\twritev(a_chunks, fk_writev) {\n\t\t\t\t\t\ts_data += a_chunks.join('');\n\t\t\t\t\t\tfk_writev();\n\t\t\t\t\t},\n\t\t\t\t}))\n\t\t\t\t\t// error\n\t\t\t\t\t.on('error', (e_stream) => {\n\t\t\t\t\t\tfe_bucket(e_stream);\n\t\t\t\t\t})\n\t\t\t\t\t// wait for it to finish\n\t\t\t\t\t.on('finish', () => {\n\t\t\t\t\t\tfk_bucket(s_data);\n\t\t\t\t\t});\n\t\t\t});\n\t\t}\n\t\t// buffer\n\t\telse if('buffer' === s_encoding) {\n\t\t\t// async operation\n\t\t\treturn new Promise((fk_bucket, fe_bucket) => {\n\t\t\t\tlet ab_data = Buffer.from([]);\n\n\t\t\t\t// pipe to writable\n\t\t\t\tthis.pipe(new stream.Writable({\n\t\t\t\t\tdecodeStrings: true,\n\n\t\t\t\t\twrite(ab_chunk, s_write_encoding, fk_write) {\n\t\t\t\t\t\tab_data = Buffer.concat([ab_data, ab_chunk], ab_data.length+ab_chunk.length);\n\t\t\t\t\t\tfk_write();\n\t\t\t\t\t},\n\t\t\t\t}))\n\t\t\t\t\t// error\n\t\t\t\t\t.on('error', (e_stream) => {\n\t\t\t\t\t\tfe_bucket(e_stream);\n\t\t\t\t\t})\n\t\t\t\t\t// wait for it to finish\n\t\t\t\t\t.on('finish', () => {\n\t\t\t\t\t\tfk_bucket(ab_data);\n\t\t\t\t\t});\n\t\t\t});\n\t\t}\n\t}\n\n\t// rdfjs impl\n\timport(ds_source) {\n\t\tds_source\n\t\t\t.on('data', w_chunk => this.write(w_chunk))\n\t\t\t.on('end', () => this.end())\n\t\t\t.on('error', e_read => this.emit('error', e_read));\n\n\t\treturn this;\n\t}\n\n\tdemolish(e_destroy) {\n\t\t// do not allow to push\n\t\tthis.push = (z_chunk) => {\n\t\t\t// ignore eof signals from node core\n\t\t\tif(null === z_chunk) return;\n\n\t\t\t// anything else is bad\n\t\t\tthrow new Error(`[ERR_STREAM_DESTROYED]: Cannot push after stream was destroyed`);\n\t\t};\n\n\t\t// do not allow to emit 'end'\n\t\tthis.emit = function(s_event, ...a_args) {\n\t\t\tif('end' === s_event) return;\n\n\t\t\tObject.getPrototypeOf(this).emit.apply(this, [s_event, ...a_args]);\n\t\t};\n\n\t\t// an error was given, destroy the stream as well\n\t\tif(e_destroy) {\n\t\t\treturn stream.Transform.prototype.destroy.call(this, e_destroy);\n\t\t}\n\t}\n}\n\n// eslint-disable-next-line no-new-func\nconst b_is_node = (new Function(/* syntax: js */ `try {return this===global;}catch(e){return false;}`))();\n\n// deduce the runtime environment\nconst [B_BROWSER, B_BROWSERIFY] = (() => 'undefined' === typeof process\n\t? [true, false]\n\t: (process.browser\n\t\t? [true, true]\n\t\t: ('undefined' === process.versions || 'undefined' === process.versions.node\n\t\t\t? [true, false]\n\t\t\t: [false, false])))();\n\n// node.js or browserify; patch for node < v10\nif(B_BROWSERIFY || (b_is_node && (+(/^v(\\d+)/.exec(process.version)[1])) < 10)) {\n\t// override destroy methods\n\tTransform.prototype.destroy = Duplex.prototype.destroy = function(e_destroy, fke_destroy) {\n\t\tthis._readableState.destroyed = true;\n\t\tthis._writableState.destroyed = true;\n\n\t\tlet f_emit_close = () => {\n\t\t\tif(!this._writableState.emitClose) return;\n\t\t\tif(!this._readableState.emitClose) return;\n\t\t\tthis.emit('close');\n\t\t};\n\n\t\tthis._destroy(e_destroy || null, (e_destroy_re) => {\n\t\t\tif(!fke_destroy && e_destroy_re) {\n\t\t\t\tprocess.nextTick(() => {\n\t\t\t\t\tthis.emit('error', e_destroy_re);\n\t\t\t\t\tf_emit_close();\n\t\t\t\t});\n\t\t\t\tthis._writableState.errorEmitted = true;\n\t\t\t}\n\t\t\telse {\n\t\t\t\tprocess.nextTick(f_emit_close);\n\t\t\t\tif(fke_destroy) fke_destroy(e_destroy_re);\n\t\t\t}\n\t\t});\n\n\t\treturn this;\n\t};\n\n\t// override default _destroy implementations\n\tTransform.prototype._destroy = Duplex.prototype._destroy = (e_destroy, fke_destroy) => fke_destroy(e_destroy);\n}\n\nclass QuadsToOther extends Transform {\n\tconstructor(gc_transform={}) {\n\t\tsuper({\n\t\t\t...gc_transform,\n\t\t\twritableObjectMode: true,\n\t\t\treadableObjectMode: true,\n\t\t});\n\n\t\tthis._as_inputs = new Set();\n\n\t\t// forward prefix and comment events\n\t\tthis.on('pipe', (ds_src) => {\n\t\t\tthis._as_inputs.add(ds_src);\n\n\t\t\tds_src\n\t\t\t\t.on('prefix', (...a_args) => {\n\t\t\t\t\tthis.emit('prefix', ...a_args);\n\t\t\t\t})\n\t\t\t\t.on('comment', (...a_args) => {\n\t\t\t\t\tthis.emit('comment', ...a_args);\n\t\t\t\t});\n\t\t});\n\n\t\tthis.on('unpipe', (ds_src) => {\n\t\t\tthis._as_inputs.delete(ds_src);\n\t\t});\n\t}\n\n\t_destroy() {\n\t\tfor(let ds_input of this._as_inputs) {\n\t\t\tds_input.destroy();\n\t\t}\n\t}\n}\n\nclass Quads_To_JSON_Transform extends QuadsToOther {\n\t// serializse json\n\t_transform(g_quad, s_encoding, fk_transform) {\n\t\tfk_transform(null, JSON.stringify(g_quad.isolate())+'\\n');\n\t}\n}\n\nclass Quads_To_Writable extends QuadsToOther {\n\t_transform(g_quad, s_encoding, fk_transform) {\n\t\tfk_transform(null, {\n\t\t\ttype: 'quad',\n\t\t\tvalue: g_quad,\n\t\t});\n\t}\n}\n\nTransform.QuadsToOther = QuadsToOther;\n\nmodule.exports = {\n\t...stream,\n\tReadable,\n\tWritable,\n\tDuplex,\n\tTransform,\n\n\tQuadsToOther,\n\n\t// create a transform from quad objects into JSON strings for trivial serialization\n\tquads_to_json() {\n\t\treturn new Quads_To_JSON_Transform();\n\t},\n\n\t// create a transform from quad objects into writable data events\n\tquads_to_writable() {\n\t\treturn new Quads_To_Writable();\n\t},\n\n\t// create a simple, single-event readable stream\n\tsource(w_push, s_encoding=null) {\n\t\t// encoding not explicit, string given; assume utf8\n\t\tif(!s_encoding && 'string' === typeof w_push) s_encoding = 'utf8';\n\n\t\t// readable\n\t\treturn new Readable({\n\t\t\tobjectMode: !s_encoding && 'string' !== typeof w_push && !Buffer.isBuffer(w_push),\n\n\t\t\tread() {\n\t\t\t\tthis.push(w_push, s_encoding);\n\t\t\t\tthis.push(null);\n\t\t\t},\n\t\t});\n\t},\n};\n"],"names":["queueMicrotask","dp_resolve","Promise","resolve","fk","then","catch","e_callback","setTimeout","e_define","factory","stream","N_DEFAULT_MAX_BUFFER","Scribable","Transform","_flush_buffer","k_self","_s_push","push","constructor","gc_scribable","super","writableObjectMode","readableObjectMode","prefixes","h_prefixes","this","_n_max_buffer","max_buffer","maxBuffer","_h_prefixes","cache_prefixes","on","ds_src","s_prefix_id","p_iri","write","type","value","s_comment","close","once","drain","error","finish","data","end","warning","_serialize_hash_comment","replace","_serialize_newlines","n_newlines","repeat","_serialize_c4r","hc4r_quads","a_unions","s_write","sc1_graph","_serialize_c3r","length","s_warning","map","sc1","c1","verbose","join","emit","console","warn","_serialize_c3","Error","name","_serialize_c4","_serialize_quad","_serialize_comment","_update_prefixes","h_prefixes_in","b_terse","cachePrefixes","_transform","g_event","s_encoding","fke_transform","w_write","serialize","e_serialize","nl_push","_queue","s_push","undefined","g_sub","_serialize_prefixes","rinse","_reset","_flush","Object","assign","prototype","isGraphyWritable","module","exports","R_DIRECTIVE_CONTENTS","HM_COERCIONS_DEFAULT","Map","Date","dt","dateTime","Number","x","number","Writable","gc_writable","lists","gc_lists","hm_coercions","coercions","dc_type","f_transform","set","g_lists","first","rest","nil","sc1_first","sc1_rest","sc1_nil","_xc_state","_hm_coercions","_g_lists","g_directive","width","n_width","a_lines","s_line","slice","m_line","exec","_transcode_list","a_list","z_item","w_first","Array","isArray","_apply_directive","sc1_directive","w_value","m_directive","JSON","parse","e_parse","s_type","a_list_serializers","_a_list_serializers","_serialize_list_object","g_list_default","n_nest_level","hc2_transcoded","_encode_objects","exit","pop","hc4_quads","sv1_graph","Readable","gc_readable","iterator","until","s_event","b_return_stream","fk_until","fe_until","e_stream","a_args","bucket","g_readable","_readableState","objectMode","fk_bucket","fe_bucket","a_data","pipe","w_event","s_write_encoding","fk_write","writev","a_chunks","fk_writev","s_data","setEncoding","decodeStrings","s_chunk","ab_data","Buffer","from","ab_chunk","concat","import","ds_source","w_chunk","e_read","Duplex","demolish","e_destroy","z_chunk","getPrototypeOf","apply","destroy","call","b_is_node","Function","B_BROWSER","B_BROWSERIFY","process","browser","versions","node","version","fke_destroy","destroyed","_writableState","f_emit_close","emitClose","_destroy","e_destroy_re","nextTick","errorEmitted","QuadsToOther","gc_transform","_as_inputs","Set","add","delete","ds_input","Quads_To_JSON_Transform","g_quad","fk_transform","stringify","isolate","Quads_To_Writable","quads_to_json","quads_to_writable","source","w_push","isBuffer","read"],"sourceRoot":""} \ No newline at end of file diff --git a/dist/js/55.d111b5d7.js b/dist/js/55.d111b5d7.js new file mode 100644 index 0000000..c80fc04 --- /dev/null +++ b/dist/js/55.d111b5d7.js @@ -0,0 +1,2 @@ +(self["webpackChunkmobilitydcatap_ui"]=self["webpackChunkmobilitydcatap_ui"]||[]).push([[55],{35055:function(t,e,s){var i=s(48287)["Buffer"];if("function"!==typeof queueMicrotask){let t=Promise.resolve();try{queueMicrotask=e=>t.then(e).catch((t=>setTimeout((()=>{throw t}),0)))}catch(It){}}const r=s(46579),_=s(83141),n=s(41476),h=s(76063),a=t=>h.quad(t._kt_subject,t._kt_predicate,t._kt_object,t._kt_graph),l=/^([A-Za-z\xc0-\xd6\xd8-\xf6\xf8-\u{02ff}\u{0370}-\u{037d}\u{037f}-\u{1fff}\u{200c}-\u{200d}\u{2070}-\u{218f}\u{2c00}-\u{2fef}\u{3001}-\u{d7ff}\u{f900}-\u{fdcf}\u{fdf0}-\u{fffd}\u{10000}-\u{effff}]([A-Za-z\xc0-\xd6\xd8-\xf6\xf8-\u{02ff}\u{0370}-\u{037d}\u{037f}-\u{1fff}\u{200c}-\u{200d}\u{2070}-\u{218f}\u{2c00}-\u{2fef}\u{3001}-\u{d7ff}\u{f900}-\u{fdcf}\u{fdf0}-\u{fffd}\u{10000}-\u{effff}_\-0-9\xb7\u{0300}-\u{036f}\u{203f}-\u{2040}.]*[A-Za-z\xc0-\xd6\xd8-\xf6\xf8-\u{02ff}\u{0370}-\u{037d}\u{037f}-\u{1fff}\u{200c}-\u{200d}\u{2070}-\u{218f}\u{2c00}-\u{2fef}\u{3001}-\u{d7ff}\u{f900}-\u{fdcf}\u{fdf0}-\u{fffd}\u{10000}-\u{effff}_\-0-9\xb7\u{0300}-\u{036f}\u{203f}-\u{2040}])?)?$/u,o=/^([A-Za-z\xc0-\xd6\xd8-\xf6\xf8-\u{02ff}\u{0370}-\u{037d}\u{037f}-\u{1fff}\u{200c}-\u{200d}\u{2070}-\u{218f}\u{2c00}-\u{2fef}\u{3001}-\u{d7ff}\u{f900}-\u{fdcf}\u{fdf0}-\u{fffd}\u{10000}-\u{effff}_:0-9]|%[A-Fa-f0-9]{2}|\\[_~.\-!$&'()*+,;=/?#@%])(([A-Za-z\xc0-\xd6\xd8-\xf6\xf8-\u{02ff}\u{0370}-\u{037d}\u{037f}-\u{1fff}\u{200c}-\u{200d}\u{2070}-\u{218f}\u{2c00}-\u{2fef}\u{3001}-\u{d7ff}\u{f900}-\u{fdcf}\u{fdf0}-\u{fffd}\u{10000}-\u{effff}_\-0-9\xb7\u{0300}-\u{036f}\u{203f}-\u{2040}.:]|%[A-Fa-f0-9]{2}|\\[_~.\-!$&'()*+,;=/?#@%])*([A-Za-z\xc0-\xd6\xd8-\xf6\xf8-\u{02ff}\u{0370}-\u{037d}\u{037f}-\u{1fff}\u{200c}-\u{200d}\u{2070}-\u{218f}\u{2c00}-\u{2fef}\u{3001}-\u{d7ff}\u{f900}-\u{fdcf}\u{fdf0}-\u{fffd}\u{10000}-\u{effff}_\-0-9\xb7\u{0300}-\u{036f}\u{203f}-\u{2040}:]|%[A-Fa-f0-9]{2}|\\[_~.\-!$&'()*+,;=/?#@%]))?$/u,c=/^[A-Za-z\xc0-\xd6\xd8-\xf6\xf8-\u{02ff}\u{0370}-\u{037d}\u{037f}-\u{1fff}\u{200c}-\u{200d}\u{2070}-\u{218f}\u{2c00}-\u{2fef}\u{3001}-\u{d7ff}\u{f900}-\u{fdcf}\u{fdf0}-\u{fffd}\u{10000}-\u{effff}_0-9]([A-Za-z\xc0-\xd6\xd8-\xf6\xf8-\u{02ff}\u{0370}-\u{037d}\u{037f}-\u{1fff}\u{200c}-\u{200d}\u{2070}-\u{218f}\u{2c00}-\u{2fef}\u{3001}-\u{d7ff}\u{f900}-\u{fdcf}\u{fdf0}-\u{fffd}\u{10000}-\u{effff}_\-0-9\xb7\u{0300}-\u{036f}\u{203f}-\u{2040}.]*[A-Za-z\xc0-\xd6\xd8-\xf6\xf8-\u{02ff}\u{0370}-\u{037d}\u{037f}-\u{1fff}\u{200c}-\u{200d}\u{2070}-\u{218f}\u{2c00}-\u{2fef}\u{3001}-\u{d7ff}\u{f900}-\u{fdcf}\u{fdf0}-\u{fffd}\u{10000}-\u{effff}_\-0-9\xb7\u{0300}-\u{036f}\u{203f}-\u{2040}])?$/u,f=/^([^\0-\x20<>"{}|^`\\]|\\u[A-Fa-f0-9]{4}|\\U[A-Fa-f0-9]{8})*$/,u=/^([^\0-\x20<>"{}|^`])*$/,d=/\\u([0-9A-Fa-f]{4})|\\U([0-9A-Fa-f]{8})/g,p=(t,e,s)=>String.fromCodePoint(parseInt(e||s,16)),x=Object.prototype.hasOwnProperty,b=/([A-Za-z][A-Za-z0-9_-]*)?:([A-Za-z_0-9:][A-Za-z0-9_:-]*)(?:\s+|(?=\.?[<[("';,)\]#{}]|\.[\s\0]))/y,m=/([^\s#@<[("':_{}][^\s#@<[("':{}]*)?:((?:[^\s#@<[("'.;,{})\]\\](?:[^\s#@<[("';,{})\]\\]*[^\s#@<[("'.;,{})\]\\])?)?)(?:\s+|(?=\.?[<[("';,)\]#{}]|\.[\s\0]))/y,k=/([^\s#@<[("':_{}][^\s#@<[("':{}]*)?:((?:(?:[^\s#@<[("'.;,{})\]\\]|\\(?:%[0-9A-Fa-f][0-9A-Fa-f]|[^\s"]))(?:(?:[^\s#@<[("';,{})\]\\]|\\(?:%[0-9A-Fa-f][0-9A-Fa-f]|[^\s"]))*(?:[^\s#@<[("'.;,{})\]\\]|\\(?:%[0-9A-Fa-f][0-9A-Fa-f]|[^\s"])))?)?)(?:\s+|(?=\.?[<[("';,)\]#{}]|\.[\s\0]))/y,g=/\\(.)/g,I=/_:(.(?:[^\s:<;,)\]#}]*[^\s:<.;,)\]#}])?)(?:\s+|(?=[<:{,;\])#]))/y,j=/_:(.(?:[^\s:<;,)\]#}]*[^\s:<.;,)\]#}])?)(?:\s+|(?=\.?[<:{,;\])#])|(?=\.[\s@#<({[}]))/y,y=/<([^\\>]*)>\s*/y,w=/<([^>]*)>\s*/y,v=/([+-]?(?:[0-9]+(\.[0-9]+)?|(\.[0-9]+))(\.?[eE][+-]?[0-9]+)?)(?:\s+|(?=\.[^eE0-9]|[;,)\]]))/y,$=/(?:(true|TRUE)|false|FALSE)\s*/y,A=/a(?:\s+|(?=[[("'<#]))/y,E=/\^\^/y,F=/\s*/y,S=/@([A-Za-z]+(?:-[A-Za-z0-9-]+)*)(?:\s+|(?=[.},;\])#]))/y,O=/(?:(@prefix)|[pP][rR][eE][fF][iI][xX])\s*/y,R=/([^#:]*):\s*/iy,U=/(?:(@base)|[bB][aA][sS][eE])\s*/y,T=/(?:graph)?\s*<([^\\>]*)>\s*\{\s*/iy,q=/(?:graph)?\s*([^\s#@<[("':_{}][^\s#@<[("':{}]*)?:((?:(?:[^\s#@<[("'.;,{})\]\\]|\\(?:%[0-9A-Fa-f][0-9A-Fa-f]|[^\s"]))(?:(?:[^\s#@<[("';,{})\]\\]|\\(?:%[0-9A-Fa-f][0-9A-Fa-f]|[^\s"]))*(?:[^\s#@<[("'.;,{})\]\\]|\\(?:%[0-9A-Fa-f][0-9A-Fa-f]|[^\s"])))?)?)\s*\{\s*/iy,M=/(?:graph)?\s*_:(.(?:[^\s:<;,)\]#}]*[^\s:<.;,)\]#}])?)\s*\{\s*/iy,P=/(?:graph)?\s*\[\s*\]\s*\{\s*/iy,z=/(?:graph)?\s*<([^>]*)>\s*\{\s*/iy,Z=/graph(?:\s+|(?=[#<[{]))/iy,W=/(#[^\n]*\n\s*)+/y,N=/^[A-Za-z][A-Za-z0-9.\-+]*:/,L=/^((([A-Za-z0-9.\-+]*:\/)?\/[^/>]*)?(\/(?:[^/>]*\/)*)?[^>]*)$/,C=/\[\s*\]\s*/y,J=/\[(?:\s+|(?=[^\]]))/y,D=/\(\s*/y,B=/\]\s*/y,G=/\{\s*/y,Q=/\}\s*/y,H=/\.\s*/y,V=/[\\"\r\n]/g,X=/[\\'\r\n]/g,Y=/"{1,2}$/g,K=/'{1,2}$/g,tt=/(\\|""")/g,et=/(\\|''')/g,st=(t,e,s,i,r,_)=>{if(e)switch(e){case"t":return"\t";case"n":return"\n";case"r":return"\r";case"f":return"\f";case"b":return"\b";default:console.assert(`bad regex escape char mapping: '${e}'`)}else{if(s)return s;if(i)return String.fromCodePoint(parseInt(i,16));if(r)return String.fromCodePoint(parseInt(r,16));if(_)throw"\\"===_[0]?new Error(`expected string_literal but invalid escape sequence within contents: '${_}'. failed to parse a valid token`):new Error(`expected string_literal but invalid whitespace character within contents: ${JSON.stringify(_)}. failed to parse a valid token`);console.assert("unexpected no match branch in escape sequence replace callback")}},it=/(?:\\(?:([tnrfb])|([\\"'])|u([0-9A-Fa-f]{4})|U([0-9A-Fa-f]{8}))|([\r\n]|\\.))/g,rt=/(?:\\(?:([tnrfb])|([\\"'])|u([0-9A-Fa-f]{4})|U([0-9A-Fa-f]{8}))|([\r\n]|\\[^uU]|\\u[^]{4}|\\U[^]{8}))/g,_t=t=>t.replace(it,st),nt=t=>{let e=ct.exec(t);if(e){let s=e.index;return[t.slice(0,s).replace(rt,st),t.slice(s)]}return[t.replace(rt,st),""]},ht=/(?:\\(?:([tnrfb])|([\\"'])|u([0-9A-Fa-f]{4})|U([0-9A-Fa-f]{8}))|(\\.))/g,at=/(?:\\(?:([tnrfb])|([\\"'])|u([0-9A-Fa-f]{4})|U([0-9A-Fa-f]{8}))|(\\[^uU]|\\u[^]{4}|\\U[^]{8}))/g,lt=t=>t.replace(ht,st),ot=t=>{let e=ct.exec(t);if(e){let s=e.index;return[t.slice(0,s).replace(at,st),t.slice(s)]}return[t.replace(at,st),""]},[ct,ft,ut,dt,pt]=(()=>{function t(t){let e=RegExp.prototype.exec.call(this,t);if(e){let t=e[0].length-e[1].length;e.index+=t,e[0]=e[0].slice(t)}return e}let e=(()=>{try{new RegExp("(?(e.exec=s,e)}return t=>t()})();return[e((()=>new RegExp("(?new RegExp('(?new RegExp("(?new RegExp('(?new RegExp("(?(m.lastIndex=e,[m.exec(t),m.lastIndex]),bt=(t,e)=>(k.lastIndex=e,[k.exec(t),k.lastIndex]);function mt(t,e,s,i){let r=Math.min(e,Math.abs(e-15)),_=t.s;return t.error(`\n\`${_.substr(r,r+90).replace(/[\n\t]/g," ")}\`\n ${" ".repeat(e-r)}^\nexpected ${s} ${i||""}. failed to parse a valid token starting at ${_[e]?'"'+_[e]+'"':"<>"}`)}class kt extends n.Transform{constructor(t){super({decodeStrings:!1,writableObjectMode:!1,readableObjectMode:!0,flush:t.flush,transform:t.transform})}pipe(t){let e=t;return e._writableState.objectMode?t.isGraphyWritable&&(t=n.quads_to_writable()):t=n.quads_to_json(),t!==e?(super.pipe(t),t.pipe(e)):super.pipe(e)}}class gt{constructor(t={}){let{input:e=null,state:s={}}=t,{blank_node_index:r=0,prefixes:n={},labels:l={}}=s,d=h.adopt(t.dataFactory||t.data_factory||h.unfiltered),p=d.defaultGraph();d!==h.unfiltered&&(p=Object.create(p));let x=d.namedNode("http://www.w3.org/1999/02/22-rdf-syntax-ns#first"),m=d.blankNode,k=d.namedNode;if(this.emit_data=h.unfiltered===d?function(){I.push(a(this))}:function(){let t=d.quad(this._kt_subject,this._kt_predicate,this._kt_object,this._kt_graph);I.push(t)},Object.assign(this,{i:0,s:"",n:0,pre:t.prepend||"",_b_debug:t.debug||!1,_b_relax:t.relax||!1,_dc_factory:d,_f_state:this.block,_h_prefixes:n,_b_destroyed:!1,_s_base_url:"",_s_base_url_scheme:"",_s_base_url_root:"",_s_base_url_path:"",_kt_subject:null,_kt_predicate:x,_kt_object:null,_kt_graph:p,_s_literal:"",_kt_rdf_type:d.namedNode("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"),_kt_rdf_first:x,_kt_rdf_rest:d.namedNode("http://www.w3.org/1999/02/22-rdf-syntax-ns#rest"),_kt_rdf_nil:d.namedNode("http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"),_kt_default_graph:p,_a_nested:[],_h_labels:l,event:this.emit,data:this.emit_data,restore_data:this.emit_data,_a_queue_event:[],_b_expecting_full_stop:!1,_s_temp_prefix_id:null,_b_trim_start:!0,anonymous_blank_node:t=>m(t,!0),next_label(){let t="";do{t="g"+r++}while(this._h_labels[t]);return this._h_labels[t]=2,t},eos:null,after_end_of_statement:this.post_object,_n_max_token_length:t.max_token_length||t.maxTokenLength||2048,_n_max_string_length:t.max_string_length||t.maxStringLength||1/0,_b_byte_tracking:t.byte_tracking||t.byteTracking||!1,_nb_seen:0,_nb_last:0,_nb_curr:0}),t.relaxed&&console.warn(new Error("no such option 'relaxed'; did you mean 'relax' ?").stack.replace(/^Error:/,"Warning:")),"validate"in t&&console.warn(new Error("option 'validate' has been deprecated. Validation is now enabled by default. Use the 'relax' option if you wish to disable validation.").stack.replace(/^Error:/,"Warning:")),Object.assign(this,t.relax?{blank_node(t){let e=this._h_labels[t];return e?1===e||(t=2===e?this._h_labels[t]=this.next_label():this._h_labels[t]):this._h_labels[t]=1,m(t)},check_named_node:k,check_named_node_escapeless:k,match_prefixed_name_escapeless:xt,match_prefixed_name:bt}:{blank_node(t){if(!c.test(t))return this.error(`invalid blank node label: "${t}"`);let e=this._h_labels[t];return e?1===e||(t=2===e?this._h_labels[t]=this.next_label():this._h_labels[t]):this._h_labels[t]=1,m(t)},check_named_node(t){return f.test(t)?k(t):this.error(`invalid IRI: "${t}"`)},check_named_node_escapeless(t){return u.test(t)?k(t):this.error(`invalid IRI: "${t}"`)},match_prefixed_name_quick(t,e){return b.lastIndex=e,[b.exec(t),b.lastIndex]},match_prefixed_name_escapeless(t,e){let[s,i]=xt(t,e);if(!s||o.test(s[2])||!s[2])return[s,i];this.error(`invalid prefixed name local name: "${s[2]}:"`)},match_prefixed_name(t,e){let[s,i]=bt(t,e);if(!s||o.test(s[2]))return[s,i];this.error(`invalid prefixed name local name: "${s[2]}:"`)}}),this.named_node=k,this.prefixed_name=function(t,e){return k(n[t]+e)},"string"===typeof t.base)throw new TypeError(`invalid type 'string' was given for 'base' event listener: '${t.base}'\ndid you mean to use the 'base_uri' key instead?`);let g=t.base_uri||t.baseUri||t.baseURI||t.base_iri||t.baseIri||t.baseIRI;if(g){let t=L.exec(g);this._s_base_url=t[1],this._s_base_url_root=t[2]||"",this._s_base_url_scheme=t[3]||"",this._s_base_url_path=t[4]||""}else if(t.base_url||t.baseUrl||t.baseURL)throw new Error(`invalid option: .base${t.base_url?"_url":t.baseUrl?"Url":t.baseURL?"URL":""}; use the '.base_uri' key instead`);let I=this.transform=new kt({transform:(t,e,s)=>{let i=this.s=this.pre+t;this.n=i.length,this._b_trim_start?(F.lastIndex=0,F.exec(i),this.i=F.lastIndex):this.i=0,this.safe_parse(!0)&&(I.emit("progress",t.length),s())},flush:t=>{try{this.eof(1)}catch(e){return void this.destroy(e)}t()}});if(I.on("pipe",(t=>{this._ds_input=t;let e=this._b_byte_tracking;if(e||"function"!==typeof t.setEncoding){let t=I.write,s=new _.StringDecoder("utf8"),r=(e,s,r)=>{let _=i.from(e,"utf8").length;return this._nb_seen+=_,this._nb_last=_,t.call(I,e,s,r)},n=(e,i,r)=>{let _=this._nb_last=e.length;return this._nb_seen+=_,t.call(I,s.write(e),i,r)},h=(e,i,r)=>t.call(I,s.write(e),i,r);I.write=function(s,i,_){return null!==s?(I.write="string"===typeof s?e?r:t:e?n:h,I.write(s,i,_)):t.call(I,s,i,_)},e&&(this.emit_data=this.data=this.restore_data=function(){let t=this._dc_factory.quad(this._kt_subject,this._kt_predicate,this._kt_object,this._kt_graph),e=i.from(this.s.slice(this.i)).length,s=this._nb_seen-e;t.byteRange=[this._nb_curr,s],this._nb_curr=s,this.transform.push(t)})}else t.setEncoding("utf8")})),I.on("newListener",(t=>{"comment"===t&&(this.emit_comments=t=>{let e=t.slice(1).replace(/\n\s+$/,"").split(/\n+\s*#/g);for(let s of e)I.emit("comment",s)})})),I._destroy=(...t)=>{this.destroy(...t)},this.bind(t),e)if(e.stream){let t=e.stream;queueMicrotask((()=>{t.pipe(I)}))}else{if("string"!==typeof e.string)throw new TypeError(`Invalid argument for input parameter: ${"object"===typeof e?JSON.stringify(e):e}`);{let t=e.string;queueMicrotask((()=>{I.end(t,"utf8")}))}}}safe_parse(){try{let t=this._f_state();while("function"===typeof t)t=t.apply(this)}catch(t){return this.destroy(t),!1}return!0}emit(t,...e){this.transform.emit(t,...e)}queue(t,...e){this._a_queue_event.push({event:t,args:e})}error(t){throw new Error(t)}parse_error(t,e=!1){let s=this.i,i=Math.min(s,Math.abs(s-15)),r=this.s;return this.error(`\n\`${r.substr(i,i+90).replace(/[\n\t]/g," ")}\`\n ${" ".repeat(s-i)}^\nexpected ${t} ${e?"but encountered <>":""}. failed to parse a valid token starting at ${r[s]?'"'+r[s]+'"':"<>"}`)}info_error(t){let e=this.i,s=Math.min(e,Math.abs(e-15)),i=this.s;this.error(`\n\`${i.substr(s,s+90).replace(/[\n\t]/g," ")}\`\n ${" ".repeat(e-s)}^\n`+t)}eof(){if(this._a_queue_event.length){let t=this._a_queue_event;while(t.length){let e=t.shift();this[e.event](e.data)}}if(this.block!==this._f_state&&(this.s+="\0",this.n=this.s.length,this.safe_parse())){if(null===this.s)return;if(this.block!==this._f_state)return this.parse_error(this._f_state.name,!0)}if(this.ie&&(this.i=e=W.lastIndex,this.emit_comments&&this.emit_comments(s[0])),ethis.max_token_length)return this.parse_error("statement");this._f_state=this.statement,this.pre=t.slice(s),this.eos&&this.eos()}block(){let{s:t,n:e,i:s}=this;while(sthis.max_token_length)return this.parse_error("block");this._f_state=this.block,this.pre=t.slice(s),this.eos&&this.eos()}graph_or_subject(){let{s:t,n:e,i:s}=this;while(sthis.max_token_length)return this.parse_error("graph_or_subject");this._f_state=this.graph_or_subject,this.pre=t.slice(s),this.eos&&this.eos()}graph_or_subject_property_list(){let{s:t,n:e,i:s}=this;while(sthis.max_token_length)return this.parse_error("graph_or_subject_property_list");this._f_state=this.graph_or_subject_property_list,this.pre=t.slice(s),this.eos&&this.eos()}graph_or_subject_anon(){let{s:t,n:e,i:s}=this;while(sthis.max_token_length)return this.parse_error("graph_or_subject_anon");this._f_state=this.graph_or_subject_anon,this.pre=t.slice(s),this.eos&&this.eos()}graph_keyword(){let{s:t,n:e,i:s}=this;while(sthis.max_token_length)return this.parse_error("graph_keyword");this._f_state=this.graph_keyword,this.pre=t.slice(s),this.eos&&this.eos()}graph_post_name(){let{s:t,n:e,i:s}=this;while(sthis.max_token_length)return this.parse_error("graph_post_name");this._f_state=this.graph_post_name,this.pre=t.slice(s),this.eos&&this.eos()}pairs(){let{s:t,n:e,i:s}=this;while(sthis.max_token_length)return this.parse_error("pairs");this._f_state=this.pairs,this.pre=t.slice(s),this.eos&&this.eos()}object_list(){let{s:t,n:e,i:s}=this;while(sthis.max_token_length)return this.parse_error("object_list");this._f_state=this.object_list,this.pre=t.slice(s),this.eos&&this.eos()}string_literal_short_double(){let{s:t,n:e,i:s}=this;t:while(sthis.max_token_length)return this.parse_error("string_literal_short_double");this._f_state=this.string_literal_short_double,this.pre=t.slice(s),this.eos&&this.eos()}string_literal_short_single(){let{s:t,n:e,i:s}=this;t:while(sthis.max_token_length)return this.parse_error("string_literal_short_single");this._f_state=this.string_literal_short_single,this.pre=t.slice(s),this.eos&&this.eos()}string_literal_long_double(){let{s:t,n:e,i:s}=this;t:while(sthis.max_token_length)return this.parse_error("string_literal_long_double");this._f_state=this.string_literal_long_double,this.pre=t.slice(s),this.eos&&this.eos()}string_literal_long_single(){let{s:t,n:e,i:s}=this;t:while(sthis.max_token_length)return this.parse_error("string_literal_long_single");this._f_state=this.string_literal_long_single,this.pre=t.slice(s),this.eos&&this.eos()}string_literal(){let{s:t,n:e,i:s}=this;while(sthis.max_string_length)return this.parse_error("string_literal");this._f_state=this.string_literal,this.pre=t.slice(s),this.eos&&this.eos()}datatype_or_langtag(){let{s:t,n:e,i:s}=this;while(sthis.max_token_length)return this.parse_error("datatype_or_langtag");this._f_state=this.datatype_or_langtag,this.pre=t.slice(s),this.eos&&this.eos()}datatype(){let{s:t,n:e,i:s}=this;while(sthis.max_token_length)return this.parse_error("datatype");this._f_state=this.datatype,this.pre=t.slice(s),this.eos&&this.eos()}post_object(){let{s:t,n:e,i:s}=this;while(sthis.max_token_length)return this.parse_error("post_object");this._f_state=this.post_object,this.pre=t.slice(s),this.eos&&this.eos()}base_iri(){let{s:t,n:e,i:s}=this;while(sthis.max_token_length)return this.parse_error("base_iri");this._f_state=this.base_iri,this.pre=t.slice(s),this.eos&&this.eos()}prefix_id(){let{s:t,n:e,i:s}=this;while(sthis.max_token_length)return this.parse_error("prefix_id");this._f_state=this.prefix_id,this.pre=t.slice(s),this.eos&&this.eos()}prefix_iri(){let{s:t,n:e,i:s}=this;while(sthis.max_token_length)return this.parse_error("prefix_iri");this._f_state=this.prefix_iri,this.pre=t.slice(s),this.eos&&this.eos()}full_stop(){let{s:t,n:e,i:s}=this;while(sthis.max_token_length)return this.parse_error("full_stop");this._f_state=this.full_stop,this.pre=t.slice(s),this.eos&&this.eos()}collection_subject(){let{s:t,n:e,i:s}=this;while(sthis.max_token_length)return this.parse_error("collection_subject");this._f_state=this.collection_subject,this.pre=t.slice(s),this.eos&&this.eos()}collection_object(){let{s:t,n:e,i:s}=this;while(sthis.max_token_length)return this.parse_error("collection_object");this._f_state=this.collection_object,this.pre=t.slice(s),this.eos&&this.eos()}destroy(t){this.post_blank_subject=()=>{},this.statement=()=>{},this.block=()=>{},this.graph_or_subject=()=>{},this.graph_or_subject_property_list=()=>{},this.graph_or_subject_anon=()=>{},this.graph_keyword=()=>{},this.graph_post_name=()=>{},this.pairs=()=>{},this.object_list=()=>{},this.string_literal_short_double=()=>{},this.string_literal_short_single=()=>{},this.string_literal_long_double=()=>{},this.string_literal_long_single=()=>{},this.string_literal=()=>{},this.datatype_or_langtag=()=>{},this.datatype=()=>{},this.post_object=()=>{},this.base_iri=()=>{},this.prefix_id=()=>{},this.prefix_iri=()=>{},this.full_stop=()=>{},this.collection_subject=()=>{},this.collection_object=()=>{},this.eof=()=>{this.s=null},this._b_destroyed=!0,!t&&this._ds_input&&this._ds_input.destroy(t),this.transform.demolish(t)}}t.exports=function(...t){let e={};if(t.length){let s=t[0];if(s&&s.input&&"undefined"===typeof s.input.string&&!s.input.stream&&(s=s.input),"string"===typeof s)e.input={string:s};else if(null===s)e.input=null;else if("function"===typeof s.setEncoding)e.input={stream:s};else{if("function"===typeof s.pipeTo)throw new TypeError("Sorry, WHATWG streams are currently not supported :(");if(!s||"object"!==typeof s||"[object Object]"!==Object.prototype.toString.call(s))throw new TypeError(`unexpected input type: ${s}`);if(e=s,t.length>1)throw new TypeError(`unexpected argument(s) after config struct: ${t.slice(1)}`)}if(t.length>1&&(Object.assign(e,t[1]),t.length>2))throw new TypeError(`unexpected argument(s) after input and config struct: ${t.slice(2)}`)}return new gt(e).transform}},41476:function(t,e,s){var i=s(48287)["Buffer"],r=s(65606);const _=s(28399);class n extends _.Readable{constructor(t={}){if(super(t),t.iterator)throw new Error("readable stream iterator shortcut not yet implemented")}until(t,e){return new Promise(((s,i)=>{this.on("error",(t=>{i(t)})),e?this.once(t,((...t)=>{s(this,...t)})):this.once(t,s)}))}bucket(t="utf8"){let e=this._readableState;return e.objectMode?new Promise(((t,e)=>{let s=[];this.pipe(new _.Writable({write(t,e,i){s.push(t),i()},writev(t,e){s.push(...t),e()}})).on("error",(t=>{e(t)})).on("finish",(()=>{t(s)}))})):"utf8"===t||"utf-8"===t?new Promise(((e,s)=>{let i="";this.setEncoding(t),this.pipe(new _.Writable({decodeStrings:!1,write(t,e,s){i+=t,s()},writev(t,e){i+=t.join(""),e()}})).on("error",(t=>{s(t)})).on("finish",(()=>{e(i)}))})):"buffer"===t?new Promise(((t,e)=>{let s=i.from([]);this.pipe(new _.Writable({decodeStrings:!0,write(t,e,r){s=i.concat([s,t],s.length+t.length),r()}})).on("error",(t=>{e(t)})).on("finish",(()=>{t(s)}))})):void 0}}class h extends _.Writable{until(t,e){return new Promise(((s,i)=>{this.on("error",(t=>{i(t)})),e?this.once(t,((...t)=>{s(this,...t)})):this.once(t,s)}))}import(t){return t.on("data",(t=>this.write(t))).on("end",(()=>this.end())).on("error",(t=>this.emit("error",t))),this}}class a extends _.Duplex{until(t,e){return new Promise(((s,i)=>{this.on("error",(t=>{i(t)})),e?this.once(t,((...t)=>{s(this,...t)})):this.once(t,s)}))}bucket(t="utf8"){let e=this._readableState;return e.objectMode?new Promise(((t,e)=>{let s=[];this.pipe(new _.Writable({write(t,e,i){s.push(t),i()},writev(t,e){s.push(...t),e()}})).on("error",(t=>{e(t)})).on("finish",(()=>{t(s)}))})):"utf8"===t||"utf-8"===t?new Promise(((e,s)=>{let i="";this.setEncoding(t),this.pipe(new _.Writable({decodeStrings:!1,write(t,e,s){i+=t,s()},writev(t,e){i+=t.join(""),e()}})).on("error",(t=>{s(t)})).on("finish",(()=>{e(i)}))})):"buffer"===t?new Promise(((t,e)=>{let s=i.from([]);this.pipe(new _.Writable({decodeStrings:!0,write(t,e,r){s=i.concat([s,t],s.length+t.length),r()}})).on("error",(t=>{e(t)})).on("finish",(()=>{t(s)}))})):void 0}}class l extends _.Transform{until(t,e){return new Promise(((s,i)=>{this.on("error",(t=>{i(t)})),e?this.once(t,((...t)=>{s(this,...t)})):this.once(t,s)}))}bucket(t="utf8"){let e=this._readableState;return e.objectMode?new Promise(((t,e)=>{let s=[];this.pipe(new _.Writable({write(t,e,i){s.push(t),i()},writev(t,e){s.push(...t),e()}})).on("error",(t=>{e(t)})).on("finish",(()=>{t(s)}))})):"utf8"===t||"utf-8"===t?new Promise(((e,s)=>{let i="";this.setEncoding(t),this.pipe(new _.Writable({decodeStrings:!1,write(t,e,s){i+=t,s()},writev(t,e){i+=t.join(""),e()}})).on("error",(t=>{s(t)})).on("finish",(()=>{e(i)}))})):"buffer"===t?new Promise(((t,e)=>{let s=i.from([]);this.pipe(new _.Writable({decodeStrings:!0,write(t,e,r){s=i.concat([s,t],s.length+t.length),r()}})).on("error",(t=>{e(t)})).on("finish",(()=>{t(s)}))})):void 0}import(t){return t.on("data",(t=>this.write(t))).on("end",(()=>this.end())).on("error",(t=>this.emit("error",t))),this}demolish(t){if(this.push=t=>{if(null!==t)throw new Error("[ERR_STREAM_DESTROYED]: Cannot push after stream was destroyed")},this.emit=function(t,...e){"end"!==t&&Object.getPrototypeOf(this).emit.apply(this,[t,...e])},t)return _.Transform.prototype.destroy.call(this,t)}}const o=new Function("try {return this===global;}catch(e){return false;}")(),[c,f]=(()=>"undefined"===typeof r?[!0,!1]:r.browser?[!0,!0]:"undefined"===r.versions||"undefined"===r.versions.node?[!0,!1]:[!1,!1])();(f||o&&+/^v(\d+)/.exec(r.version)[1]<10)&&(l.prototype.destroy=a.prototype.destroy=function(t,e){this._readableState.destroyed=!0,this._writableState.destroyed=!0;let s=()=>{this._writableState.emitClose&&this._readableState.emitClose&&this.emit("close")};return this._destroy(t||null,(t=>{!e&&t?(r.nextTick((()=>{this.emit("error",t),s()})),this._writableState.errorEmitted=!0):(r.nextTick(s),e&&e(t))})),this},l.prototype._destroy=a.prototype._destroy=(t,e)=>e(t));class u extends l{constructor(t={}){super({...t,writableObjectMode:!0,readableObjectMode:!0}),this._as_inputs=new Set,this.on("pipe",(t=>{this._as_inputs.add(t),t.on("prefix",((...t)=>{this.emit("prefix",...t)})).on("comment",((...t)=>{this.emit("comment",...t)}))})),this.on("unpipe",(t=>{this._as_inputs.delete(t)}))}_destroy(){for(let t of this._as_inputs)t.destroy()}}class d extends u{_transform(t,e,s){s(null,JSON.stringify(t.isolate())+"\n")}}class p extends u{_transform(t,e,s){s(null,{type:"quad",value:t})}}l.QuadsToOther=u,t.exports={..._,Readable:n,Writable:h,Duplex:a,Transform:l,QuadsToOther:u,quads_to_json(){return new d},quads_to_writable(){return new p},source(t,e=null){return e||"string"!==typeof t||(e="utf8"),new n({objectMode:!e&&"string"!==typeof t&&!i.isBuffer(t),read(){this.push(t,e),this.push(null)}})}}}}]); +//# sourceMappingURL=55.d111b5d7.js.map \ No newline at end of file diff --git a/dist/js/55.d111b5d7.js.map b/dist/js/55.d111b5d7.js.map new file mode 100644 index 0000000..6d33197 --- /dev/null +++ b/dist/js/55.d111b5d7.js.map @@ -0,0 +1 @@ +{"version":3,"file":"js/55.d111b5d7.js","mappings":"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","sources":["webpack://mobilitydcatap-ui/./node_modules/@graphy/content.trig.read/main.js","webpack://mobilitydcatap-ui/./node_modules/@graphy/core.iso.stream/main.js"],"sourcesContent":["\n\n\n// queueMicrotask shim\n{\n\t// not defined or not a function\n\tif('function' !== typeof queueMicrotask) {\n\t\t// create resolved promise\n\t\tlet dp_resolve = Promise.resolve();\n\n\t\t// try to redefine\n\t\ttry {\n\t\t\t// eslint-disable-next-line no-global-assign\n\t\t\tqueueMicrotask = fk => dp_resolve.then(fk)\n\t\t\t\t.catch(e_callback => setTimeout(() => {\n\t\t\t\t\tthrow e_callback;\n\t\t\t\t}, 0));\n\t\t}\n\t\t// oh well, at least we tried\n\t\tcatch(e_define) {}\n\t}\n}\n\n\n\nconst uri = require('uri-js');\nconst string_decoder = require('string_decoder');\n\nconst stream = require('@graphy/core.iso.stream');\nconst factory = require('@graphy/core.data.factory');\nconst quad = k => factory.quad(k._kt_subject, k._kt_predicate, k._kt_object, k._kt_graph);\n\n// eslint-disable-next-line no-misleading-character-class\nconst RT_PREFIXED_NAME_NAMESPACE_VALID = /^([A-Za-z\\xc0-\\xd6\\xd8-\\xf6\\xf8-\\u{02ff}\\u{0370}-\\u{037d}\\u{037f}-\\u{1fff}\\u{200c}-\\u{200d}\\u{2070}-\\u{218f}\\u{2c00}-\\u{2fef}\\u{3001}-\\u{d7ff}\\u{f900}-\\u{fdcf}\\u{fdf0}-\\u{fffd}\\u{10000}-\\u{effff}]([A-Za-z\\xc0-\\xd6\\xd8-\\xf6\\xf8-\\u{02ff}\\u{0370}-\\u{037d}\\u{037f}-\\u{1fff}\\u{200c}-\\u{200d}\\u{2070}-\\u{218f}\\u{2c00}-\\u{2fef}\\u{3001}-\\u{d7ff}\\u{f900}-\\u{fdcf}\\u{fdf0}-\\u{fffd}\\u{10000}-\\u{effff}_\\-0-9\\xb7\\u{0300}-\\u{036f}\\u{203f}-\\u{2040}.]*[A-Za-z\\xc0-\\xd6\\xd8-\\xf6\\xf8-\\u{02ff}\\u{0370}-\\u{037d}\\u{037f}-\\u{1fff}\\u{200c}-\\u{200d}\\u{2070}-\\u{218f}\\u{2c00}-\\u{2fef}\\u{3001}-\\u{d7ff}\\u{f900}-\\u{fdcf}\\u{fdf0}-\\u{fffd}\\u{10000}-\\u{effff}_\\-0-9\\xb7\\u{0300}-\\u{036f}\\u{203f}-\\u{2040}])?)?$/u;\n// eslint-disable-next-line no-misleading-character-class\nconst RT_PREFIXED_NAME_LOCAL_NAME_VALID = /^([A-Za-z\\xc0-\\xd6\\xd8-\\xf6\\xf8-\\u{02ff}\\u{0370}-\\u{037d}\\u{037f}-\\u{1fff}\\u{200c}-\\u{200d}\\u{2070}-\\u{218f}\\u{2c00}-\\u{2fef}\\u{3001}-\\u{d7ff}\\u{f900}-\\u{fdcf}\\u{fdf0}-\\u{fffd}\\u{10000}-\\u{effff}_:0-9]|%[A-Fa-f0-9]{2}|\\\\[_~.\\-!$&'()*+,;=/?#@%])(([A-Za-z\\xc0-\\xd6\\xd8-\\xf6\\xf8-\\u{02ff}\\u{0370}-\\u{037d}\\u{037f}-\\u{1fff}\\u{200c}-\\u{200d}\\u{2070}-\\u{218f}\\u{2c00}-\\u{2fef}\\u{3001}-\\u{d7ff}\\u{f900}-\\u{fdcf}\\u{fdf0}-\\u{fffd}\\u{10000}-\\u{effff}_\\-0-9\\xb7\\u{0300}-\\u{036f}\\u{203f}-\\u{2040}.:]|%[A-Fa-f0-9]{2}|\\\\[_~.\\-!$&'()*+,;=/?#@%])*([A-Za-z\\xc0-\\xd6\\xd8-\\xf6\\xf8-\\u{02ff}\\u{0370}-\\u{037d}\\u{037f}-\\u{1fff}\\u{200c}-\\u{200d}\\u{2070}-\\u{218f}\\u{2c00}-\\u{2fef}\\u{3001}-\\u{d7ff}\\u{f900}-\\u{fdcf}\\u{fdf0}-\\u{fffd}\\u{10000}-\\u{effff}_\\-0-9\\xb7\\u{0300}-\\u{036f}\\u{203f}-\\u{2040}:]|%[A-Fa-f0-9]{2}|\\\\[_~.\\-!$&'()*+,;=/?#@%]))?$/u;\n// eslint-disable-next-line no-misleading-character-class\nconst RT_BLANK_NODE_VALID = /^[A-Za-z\\xc0-\\xd6\\xd8-\\xf6\\xf8-\\u{02ff}\\u{0370}-\\u{037d}\\u{037f}-\\u{1fff}\\u{200c}-\\u{200d}\\u{2070}-\\u{218f}\\u{2c00}-\\u{2fef}\\u{3001}-\\u{d7ff}\\u{f900}-\\u{fdcf}\\u{fdf0}-\\u{fffd}\\u{10000}-\\u{effff}_0-9]([A-Za-z\\xc0-\\xd6\\xd8-\\xf6\\xf8-\\u{02ff}\\u{0370}-\\u{037d}\\u{037f}-\\u{1fff}\\u{200c}-\\u{200d}\\u{2070}-\\u{218f}\\u{2c00}-\\u{2fef}\\u{3001}-\\u{d7ff}\\u{f900}-\\u{fdcf}\\u{fdf0}-\\u{fffd}\\u{10000}-\\u{effff}_\\-0-9\\xb7\\u{0300}-\\u{036f}\\u{203f}-\\u{2040}.]*[A-Za-z\\xc0-\\xd6\\xd8-\\xf6\\xf8-\\u{02ff}\\u{0370}-\\u{037d}\\u{037f}-\\u{1fff}\\u{200c}-\\u{200d}\\u{2070}-\\u{218f}\\u{2c00}-\\u{2fef}\\u{3001}-\\u{d7ff}\\u{f900}-\\u{fdcf}\\u{fdf0}-\\u{fffd}\\u{10000}-\\u{effff}_\\-0-9\\xb7\\u{0300}-\\u{036f}\\u{203f}-\\u{2040}])?$/u;\nconst RT_NAMED_NODE_VALID = /^([^\\0-\\x20<>\"{}|^`\\\\]|\\\\u[A-Fa-f0-9]{4}|\\\\U[A-Fa-f0-9]{8})*$/;\nconst RT_NAMED_NODE_ESCAPELESS_VALID = /^([^\\0-\\x20<>\"{}|^`])*$/;\n\nconst RT_LITERAL_CONTENTS_VALID = /^(?:[^\\\\]|\\\\[tbnrf\"'\\\\]|\\\\u[A-Fa-f0-9]{4}|\\\\U[A-Fa-f0-9]{8})*$/;\n\nconst R_UNICODE_ANY = /\\\\u([0-9A-Fa-f]{4})|\\\\U([0-9A-Fa-f]{8})/g;\n\nconst F_REPLACE_UNICODE_ANY = \t(s_, s_4, s_8) => String.fromCodePoint(parseInt(s_4 || s_8, 16));\n\nconst OPHOP = Object.prototype.hasOwnProperty;\n\n\n\nconst R_PREFIXED_NAME_QUICK = /([A-Za-z][A-Za-z0-9_-]*)?:([A-Za-z_0-9:][A-Za-z0-9_:-]*)(?:\\s+|(?=\\.?[<[(\"';,)\\]#{}]|\\.[\\s\\0]))/y;\n\n\nconst R_PREFIXED_NAME_ESCAPELESS = /([^\\s#@<[(\"':_{}][^\\s#@<[(\"':{}]*)?:((?:[^\\s#@<[(\"'.;,{})\\]\\\\](?:[^\\s#@<[(\"';,{})\\]\\\\]*[^\\s#@<[(\"'.;,{})\\]\\\\])?)?)(?:\\s+|(?=\\.?[<[(\"';,)\\]#{}]|\\.[\\s\\0]))/y;\n\n\n\nconst R_PREFIXED_NAME = /([^\\s#@<[(\"':_{}][^\\s#@<[(\"':{}]*)?:((?:(?:[^\\s#@<[(\"'.;,{})\\]\\\\]|\\\\(?:%[0-9A-Fa-f][0-9A-Fa-f]|[^\\s\"]))(?:(?:[^\\s#@<[(\"';,{})\\]\\\\]|\\\\(?:%[0-9A-Fa-f][0-9A-Fa-f]|[^\\s\"]))*(?:[^\\s#@<[(\"'.;,{})\\]\\\\]|\\\\(?:%[0-9A-Fa-f][0-9A-Fa-f]|[^\\s\"])))?)?)(?:\\s+|(?=\\.?[<[(\"';,)\\]#{}]|\\.[\\s\\0]))/y;\n\nconst R_PN_LOCAL_ESCAPES = /\\\\(.)/g;\n\n\nconst R_BLANK_NODE_LABEL = /_:(.(?:[^\\s:<;,)\\]#}]*[^\\s:<.;,)\\]#}])?)(?:\\s+|(?=[<:{,;\\])#]))/y;\nconst R_BLANK_NODE_LABEL_TERMINAL = /_:(.(?:[^\\s:<;,)\\]#}]*[^\\s:<.;,)\\]#}])?)(?:\\s+|(?=\\.?[<:{,;\\])#])|(?=\\.[\\s@#<({[}]))/y;\n\nconst R_IRIREF_ESCAPELESS = /<([^\\\\>]*)>\\s*/y;\nconst R_IRIREF = /<([^>]*)>\\s*/y;\n\nconst R_NUMERIC_LITERAL = /([+-]?(?:[0-9]+(\\.[0-9]+)?|(\\.[0-9]+))(\\.?[eE][+-]?[0-9]+)?)(?:\\s+|(?=\\.[^eE0-9]|[;,)\\]]))/y;\nconst R_BOOLEAN_LITERAL = /(?:(true|TRUE)|false|FALSE)\\s*/y;\nconst R_A = /a(?:\\s+|(?=[[(\"'<#]))/y;\n\nconst R_DOUBLE_CARET = /\\^\\^/y;\nconst R_WS = /\\s*/y;\nconst R_LANGTAG = /@([A-Za-z]+(?:-[A-Za-z0-9-]+)*)(?:\\s+|(?=[.},;\\])#]))/y;\n\nconst R_PREFIX_KEYWORD = /(?:(@prefix)|[pP][rR][eE][fF][iI][xX])\\s*/y;\nconst R_PREFIX_ID = /([^#:]*):\\s*/iy;\nconst R_BASE_KEYWORD = /(?:(@base)|[bB][aA][sS][eE])\\s*/y;\n\nconst R_GRAPH_IRI_ESCAPELESS = /(?:graph)?\\s*<([^\\\\>]*)>\\s*\\{\\s*/iy;\nconst R_GRAPH_PREFIXED_NAME = /(?:graph)?\\s*([^\\s#@<[(\"':_{}][^\\s#@<[(\"':{}]*)?:((?:(?:[^\\s#@<[(\"'.;,{})\\]\\\\]|\\\\(?:%[0-9A-Fa-f][0-9A-Fa-f]|[^\\s\"]))(?:(?:[^\\s#@<[(\"';,{})\\]\\\\]|\\\\(?:%[0-9A-Fa-f][0-9A-Fa-f]|[^\\s\"]))*(?:[^\\s#@<[(\"'.;,{})\\]\\\\]|\\\\(?:%[0-9A-Fa-f][0-9A-Fa-f]|[^\\s\"])))?)?)\\s*\\{\\s*/iy;\nconst R_GRAPH_LABELED_BLANK_NODE = /(?:graph)?\\s*_:(.(?:[^\\s:<;,)\\]#}]*[^\\s:<.;,)\\]#}])?)\\s*\\{\\s*/iy;\nconst R_GRAPH_ANONYMOUS_BLANK_NODE = /(?:graph)?\\s*\\[\\s*\\]\\s*\\{\\s*/iy;\nconst R_GRAPH_IRI = /(?:graph)?\\s*<([^>]*)>\\s*\\{\\s*/iy;\nconst R_GRAPH = /graph(?:\\s+|(?=[#<[{]))/iy;\n\nconst R_COMMENT = /(#[^\\n]*\\n\\s*)+/y;\n\nconst RT_IRI_ABSOLUTE = /^[A-Za-z][A-Za-z0-9.\\-+]*:/;\nconst R_RELATIVE_URI = /^(\\/[^?#]+)([?#].*)?$/;\nconst R_BASE_IRI = /^((([A-Za-z0-9.\\-+]*:\\/)?\\/[^/>]*)?(\\/(?:[^/>]*\\/)*)?[^>]*)$/;\n\nconst R_ANONYMOUS_BLANK_NODE = /\\[\\s*\\]\\s*/y;\nconst R_CHAR_BLANK_NODE = /\\[(?:\\s+|(?=[^\\]]))/y;\nconst R_CHAR_COLLECTION = /\\(\\s*/y;\n\nconst R_CHAR_KET = /\\]\\s*/y;\n\nconst R_CHAR_OPEN = /\\{\\s*/y;\nconst R_CHAR_CLOSE = /\\}\\s*/y;\n\nconst R_CHAR_STOP = /\\.\\s*/y;\n\n\n\nconst R_STRLIT_SHORT_DOUBLE_BREAK = /[\\\\\"\\r\\n]/g;\nconst R_STRLIT_SHORT_SINGLE_BREAK = /[\\\\'\\r\\n]/g;\n\nconst R_STRLIT_LONG_DOUBLE_UNFINISHED_TERM = /\"{1,2}$/g;\nconst R_STRLIT_LONG_SINGLE_UNFINISHED_TERM = /'{1,2}$/g;\n\nconst R_STRLIT_LONG_DOUBLE_BREAK = /(\\\\|\"\"\")/g;\nconst R_STRLIT_LONG_SINGLE_BREAK = /(\\\\|''')/g;\n\n\nconst F_REPLACE_STRLIT_CONTENTS = (s_, s_whitespace, s_auto, s_4, s_8, s_invalid) => {\n\tif(s_whitespace) {\n\t\tswitch(s_whitespace) {\n\t\t\tcase 't': return '\\t';\n\t\t\tcase 'n': return '\\n';\n\t\t\tcase 'r': return '\\r';\n\t\t\tcase 'f': return '\\f';\n\t\t\tcase 'b': return '\\b';\n\t\t\tdefault: {\n\t\t\t\tconsole.assert(`bad regex escape char mapping: '${s_whitespace}'`);\n\t\t\t}\n\t\t}\n\t}\n\telse if(s_auto) {\n\t\treturn s_auto;\n\t}\n\telse if(s_4) {\n\t\treturn String.fromCodePoint(parseInt(s_4, 16));\n\t}\n\telse if(s_8) {\n\t\treturn String.fromCodePoint(parseInt(s_8, 16));\n\t}\n\telse if(s_invalid) {\n\t\t// pointless escape\n\t\tif('\\\\' === s_invalid[0]) {\n\t\t\t\t// // relaxed\n\t\t\t\t// return s_invalid[1];\n\t\t\t// if relaxed then return s_invalid, otherwise throw:\n\t\t\tthrow new Error(`expected string_literal but invalid escape sequence within contents: '${s_invalid}'. failed to parse a valid token`);\n\t\t}\n\t\t// bad character\n\t\telse {\n\t\t\tthrow new Error(`expected string_literal but invalid whitespace character within contents: ${JSON.stringify(s_invalid)}. failed to parse a valid token`);\n\t\t}\n\t}\n\telse {\n\t\tconsole.assert(`unexpected no match branch in escape sequence replace callback`);\n\t}\n};\n\n\nconst R_STRLIT_SHORT_CONTENTS_ESCAPES_HARD = /(?:\\\\(?:([tnrfb])|([\\\\\"'])|u([0-9A-Fa-f]{4})|U([0-9A-Fa-f]{8}))|([\\r\\n]|\\\\.))/g;\nconst R_STRLIT_SHORT_CONTENTS_ESCAPES_SOFT = /(?:\\\\(?:([tnrfb])|([\\\\\"'])|u([0-9A-Fa-f]{4})|U([0-9A-Fa-f]{8}))|([\\r\\n]|\\\\[^uU]|\\\\u[^]{4}|\\\\U[^]{8}))/g;\n\nconst unescape_literal_short_hard = s_literal => s_literal\n\t.replace(R_STRLIT_SHORT_CONTENTS_ESCAPES_HARD, F_REPLACE_STRLIT_CONTENTS);\n\nconst unescape_literal_short_soft = (s_literal) => {\n\tlet m_incomplete = R_STRLIT_ESCAPE_INCOMPLETE.exec(s_literal);\n\n\t// incomplete escape\n\tif(m_incomplete) {\n\t\tlet i_safe = m_incomplete.index;\n\n\t\t// rewind\n\t\treturn [\n\t\t\ts_literal.slice(0, i_safe)\n\t\t\t\t.replace(R_STRLIT_SHORT_CONTENTS_ESCAPES_SOFT, F_REPLACE_STRLIT_CONTENTS),\n\t\t\ts_literal.slice(i_safe),\n\t\t];\n\t}\n\t// done\n\telse {\n\t\treturn [\n\t\t\ts_literal\n\t\t\t\t.replace(R_STRLIT_SHORT_CONTENTS_ESCAPES_SOFT, F_REPLACE_STRLIT_CONTENTS),\n\t\t\t'',\n\t\t];\n\t}\n};\n\n\nconst R_STRLIT_LONG_CONTENTS_ESCAPES_HARD = /(?:\\\\(?:([tnrfb])|([\\\\\"'])|u([0-9A-Fa-f]{4})|U([0-9A-Fa-f]{8}))|(\\\\.))/g;\nconst R_STRLIT_LONG_CONTENTS_ESCAPES_SOFT = /(?:\\\\(?:([tnrfb])|([\\\\\"'])|u([0-9A-Fa-f]{4})|U([0-9A-Fa-f]{8}))|(\\\\[^uU]|\\\\u[^]{4}|\\\\U[^]{8}))/g;\n\nconst unescape_literal_long_hard = s_literal => s_literal\n\t.replace(R_STRLIT_LONG_CONTENTS_ESCAPES_HARD, F_REPLACE_STRLIT_CONTENTS);\n\nconst unescape_literal_long_soft = (s_literal) => {\n\tlet m_incomplete = R_STRLIT_ESCAPE_INCOMPLETE.exec(s_literal);\n\n\t// incomplete escape\n\tif(m_incomplete) {\n\t\tlet i_safe = m_incomplete.index;\n\n\t\t// rewind\n\t\treturn [\n\t\t\ts_literal.slice(0, i_safe)\n\t\t\t\t.replace(R_STRLIT_LONG_CONTENTS_ESCAPES_SOFT, F_REPLACE_STRLIT_CONTENTS),\n\t\t\ts_literal.slice(i_safe),\n\t\t];\n\t}\n\t// done\n\telse {\n\t\treturn [\n\t\t\ts_literal\n\t\t\t\t.replace(R_STRLIT_LONG_CONTENTS_ESCAPES_SOFT, F_REPLACE_STRLIT_CONTENTS),\n\t\t\t'',\n\t\t];\n\t}\n};\n\n// lookbehind regexes\nconst [\n\tR_STRLIT_ESCAPE_INCOMPLETE,\n\tR_STRLIT_SHORT_DOUBLE_TERM,\n\tR_STRLIT_SHORT_SINGLE_TERM,\n\tR_STRLIT_LONG_DOUBLE_TERM,\n\tR_STRLIT_LONG_SINGLE_TERM,\n] = (() => {\n\tfunction RegExp_$lookbehind_polyfill(s_input) {\n\t\tlet m_match = RegExp.prototype.exec.call(this, s_input);\n\n\t\tif(m_match) {\n\t\t\tlet i_start = m_match[0].length - m_match[1].length;\n\t\t\tm_match.index += i_start;\n\t\t\tm_match[0] = m_match[0].slice(i_start);\n\t\t}\n\n\t\treturn m_match;\n\t}\n\tlet mk_lookbehind_regex = (() => {\n\t\ttry {\n\t\t\tnew RegExp('(? {\n\t\t\t\tr_polyfill.exec = f_polyfill;\n\t\t\t\treturn r_polyfill;\n\t\t\t};\n\t\t}\n\t\treturn f_lookbehind => f_lookbehind();\n\t})();\n\treturn [\n\t\t// R_STRLIT_ESCAPE_INCOMPLETE\n\t\tmk_lookbehind_regex(\n\t\t\t() => new RegExp('(? new RegExp('(? new RegExp('(? new RegExp('(? new RegExp('(? {\n\tR_PREFIXED_NAME_QUICK.lastIndex = i;\n\treturn [R_PREFIXED_NAME_QUICK.exec(s), R_PREFIXED_NAME_QUICK.lastIndex];\n};\n\nconst match_prefixed_name_escapeless = (s, i) => {\n\tR_PREFIXED_NAME_ESCAPELESS.lastIndex = i;\n\treturn [R_PREFIXED_NAME_ESCAPELESS.exec(s), R_PREFIXED_NAME_ESCAPELESS.lastIndex];\n};\n\nconst match_prefixed_name = (s, i) => {\n\tR_PREFIXED_NAME.lastIndex = i;\n\treturn [R_PREFIXED_NAME.exec(s), R_PREFIXED_NAME.lastIndex];\n};\n\n\n\nfunction Reader$syntax_error(k_self, i, si_state, s_info) {\n\tlet i_off = Math.min(i, Math.abs(i-15));\n\n\tlet s = k_self.s;\n\n\treturn k_self.error(`\\n\\`${s.substr(i_off, i_off+90).replace(/[\\n\\t]/g, ' ')}\\`\\n`\n\t\t+` ${' '.repeat(i-i_off)}^\\n`\n\t\t+`expected ${si_state} ${s_info || ''}. failed to parse a valid token starting at ${s[i]? '\"'+s[i]+'\"': '<>'}`);\n}\n\n\n\nclass TriG_Reader extends stream.Transform {\n\tconstructor(g_impls) {\n\t\tsuper({\n\t\t\t// do not decode strings into buffers\n\t\t\tdecodeStrings: false,\n\n\t\t\t// accept strings as input on writable side\n\t\t\twritableObjectMode: false,\n\n\t\t\t// output quad objects on readable side\n\t\t\treadableObjectMode: true,\n\n\t\t\t// implementations\n\t\t\tflush: g_impls.flush,\n\t\t\ttransform: g_impls.transform,\n\t\t});\n\t}\n\n\t// intercept pipe\n\tpipe(ds_out) {\n\t\tlet ds_dst = ds_out;\n\n\t\t// non-object mode\n\t\tif(!ds_dst._writableState.objectMode) {\n\t\t\t// transform to JSON\n\t\t\tds_out = stream.quads_to_json();\n\t\t}\n\t\t// yet object mode and graphy writable\n\t\telse if(ds_out.isGraphyWritable) {\n\t\t\t// transform to writable data events\n\t\t\tds_out = stream.quads_to_writable();\n\t\t}\n\n\t\t// interim stream created\n\t\tif(ds_out !== ds_dst) {\n\t\t\t// forward output to super\n\t\t\tsuper.pipe(ds_out);\n\n\t\t\t// pipe outpu to destination\n\t\t\treturn ds_out.pipe(ds_dst);\n\t\t}\n\t\t// forward as-is to super\n\t\telse {\n\t\t\treturn super.pipe(ds_dst);\n\t\t}\n\t}\n}\n\n\nclass Reader {\n\tconstructor(g_config={}) {\n\t\t// impl-specific configs\n\t\tlet {\n\t\t\t// input medium\n\t\t\tinput: g_input=null,\n\n\t\t\t// a state to inherit\n\t\t\tstate: g_state={},\n\t\t} = g_config;\n\n\t\t// inherit state from creator\n\t\tlet {\n\t\t\t// index for anonymous blank node labels\n\t\t\tblank_node_index: i_anon=0,\n\n\t\t\t// prefix map\n\t\t\tprefixes: h_prefixes={},\n\n\t\t\t// blank node label map\n\t\t\tlabels: h_labels={},\n\t\t} = g_state;\n\n\n\t\tlet dc_factory = factory.adopt(g_config.dataFactory || g_config.data_factory || factory.unfiltered);\n\n\t\tlet kt_default_graph = dc_factory.defaultGraph();\n\n\t\t// if data factory is not graphy, it might be returning the same object on each call to .defaultGraph()\n\t\tif(dc_factory !== factory.unfiltered) {\n\t\t\t// do not trust it, create a new object\n\t\t\tkt_default_graph = Object.create(kt_default_graph);\n\t\t}\n\n\t\tlet kt_rdf_first = dc_factory.namedNode('http://www.w3.org/1999/02/22-rdf-syntax-ns#first');\n\n\t\tlet blankNode = dc_factory.blankNode;\n\t\tlet namedNode = dc_factory.namedNode;\n\n\t\tthis.emit_data = factory.unfiltered === dc_factory\n\t\t\t? function() {\n\t\t\t\tds_transform.push(quad(this));\n\t\t\t}\n\t\t\t: function() {\n\t\t\t\tlet g_quad = dc_factory.quad(this._kt_subject, this._kt_predicate, this._kt_object, this._kt_graph);\n\t\t\t\tds_transform.push(g_quad);\n\t\t\t};\n\n\t\t// fields\n\t\tObject.assign(this, {\n\t\t\t// read index\n\t\t\ti: 0,\n\n\t\t\t// string buffer\n\t\t\ts: '',\n\n\t\t\t// string buffer length\n\t\t\tn: 0,\n\n\t\t\t// left-over string from previous data chunk\n\t\t\tpre: g_config.prepend || '',\n\n\t\t\t// debug state\n\t\t\t_b_debug: g_config.debug || false,\n\n\t\t\t// relax\n\t\t\t_b_relax: g_config.relax || false,\n\n\t\t\t// factory\n\t\t\t_dc_factory: dc_factory,\n\n\t\t\t// current reader state\n\t\t\t_f_state: this.block,\n\n\t\t\t// map of current prefix ids => iris\n\t\t\t_h_prefixes: h_prefixes,\n\n\n\t\t\t// reader was destroyed by an error\n\t\t\t_b_destroyed: false,\n\n\t\t\t// current @base url\n\t\t\t_s_base_url: '',\n\t\t\t_s_base_url_scheme: '',\n\t\t\t_s_base_url_root: '',\n\t\t\t_s_base_url_path: '',\n\n\t\t\t// current data\n\t\t\t_kt_subject: null,\n\t\t\t_kt_predicate: kt_rdf_first,\n\t\t\t_kt_object: null,\n\t\t\t_kt_graph: kt_default_graph,\n\t\t\t_s_literal: '',\n\n\t\t\t// static terms\n\t\t\t_kt_rdf_type: dc_factory.namedNode('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'),\n\t\t\t_kt_rdf_first: kt_rdf_first,\n\t\t\t_kt_rdf_rest: dc_factory.namedNode('http://www.w3.org/1999/02/22-rdf-syntax-ns#rest'),\n\t\t\t_kt_rdf_nil: dc_factory.namedNode('http://www.w3.org/1999/02/22-rdf-syntax-ns#nil'),\n\t\t\t_kt_default_graph: kt_default_graph,\n\n\t\t\t// queue of nested subject, predicate, state for blanknodes and collections\n\t\t\t_a_nested: [],\n\n\t\t\t// hash to keep track of all blank node labels in use\n\t\t\t_h_labels: h_labels,\n\n\t\t\t// event routing\n\t\t\tevent: this.emit,\n\t\t\tdata: this.emit_data,\n\n\t\t\t// for restoring the original event callback when resuming paused stream\n\t\t\trestore_data: this.emit_data,\n\n\t\t\t// keep a queue of data events to hold onto until stream resumes (only happens in rare conditions)\n\t\t\t_a_queue_event: [],\n\n\t\t\t// helper states\n\t\t\t_b_expecting_full_stop: false,\n\t\t\t_s_temp_prefix_id: null,\n\t\t\t_b_trim_start: true,\n\n\t\t\tanonymous_blank_node: s_label => blankNode(s_label, true),\n\n\t\t\t// finds the next non-conflicting blank node label\n\t\t\tnext_label() {\n\t\t\t\tlet s_label = '';\n\t\t\t\tdo {\n\t\t\t\t\ts_label = 'g'+(i_anon++);\n\t\t\t\t} while(this._h_labels[s_label]);\n\n\t\t\t\t// claim this label, and remember that we invented it\n\t\t\t\tthis._h_labels[s_label] = 2;\n\n\t\t\t\t// return the label\n\t\t\t\treturn s_label;\n\t\t\t},\n\n\t\t\t// what to do when reach eos\n\t\t\teos: null,\n\n\t\t\t// which state to go to after end of statement\n\t\t\tafter_end_of_statement: this.post_object,\n\n\t\t\t// maximum length of a token: defaults to 2048 => http://stackoverflow.com/a/417184/1641160\n\t\t\t_n_max_token_length: g_config.max_token_length || g_config.maxTokenLength || 2048,\n\n\t\t\t// maximum length of a string (overrides max_token_length): defaults to Infinity\n\t\t\t_n_max_string_length: g_config.max_string_length || g_config.maxStringLength || Infinity,\n\n\t\t\t// byte tracking\n\t\t\t_b_byte_tracking: g_config.byte_tracking || g_config.byteTracking || false,\n\t\t\t_nb_seen: 0,\n\t\t\t_nb_last: 0,\n\t\t\t_nb_curr: 0,\n\t\t});\n\n\t\tif(g_config.relaxed) {\n\t\t\tconsole.warn((new Error(`no such option 'relaxed'; did you mean 'relax' ?`)).stack.replace(/^Error:/, 'Warning:'));\n\t\t}\n\t\tif('validate' in g_config) {\n\t\t\tconsole.warn((new Error(`option 'validate' has been deprecated. Validation is now enabled by default. Use the 'relax' option if you wish to disable validation.`)).stack.replace(/^Error:/, 'Warning:'));\n\t\t}\n\n\n\n\t\t// term constructors\n\t\tObject.assign(this, !g_config.relax\n\t\t\t? {\n\t\t\t\tblank_node(s_label) {\n\t\t\t\t\t// test valid blank node label\n\t\t\t\t\tif(!RT_BLANK_NODE_VALID.test(s_label)) return this.error(`invalid blank node label: \"${s_label}\"`);\n\n\t\t\t\t\t// not first time use of label\n\t\t\t\t\tlet z_label_state = this._h_labels[s_label];\n\t\t\t\t\tif(z_label_state) {\n\t\t\t\t\t\t// label was used previously by document and has no conflict\n\t\t\t\t\t\tif(1 === z_label_state) {} // eslint-disable-line no-empty\n\t\t\t\t\t\t// label is in use by invention, this would cause a conflict\n\t\t\t\t\t\telse if(2 === z_label_state) {\n\t\t\t\t\t\t\t// so create a redirect mapping for this actual label & use it instead\n\t\t\t\t\t\t\ts_label = this._h_labels[s_label] = this.next_label();\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// label already has a redirect mapping\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t// use redirected label\n\t\t\t\t\t\t\ts_label = this._h_labels[s_label];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t// first time use of label\n\t\t\t\t\telse {\n\t\t\t\t\t\t// store label in hash so we avoid future collisions\n\t\t\t\t\t\tthis._h_labels[s_label] = 1;\n\t\t\t\t\t}\n\n\t\t\t\t\t// make term\n\t\t\t\t\treturn blankNode(s_label);\n\t\t\t\t},\n\n\t\t\t\tcheck_named_node(p_iri) {\n\t\t\t\t\tif(!RT_NAMED_NODE_VALID.test(p_iri)) return this.error(`invalid IRI: \"${p_iri}\"`);\n\t\t\t\t\treturn namedNode(p_iri);\n\t\t\t\t},\n\n\t\t\t\tcheck_named_node_escapeless(p_iri) {\n\t\t\t\t\tif(!RT_NAMED_NODE_ESCAPELESS_VALID.test(p_iri)) return this.error(`invalid IRI: \"${p_iri}\"`);\n\t\t\t\t\treturn namedNode(p_iri);\n\t\t\t\t},\n\n\t\t\t\tmatch_prefixed_name_quick(s, i) {\n\t\t\t\t\tR_PREFIXED_NAME_QUICK.lastIndex = i;\n\t\t\t\t\treturn [R_PREFIXED_NAME_QUICK.exec(s), R_PREFIXED_NAME_QUICK.lastIndex];\n\t\t\t\t},\n\n\t\t\t\tmatch_prefixed_name_escapeless(s, i) {\n\t\t\t\t\tlet [m_prefixed_name_e, im_prefixed_name_e] = match_prefixed_name_escapeless(s, i);\n\t\t\t\t\tif(m_prefixed_name_e) {\n\t\t\t\t\t\t// invalid local name\n\t\t\t\t\t\tif(!RT_PREFIXED_NAME_LOCAL_NAME_VALID.test(m_prefixed_name_e[2]) && m_prefixed_name_e[2]) {\n\t\t\t\t\t\t\tthis.error(`invalid prefixed name local name: \"${m_prefixed_name_e[2]}:\"`);\n\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn [m_prefixed_name_e, im_prefixed_name_e];\n\t\t\t\t},\n\n\t\t\t\tmatch_prefixed_name(s, i) {\n\t\t\t\t\tlet [m_prefixed_name, im_prefixed_name] = match_prefixed_name(s, i);\n\t\t\t\t\tif(m_prefixed_name) {\n\t\t\t\t\t\t// invalid local name\n\t\t\t\t\t\tif(!RT_PREFIXED_NAME_LOCAL_NAME_VALID.test(m_prefixed_name[2])) {\n\t\t\t\t\t\t\tthis.error(`invalid prefixed name local name: \"${m_prefixed_name[2]}:\"`);\n\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn [m_prefixed_name, im_prefixed_name];\n\t\t\t\t},\n\t\t\t}\n\t\t\t: {\n\t\t\t\t// term constructors\n\t\t\t\tblank_node(s_label) {\n\t\t\t\t\t// not first time use of label\n\t\t\t\t\tlet z_label_state = this._h_labels[s_label];\n\t\t\t\t\tif(z_label_state) {\n\t\t\t\t\t\t// label was used previously by document and has no conflict\n\t\t\t\t\t\tif(1 === z_label_state) {} // eslint-disable-line no-empty\n\t\t\t\t\t\t// label is in use by invention, this would cause a conflict\n\t\t\t\t\t\telse if(2 === z_label_state) {\n\t\t\t\t\t\t\t// so create a redirect mapping for this actual label & use it instead\n\t\t\t\t\t\t\ts_label = this._h_labels[s_label] = this.next_label();\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// label already has a redirect mapping\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t// use redirected label\n\t\t\t\t\t\t\ts_label = this._h_labels[s_label];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t// first time use of label\n\t\t\t\t\telse {\n\t\t\t\t\t\t// store label in hash so we avoid future collisions\n\t\t\t\t\t\tthis._h_labels[s_label] = 1;\n\t\t\t\t\t}\n\n\t\t\t\t\t// make term\n\t\t\t\t\treturn blankNode(s_label);\n\t\t\t\t},\n\n\t\t\t\tcheck_named_node: namedNode,\n\n\t\t\t\tcheck_named_node_escapeless: namedNode,\n\n\t\t\t\tmatch_prefixed_name_escapeless,\n\n\t\t\t\tmatch_prefixed_name,\n\t\t\t});\n\n\n\t\tthis.named_node = namedNode;\n\n\t\tthis.prefixed_name = function(si_prefix, s_suffix) {\n\t\t\treturn namedNode(h_prefixes[si_prefix] + s_suffix);\n\t\t};\n\n\n\t\t// oops -- user passed string into `base`\n\t\tif('string' === typeof g_config.base) {\n\t\t\tthrow new TypeError(`invalid type 'string' was given for 'base' event listener: '${g_config.base}'\\n`\n\t\t\t\t+`did you mean to use the 'base_uri' key instead?`);\n\t\t}\n\n\t\t// base uri\n\t\tlet p_set_base_uri = g_config.base_uri || g_config.baseUri || g_config.baseURI || g_config.base_iri || g_config.baseIri || g_config.baseIRI;\n\t\tif(p_set_base_uri) {\n\t\t\tlet m_base_iri = R_BASE_IRI.exec(p_set_base_uri);\n\t\t\tthis._s_base_url = m_base_iri[1];\n\t\t\tthis._s_base_url_root = m_base_iri[2] || '';\n\t\t\tthis._s_base_url_scheme = m_base_iri[3] || '';\n\t\t\tthis._s_base_url_path = m_base_iri[4] || '';\n\t\t}\n\t\t// not set; 'url' variant is\n\t\telse if(g_config.base_url || g_config.baseUrl || g_config.baseURL) {\n\t\t\tthrow new Error(`invalid option: .base${g_config.base_url? '_url': g_config.baseUrl? 'Url': g_config.baseURL? 'URL': ''}; use the '.base_uri' key instead`);\n\t\t}\n\n\t\t// transform stream\n\t\tlet ds_transform = this.transform = new TriG_Reader({\n\t\t\t// on data event\n\t\t\ttransform: (s_chunk, s_encoding, fke_chunk) => {\n\t\t\t\t// concatenate current chunk to previous chunk\n\t\t\t\tlet s = this.s = this.pre + s_chunk;\n\n\t\t\t\t// cache chunk length\n\t\t\t\tthis.n = s.length;\n\n\t\t\t\t// eat whitespace before token and reset index\n\t\t\t\tif(this._b_trim_start) {\n\t\t\t\t\t// consume whitespace (and incidentally reset index)\n\t\t\t\t\tR_WS.lastIndex = 0;\n\t\t\t\t\tR_WS.exec(s);\n\t\t\t\t\tthis.i = R_WS.lastIndex;\n\t\t\t\t}\n\t\t\t\t// do not eat whitespace; start at beginning\n\t\t\t\telse {\n\t\t\t\t\tthis.i = 0;\n\t\t\t\t}\n\n\t\t\t\t// resume parsing; no errors\n\t\t\t\tif(this.safe_parse(true)) {\n\t\t\t\t\t// emit progress event updates\n\t\t\t\t\tds_transform.emit('progress', s_chunk.length);\n\n\t\t\t\t\t// done transforming this chunk\n\t\t\t\t\tfke_chunk();\n\t\t\t\t}\n\t\t\t},\n\n\t\t\t// once there's no more data to consume, invoke eof\n\t\t\tflush: (fke_flush) => {\n\t\t\t\t// now that input stream has ended, clean up remainder\n\t\t\t\ttry {\n\t\t\t\t\tthis.eof(1);\n\t\t\t\t}\n\t\t\t\t// read error occurred\n\t\t\t\tcatch(e_eof) {\n\t\t\t\t\t// destroy self and stream\n\t\t\t\t\tthis.destroy(e_eof);\n\n\t\t\t\t\t// exit gracefully\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// no errors. done flushing, close read stream\n\t\t\t\tfke_flush();\n\t\t\t},\n\t\t});\n\n\t\t// when the writable side is piped into\n\t\tds_transform.on('pipe', (ds_input) => {\n\t\t\tthis._ds_input = ds_input;\n\n\t\t\tlet b_byte_tracking = this._b_byte_tracking;\n\n\t\t\t// byte-tracking is disable & input stream has encoding option; ensure stream encoding is utf8\n\t\t\tif(!b_byte_tracking && 'function' === typeof ds_input.setEncoding) {\n\t\t\t\tds_input.setEncoding('utf8');\n\t\t\t}\n\t\t\t// set decoding on write\n\t\t\telse {\n\t\t\t\tlet f_write = ds_transform.write;\n\t\t\t\tlet d_decoder = new string_decoder.StringDecoder('utf8');\n\n\t\t\t\tlet f_write_track = (s_chunk, s_encoding, fk_write) => {\n\t\t\t\t\t// TODO: optimize by testing for multibyte chars and using string length instead?\n\t\t\t\t\tlet nb_chunk = Buffer.from(s_chunk, 'utf8').length;\n\t\t\t\t\tthis._nb_seen += nb_chunk;\n\t\t\t\t\tthis._nb_last = nb_chunk;\n\t\t\t\t\treturn f_write.call(ds_transform, s_chunk, s_encoding, fk_write);\n\t\t\t\t};\n\n\t\t\t\tlet f_decode_write_track = (ab_chunk, s_encoding, fk_write) => {\n\t\t\t\t\tlet nb_chunk = this._nb_last = ab_chunk.length;\n\t\t\t\t\tthis._nb_seen += nb_chunk;\n\t\t\t\t\treturn f_write.call(ds_transform, d_decoder.write(ab_chunk), s_encoding, fk_write);\n\t\t\t\t};\n\n\t\t\t\tlet f_decode_write = (ab_chunk, s_encoding, fk_write) => f_write.call(ds_transform, d_decoder.write(ab_chunk), s_encoding, fk_write);\n\n\t\t\t\tds_transform.write = function(z_chunk, s_encoding, fk_write) {\n\t\t\t\t\t// not null\n\t\t\t\t\tif(null !== z_chunk) {\n\t\t\t\t\t\t// chunk is string; adapt by resetting method to original\n\t\t\t\t\t\tif('string' === typeof z_chunk) {\n\t\t\t\t\t\t\tds_transform.write = b_byte_tracking? f_write_track: f_write;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// chunk is buffer; adapt by setting decoder write method\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tds_transform.write = b_byte_tracking? f_decode_write_track: f_decode_write;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// use set method\n\t\t\t\t\t\treturn ds_transform.write(z_chunk, s_encoding, fk_write);\n\t\t\t\t\t}\n\n\t\t\t\t\t// null, use parent\n\t\t\t\t\treturn f_write.call(ds_transform, z_chunk, s_encoding, fk_write);\n\t\t\t\t};\n\n\t\t\t\t// byte tracking is enabled\n\t\t\t\tif(b_byte_tracking) {\n\t\t\t\t\t// overwrite emit_data method\n\t\t\t\t\tthis.emit_data = this.data = this.restore_data = function() {\n\t\t\t\t\t\tlet g_quad = this._dc_factory.quad(this._kt_subject, this._kt_predicate, this._kt_object, this._kt_graph);\n\t\t\t\t\t\tlet nb_post = Buffer.from(this.s.slice(this.i)).length;\n\t\t\t\t\t\tlet ib_post = this._nb_seen - nb_post;\n\t\t\t\t\t\tg_quad.byteRange = [this._nb_curr, ib_post];\n\t\t\t\t\t\tthis._nb_curr = ib_post;\n\t\t\t\t\t\tthis.transform.push(g_quad);\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\n\t\t// new listener added\n\t\tds_transform.on('newListener', (s_event) => {\n\t\t\t// comment\n\t\t\tif('comment' === s_event) {\n\t\t\t\tthis.emit_comments = (s_captured) => {\n\t\t\t\t\tlet a_comments = s_captured.slice(1).replace(/\\n\\s+$/, '').split(/\\n+\\s*#/g);\n\n\t\t\t\t\tfor(let s_comment of a_comments) {\n\t\t\t\t\t\tds_transform.emit('comment', s_comment);\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t}\n\t\t});\n\n\t\t// destroy\n\t\tds_transform._destroy = (...a_args) => {\n\t\t\tthis.destroy(...a_args);\n\t\t};\n\n\t\t// bind events to transform stream\n\t\tthis.bind(g_config);\n\n\t\t// input given\n\t\tif(g_input) {\n\t\t\t// input is stream\n\t\t\tif(g_input.stream) {\n\t\t\t\tlet ds_input = g_input.stream;\n\n\t\t\t\t// go async so caller has chance to bind event listeners\n\t\t\t\tqueueMicrotask(() => {\n\t\t\t\t\tds_input.pipe(ds_transform);\n\t\t\t\t});\n\t\t\t}\n\t\t\t// string\n\t\t\telse if('string' === typeof g_input.string) {\n\t\t\t\tlet s_input = g_input.string;\n\n\t\t\t\t// go async so caller has chance to bind event listeners\n\t\t\t\tqueueMicrotask(() => {\n\t\t\t\t\tds_transform.end(s_input, 'utf8');\n\t\t\t\t});\n\t\t\t}\n\t\t\t// invalid arg\n\t\t\telse {\n\t\t\t\tthrow new TypeError(`Invalid argument for input parameter: ${'object' === typeof g_input? JSON.stringify(g_input): g_input}`);\n\t\t\t}\n\t\t}\n\t}\n\n\t// begin parsing, keep applying until no more stack bail-outs\n\tsafe_parse() {\n\t\ttry {\n\t\t\tlet f_sync = this._f_state();\n\t\t\twhile('function' === typeof f_sync) {\n\t\t\t\tf_sync = f_sync.apply(this);\n\t\t\t}\n\t\t}\n\t\t// read error occurred\n\t\tcatch(e_read) {\n\t\t\t// destroy self and stream\n\t\t\tthis.destroy(e_read);\n\n\t\t\t// failure\n\t\t\treturn false;\n\t\t}\n\n\t\t// okay\n\t\treturn true;\n\t}\n\n\n\temit(s_event, ...a_args) {\n\t\tthis.transform.emit(s_event, ...a_args);\n\t}\n\n\tqueue(s_event, ...a_args) {\n\t\tthis._a_queue_event.push({\n\t\t\tevent: s_event,\n\t\t\targs: a_args,\n\t\t});\n\t}\n\n\terror(s_message) {\n\t\t// bail out\n\t\tthrow new Error(s_message);\n\t}\n\n\t// parse_error (not meant to be an event callback)\n\tparse_error(s_expected, b_eof=false) {\n\t\tlet i = this.i;\n\n\t\tlet i_off = Math.min(i, Math.abs(i-15));\n\n\t\tlet s = this.s;\n\n\t\treturn this.error(`\\n\\`${s.substr(i_off, i_off+90).replace(/[\\n\\t]/g, ' ')}\\`\\n`\n\t\t\t+` ${' '.repeat(i-i_off)}^\\n`\n\t\t\t+`expected ${s_expected} ${b_eof? 'but encountered <>': ''}. failed to parse a valid token starting at ${s[i]? '\"'+s[i]+'\"': '<>'}`);\n\t}\n\n\tinfo_error(s_message) {\n\t\tlet i = this.i;\n\n\t\tlet i_off = Math.min(i, Math.abs(i-15));\n\n\t\tlet s = this.s;\n\n\t\tthis.error(`\\n\\`${s.substr(i_off, i_off+90).replace(/[\\n\\t]/g, ' ')}\\`\\n`\n\t\t\t+` ${' '.repeat(i-i_off)}^\\n`\n\t\t\t+s_message);\n\t}\n\n\t// end of file\n\teof() {\n\t\t// there are events queued\n\t\tif(this._a_queue_event.length) {\n\t\t\tlet a_queue = this._a_queue_event;\n\n\t\t\t// drain event queue\n\t\t\twhile(a_queue.length) {\n\t\t\t\t// remove event from front of queue\n\t\t\t\tlet h_event = a_queue.shift();\n\n\t\t\t\t// make event callback\n\t\t\t\tthis[h_event.event](h_event.data);\n\t\t\t}\n\t\t}\n\n\t\t// invalid parsing state\n\t\tif(this.block !== this._f_state) {\n\t\t\t// append EOF char\n\t\t\tthis.s += '\\0';\n\n\t\t\t// exit \"flowing\" mode\n\t\t\tthis.n = this.s.length;\n\n\t\t\t// resume parsing; no errors\n\t\t\tif(this.safe_parse()) {\n\t\t\t\t// eof has occurred under safe parse\n\t\t\t\tif(null === this.s) return;\n\n\t\t\t\t// still invalid parsing state\n\t\t\t\tif(this.block !== this._f_state) {\n\t\t\t\t\treturn this.parse_error(this._f_state.name, true);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// there are still unparsed characters\n\t\tif(this.i < this.n) {\n\t\t\t// consume whitespace and comments\n\t\t\tlet s = this.s;\n\t\t\tlet i = this.i;\n\t\t\t// consume whitespace (and incidentally reset index)\n\t\t\tR_WS.lastIndex = i;\n\t\t\tR_WS.exec(s);\n\t\t\ti = R_WS.lastIndex;\n\t\t\tR_COMMENT.lastIndex = i;\n\t\t\tlet m_comment = R_COMMENT.exec(s);\n\n\t\t\t// advance beyond comment\n\t\t\tif(R_COMMENT.lastIndex > i) {\n\t\t\t\tthis.i = i = R_COMMENT.lastIndex;\n\t\t\t\tif(this.emit_comments) this.emit_comments(m_comment[0]);\n\t\t\t}\n\n\t\t\t// still unparsed characters\n\t\t\tif(i < this.n) {\n\t\t\t\t// not EOF\n\t\t\t\tif(!(i === this.n - 1 && '\\0' === s[i])) {\n\t\t\t\t\t// bad input; parse error\n\t\t\t\t\treturn this.parse_error(this._f_state.name);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// make buffer's alloc eligible for gc\n\t\tthis.s = null;\n\n\t\t// transform stream\n\t\tlet ds_transform = this.transform;\n\n\t\t// final progress update: no additional bytes were read\n\t\tds_transform.emit('progress', 0);\n\n\t\t// call end event listener\n\t\tds_transform.emit('eof', this._h_prefixes);\n\n\t\t// close write stream (EOF-signaling)\n\t\tds_transform.push(null);\n\t}\n\n\n\n\t// bind event listeners to transform stream\n\tbind(g_config) {\n\t\tlet ds_transform = this.transform;\n\t\tif(g_config.base) ds_transform.on('base', g_config.base);\n\t\tif(g_config.prefix) ds_transform.on('prefix', g_config.prefix);\n\t\tif(g_config.enter) ds_transform.on('enter', g_config.enter);\n\t\tif(g_config.exit) ds_transform.on('exit', g_config.exit);\n\t\tif(g_config.comment) ds_transform.on('comment', g_config.comment);\n\t\tif(g_config.error) ds_transform.on('error', g_config.error);\n\t\tif(g_config.read) ds_transform.once('read', g_config.read);\n\t\tif(g_config.progress) ds_transform.on('progress', g_config.progress);\n\t\tif(g_config.eof) ds_transform.once('eof', g_config.eof);\n\t\tif(g_config.end) ds_transform.once('end', g_config.end);\n\t\tif(g_config.finish) ds_transform.once('finish', g_config.finish);\n\t\tif(g_config.data) ds_transform.on('data', g_config.data);\n\t}\n\n\t// after a blank node subject (either property-list or colleciton)\n\tpost_blank_subject() {\n\t\tlet {s, i} = this;\n\t\tif('.' === s[i]) {\n\t\t\t// consume whitespace (and incidentally reset index)\n\t\t\tR_WS.lastIndex = i+1;\n\t\t\tR_WS.exec(s);\n\t\t\tthis.i = R_WS.lastIndex;\n\n\t\t\t// not inside block\n\t\t\tif(this._kt_default_graph === this._kt_graph) {\n\t\t\t\treturn this.block();\n\t\t\t}\n\t\t\t// inside block\n\t\t\telse {\n\t\t\t\treturn this.statement();\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\t// prepare sticky regex index\n\t\t\tR_CHAR_CLOSE.lastIndex = i;\n\n\t\t\tif(R_CHAR_CLOSE.exec(s)) {\n\t\t\t\t// advance index\n\t\t\t\tthis.i = R_CHAR_CLOSE.lastIndex;\n\t\t\t\t// empty collection\n\t\t\t\tif(this._kt_rdf_nil.equals(this._kt_subject)) {\n\t\t\t\t\treturn this.error('empty collection');\n\t\t\t\t}\n\n\t\t\t\t// emit graph_close event\n\t\t\t\tthis.emit('exit', this._kt_graph);\n\n\t\t\t\t// reset graph\n\t\t\t\tthis._kt_graph = this._kt_default_graph;\n\n\t\t\t\t// goto block state\n\t\t\t\treturn this.block();\n\t\t\t}\n\t\t} // brace #1\n\n\t\treturn this.pairs();\n\t}\n\n\n\n\t// parse state for statement\n\tstatement() {\n\t\t// destruct chunk, length, and index\n\t\tlet {s, n, i} = this;\n\n\t\t// start labeled loop, run while there are characters\n\t\twhile(i < n) { // eslint-disable-line no-unmodified-loop-condition\n// prefixed name quick\n\n\t\t\t// prepare sticky regex index\n\t\t\tR_PREFIXED_NAME_QUICK.lastIndex = i;\n\t\t\t// execute regex\n\t\t\tlet m_pnq_subject = R_PREFIXED_NAME_QUICK.exec(s);\n\n\t\t\t// regex was a match\n\t\t\tif(m_pnq_subject) {\n\t\t\t\t// advance index\n\t\t\t\tthis.i = R_PREFIXED_NAME_QUICK.lastIndex;\n\t\t\t\t// check valid prefix\n\t\t\t\tlet s_prefix_id = m_pnq_subject[1] || '';\n\t\t\t\t// invalid prefix\n\t\t\t\tif(!OPHOP.call(this._h_prefixes, s_prefix_id)) return this.error(`no such prefix \"${s_prefix_id}\"`);\n\n\n\t\t\t\t// commit subject iri from resolve prefixed name\n\t\t\t\tthis._kt_subject = this.prefixed_name(s_prefix_id, m_pnq_subject[2]);\n\n\t\t\t\t// predicate-object pairs state\n\t\t\t\treturn this.pairs();\n\n\t\t\t// iriref\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// prepare sticky regex index\n\t\t\t\tR_IRIREF_ESCAPELESS.lastIndex = i;\n\t\t\t\t// execute regex\n\t\t\t\tlet m_iriref_e_subject = R_IRIREF_ESCAPELESS.exec(s);\n\n\t\t\t\t// regex was a match\n\t\t\t\tif(m_iriref_e_subject) {\n\t\t\t\t\t// advance index\n\t\t\t\t\tthis.i = R_IRIREF_ESCAPELESS.lastIndex;\n\n\t\t\t\t\t// ref iri\n\t\t\t\t\tlet s_iri = m_iriref_e_subject[1];\n\t\t\t\t\t// absolute iri\n\t\t\t\t\tif(!this._s_base_url || RT_IRI_ABSOLUTE.test(s_iri)) {\n\t\t\t\t\t\t// set subject\n\t\t\t\t\t\tthis._kt_subject = this.check_named_node_escapeless(s_iri);\n\t\t\t\t\t}\n\t\t\t\t\t// relative iri\n\t\t\t\t\telse {\n\t\t\t\t\t\tthis._kt_subject = this.check_named_node_escapeless(uri.resolve(this._s_base_url, s_iri));\n\t\t\t\t\t}\n\n\t\t\t\t\t// predicate-object pairs state\n\t\t\t\t\treturn this.pairs();\n\n\n\n\t\t\t\t// prefixed name\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t// try match\n\t\t\t\t\tlet aw_valid_this_match_prefixed_name_escapeless = this.match_prefixed_name_escapeless(s, i);\n\t\t\t\t\t// stack bail out\n\t\t\t\t\tif(!aw_valid_this_match_prefixed_name_escapeless) return true;\n\t\t\t\t\tlet [m_prefixed_named_e_subject, im_prefixed_named_e_subject] = aw_valid_this_match_prefixed_name_escapeless;\n\t\t\t\t\tif(m_prefixed_named_e_subject) {\n\t\t\t\t\t\t// advance index\n\t\t\t\t\t\tthis.i = im_prefixed_named_e_subject;\n\n\t\t\t\t\t\t// check valid prefix\n\t\t\t\t\t\tlet s_prefix_id = m_prefixed_named_e_subject[1] || '';\n\t\t\t\t\t\t// invalid prefix\n\t\t\t\t\t\tif(!OPHOP.call(this._h_prefixes, s_prefix_id)) return this.error(`no such prefix \"${s_prefix_id}\"`);\n\n\n\t\t\t\t\t\t// make subject key\n\t\t\t\t\t\tthis._kt_subject = this.prefixed_name(s_prefix_id, m_prefixed_named_e_subject[2]);\n\n\t\t\t\t\t\t// predicate-object pairs state\n\t\t\t\t\t\treturn this.pairs();\n\n\t\t\t\t\t// blank node label\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\tR_BLANK_NODE_LABEL.lastIndex = i;\n\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\tlet m_blank_node_label_subject = R_BLANK_NODE_LABEL.exec(s);\n\n\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\tif(m_blank_node_label_subject) {\n\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\tthis.i = R_BLANK_NODE_LABEL.lastIndex;\n\t\t\t\t\t\t\t// extract label\n\t\t\t\t\t\t\tlet s_label = m_blank_node_label_subject[1];\n\n\t\t\t\t\t\t\t// make subject key\n\t\t\t\t\t\t\tthis._kt_subject = this.blank_node(s_label);\n\n\t\t\t\t\t\t\t// predicate-object pairs state\n\t\t\t\t\t\t\treturn this.pairs();\n\n\t\t\t\t\t\t// anonymous blank node subject\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\tR_ANONYMOUS_BLANK_NODE.lastIndex = i;\n\n\t\t\t\t\t\t\tif(R_ANONYMOUS_BLANK_NODE.exec(s)) {\n\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\tthis.i = R_ANONYMOUS_BLANK_NODE.lastIndex;\n\t\t\t\t\t\t\t\t// set new blank node as subject\n\t\t\t\t\t\t\t\tthis._kt_subject = this.anonymous_blank_node(this.next_label());\n\n\t\t\t\t\t\t\t\t// goto pairs state for inside property list\n\t\t\t\t\t\t\t\treturn this.pairs();\n\n\t\t\t\t\t\t\t// anonymous blank node property list subject\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\t\tR_CHAR_BLANK_NODE.lastIndex = i;\n\n\t\t\t\t\t\t\t\tif(R_CHAR_BLANK_NODE.exec(s)) {\n\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\tthis.i = R_CHAR_BLANK_NODE.lastIndex;\n\t\t\t\t\t\t\t\t\t// enter blank node\n\t\t\t\t\t\t\t\t\tthis._kt_subject = this.anonymous_blank_node(this.next_label());\n\n\t\t\t\t\t\t\t\t\t// how to resume when we pop state\n\t\t\t\t\t\t\t\t\tthis._a_nested.push([this._kt_subject, this._kt_predicate, 'post_blank_subject']);\n\n\t\t\t\t\t\t\t\t\t// goto pairs state for inside property list\n\t\t\t\t\t\t\t\t\treturn this.pairs();\n\n\t\t\t\t\t\t\t\t// rdf collection\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\t\t\tR_CHAR_COLLECTION.lastIndex = i;\n\n\t\t\t\t\t\t\t\t\tif(R_CHAR_COLLECTION.exec(s)) {\n\t\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\t\tthis.i = R_CHAR_COLLECTION.lastIndex;\n\t\t\t\t\t\t\t\t\t\t// indicate that collection subject should emit an initial statement\n\t\t\t\t\t\t\t\t\t\tthis._kt_subject = null;\n\n// (don't push state, we don't have a subject yet)\n\n\t\t\t\t\t\t\t\t\t\t// goto collection-subject state\n\t\t\t\t\t\t\t\t\t\treturn this.collection_subject();\n\n\n\t\t\t\t\t\t\t\t\t// closing graph '}'\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\t\t\t\tR_CHAR_CLOSE.lastIndex = i;\n\n\t\t\t\t\t\t\t\t\t\tif(R_CHAR_CLOSE.exec(s)) {\n\t\t\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\t\t\tthis.i = R_CHAR_CLOSE.lastIndex;\n\t\t\t\t\t\t\t\t\t\t\t// emit graph_close event\n\t\t\t\t\t\t\t\t\t\t\tthis.emit('exit', this._kt_graph);\n\n\t\t\t\t\t\t\t\t\t\t\t// reset graph\n\t\t\t\t\t\t\t\t\t\t\tthis._kt_graph = this._kt_default_graph;\n\n\t\t\t\t\t\t\t\t\t\t\t// goto block state\n\t\t\t\t\t\t\t\t\t\t\treturn this.block();\n\n\t\t\t\t\t\t\t\t\t\t// iriref\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\t\t\t\t\tR_IRIREF.lastIndex = i;\n\t\t\t\t\t\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\t\t\t\t\t\tlet m_iriref_subject = R_IRIREF.exec(s);\n\n\t\t\t\t\t\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\t\t\t\t\t\tif(m_iriref_subject) {\n\t\t\t\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\t\t\t\tthis.i = R_IRIREF.lastIndex;\n\n\t\t\t\t\t\t\t\t\t\t\t\t// ref iri\n\t\t\t\t\t\t\t\t\t\t\t\tlet s_iri = m_iriref_subject[1].replace(R_UNICODE_ANY, F_REPLACE_UNICODE_ANY);\n\t\t\t\t\t\t\t\t\t\t\t\t// absolute iri\n\t\t\t\t\t\t\t\t\t\t\t\tif(!this._s_base_url || RT_IRI_ABSOLUTE.test(s_iri)) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t// set subject\n\t\t\t\t\t\t\t\t\t\t\t\t\tthis._kt_subject = this.check_named_node(s_iri);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t// relative iri\n\t\t\t\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t\t\t\tthis._kt_subject = this.check_named_node(uri.resolve(this._s_base_url, s_iri));\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t\t// predicate-object pairs state\n\t\t\t\t\t\t\t\t\t\t\t\treturn this.pairs();\n\n\t\t\t\t\t\t\t\t\t\t\t// prefixed name\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t\t\t// try match\n\t\t\t\t\t\t\t\t\t\t\t\tlet aw_valid_this_match_prefixed_name = this.match_prefixed_name(s, i);\n\t\t\t\t\t\t\t\t\t\t\t\t// stack bail out\n\t\t\t\t\t\t\t\t\t\t\t\tif(!aw_valid_this_match_prefixed_name) return true;\n\t\t\t\t\t\t\t\t\t\t\t\tlet [m_prefixed_named_subject, im_prefixed_named_subject] = aw_valid_this_match_prefixed_name;\n\t\t\t\t\t\t\t\t\t\t\t\tif(m_prefixed_named_subject) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\t\t\t\t\tthis.i = im_prefixed_named_subject;\n\t\t\t\t\t\t\t\t\t\t\t\t\t// check valid prefix\n\t\t\t\t\t\t\t\t\t\t\t\t\tlet s_prefix_id = m_prefixed_named_subject[1] || '';\n\t\t\t\t\t\t\t\t\t\t\t\t\t// invalid prefix\n\t\t\t\t\t\t\t\t\t\t\t\t\tif(!OPHOP.call(this._h_prefixes, s_prefix_id)) return this.error(`no such prefix \"${s_prefix_id}\"`);\n\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t// escape local escapes\n\t\t\t\t\t\t\t\t\t\t\t\t\tlet s_suffix = m_prefixed_named_subject[2]\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(R_UNICODE_ANY, F_REPLACE_UNICODE_ANY)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(R_PN_LOCAL_ESCAPES, '$1');\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t// make subject key\n\t\t\t\t\t\t\t\t\t\t\t\t\tthis._kt_subject = this.prefixed_name(s_prefix_id, s_suffix);\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t// predicate-object pairs state\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn this.pairs();\n\n\n\t\t\t\t\t\t\t\t\t\t\t\t// comment\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\t\t\t\t\t\t\tR_COMMENT.lastIndex = i;\n\t\t\t\t\t\t\t\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\t\t\t\t\t\t\t\tlet m_comment = R_COMMENT.exec(s);\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\t\t\t\t\t\t\t\tif(m_comment) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\t\t\t\t\t\ti = R_COMMENT.lastIndex;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif(this.emit_comments) this.emit_comments(m_comment[0]);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tcontinue;\n\n\t\t\t// not iriref, not prefixed name, not blank node label, not prefix id, not base\n\t\t\t// match counter: 10\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t// break loop to retry on next chunk if eos\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t} // brace #10\n\t\t\t\t\t\t\t\t\t\t\t} // brace #9\n\t\t\t\t\t\t\t\t\t\t} // brace #8\n\t\t\t\t\t\t\t\t\t} // brace #7\n\t\t\t\t\t\t\t\t} // brace #6\n\t\t\t\t\t\t\t} // brace #5\n\t\t\t\t\t\t} // brace #4\n\t\t\t\t\t} // brace #3\n\t\t\t\t} // brace #2\n\t\t\t} // brace #1\n\t\t}\n\n\t\t\t\t// ran out of characters\n\t\t\t\t// update index value\n\t\tthis.i = i;\n\n\t\t// not yet eos\n\t\tif(i < this.n) {\n\t\t\t// expected token was not found\n\t\t\tif(0 === i) {\n\t\t\t\t// we've exceeded the maximum token length\n\t\t\t\tif(this.n > this.max_token_length) {\n\t\t\t\t\treturn this.parse_error('statement');\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// save state before pausing\n\t\tthis._f_state = this.statement;\n\n\t\t// store what is unparsed\n\t\tthis.pre = s.slice(i);\n\n\t\t// if we're not parsing a stream, then this is an error\n\t\tif(this.eos) this.eos();\n\t\treturn;\n\t}\n\n\n\n\t// parse state for block\n\tblock() {\n\t\t// destruct chunk, length, and index\n\t\tlet {s, n, i} = this;\n\n\t\t// start labeled loop, run while there are characters\n\t\twhile(i < n) { // eslint-disable-line no-unmodified-loop-condition\n\t\t\t// prepare sticky regex index\n\t\t\tR_GRAPH_IRI_ESCAPELESS.lastIndex = i;\n\t\t\t// execute regex\n\t\t\tlet m_graph_iriref_e_graph = R_GRAPH_IRI_ESCAPELESS.exec(s);\n\n\t\t\t// regex was a match\n\t\t\tif(m_graph_iriref_e_graph) {\n\t\t\t\t// advance index\n\t\t\t\tthis.i = R_GRAPH_IRI_ESCAPELESS.lastIndex;\n\n\t\t\t\t// ref iri\n\t\t\t\tlet s_iri = m_graph_iriref_e_graph[1];\n\t\t\t\t// absolute iri\n\t\t\t\tif(!this._s_base_url || RT_IRI_ABSOLUTE.test(s_iri)) {\n\t\t\t\t\t// set graph\n\t\t\t\t\tthis._kt_graph = this.check_named_node_escapeless(s_iri);\n\t\t\t\t}\n\t\t\t\t// relative iri\n\t\t\t\telse {\n\t\t\t\t\tthis._kt_graph = this.check_named_node_escapeless(uri.resolve(this._s_base_url, s_iri));\n\t\t\t\t}\n\n\t\t\t\tthis.emit('enter', this._kt_graph);\n\n\t\t\t\t// statement state\n\t\t\t\treturn this.statement();\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// prepare sticky regex index\n\t\t\t\tR_GRAPH_PREFIXED_NAME.lastIndex = i;\n\t\t\t\t// execute regex\n\t\t\t\tlet m_graph_prefixed_name = R_GRAPH_PREFIXED_NAME.exec(s);\n\n\t\t\t\t// regex was a match\n\t\t\t\tif(m_graph_prefixed_name) {\n\t\t\t\t\t// advance index\n\t\t\t\t\tthis.i = R_GRAPH_PREFIXED_NAME.lastIndex;\n\t\t\t\t\t// check valid prefix\n\t\t\t\t\tlet s_prefix_id = m_graph_prefixed_name[1] || '';\n\t\t\t\t\t// invalid prefix\n\t\t\t\t\tif(!OPHOP.call(this._h_prefixes, s_prefix_id)) return this.error(`no such prefix \"${s_prefix_id}\"`);\n\n\n\t\t\t\t\t// make subject key\n\t\t\t\t\tthis._kt_graph = this.prefixed_name(s_prefix_id, m_graph_prefixed_name[2]);\n\n\t\t\t\t\tthis.emit('enter', this._kt_graph);\n\n\t\t\t\t\t// statement state\n\t\t\t\t\treturn this.statement();\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\tR_CHAR_OPEN.lastIndex = i;\n\n\t\t\t\t\tif(R_CHAR_OPEN.exec(s)) {\n\t\t\t\t\t\t// advance index\n\t\t\t\t\t\tthis.i = R_CHAR_OPEN.lastIndex;\n\t\t\t\t\t\t// make new default graph\n\t\t\t\t\t\tthis._kt_graph = this._dc_factory.defaultGraph();\n\n\t\t\t\t\t\tthis.emit('enter', this._kt_graph);\n\n\t\t\t\t\t\t// goto statement state\n\t\t\t\t\t\treturn this.statement();\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\tR_GRAPH_ANONYMOUS_BLANK_NODE.lastIndex = i;\n\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\tlet m_graph_anonymous_blank_node = R_GRAPH_ANONYMOUS_BLANK_NODE.exec(s);\n\n\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\tif(m_graph_anonymous_blank_node) {\n\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\tthis.i = R_GRAPH_ANONYMOUS_BLANK_NODE.lastIndex;\n\t\t\t\t\t\t\t// make new label & set graph to blank node\n\t\t\t\t\t\t\tthis._kt_graph = this.anonymous_blank_node(this.next_label());\n\n\t\t\t\t\t\t\tthis.emit('enter', this._kt_graph);\n\n\t\t\t\t\t\t\t// statement state\n\t\t\t\t\t\t\treturn this.statement();\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\tR_GRAPH_LABELED_BLANK_NODE.lastIndex = i;\n\t\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\t\tlet m_graph_labeled_blank_node = R_GRAPH_LABELED_BLANK_NODE.exec(s);\n\n\t\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\t\tif(m_graph_labeled_blank_node) {\n\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\tthis.i = R_GRAPH_LABELED_BLANK_NODE.lastIndex;\n\t\t\t\t\t\t\t\tlet s_label = m_graph_labeled_blank_node[1];\n\n\t\t\t\t\t\t\t\tthis._kt_graph = this.blank_node(s_label);\n\n\t\t\t\t\t\t\t\tthis.emit('enter', this._kt_graph);\n\n\t\t\t\t\t\t\t\t// statement state\n\t\t\t\t\t\t\t\treturn this.statement();\n\n\t\t\t\t\t\t\t// iriref\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\t\tR_IRIREF_ESCAPELESS.lastIndex = i;\n\t\t\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\t\t\tlet m_iriref_e_graph_subject = R_IRIREF_ESCAPELESS.exec(s);\n\n\t\t\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\t\t\tif(m_iriref_e_graph_subject) {\n\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\tthis.i = R_IRIREF_ESCAPELESS.lastIndex;\n\n\t\t\t\t\t\t\t\t\t// ref iri\n\t\t\t\t\t\t\t\t\tlet s_iri = m_iriref_e_graph_subject[1];\n\t\t\t\t\t\t\t\t\t// absolute iri\n\t\t\t\t\t\t\t\t\tif(!this._s_base_url || RT_IRI_ABSOLUTE.test(s_iri)) {\n\t\t\t\t\t\t\t\t\t\t// set subject\n\t\t\t\t\t\t\t\t\t\tthis._kt_subject = this.check_named_node_escapeless(s_iri);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t// relative iri\n\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\tthis._kt_subject = this.check_named_node_escapeless(uri.resolve(this._s_base_url, s_iri));\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// graph or subject\n\t\t\t\t\t\t\t\t\treturn this.graph_or_subject();\n\n\n\n\t\t\t\t\t\t\t\t// prefixed name\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t// try match\n\t\t\t\t\t\t\t\t\tlet aw_valid_this_match_prefixed_name_escapeless = this.match_prefixed_name_escapeless(s, i);\n\t\t\t\t\t\t\t\t\t// stack bail out\n\t\t\t\t\t\t\t\t\tif(!aw_valid_this_match_prefixed_name_escapeless) return true;\n\t\t\t\t\t\t\t\t\tlet [m_prefixed_named_e_subject, im_prefixed_named_e_subject] = aw_valid_this_match_prefixed_name_escapeless;\n\t\t\t\t\t\t\t\t\tif(m_prefixed_named_e_subject) {\n\t\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\t\tthis.i = im_prefixed_named_e_subject;\n\n\t\t\t\t\t\t\t\t\t\t// check valid prefix\n\t\t\t\t\t\t\t\t\t\tlet s_prefix_id = m_prefixed_named_e_subject[1] || '';\n\t\t\t\t\t\t\t\t\t\t// invalid prefix\n\t\t\t\t\t\t\t\t\t\tif(!OPHOP.call(this._h_prefixes, s_prefix_id)) return this.error(`no such prefix \"${s_prefix_id}\"`);\n\n\n\t\t\t\t\t\t\t\t\t\t// make subject key\n\t\t\t\t\t\t\t\t\t\tthis._kt_subject = this.prefixed_name(s_prefix_id, m_prefixed_named_e_subject[2]);\n\n\t\t\t\t\t\t\t\t\t\t// predicate-object pairs state\n\t\t\t\t\t\t\t\t\t\treturn this.graph_or_subject();\n\n\t\t\t\t\t\t\t\t\t// blank node label\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\t\t\t\tR_BLANK_NODE_LABEL.lastIndex = i;\n\t\t\t\t\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\t\t\t\t\tlet m_blank_node_label_subject = R_BLANK_NODE_LABEL.exec(s);\n\n\t\t\t\t\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\t\t\t\t\tif(m_blank_node_label_subject) {\n\t\t\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\t\t\tthis.i = R_BLANK_NODE_LABEL.lastIndex;\n\t\t\t\t\t\t\t\t\t\t\t// extract label\n\t\t\t\t\t\t\t\t\t\t\tlet s_label = m_blank_node_label_subject[1];\n\n\t\t\t\t\t\t\t\t\t\t\t// make subject key\n\t\t\t\t\t\t\t\t\t\t\tthis._kt_subject = this.blank_node(s_label);\n\n\t\t\t\t\t\t\t\t\t\t\t// predicate-object pairs state\n\t\t\t\t\t\t\t\t\t\t\treturn this.graph_or_subject();\n\n\t\t\t\t\t\t\t\t\t\t// anonymous blank node subject\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\t\t\t\t\tR_ANONYMOUS_BLANK_NODE.lastIndex = i;\n\n\t\t\t\t\t\t\t\t\t\t\tif(R_ANONYMOUS_BLANK_NODE.exec(s)) {\n\t\t\t\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\t\t\t\tthis.i = R_ANONYMOUS_BLANK_NODE.lastIndex;\n\t\t\t\t\t\t\t\t\t\t\t\t// set new blank node as subject\n\t\t\t\t\t\t\t\t\t\t\t\tthis._kt_subject = this.anonymous_blank_node(this.next_label());\n\n\t\t\t\t\t\t\t\t\t\t\t\t// goto pairs state for inside property list\n\t\t\t\t\t\t\t\t\t\t\t\treturn this.graph_or_subject();\n\n\t\t\t\t\t\t\t\t\t\t\t// anonymous blank node property list subject\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\t\t\t\t\t\tR_CHAR_BLANK_NODE.lastIndex = i;\n\n\t\t\t\t\t\t\t\t\t\t\t\tif(R_CHAR_BLANK_NODE.exec(s)) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\t\t\t\t\tthis.i = R_CHAR_BLANK_NODE.lastIndex;\n\t\t\t\t\t\t\t\t\t\t\t\t\t// enter blank node\n\t\t\t\t\t\t\t\t\t\t\t\t\tthis._kt_subject = this.anonymous_blank_node(this.next_label());\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t// how to resume when we pop state\n\t\t\t\t\t\t\t\t\t\t\t\t\tthis._a_nested.push([this._kt_subject, this._kt_predicate, 'post_blank_subject']);\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t// goto pairs state for inside property list\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn this.graph_or_subject_property_list();\n\n\t\t\t\t\t\t\t\t\t\t\t\t// rdf collection\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\t\t\t\t\t\t\tR_CHAR_COLLECTION.lastIndex = i;\n\n\t\t\t\t\t\t\t\t\t\t\t\t\tif(R_CHAR_COLLECTION.exec(s)) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tthis.i = R_CHAR_COLLECTION.lastIndex;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t// indicate that collection subject should emit an initial statement\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tthis._kt_subject = null;\n\n// (don't push state, we don't have a subject yet)\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t// goto collection-subject state\n\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn this.collection_subject();\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t// prefix with interupt (e.g., a comment)\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tR_PREFIX_KEYWORD.lastIndex = i;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet m_prefix_keyword = R_PREFIX_KEYWORD.exec(s);\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif(m_prefix_keyword) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tthis.i = R_PREFIX_KEYWORD.lastIndex;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// save whether or not to expect a full stop\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tthis._b_expecting_full_stop = !!m_prefix_keyword[1];\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// goto prefix state\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn this.prefix_id();\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t// base with interupt (e.g., a comment)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tR_BASE_KEYWORD.lastIndex = i;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet m_base_keyword = R_BASE_KEYWORD.exec(s);\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif(m_base_keyword) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tthis.i = R_BASE_KEYWORD.lastIndex;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// save whether or not to expect a full stop\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tthis._b_expecting_full_stop = !!m_base_keyword[1];\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// goto base state\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn this.base_iri();\n\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// iriref\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tR_IRIREF.lastIndex = i;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet m_iriref_subject = R_IRIREF.exec(s);\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif(m_iriref_subject) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tthis.i = R_IRIREF.lastIndex;\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// ref iri\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet s_iri = m_iriref_subject[1].replace(R_UNICODE_ANY, F_REPLACE_UNICODE_ANY);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// absolute iri\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif(!this._s_base_url || RT_IRI_ABSOLUTE.test(s_iri)) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// set subject\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tthis._kt_subject = this.check_named_node(s_iri);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// relative iri\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tthis._kt_subject = this.check_named_node(uri.resolve(this._s_base_url, s_iri));\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// predicate-object pairs state\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn this.graph_or_subject();\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// prefixed name\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// try match\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet aw_valid_this_match_prefixed_name = this.match_prefixed_name(s, i);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// stack bail out\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif(!aw_valid_this_match_prefixed_name) return true;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet [m_prefixed_named_subject, im_prefixed_named_subject] = aw_valid_this_match_prefixed_name;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif(m_prefixed_named_subject) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tthis.i = im_prefixed_named_subject;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// check valid prefix\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet s_prefix_id = m_prefixed_named_subject[1] || '';\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// invalid prefix\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif(!OPHOP.call(this._h_prefixes, s_prefix_id)) return this.error(`no such prefix \"${s_prefix_id}\"`);\n\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// escape local escapes\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet s_suffix = m_prefixed_named_subject[2]\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(R_UNICODE_ANY, F_REPLACE_UNICODE_ANY)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(R_PN_LOCAL_ESCAPES, '$1');\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// make subject key\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tthis._kt_subject = this.prefixed_name(s_prefix_id, s_suffix);\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// predicate-object pairs state\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn this.graph_or_subject();\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tR_GRAPH_IRI.lastIndex = i;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet m_graph_iriref_graph = R_GRAPH_IRI.exec(s);\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif(m_graph_iriref_graph) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tthis.i = R_GRAPH_IRI.lastIndex;\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// ref iri\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet s_iri = m_graph_iriref_graph[1].replace(R_UNICODE_ANY, F_REPLACE_UNICODE_ANY);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// absolute iri\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif(!this._s_base_url || RT_IRI_ABSOLUTE.test(s_iri)) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// set graph\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tthis._kt_graph = this.check_named_node(s_iri);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// relative iri\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tthis._kt_graph = this.check_named_node(uri.resolve(this._s_base_url, s_iri));\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tthis.emit('enter', this._kt_graph);\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// statement state\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn this.statement();\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// comment\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tR_COMMENT.lastIndex = i;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlet m_comment = R_COMMENT.exec(s);\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif(m_comment) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ti = R_COMMENT.lastIndex;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif(this.emit_comments) this.emit_comments(m_comment[0]);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tcontinue;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tR_GRAPH.lastIndex = i;\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tif(R_GRAPH.exec(s)) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tthis.i = R_GRAPH.lastIndex;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn this.graph_keyword();\n\n\t\t\t\t// not iriref, not prefixed name, not blank node label, not prefix id, not base\n\t\t\t\t// match counter: 17\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// break loop to retry on next chunk if eos\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} // brace #17\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} // brace #16\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} // brace #15\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} // brace #14\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t} // brace #13\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t} // brace #12\n\t\t\t\t\t\t\t\t\t\t\t\t\t} // brace #11\n\t\t\t\t\t\t\t\t\t\t\t\t} // brace #10\n\t\t\t\t\t\t\t\t\t\t\t} // brace #9\n\t\t\t\t\t\t\t\t\t\t} // brace #8\n\t\t\t\t\t\t\t\t\t} // brace #7\n\t\t\t\t\t\t\t\t} // brace #6\n\t\t\t\t\t\t\t} // brace #5\n\t\t\t\t\t\t} // brace #4\n\t\t\t\t\t} // brace #3\n\t\t\t\t} // brace #2\n\t\t\t} // brace #1\n\t\t}\n\n\t\t\t\t// ran out of characters\n\t\t\t\t// update index value\n\t\tthis.i = i;\n\n\t\t// not yet eos\n\t\tif(i < this.n) {\n\t\t\t// expected token was not found\n\t\t\tif(0 === i) {\n\t\t\t\t// we've exceeded the maximum token length\n\t\t\t\tif(this.n > this.max_token_length) {\n\t\t\t\t\treturn this.parse_error('block');\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// save state before pausing\n\t\tthis._f_state = this.block;\n\n\t\t// store what is unparsed\n\t\tthis.pre = s.slice(i);\n\n\t\t// if we're not parsing a stream, then this is an error\n\t\tif(this.eos) this.eos();\n\t\treturn;\n\t}\n\n\n\n\t// parse state for graph_or_subject\n\tgraph_or_subject() {\n\t\t// destruct chunk, length, and index\n\t\tlet {s, n, i} = this;\n\n\t\t// start labeled loop, run while there are characters\n\t\twhile(i < n) { // eslint-disable-line no-unmodified-loop-condition\n\t\t\tlet x = s[i];\n\n\t\t\tif('{' === x) {\n\t\t\t\t// consume whitespace (and incidentally reset index)\n\t\t\t\tR_WS.lastIndex = i+1;\n\t\t\t\tR_WS.exec(s);\n\t\t\t\tthis.i = R_WS.lastIndex;\n\n\t\t\t\t// shift placeholder subject\n\t\t\t\tthis._kt_graph = this._kt_subject;\n\n\t\t\t\tthis.emit('enter', this._kt_graph);\n\n\t\t\t\t// reset subject in case of collections\n\t\t\t\tthis._kt_subject = null;\n\n\t\t\t\t// statement state\n\t\t\t\treturn this.statement();\n\n\t\t\t// non-comment\n\t\t\t}\n\t\t\telse if('#' !== x) {\n\t\t\t\treturn this.pairs();\n\n\t\t\t// comment\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// prepare sticky regex index\n\t\t\t\tR_COMMENT.lastIndex = i;\n\t\t\t\t// execute regex\n\t\t\t\tlet m_comment = R_COMMENT.exec(s);\n\n\t\t\t\t// regex was a match\n\t\t\t\tif(m_comment) {\n\t\t\t\t\t// advance index\n\t\t\t\t\ti = R_COMMENT.lastIndex;\n\t\t\t\t\tif(this.emit_comments) this.emit_comments(m_comment[0]);\n\t\t\t\t\tcontinue;\n\n\t\t\t\t// match counter: 1\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t// break loop to retry on next chunk if eos\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t} // brace #1\n\t\t}\n\n\t\t\t\t// ran out of characters\n\t\t\t\t// update index value\n\t\tthis.i = i;\n\n\t\t// not yet eos\n\t\tif(i < this.n) {\n\t\t\t// expected token was not found\n\t\t\tif(0 === i) {\n\t\t\t\t// we've exceeded the maximum token length\n\t\t\t\tif(this.n > this.max_token_length) {\n\t\t\t\t\treturn this.parse_error('graph_or_subject');\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// save state before pausing\n\t\tthis._f_state = this.graph_or_subject;\n\n\t\t// store what is unparsed\n\t\tthis.pre = s.slice(i);\n\n\t\t// if we're not parsing a stream, then this is an error\n\t\tif(this.eos) this.eos();\n\t\treturn;\n\t}\n\n\n\n\t// parse state for graph_or_subject_property_list\n\tgraph_or_subject_property_list() {\n\t\t// destruct chunk, length, and index\n\t\tlet {s, n, i} = this;\n\n\t\t// start labeled loop, run while there are characters\n\t\twhile(i < n) { // eslint-disable-line no-unmodified-loop-condition\n\t\t\tlet x = s[i];\n\n\t\t\tif(']' === x) {\n\t\t\t\t// consume whitespace (and incidentally reset index)\n\t\t\t\tR_WS.lastIndex = i+1;\n\t\t\t\tR_WS.exec(s);\n\t\t\t\tthis.i = R_WS.lastIndex;\n\n\t\t\t\t// next state\n\t\t\t\treturn this.graph_or_subject_anon();\n\n\t\t\t// non-comment\n\t\t\t}\n\t\t\telse if('#' !== x) {\n\t\t\t\treturn this.pairs();\n\n\t\t\t// comment\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// prepare sticky regex index\n\t\t\t\tR_COMMENT.lastIndex = i;\n\t\t\t\t// execute regex\n\t\t\t\tlet m_comment = R_COMMENT.exec(s);\n\n\t\t\t\t// regex was a match\n\t\t\t\tif(m_comment) {\n\t\t\t\t\t// advance index\n\t\t\t\t\ti = R_COMMENT.lastIndex;\n\t\t\t\t\tif(this.emit_comments) this.emit_comments(m_comment[0]);\n\t\t\t\t\tcontinue;\n\n\t\t\t\t// match counter: 1\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t// break loop to retry on next chunk if eos\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t} // brace #1\n\t\t}\n\n\t\t\t\t// ran out of characters\n\t\t\t\t// update index value\n\t\tthis.i = i;\n\n\t\t// not yet eos\n\t\tif(i < this.n) {\n\t\t\t// expected token was not found\n\t\t\tif(0 === i) {\n\t\t\t\t// we've exceeded the maximum token length\n\t\t\t\tif(this.n > this.max_token_length) {\n\t\t\t\t\treturn this.parse_error('graph_or_subject_property_list');\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// save state before pausing\n\t\tthis._f_state = this.graph_or_subject_property_list;\n\n\t\t// store what is unparsed\n\t\tthis.pre = s.slice(i);\n\n\t\t// if we're not parsing a stream, then this is an error\n\t\tif(this.eos) this.eos();\n\t\treturn;\n\t}\n\n\n\n\t// parse state for graph_or_subject_anon\n\tgraph_or_subject_anon() {\n\t\t// destruct chunk, length, and index\n\t\tlet {s, n, i} = this;\n\n\t\t// start labeled loop, run while there are characters\n\t\twhile(i < n) { // eslint-disable-line no-unmodified-loop-condition\n\t\t\tlet x = s[i];\n\n\t\t\tif('{' === x) {\n\t\t\t\t// consume whitespace (and incidentally reset index)\n\t\t\t\tR_WS.lastIndex = i+1;\n\t\t\t\tR_WS.exec(s);\n\t\t\t\tthis.i = R_WS.lastIndex;\n\n\t\t\t\t// shift placeholder subject\n\t\t\t\tthis._kt_graph = this._kt_subject;\n\n\t\t\t\tthis.emit('enter', this._kt_graph);\n\n\t\t\t\t// reset subject in case of collections\n\t\t\t\tthis._kt_subject = null;\n\n\t\t\t\t// pop dummy state\n\t\t\t\tthis._a_nested.pop();\n\n\t\t\t\t// statement state\n\t\t\t\treturn this.statement();\n\n\t\t\t// non-comment\n\t\t\t}\n\t\t\telse if('#' !== x) {\n\t\t\t\treturn this.pairs();\n\n\t\t\t// comment\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// prepare sticky regex index\n\t\t\t\tR_COMMENT.lastIndex = i;\n\t\t\t\t// execute regex\n\t\t\t\tlet m_comment = R_COMMENT.exec(s);\n\n\t\t\t\t// regex was a match\n\t\t\t\tif(m_comment) {\n\t\t\t\t\t// advance index\n\t\t\t\t\ti = R_COMMENT.lastIndex;\n\t\t\t\t\tif(this.emit_comments) this.emit_comments(m_comment[0]);\n\t\t\t\t\tcontinue;\n\n\t\t\t\t// match counter: 1\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t// break loop to retry on next chunk if eos\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t} // brace #1\n\t\t}\n\n\t\t\t\t// ran out of characters\n\t\t\t\t// update index value\n\t\tthis.i = i;\n\n\t\t// not yet eos\n\t\tif(i < this.n) {\n\t\t\t// expected token was not found\n\t\t\tif(0 === i) {\n\t\t\t\t// we've exceeded the maximum token length\n\t\t\t\tif(this.n > this.max_token_length) {\n\t\t\t\t\treturn this.parse_error('graph_or_subject_anon');\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// save state before pausing\n\t\tthis._f_state = this.graph_or_subject_anon;\n\n\t\t// store what is unparsed\n\t\tthis.pre = s.slice(i);\n\n\t\t// if we're not parsing a stream, then this is an error\n\t\tif(this.eos) this.eos();\n\t\treturn;\n\t}\n\n\n\n\t// parse state for graph_keyword\n\tgraph_keyword() {\n\t\t// destruct chunk, length, and index\n\t\tlet {s, n, i} = this;\n\n\t\t// start labeled loop, run while there are characters\n\t\twhile(i < n) { // eslint-disable-line no-unmodified-loop-condition\n\t\t\t// prefixed name\n\t\t\t// try match\n\t\t\tlet aw_valid_this_match_prefixed_name_escapeless = this.match_prefixed_name_escapeless(s, i);\n\t\t\t// stack bail out\n\t\t\tif(!aw_valid_this_match_prefixed_name_escapeless) return true;\n\t\t\tlet [m_prefixed_named_e_graph, im_prefixed_named_e_graph] = aw_valid_this_match_prefixed_name_escapeless;\n\t\t\tif(m_prefixed_named_e_graph) {\n\t\t\t\t// advance index\n\t\t\t\tthis.i = im_prefixed_named_e_graph;\n\n\t\t\t\t// check valid prefix\n\t\t\t\tlet s_prefix_id = m_prefixed_named_e_graph[1] || '';\n\t\t\t\t// invalid prefix\n\t\t\t\tif(!OPHOP.call(this._h_prefixes, s_prefix_id)) return this.error(`no such prefix \"${s_prefix_id}\"`);\n\n\n\t\t\t\t// make subject key\n\t\t\t\tthis._kt_graph = this.prefixed_name(s_prefix_id, m_prefixed_named_e_graph[2]);\n\n\t\t\t\t// predicate-object pairs state\n\t\t\t\treturn this.graph_post_name();\n\n\t\t\t// iriref\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// prepare sticky regex index\n\t\t\t\tR_IRIREF_ESCAPELESS.lastIndex = i;\n\t\t\t\t// execute regex\n\t\t\t\tlet m_iriref_e_graph = R_IRIREF_ESCAPELESS.exec(s);\n\n\t\t\t\t// regex was a match\n\t\t\t\tif(m_iriref_e_graph) {\n\t\t\t\t\t// advance index\n\t\t\t\t\tthis.i = R_IRIREF_ESCAPELESS.lastIndex;\n\n\t\t\t\t\t// ref iri\n\t\t\t\t\tlet s_iri = m_iriref_e_graph[1];\n\t\t\t\t\t// absolute iri\n\t\t\t\t\tif(!this._s_base_url || RT_IRI_ABSOLUTE.test(s_iri)) {\n\t\t\t\t\t\t// set graph\n\t\t\t\t\t\tthis._kt_graph = this.check_named_node_escapeless(s_iri);\n\t\t\t\t\t}\n\t\t\t\t\t// relative iri\n\t\t\t\t\telse {\n\t\t\t\t\t\tthis._kt_graph = this.check_named_node_escapeless(uri.resolve(this._s_base_url, s_iri));\n\t\t\t\t\t}\n\n\t\t\t\t\t// graph\n\t\t\t\t\treturn this.graph_post_name();\n\n\t\t\t\t// blank node label\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\tR_BLANK_NODE_LABEL.lastIndex = i;\n\t\t\t\t\t// execute regex\n\t\t\t\t\tlet m_blank_node_label_graph = R_BLANK_NODE_LABEL.exec(s);\n\n\t\t\t\t\t// regex was a match\n\t\t\t\t\tif(m_blank_node_label_graph) {\n\t\t\t\t\t\t// advance index\n\t\t\t\t\t\tthis.i = R_BLANK_NODE_LABEL.lastIndex;\n\t\t\t\t\t\t// extract label\n\t\t\t\t\t\tlet s_label = m_blank_node_label_graph[1];\n\n\t\t\t\t\t\t// make graph key\n\t\t\t\t\t\tthis._kt_graph = this.blank_node(s_label);\n\n\t\t\t\t\t\t// predicate-object pairs state\n\t\t\t\t\t\treturn this.graph_post_name();\n\n\t\t\t\t\t// anonymous blank node graph\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\tR_ANONYMOUS_BLANK_NODE.lastIndex = i;\n\n\t\t\t\t\t\tif(R_ANONYMOUS_BLANK_NODE.exec(s)) {\n\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\tthis.i = R_ANONYMOUS_BLANK_NODE.lastIndex;\n\t\t\t\t\t\t\t// set new blank node as graph\n\t\t\t\t\t\t\tthis._kt_graph = this.anonymous_blank_node(this.next_label());\n\n\t\t\t\t\t\t\t// goto pairs state for inside property list\n\t\t\t\t\t\t\treturn this.graph_post_name();\n\n\t\t\t\t\t\t// iriref\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\tR_IRIREF.lastIndex = i;\n\t\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\t\tlet m_iriref_graph = R_IRIREF.exec(s);\n\n\t\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\t\tif(m_iriref_graph) {\n\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\tthis.i = R_IRIREF.lastIndex;\n\n\t\t\t\t\t\t\t\t// ref iri\n\t\t\t\t\t\t\t\tlet s_iri = m_iriref_graph[1].replace(R_UNICODE_ANY, F_REPLACE_UNICODE_ANY);\n\t\t\t\t\t\t\t\t// absolute iri\n\t\t\t\t\t\t\t\tif(!this._s_base_url || RT_IRI_ABSOLUTE.test(s_iri)) {\n\t\t\t\t\t\t\t\t\t// set graph\n\t\t\t\t\t\t\t\t\tthis._kt_graph = this.check_named_node(s_iri);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t// relative iri\n\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\tthis._kt_graph = this.check_named_node(uri.resolve(this._s_base_url, s_iri));\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// predicate-object pairs state\n\t\t\t\t\t\t\t\treturn this.graph_post_name();\n\n\t\t\t\t\t\t\t// prefixed name\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t// try match\n\t\t\t\t\t\t\t\tlet aw_valid_this_match_prefixed_name = this.match_prefixed_name(s, i);\n\t\t\t\t\t\t\t\t// stack bail out\n\t\t\t\t\t\t\t\tif(!aw_valid_this_match_prefixed_name) return true;\n\t\t\t\t\t\t\t\tlet [m_prefixed_named_graph, im_prefixed_named_graph] = aw_valid_this_match_prefixed_name;\n\t\t\t\t\t\t\t\tif(m_prefixed_named_graph) {\n\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\tthis.i = im_prefixed_named_graph;\n\t\t\t\t\t\t\t\t\t// check valid prefix\n\t\t\t\t\t\t\t\t\tlet s_prefix_id = m_prefixed_named_graph[1] || '';\n\t\t\t\t\t\t\t\t\t// invalid prefix\n\t\t\t\t\t\t\t\t\tif(!OPHOP.call(this._h_prefixes, s_prefix_id)) return this.error(`no such prefix \"${s_prefix_id}\"`);\n\n\n\t\t\t\t\t\t\t\t\t// escape local escapes\n\t\t\t\t\t\t\t\t\tlet s_suffix = m_prefixed_named_graph[2]\n\t\t\t\t\t\t\t\t\t\t.replace(R_UNICODE_ANY, F_REPLACE_UNICODE_ANY)\n\t\t\t\t\t\t\t\t\t\t.replace(R_PN_LOCAL_ESCAPES, '$1');\n\n\t\t\t\t\t\t\t\t\t// make subject key\n\t\t\t\t\t\t\t\t\tthis._kt_graph = this.prefixed_name(s_prefix_id, s_suffix);\n\n\t\t\t\t\t\t\t\t\t// predicate-object pairs state\n\t\t\t\t\t\t\t\t\treturn this.graph_post_name();\n\n\t\t\t\t\t\t\t\t// comment\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\t\t\tR_COMMENT.lastIndex = i;\n\t\t\t\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\t\t\t\tlet m_comment = R_COMMENT.exec(s);\n\n\t\t\t\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\t\t\t\tif(m_comment) {\n\t\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\t\ti = R_COMMENT.lastIndex;\n\t\t\t\t\t\t\t\t\t\tif(this.emit_comments) this.emit_comments(m_comment[0]);\n\t\t\t\t\t\t\t\t\t\tcontinue;\n\n\t\t\t\t// not iriref, not prefixed name, not blank node label, not prefix id, not base\n\t\t\t\t// match counter: 6\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t// break loop to retry on next chunk if eos\n\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t} // brace #6\n\t\t\t\t\t\t\t} // brace #5\n\t\t\t\t\t\t} // brace #4\n\t\t\t\t\t} // brace #3\n\t\t\t\t} // brace #2\n\t\t\t} // brace #1\n\t\t}\n\n\t\t\t\t// ran out of characters\n\t\t\t\t// update index value\n\t\tthis.i = i;\n\n\t\t// not yet eos\n\t\tif(i < this.n) {\n\t\t\t// expected token was not found\n\t\t\tif(0 === i) {\n\t\t\t\t// we've exceeded the maximum token length\n\t\t\t\tif(this.n > this.max_token_length) {\n\t\t\t\t\treturn this.parse_error('graph_keyword');\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// save state before pausing\n\t\tthis._f_state = this.graph_keyword;\n\n\t\t// store what is unparsed\n\t\tthis.pre = s.slice(i);\n\n\t\t// if we're not parsing a stream, then this is an error\n\t\tif(this.eos) this.eos();\n\t\treturn;\n\t}\n\n\n\n\t// parse state for graph_post_name\n\tgraph_post_name() {\n\t\t// destruct chunk, length, and index\n\t\tlet {s, n, i} = this;\n\n\t\t// start labeled loop, run while there are characters\n\t\twhile(i < n) { // eslint-disable-line no-unmodified-loop-condition\n\t\t\tlet x = s[i];\n\n\t\t\tif('{' === x) {\n\t\t\t\t// consume whitespace (and incidentally reset index)\n\t\t\t\tR_WS.lastIndex = i+1;\n\t\t\t\tR_WS.exec(s);\n\t\t\t\tthis.i = R_WS.lastIndex;\n\n\t\t\t\tthis.emit('enter', this._kt_graph);\n\n\t\t\t\t// statement state\n\t\t\t\treturn this.statement();\n\n\t\t\t// comment\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// prepare sticky regex index\n\t\t\t\tR_COMMENT.lastIndex = i;\n\t\t\t\t// execute regex\n\t\t\t\tlet m_comment = R_COMMENT.exec(s);\n\n\t\t\t\t// regex was a match\n\t\t\t\tif(m_comment) {\n\t\t\t\t\t// advance index\n\t\t\t\t\ti = R_COMMENT.lastIndex;\n\t\t\t\t\tif(this.emit_comments) this.emit_comments(m_comment[0]);\n\t\t\t\t\tcontinue;\n\n\t\t\t\t// match counter: 1\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t// break loop to retry on next chunk if eos\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t} // brace #1\n\t\t}\n\n\t\t\t\t// ran out of characters\n\t\t\t\t// update index value\n\t\tthis.i = i;\n\n\t\t// not yet eos\n\t\tif(i < this.n) {\n\t\t\t// expected token was not found\n\t\t\tif(0 === i) {\n\t\t\t\t// we've exceeded the maximum token length\n\t\t\t\tif(this.n > this.max_token_length) {\n\t\t\t\t\treturn this.parse_error('graph_post_name');\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// save state before pausing\n\t\tthis._f_state = this.graph_post_name;\n\n\t\t// store what is unparsed\n\t\tthis.pre = s.slice(i);\n\n\t\t// if we're not parsing a stream, then this is an error\n\t\tif(this.eos) this.eos();\n\t\treturn;\n\t}\n\n\n\n\t// parse state for pairs\n\tpairs() {\n\t\t// destruct chunk, length, and index\n\t\tlet {s, n, i} = this;\n\n\t\t// start labeled loop, run while there are characters\n\t\twhile(i < n) { // eslint-disable-line no-unmodified-loop-condition\n// benchmarks indicate: regex for end of blank node property list faster than ch\n\n\n// iriref\n\n\t\t\t// prepare sticky regex index\n\t\t\tR_IRIREF_ESCAPELESS.lastIndex = i;\n\t\t\t// execute regex\n\t\t\tlet m_iriref_e_predicate = R_IRIREF_ESCAPELESS.exec(s);\n\n\t\t\t// regex was a match\n\t\t\tif(m_iriref_e_predicate) {\n\t\t\t\t// advance index\n\t\t\t\tthis.i = R_IRIREF_ESCAPELESS.lastIndex;\n\n\t\t\t\t// ref iri\n\t\t\t\tlet s_iri = m_iriref_e_predicate[1];\n\t\t\t\t// absolute iri\n\t\t\t\tif(!this._s_base_url || RT_IRI_ABSOLUTE.test(s_iri)) {\n\t\t\t\t\t// set predicate\n\t\t\t\t\tthis._kt_predicate = this.check_named_node_escapeless(s_iri);\n\t\t\t\t}\n\t\t\t\t// relative iri\n\t\t\t\telse {\n\t\t\t\t\tthis._kt_predicate = this.check_named_node_escapeless(uri.resolve(this._s_base_url, s_iri));\n\t\t\t\t}\n\n\t\t\t\t// object-list state\n\t\t\t\treturn this.object_list();\n\n\t\t\t// prefixed name\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// try match\n\t\t\t\tlet aw_valid_this_match_prefixed_name_escapeless = this.match_prefixed_name_escapeless(s, i);\n\t\t\t\t// stack bail out\n\t\t\t\tif(!aw_valid_this_match_prefixed_name_escapeless) return true;\n\t\t\t\tlet [m_prefixed_named_e_predicate, im_prefixed_named_e_predicate] = aw_valid_this_match_prefixed_name_escapeless;\n\t\t\t\tif(m_prefixed_named_e_predicate) {\n\t\t\t\t\t// advance index\n\t\t\t\t\tthis.i = im_prefixed_named_e_predicate;\n\t\t\t\t\t// check valid prefix\n\t\t\t\t\tlet s_prefix_id = m_prefixed_named_e_predicate[1] || '';\n\t\t\t\t\t// invalid prefix\n\t\t\t\t\tif(!OPHOP.call(this._h_prefixes, s_prefix_id)) return this.error(`no such prefix \"${s_prefix_id}\"`);\n\n\n\t\t\t\t\t// make predicate key\n\t\t\t\t\tthis._kt_predicate = this.prefixed_name(s_prefix_id, m_prefixed_named_e_predicate[2]);\n\n\t\t\t\t\t// object-list state\n\t\t\t\t\treturn this.object_list();\n\n\t\t\t\t// 'a'\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\tR_A.lastIndex = i;\n\n\t\t\t\t\tif(R_A.exec(s)) {\n\t\t\t\t\t\t// advance index\n\t\t\t\t\t\tthis.i = R_A.lastIndex;\n\t\t\t\t\t\t// make predicate key\n\t\t\t\t\t\tthis._kt_predicate = this._kt_rdf_type;\n\n\t\t\t\t\t\t// object-list state\n\t\t\t\t\t\treturn this.object_list();\n\n\t\t\t\t\t// ']' end of blank node property list\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\tR_CHAR_KET.lastIndex = i;\n\n\t\t\t\t\t\tif(R_CHAR_KET.exec(s)) {\n\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\tthis.i = R_CHAR_KET.lastIndex;\n\t\t\t\t\t\t\tlet s_resume_state;\n\t\t\t\t\t\t\t[this._kt_subject, this._kt_predicate, s_resume_state] = this._a_nested.pop();\n\t\t\t\t\t\t\treturn this[s_resume_state]();\n\n\t\t\t\t\t\t// iriref\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\tR_IRIREF.lastIndex = i;\n\t\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\t\tlet m_iriref_predicate = R_IRIREF.exec(s);\n\n\t\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\t\tif(m_iriref_predicate) {\n\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\tthis.i = R_IRIREF.lastIndex;\n\n\t\t\t\t\t\t\t\t// ref iri\n\t\t\t\t\t\t\t\tlet s_iri = m_iriref_predicate[1].replace(R_UNICODE_ANY, F_REPLACE_UNICODE_ANY);\n\t\t\t\t\t\t\t\t// absolute iri\n\t\t\t\t\t\t\t\tif(!this._s_base_url || RT_IRI_ABSOLUTE.test(s_iri)) {\n\t\t\t\t\t\t\t\t\t// set predicate\n\t\t\t\t\t\t\t\t\tthis._kt_predicate = this.check_named_node(s_iri);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t// relative iri\n\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\tthis._kt_predicate = this.check_named_node(uri.resolve(this._s_base_url, s_iri));\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// object-list state\n\t\t\t\t\t\t\t\treturn this.object_list();\n\n\t\t\t\t\t\t\t// prefixed name\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t// try match\n\t\t\t\t\t\t\t\tlet aw_valid_this_match_prefixed_name = this.match_prefixed_name(s, i);\n\t\t\t\t\t\t\t\t// stack bail out\n\t\t\t\t\t\t\t\tif(!aw_valid_this_match_prefixed_name) return true;\n\t\t\t\t\t\t\t\tlet [m_prefixed_named_predicate, im_prefixed_named_predicate] = aw_valid_this_match_prefixed_name;\n\t\t\t\t\t\t\t\tif(m_prefixed_named_predicate) {\n\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\tthis.i = im_prefixed_named_predicate;\n\t\t\t\t\t\t\t\t\t// check valid prefix\n\t\t\t\t\t\t\t\t\tlet s_prefix_id = m_prefixed_named_predicate[1] || '';\n\t\t\t\t\t\t\t\t\t// invalid prefix\n\t\t\t\t\t\t\t\t\tif(!OPHOP.call(this._h_prefixes, s_prefix_id)) return this.error(`no such prefix \"${s_prefix_id}\"`);\n\n\n\t\t\t\t\t\t\t\t\t// escape local escapes\n\t\t\t\t\t\t\t\t\tlet s_suffix = m_prefixed_named_predicate[2]\n\t\t\t\t\t\t\t\t\t\t.replace(R_UNICODE_ANY, F_REPLACE_UNICODE_ANY)\n\t\t\t\t\t\t\t\t\t\t.replace(R_PN_LOCAL_ESCAPES, '$1');\n\n\t\t\t\t\t\t\t\t\t// make predicate key\n\t\t\t\t\t\t\t\t\tthis._kt_predicate = this.prefixed_name(s_prefix_id, s_suffix);\n\n\t\t\t\t\t\t\t\t\t// object-list state\n\t\t\t\t\t\t\t\t\treturn this.object_list();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\t\t\tR_COMMENT.lastIndex = i;\n\t\t\t\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\t\t\t\tlet m_comment = R_COMMENT.exec(s);\n\n\t\t\t\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\t\t\t\tif(m_comment) {\n\t\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\t\ti = R_COMMENT.lastIndex;\n\t\t\t\t\t\t\t\t\t\tif(this.emit_comments) this.emit_comments(m_comment[0]);\n\t\t\t\t\t\t\t\t\t\tcontinue;\n\n\t\t\t// not iriref, not prefixed name, not 'a'\n\t\t\t// match counter: 6\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t// break loop to retry on next chunk if eos\n\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t} // brace #6\n\t\t\t\t\t\t\t} // brace #5\n\t\t\t\t\t\t} // brace #4\n\t\t\t\t\t} // brace #3\n\t\t\t\t} // brace #2\n\t\t\t} // brace #1\n\t\t}\n\n\t\t\t\t// ran out of characters\n\t\t\t\t// update index value\n\t\tthis.i = i;\n\n\t\t// not yet eos\n\t\tif(i < this.n) {\n\t\t\t// expected token was not found\n\t\t\tif(0 === i) {\n\t\t\t\t// we've exceeded the maximum token length\n\t\t\t\tif(this.n > this.max_token_length) {\n\t\t\t\t\treturn this.parse_error('pairs');\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// save state before pausing\n\t\tthis._f_state = this.pairs;\n\n\t\t// store what is unparsed\n\t\tthis.pre = s.slice(i);\n\n\t\t// if we're not parsing a stream, then this is an error\n\t\tif(this.eos) this.eos();\n\t\treturn;\n\t}\n\n\n\n\t// parse state for object_list\n\tobject_list() {\n\t\t// destruct chunk, length, and index\n\t\tlet {s, n, i} = this;\n\n\t\t// start labeled loop, run while there are characters\n\t\twhile(i < n) { // eslint-disable-line no-unmodified-loop-condition\n\t\t\t// ref char\n\t\t\tlet x = s[i];\n\n\t\t\t// string literal * double\n\t\t\tif('\"' === x) {\n\t\t\t\t// enough chars to deduce type\n\t\t\t\tif((i+2) < n) {\n\t\t\t\t\t// long type\n\t\t\t\t\tif('\"' === s[i+1] && '\"' === s[i+2]) {\n\t\t\t\t\t\t// advance index beyond token\n\t\t\t\t\t\tthis.i = i + 3;\n\n\t\t\t\t\t\t// read contents\n\t\t\t\t\t\treturn this.string_literal_long_double();\n\t\t\t\t\t}\n\t\t\t\t\t// not long type\n\t\t\t\t\telse {\n\t\t\t\t\t\t// advance index beyond token\n\t\t\t\t\t\tthis.i = i + 1;\n\n\t\t\t\t\t\t// read contents\n\t\t\t\t\t\treturn this.string_literal_short_double();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t// enough chars to eliminate long type\n\t\t\t\telse if((i+1) < n && '\"' !== s[i+1]) {\n\t\t\t\t\t// advance index beyond token\n\t\t\t\t\tthis.i = i + 1;\n\n\t\t\t\t\t// read contents\n\t\t\t\t\treturn this.string_literal_short_double();\n\t\t\t\t}\n\t\t\t\t// not enough chars to deduce type; retry next chunk\n\t\t\t\telse {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t// prefixed name quick\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// prepare sticky regex index\n\t\t\t\tR_PREFIXED_NAME_QUICK.lastIndex = i;\n\t\t\t\t// execute regex\n\t\t\t\tlet m_pnq_object = R_PREFIXED_NAME_QUICK.exec(s);\n\n\t\t\t\t// regex was a match\n\t\t\t\tif(m_pnq_object) {\n\t\t\t\t\t// advance index\n\t\t\t\t\tthis.i = R_PREFIXED_NAME_QUICK.lastIndex;\n\t\t\t\t\t// check valid prefix\n\t\t\t\t\tlet s_prefix_id = m_pnq_object[1] || '';\n\t\t\t\t\t// invalid prefix\n\t\t\t\t\tif(!OPHOP.call(this._h_prefixes, s_prefix_id)) return this.error(`no such prefix \"${s_prefix_id}\"`);\n\n\n\t\t\t\t\t// commit object iri from resolve prefixed name\n\t\t\t\t\tthis._kt_object = this.prefixed_name(s_prefix_id, m_pnq_object[2]);\n\n\t\t\t\t// iriref\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\tR_IRIREF_ESCAPELESS.lastIndex = i;\n\t\t\t\t\t// execute regex\n\t\t\t\t\tlet m_iriref_e_object = R_IRIREF_ESCAPELESS.exec(s);\n\n\t\t\t\t\t// regex was a match\n\t\t\t\t\tif(m_iriref_e_object) {\n\t\t\t\t\t\t// advance index\n\t\t\t\t\t\tthis.i = R_IRIREF_ESCAPELESS.lastIndex;\n\n\t\t\t\t\t\t// ref iri\n\t\t\t\t\t\tlet s_iri = m_iriref_e_object[1];\n\t\t\t\t\t\t// absolute iri\n\t\t\t\t\t\tif(!this._s_base_url || RT_IRI_ABSOLUTE.test(s_iri)) {\n\t\t\t\t\t\t\t// set object\n\t\t\t\t\t\t\tthis._kt_object = this.check_named_node_escapeless(s_iri);\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// relative iri\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tthis._kt_object = this.check_named_node_escapeless(uri.resolve(this._s_base_url, s_iri));\n\t\t\t\t\t\t}\n\n\t\t\t\t\t// prefixed name\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\t// try match\n\t\t\t\t\t\tlet aw_valid_this_match_prefixed_name_escapeless = this.match_prefixed_name_escapeless(s, i);\n\t\t\t\t\t\t// stack bail out\n\t\t\t\t\t\tif(!aw_valid_this_match_prefixed_name_escapeless) return true;\n\t\t\t\t\t\tlet [m_prefixed_named_e_object, im_prefixed_named_e_object] = aw_valid_this_match_prefixed_name_escapeless;\n\t\t\t\t\t\tif(m_prefixed_named_e_object) {\n\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\tthis.i = im_prefixed_named_e_object;\n\t\t\t\t\t\t\t// check valid prefix\n\t\t\t\t\t\t\tlet s_prefix_id = m_prefixed_named_e_object[1] || '';\n\t\t\t\t\t\t\t// invalid prefix\n\t\t\t\t\t\t\tif(!OPHOP.call(this._h_prefixes, s_prefix_id)) return this.error(`no such prefix \"${s_prefix_id}\"`);\n\n\n\t\t\t\t\t\t\t// commit object iri from resolve prefixed name\n\t\t\t\t\t\t\tthis._kt_object = this.prefixed_name(s_prefix_id, m_prefixed_named_e_object[2]);\n\n\t\t\t\t\t\t// string literal * single\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse \tif('\\'' === x) {\n\t\t\t\t\t\t\t// enough chars to deduce type\n\t\t\t\t\t\t\tif((i+2) < n) {\n\t\t\t\t\t\t\t\t// long type\n\t\t\t\t\t\t\t\tif(\"'\" === s[i+1] && \"'\" === s[i+2]) {\n\t\t\t\t\t\t\t\t\t// advance index beyond token\n\t\t\t\t\t\t\t\t\tthis.i = i + 3;\n\n\t\t\t\t\t\t\t\t\t// read contents\n\t\t\t\t\t\t\t\t\treturn this.string_literal_long_single();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t// not long type\n\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t// advance index beyond token\n\t\t\t\t\t\t\t\t\tthis.i = i + 1;\n\n\t\t\t\t\t\t\t\t\t// read contents\n\t\t\t\t\t\t\t\t\treturn this.string_literal_short_single();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t// enough chars to eliminate long type\n\t\t\t\t\t\t\telse if((i+1) < n && \"'\" !== s[i+1]) {\n\t\t\t\t\t\t\t\t// advance index beyond token\n\t\t\t\t\t\t\t\tthis.i = i + 1;\n\n\t\t\t\t\t\t\t\t// read contents\n\t\t\t\t\t\t\t\treturn this.string_literal_short_single();\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t// not enough chars to deduce type; retry next chunk\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// numeric literal\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\tR_NUMERIC_LITERAL.lastIndex = i;\n\t\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\t\tlet m_numeric_literal = R_NUMERIC_LITERAL.exec(s);\n\n\t\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\t\tif(m_numeric_literal) {\n\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\tthis.i = R_NUMERIC_LITERAL.lastIndex;\n\t\t\t\t\t\t\t\t// it has exponent term, xsd:double\n\t\t\t\t\t\t\t\tif(m_numeric_literal[4]) {\n\t\t\t\t\t\t\t\t\tthis._kt_object = this._dc_factory.double(m_numeric_literal[1]);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t// contains decimal point, xsd:decimal\n\t\t\t\t\t\t\t\telse if(m_numeric_literal[2] || m_numeric_literal[3]) {\n\t\t\t\t\t\t\t\t\tthis._kt_object = this._dc_factory.decimal(m_numeric_literal[1]);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t// otherwise, it is an integer\n\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\tthis._kt_object = this._dc_factory.integer(m_numeric_literal[1]);\n\t\t\t\t\t\t\t\t}\n\n\n\t\t\t\t\t\t\t// boolean literal\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\t\tR_BOOLEAN_LITERAL.lastIndex = i;\n\t\t\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\t\t\tlet m_boolean_literal = R_BOOLEAN_LITERAL.exec(s);\n\n\t\t\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\t\t\tif(m_boolean_literal) {\n\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\tthis.i = R_BOOLEAN_LITERAL.lastIndex;\n\t\t\t\t\t\t\t\t\t// make literal\n\t\t\t\t\t\t\t\t\tthis._kt_object = this._dc_factory.boolean(!!m_boolean_literal[1]);\n\n\n\t\t\t\t\t\t\t\t// blank node property list\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\telse \tif('[' === x) {\n\t\t\t\t// advance index to next token\n\t\t\t\t// consume whitespace (and incidentally reset index)\n\t\t\t\t\t\t\t\t\tR_WS.lastIndex = i+1;\n\t\t\t\t\t\t\t\t\tR_WS.exec(s);\n\t\t\t\t\t\t\t\t\tthis.i = R_WS.lastIndex;\n\n\t\t\t\t\t\t\t\t\t// make object\n\t\t\t\t\t\t\t\t\tlet kt_blank_node = this._kt_object = this.anonymous_blank_node(this.next_label());\n\n\t\t\t\t\t\t\t\t\t// emit statement event\n\t\t\t\t\t\t\t\t\tthis.data();\n\n\n\t\t\t\t\t\t\t\t\t// push state to stack\n\t\t\t\t\t\t\t\t\tthis._a_nested.push([this._kt_subject, this._kt_predicate, 'post_object']);\n\n\t\t\t\t\t\t\t\t\t// set new subject\n\t\t\t\t\t\t\t\t\tthis._kt_subject = kt_blank_node;\n\n\t\t\t\t\t\t\t\t\t// goto parsing pairs state\n\t\t\t\t\t\t\t\t\treturn this.pairs();\n\n\t\t\t\t\t\t\t\t// labeled blank node\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\t\t\tR_BLANK_NODE_LABEL_TERMINAL.lastIndex = i;\n\t\t\t\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\t\t\t\tlet m_blank_node_label_object = R_BLANK_NODE_LABEL_TERMINAL.exec(s);\n\n\t\t\t\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\t\t\t\tif(m_blank_node_label_object) {\n\t\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\t\tthis.i = R_BLANK_NODE_LABEL_TERMINAL.lastIndex;\n\t\t\t\t\t\t\t\t\t\t// ref blank node label\n\t\t\t\t\t\t\t\t\t\tlet s_label = m_blank_node_label_object[1];\n\n\t\t\t\t\t\t\t\t\t\t// make object\n\t\t\t\t\t\t\t\t\t\tthis._kt_object = this.blank_node(s_label);\n\n\t\t\t\t\t\t\t\t\t// collection\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\telse \tif('(' === x) {\n\t\t\t\t// advance index to next token\n\t\t\t\t// consume whitespace (and incidentally reset index)\n\t\t\t\t\t\t\t\t\t\tR_WS.lastIndex = i+1;\n\t\t\t\t\t\t\t\t\t\tR_WS.exec(s);\n\t\t\t\t\t\t\t\t\t\tthis.i = R_WS.lastIndex;\n\n\t\t\t\t\t\t\t\t\t\t// state to resume after collection ends\n\t\t\t\t\t\t\t\t\t\tthis._a_nested.push([this._kt_subject, this._kt_predicate, 'post_object']);\n\n\t\t\t\t\t\t\t\t\t\t// goto collection-object state\n\t\t\t\t\t\t\t\t\t\treturn this.collection_object();\n\n\t\t\t\t\t\t\t\t\t// iriref\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\t\t\t\tR_IRIREF.lastIndex = i;\n\t\t\t\t\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\t\t\t\t\tlet m_iriref_object = R_IRIREF.exec(s);\n\n\t\t\t\t\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\t\t\t\t\tif(m_iriref_object) {\n\t\t\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\t\t\tthis.i = R_IRIREF.lastIndex;\n\n\t\t\t\t\t\t\t\t\t\t\t// ref iri\n\t\t\t\t\t\t\t\t\t\t\tlet s_iri = m_iriref_object[1].replace(R_UNICODE_ANY, F_REPLACE_UNICODE_ANY);\n\t\t\t\t\t\t\t\t\t\t\t// absolute iri\n\t\t\t\t\t\t\t\t\t\t\tif(!this._s_base_url || RT_IRI_ABSOLUTE.test(s_iri)) {\n\t\t\t\t\t\t\t\t\t\t\t\t// set object\n\t\t\t\t\t\t\t\t\t\t\t\tthis._kt_object = this.check_named_node(s_iri);\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t// relative iri\n\t\t\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t\t\tthis._kt_object = this.check_named_node(uri.resolve(this._s_base_url, s_iri));\n\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t// prefixed name\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t\t// try match\n\t\t\t\t\t\t\t\t\t\t\tlet aw_valid_this_match_prefixed_name = this.match_prefixed_name(s, i);\n\t\t\t\t\t\t\t\t\t\t\t// stack bail out\n\t\t\t\t\t\t\t\t\t\t\tif(!aw_valid_this_match_prefixed_name) return true;\n\t\t\t\t\t\t\t\t\t\t\tlet [m_prefixed_named_object, im_prefixed_named_object] = aw_valid_this_match_prefixed_name;\n\t\t\t\t\t\t\t\t\t\t\tif(m_prefixed_named_object) {\n\t\t\t\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\t\t\t\tthis.i = im_prefixed_named_object;\n\t\t\t\t\t\t\t\t\t\t\t\t// check valid prefix\n\t\t\t\t\t\t\t\t\t\t\t\tlet s_prefix_id = m_prefixed_named_object[1] || '';\n\t\t\t\t\t\t\t\t\t\t\t\t// invalid prefix\n\t\t\t\t\t\t\t\t\t\t\t\tif(!OPHOP.call(this._h_prefixes, s_prefix_id)) return this.error(`no such prefix \"${s_prefix_id}\"`);\n\n\n\t\t\t\t\t\t\t\t\t\t\t\t// escape local escapes\n\t\t\t\t\t\t\t\t\t\t\t\tlet s_suffix = m_prefixed_named_object[2]\n\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(R_UNICODE_ANY, F_REPLACE_UNICODE_ANY)\n\t\t\t\t\t\t\t\t\t\t\t\t\t.replace(R_PN_LOCAL_ESCAPES, '$1');\n\n\t\t\t\t\t\t\t\t\t\t\t\t// commit object iri from resolve prefixed name\n\t\t\t\t\t\t\t\t\t\t\t\tthis._kt_object = this.prefixed_name(s_prefix_id, s_suffix);\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\t\t\t\t\t\tR_COMMENT.lastIndex = i;\n\t\t\t\t\t\t\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\t\t\t\t\t\t\tlet m_comment = R_COMMENT.exec(s);\n\n\t\t\t\t\t\t\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\t\t\t\t\t\t\tif(m_comment) {\n\t\t\t\t\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\t\t\t\t\ti = R_COMMENT.lastIndex;\n\t\t\t\t\t\t\t\t\t\t\t\t\tif(this.emit_comments) this.emit_comments(m_comment[0]);\n\t\t\t\t\t\t\t\t\t\t\t\t\tcontinue;\n\n\t\t\t// not iriref, not prefixed name, not string literal, not numeric literal, not boolean literal, not blank node property list, not collection\n\t\t\t// match counter: 9\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t\t\t\t// break loop to retry on next chunk if eos\n\t\t\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t} // brace #9\n\t\t\t\t\t\t\t\t\t\t} // brace #8\n\t\t\t\t\t\t\t\t\t} // brace #7\n\t\t\t\t\t\t\t\t} // brace #6\n\t\t\t\t\t\t\t} // brace #5\n\t\t\t\t\t\t} // brace #4\n\t\t\t\t\t} // brace #3\n\t\t\t\t} // brace #2\n\t\t\t} // brace #1\n\n\n\t\t\t// fall through for cases that did not change state on their own\n\t\t\t// at this point, a new statement has been parsed\n\t\t\tthis.data();\n\n\n\t\t\t// goto next parsing state; bail out of stack\n\t\t\treturn this.after_end_of_statement;\n\t\t}\n\n\t\t\t\t// ran out of characters\n\t\t\t\t// update index value\n\t\tthis.i = i;\n\n\t\t// not yet eos\n\t\tif(i < this.n) {\n\t\t\t// expected token was not found\n\t\t\tif(0 === i) {\n\t\t\t\t// we've exceeded the maximum token length\n\t\t\t\tif(this.n > this.max_token_length) {\n\t\t\t\t\treturn this.parse_error('object_list');\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// save state before pausing\n\t\tthis._f_state = this.object_list;\n\n\t\t// store what is unparsed\n\t\tthis.pre = s.slice(i);\n\n\t\t// if we're not parsing a stream, then this is an error\n\t\tif(this.eos) this.eos();\n\t\treturn;\n\t}\n\n\n\n\t// parse state for string_literal_short_double\n\tstring_literal_short_double() {\n\t\t// destruct chunk, length, and index\n\t\tlet {s, n, i} = this;\n\n\t\t// start labeled loop, run while there are characters\n\t\tstring_literal_short_double: while(i < n) { // eslint-disable-line no-unmodified-loop-condition\n// something breaks string in this chunk\n\n\t\t\t// prepare sticky regex index\n\t\t\tR_STRLIT_SHORT_DOUBLE_BREAK.lastIndex = i;\n\t\t\t// execute regex\n\t\t\tlet m_break = R_STRLIT_SHORT_DOUBLE_BREAK.exec(s);\n\n\t\t\t// regex was a match\n\t\t\tif(m_break) {\n\t\t\t\t// advance index\n\t\t\t\tthis.i = R_STRLIT_SHORT_DOUBLE_BREAK.lastIndex;\n\t\t\t\t// index of break\n\t\t\t\tlet i_break = m_break.index;\n\n\t\t\t\t// add to contents\n\t\t\t\tthis._s_literal += s.slice(i, i_break);\n\n\t\t\t\t// depending on char\n\t\t\t\tswitch(s[i_break]) {\n\t\t\t\t\t// terminator\n\t\t\t\t\tcase '\"': {\n\t\t\t\t\t// advance index to next token beyond delimiter\n\t\t\t\t\t// consume whitespace (and incidentally reset index)\n\t\t\t\t\t\tR_WS.lastIndex = i_break + 1;\n\t\t\t\t\t\tR_WS.exec(s);\n\t\t\t\t\t\tthis.i = R_WS.lastIndex;\n\n\t\t\t\t\t\t// resume eating whitespace at start of next chunk\n\t\t\t\t\t\tthis._b_trim_start = true;\n\n\t\t\t\t\t\t// consume rest\n\t\t\t\t\t\treturn this.datatype_or_langtag();\n\t\t\t\t\t}\n\n\t\t\t\t\t// escape\n\t\t\t\t\tcase '\\\\': {\n\t\t\t\t\t\t// try to find end\n\t\t\t\t\t\tR_STRLIT_SHORT_DOUBLE_TERM.lastIndex = i_break;\n\t\t\t\t\t\tlet m_term = R_STRLIT_SHORT_DOUBLE_TERM.exec(s);\n\n\t\t\t\t\t\t// end is in this chunk\n\t\t\t\t\t\tif(m_term) {\n\t\t\t\t\t\t\t// index of terminator\n\t\t\t\t\t\t\tlet i_term = m_term.index;\n\n\t\t\t\t\t\t\t// extract dirty potion\n\t\t\t\t\t\t\tlet s_dirty = s.slice(i_break, i_term);\n\n\t\t\t\t\t\t\t// clean and save\n\t\t\t\t\t\t\tthis._s_literal += unescape_literal_short_hard(s_dirty);\n\n\t\t\t\t\t\t\t// advance index beyond terminator\n\t\t\t\t\t\t\tthis.i = i_term + m_term[0].length;\n\n\t\t\t\t\t\t\t// resume eating whitespace at start of next chunk\n\t\t\t\t\t\t\tthis._b_trim_start = true;\n\n\t\t\t\t\t\t\t// consume rest\n\t\t\t\t\t\t\treturn this.datatype_or_langtag();\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// end is not in this chunk\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t// extract whole portion\n\t\t\t\t\t\t\tlet s_dirty = s.slice(i_break);\n\n\t\t\t\t\t\t\t// unescape to clean part\n\t\t\t\t\t\t\tlet [s_clean, s_incomplete] = unescape_literal_short_soft(s_dirty);\n\n\t\t\t\t\t\t\t// save\n\t\t\t\t\t\t\tthis._s_literal += s_clean;\n\n\t\t\t\t\t\t\t// set unparsed index\n\t\t\t\t\t\t\ti = n - s_incomplete.length;\n\n\t\t\t\t\t\t\t// reached eos; pause normally\n\t\t\t\t\t\t\tbreak string_literal_short_double;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// invalid '\\n'\n\t\t\t\t\tcase '\\n': {\n\t\t\t\t\t\treturn this.info_error(`expected string_literal_short_double but invalid line feed character '\\\\n' (newline) within contents. failed to parse a valid token`);\n\t\t\t\t\t}\n\n\t\t\t\t\t// invalid '\\r'\n\t\t\t\t\tcase '\\r': {\n\t\t\t\t\t\treturn this.info_error(`expected string_literal_short_double but invalid form feed character '\\\\r' (carriage return) within contents. failed to parse a valid token`);\n\t\t\t\t\t}\n\n\t\t\t\t\t// invalid\n\t\t\t\t\tdefault: {\n\t\t\t\t\t\tconsole.assert(`Unhandle invalid character ${JSON.stringify(s[i_break])} case for string_literal_short_double`);\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t// no terminator and nothing to escape\n\t\t// match counter: 0\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// save\n\t\t\t\tthis._s_literal += i? s.slice(i): s;\n\n\t\t\t\t// set unparsed index\n\t\t\t\ti = n;\n\n\t\t\t\t// reached eos; pause normally\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t\t// do not eat whitespace at start of next chunk\n\t\tthis._b_trim_start = false;\n\n\t// ran out of characters\n\t// update index value\n\t\tthis.i = i;\n\n\t\t// not yet eos\n\t\tif(i < this.n) {\n\t\t\t// expected token was not found\n\t\t\tif(0 === i) {\n\t\t\t\t// we've exceeded the maximum token length\n\t\t\t\tif(this.n > this.max_token_length) {\n\t\t\t\t\treturn this.parse_error('string_literal_short_double');\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// save state before pausing\n\t\tthis._f_state = this.string_literal_short_double;\n\n\t\t// store what is unparsed\n\t\tthis.pre = s.slice(i);\n\n\t\t// if we're not parsing a stream, then this is an error\n\t\tif(this.eos) this.eos();\n\t\treturn;\n\t}\n\n\n\n\t// parse state for string_literal_short_single\n\tstring_literal_short_single() {\n\t\t// destruct chunk, length, and index\n\t\tlet {s, n, i} = this;\n\n\t\t// start labeled loop, run while there are characters\n\t\tstring_literal_short_single: while(i < n) { // eslint-disable-line no-unmodified-loop-condition\n// something breaks string in this chunk\n\n\t\t\t// prepare sticky regex index\n\t\t\tR_STRLIT_SHORT_SINGLE_BREAK.lastIndex = i;\n\t\t\t// execute regex\n\t\t\tlet m_break = R_STRLIT_SHORT_SINGLE_BREAK.exec(s);\n\n\t\t\t// regex was a match\n\t\t\tif(m_break) {\n\t\t\t\t// advance index\n\t\t\t\tthis.i = R_STRLIT_SHORT_SINGLE_BREAK.lastIndex;\n\t\t\t\t// index of break\n\t\t\t\tlet i_break = m_break.index;\n\n\t\t\t\t// add to contents\n\t\t\t\tthis._s_literal += s.slice(i, i_break);\n\n\t\t\t\t// depending on char\n\t\t\t\tswitch(s[i_break]) {\n\t\t\t\t\t// terminator\n\t\t\t\t\tcase \"'\": {\n\t\t\t\t\t// advance index to next token beyond delimiter\n\t\t\t\t\t// consume whitespace (and incidentally reset index)\n\t\t\t\t\t\tR_WS.lastIndex = i_break + 1;\n\t\t\t\t\t\tR_WS.exec(s);\n\t\t\t\t\t\tthis.i = R_WS.lastIndex;\n\n\t\t\t\t\t\t// resume eating whitespace at start of next chunk\n\t\t\t\t\t\tthis._b_trim_start = true;\n\n\t\t\t\t\t\t// consume rest\n\t\t\t\t\t\treturn this.datatype_or_langtag();\n\t\t\t\t\t}\n\n\t\t\t\t\t// escape\n\t\t\t\t\tcase '\\\\': {\n\t\t\t\t\t\t// try to find end\n\t\t\t\t\t\tR_STRLIT_SHORT_SINGLE_TERM.lastIndex = i_break;\n\t\t\t\t\t\tlet m_term = R_STRLIT_SHORT_SINGLE_TERM.exec(s);\n\n\t\t\t\t\t\t// end is in this chunk\n\t\t\t\t\t\tif(m_term) {\n\t\t\t\t\t\t\t// index of terminator\n\t\t\t\t\t\t\tlet i_term = m_term.index;\n\n\t\t\t\t\t\t\t// extract dirty potion\n\t\t\t\t\t\t\tlet s_dirty = s.slice(i_break, i_term);\n\n\t\t\t\t\t\t\t// clean and save\n\t\t\t\t\t\t\tthis._s_literal += unescape_literal_short_hard(s_dirty);\n\n\t\t\t\t\t\t\t// advance index beyond terminator\n\t\t\t\t\t\t\tthis.i = i_term + m_term[0].length;\n\n\t\t\t\t\t\t\t// resume eating whitespace at start of next chunk\n\t\t\t\t\t\t\tthis._b_trim_start = true;\n\n\t\t\t\t\t\t\t// consume rest\n\t\t\t\t\t\t\treturn this.datatype_or_langtag();\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// end is not in this chunk\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t// extract whole portion\n\t\t\t\t\t\t\tlet s_dirty = s.slice(i_break);\n\n\t\t\t\t\t\t\t// unescape to clean part\n\t\t\t\t\t\t\tlet [s_clean, s_incomplete] = unescape_literal_short_soft(s_dirty);\n\n\t\t\t\t\t\t\t// save\n\t\t\t\t\t\t\tthis._s_literal += s_clean;\n\n\t\t\t\t\t\t\t// set unparsed index\n\t\t\t\t\t\t\ti = n - s_incomplete.length;\n\n\t\t\t\t\t\t\t// reached eos; pause normally\n\t\t\t\t\t\t\tbreak string_literal_short_single;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// invalid '\\n'\n\t\t\t\t\tcase '\\n': {\n\t\t\t\t\t\treturn this.info_error(`expected string_literal_short_single but invalid line feed character '\\\\n' (newline) within contents. failed to parse a valid token`);\n\t\t\t\t\t}\n\n\t\t\t\t\t// invalid '\\r'\n\t\t\t\t\tcase '\\r': {\n\t\t\t\t\t\treturn this.info_error(`expected string_literal_short_single but invalid form feed character '\\\\r' (carriage return) within contents. failed to parse a valid token`);\n\t\t\t\t\t}\n\n\t\t\t\t\t// invalid\n\t\t\t\t\tdefault: {\n\t\t\t\t\t\tconsole.assert(`Unhandle invalid character ${JSON.stringify(s[i_break])} case for string_literal_short_single`);\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t// no terminator and nothing to escape\n\t\t// match counter: 0\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// save\n\t\t\t\tthis._s_literal += i? s.slice(i): s;\n\n\t\t\t\t// set unparsed index\n\t\t\t\ti = n;\n\n\t\t\t\t// reached eos; pause normally\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t\t// do not eat whitespace at start of next chunk\n\t\tthis._b_trim_start = false;\n\n\t// ran out of characters\n\t// update index value\n\t\tthis.i = i;\n\n\t\t// not yet eos\n\t\tif(i < this.n) {\n\t\t\t// expected token was not found\n\t\t\tif(0 === i) {\n\t\t\t\t// we've exceeded the maximum token length\n\t\t\t\tif(this.n > this.max_token_length) {\n\t\t\t\t\treturn this.parse_error('string_literal_short_single');\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// save state before pausing\n\t\tthis._f_state = this.string_literal_short_single;\n\n\t\t// store what is unparsed\n\t\tthis.pre = s.slice(i);\n\n\t\t// if we're not parsing a stream, then this is an error\n\t\tif(this.eos) this.eos();\n\t\treturn;\n\t}\n\n\n\n\t// parse state for string_literal_long_double\n\tstring_literal_long_double() {\n\t\t// destruct chunk, length, and index\n\t\tlet {s, n, i} = this;\n\n\t\t// start labeled loop, run while there are characters\n\t\tstring_literal_long_double: while(i < n) { // eslint-disable-line no-unmodified-loop-condition\n// something breaks string in this chunk\n\n\t\t\t// prepare sticky regex index\n\t\t\tR_STRLIT_LONG_DOUBLE_BREAK.lastIndex = i;\n\t\t\t// execute regex\n\t\t\tlet m_break = R_STRLIT_LONG_DOUBLE_BREAK.exec(s);\n\n\t\t\t// regex was a match\n\t\t\tif(m_break) {\n\t\t\t\t// advance index\n\t\t\t\tthis.i = R_STRLIT_LONG_DOUBLE_BREAK.lastIndex;\n\t\t\t\t// index of break\n\t\t\t\tlet i_break = m_break.index;\n\n\t\t\t\t// add to contents\n\t\t\t\tthis._s_literal += s.slice(i, i_break);\n\n\t\t\t\t// depending on char\n\t\t\t\tswitch(s[i_break]) {\n\t\t\t\t\t// terminator\n\t\t\t\t\tcase '\"': {\n\t\t\t\t\t// advance index to next token beyond delimiter\n\t\t\t\t\t// consume whitespace (and incidentally reset index)\n\t\t\t\t\t\tR_WS.lastIndex = i_break + 3;\n\t\t\t\t\t\tR_WS.exec(s);\n\t\t\t\t\t\tthis.i = R_WS.lastIndex;\n\n\t\t\t\t\t\t// resume eating whitespace at start of next chunk\n\t\t\t\t\t\tthis._b_trim_start = true;\n\n\t\t\t\t\t\t// consume rest\n\t\t\t\t\t\treturn this.datatype_or_langtag();\n\t\t\t\t\t}\n\n\t\t\t\t\t// escape\n\t\t\t\t\tcase '\\\\': {\n\t\t\t\t\t\t// try to find end\n\t\t\t\t\t\tR_STRLIT_LONG_DOUBLE_TERM.lastIndex = i_break;\n\t\t\t\t\t\tlet m_term = R_STRLIT_LONG_DOUBLE_TERM.exec(s);\n\n\t\t\t\t\t\t// end is in this chunk\n\t\t\t\t\t\tif(m_term) {\n\t\t\t\t\t\t\t// index of terminator\n\t\t\t\t\t\t\tlet i_term = m_term.index;\n\n\t\t\t\t\t\t\t// extract dirty potion\n\t\t\t\t\t\t\tlet s_dirty = s.slice(i_break, i_term);\n\n\t\t\t\t\t\t\t// clean and save\n\t\t\t\t\t\t\tthis._s_literal += unescape_literal_long_hard(s_dirty);\n\n\t\t\t\t\t\t\t// advance index beyond terminator\n\t\t\t\t\t\t\tthis.i = i_term + m_term[0].length;\n\n\t\t\t\t\t\t\t// resume eating whitespace at start of next chunk\n\t\t\t\t\t\t\tthis._b_trim_start = true;\n\n\t\t\t\t\t\t\t// consume rest\n\t\t\t\t\t\t\treturn this.datatype_or_langtag();\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// end is not in this chunk\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t// extract whole portion\n\t\t\t\t\t\t\tlet s_dirty = s.slice(i_break);\n\n\t\t\t\t\t\t\t// unescape to clean part\n\t\t\t\t\t\t\tlet [s_clean, s_incomplete] = unescape_literal_long_soft(s_dirty);\n\n\t\t\t\t\t\t\t// save\n\t\t\t\t\t\t\tthis._s_literal += s_clean;\n\n\t\t\t\t\t\t\t// set unparsed index\n\t\t\t\t\t\t\ti = n - s_incomplete.length;\n\n\t\t\t\t\t\t\t// reached eos; pause normally\n\t\t\t\t\t\t\tbreak string_literal_long_double;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// invalid\n\t\t\t\t\tdefault: {\n\t\t\t\t\t\tconsole.assert(`Unhandle invalid character ${JSON.stringify(s[i_break])} case for string_literal_long_double`);\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t// no terminator and nothing to escape\n\t\t// match counter: 0\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// could be unfinished terminator\n\t\t\t\tR_STRLIT_LONG_DOUBLE_UNFINISHED_TERM.lastIndex = i;\n\t\t\t\tlet m_unfinished = R_STRLIT_LONG_DOUBLE_UNFINISHED_TERM.exec(s);\n\n\t\t\t\t// unfinished terminator\n\t\t\t\tif(m_unfinished) {\n\t\t\t\t\t// save valid portion\n\t\t\t\t\tthis._s_literal += s.slice(i, m_unfinished.index);\n\n\t\t\t\t\t// set unparsed index\n\t\t\t\t\ti = m_unfinished.index;\n\t\t\t\t}\n\t\t\t\t// not unfinished\n\t\t\t\telse {\n\t\t\t\t\t// save\n\t\t\t\t\tthis._s_literal += i? s.slice(i): s;\n\n\t\t\t\t\t// set unparsed index\n\t\t\t\t\ti = n;\n\t\t\t\t}\n\n\t\t\t\t// reached eos; pause normally\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t\t// do not eat whitespace at start of next chunk\n\t\tthis._b_trim_start = false;\n\n\t// ran out of characters\n\t// update index value\n\t\tthis.i = i;\n\n\t\t// not yet eos\n\t\tif(i < this.n) {\n\t\t\t// expected token was not found\n\t\t\tif(0 === i) {\n\t\t\t\t// we've exceeded the maximum token length\n\t\t\t\tif(this.n > this.max_token_length) {\n\t\t\t\t\treturn this.parse_error('string_literal_long_double');\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// save state before pausing\n\t\tthis._f_state = this.string_literal_long_double;\n\n\t\t// store what is unparsed\n\t\tthis.pre = s.slice(i);\n\n\t\t// if we're not parsing a stream, then this is an error\n\t\tif(this.eos) this.eos();\n\t\treturn;\n\t}\n\n\n\n\t// parse state for string_literal_long_single\n\tstring_literal_long_single() {\n\t\t// destruct chunk, length, and index\n\t\tlet {s, n, i} = this;\n\n\t\t// start labeled loop, run while there are characters\n\t\tstring_literal_long_single: while(i < n) { // eslint-disable-line no-unmodified-loop-condition\n// something breaks string in this chunk\n\n\t\t\t// prepare sticky regex index\n\t\t\tR_STRLIT_LONG_SINGLE_BREAK.lastIndex = i;\n\t\t\t// execute regex\n\t\t\tlet m_break = R_STRLIT_LONG_SINGLE_BREAK.exec(s);\n\n\t\t\t// regex was a match\n\t\t\tif(m_break) {\n\t\t\t\t// advance index\n\t\t\t\tthis.i = R_STRLIT_LONG_SINGLE_BREAK.lastIndex;\n\t\t\t\t// index of break\n\t\t\t\tlet i_break = m_break.index;\n\n\t\t\t\t// add to contents\n\t\t\t\tthis._s_literal += s.slice(i, i_break);\n\n\t\t\t\t// depending on char\n\t\t\t\tswitch(s[i_break]) {\n\t\t\t\t\t// terminator\n\t\t\t\t\tcase \"'\": {\n\t\t\t\t\t// advance index to next token beyond delimiter\n\t\t\t\t\t// consume whitespace (and incidentally reset index)\n\t\t\t\t\t\tR_WS.lastIndex = i_break + 3;\n\t\t\t\t\t\tR_WS.exec(s);\n\t\t\t\t\t\tthis.i = R_WS.lastIndex;\n\n\t\t\t\t\t\t// resume eating whitespace at start of next chunk\n\t\t\t\t\t\tthis._b_trim_start = true;\n\n\t\t\t\t\t\t// consume rest\n\t\t\t\t\t\treturn this.datatype_or_langtag();\n\t\t\t\t\t}\n\n\t\t\t\t\t// escape\n\t\t\t\t\tcase '\\\\': {\n\t\t\t\t\t\t// try to find end\n\t\t\t\t\t\tR_STRLIT_LONG_SINGLE_TERM.lastIndex = i_break;\n\t\t\t\t\t\tlet m_term = R_STRLIT_LONG_SINGLE_TERM.exec(s);\n\n\t\t\t\t\t\t// end is in this chunk\n\t\t\t\t\t\tif(m_term) {\n\t\t\t\t\t\t\t// index of terminator\n\t\t\t\t\t\t\tlet i_term = m_term.index;\n\n\t\t\t\t\t\t\t// extract dirty potion\n\t\t\t\t\t\t\tlet s_dirty = s.slice(i_break, i_term);\n\n\t\t\t\t\t\t\t// clean and save\n\t\t\t\t\t\t\tthis._s_literal += unescape_literal_long_hard(s_dirty);\n\n\t\t\t\t\t\t\t// advance index beyond terminator\n\t\t\t\t\t\t\tthis.i = i_term + m_term[0].length;\n\n\t\t\t\t\t\t\t// resume eating whitespace at start of next chunk\n\t\t\t\t\t\t\tthis._b_trim_start = true;\n\n\t\t\t\t\t\t\t// consume rest\n\t\t\t\t\t\t\treturn this.datatype_or_langtag();\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// end is not in this chunk\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t// extract whole portion\n\t\t\t\t\t\t\tlet s_dirty = s.slice(i_break);\n\n\t\t\t\t\t\t\t// unescape to clean part\n\t\t\t\t\t\t\tlet [s_clean, s_incomplete] = unescape_literal_long_soft(s_dirty);\n\n\t\t\t\t\t\t\t// save\n\t\t\t\t\t\t\tthis._s_literal += s_clean;\n\n\t\t\t\t\t\t\t// set unparsed index\n\t\t\t\t\t\t\ti = n - s_incomplete.length;\n\n\t\t\t\t\t\t\t// reached eos; pause normally\n\t\t\t\t\t\t\tbreak string_literal_long_single;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// invalid\n\t\t\t\t\tdefault: {\n\t\t\t\t\t\tconsole.assert(`Unhandle invalid character ${JSON.stringify(s[i_break])} case for string_literal_long_single`);\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t// no terminator and nothing to escape\n\t\t// match counter: 0\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// could be unfinished terminator\n\t\t\t\tR_STRLIT_LONG_SINGLE_UNFINISHED_TERM.lastIndex = i;\n\t\t\t\tlet m_unfinished = R_STRLIT_LONG_SINGLE_UNFINISHED_TERM.exec(s);\n\n\t\t\t\t// unfinished terminator\n\t\t\t\tif(m_unfinished) {\n\t\t\t\t\t// save valid portion\n\t\t\t\t\tthis._s_literal += s.slice(i, m_unfinished.index);\n\n\t\t\t\t\t// set unparsed index\n\t\t\t\t\ti = m_unfinished.index;\n\t\t\t\t}\n\t\t\t\t// not unfinished\n\t\t\t\telse {\n\t\t\t\t\t// save\n\t\t\t\t\tthis._s_literal += i? s.slice(i): s;\n\n\t\t\t\t\t// set unparsed index\n\t\t\t\t\ti = n;\n\t\t\t\t}\n\n\t\t\t\t// reached eos; pause normally\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t\t// do not eat whitespace at start of next chunk\n\t\tthis._b_trim_start = false;\n\n\t// ran out of characters\n\t// update index value\n\t\tthis.i = i;\n\n\t\t// not yet eos\n\t\tif(i < this.n) {\n\t\t\t// expected token was not found\n\t\t\tif(0 === i) {\n\t\t\t\t// we've exceeded the maximum token length\n\t\t\t\tif(this.n > this.max_token_length) {\n\t\t\t\t\treturn this.parse_error('string_literal_long_single');\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// save state before pausing\n\t\tthis._f_state = this.string_literal_long_single;\n\n\t\t// store what is unparsed\n\t\tthis.pre = s.slice(i);\n\n\t\t// if we're not parsing a stream, then this is an error\n\t\tif(this.eos) this.eos();\n\t\treturn;\n\t}\n\n\n\n\t// parse state for string_literal\n\tstring_literal() {\n\t\t// destruct chunk, length, and index\n\t\tlet {s, n, i} = this;\n\n\t\t// start labeled loop, run while there are characters\n\t\twhile(i < n) { // eslint-disable-line no-unmodified-loop-condition\n\t\t\t// ref character\n\t\t\tlet x = s[i];\n\n\t\t\t// string literal * double\n\t\t\tif('\"' === x) {\n\t\t\t\t// enough chars to deduce type\n\t\t\t\tif((i+2) < n) {\n\t\t\t\t\t// long type\n\t\t\t\t\tif('\"' === s[i+1] && '\"' === s[i+2]) {\n\t\t\t\t\t\t// advance index beyond token\n\t\t\t\t\t\tthis.i = i + 3;\n\n\t\t\t\t\t\t// read contents\n\t\t\t\t\t\treturn this.string_literal_long_double();\n\t\t\t\t\t}\n\t\t\t\t\t// not long type\n\t\t\t\t\telse {\n\t\t\t\t\t\t// advance index beyond token\n\t\t\t\t\t\tthis.i = i + 1;\n\n\t\t\t\t\t\t// read contents\n\t\t\t\t\t\treturn this.string_literal_short_double();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t// enough chars to eliminate long type\n\t\t\t\telse if((i+1) < n && '\"' !== s[i+1]) {\n\t\t\t\t\t// advance index beyond token\n\t\t\t\t\tthis.i = i + 1;\n\n\t\t\t\t\t// read contents\n\t\t\t\t\treturn this.string_literal_short_double();\n\t\t\t\t}\n\t\t\t\t// not enough chars to deduce type; retry next chunk\n\t\t\t\telse {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t// string literal * single\n\t\t\t}\n\t\t\telse \tif('\\'' === x) {\n\t\t\t\t// enough chars to deduce type\n\t\t\t\tif((i+2) < n) {\n\t\t\t\t\t// long type\n\t\t\t\t\tif(\"'\" === s[i+1] && \"'\" === s[i+2]) {\n\t\t\t\t\t\t// advance index beyond token\n\t\t\t\t\t\tthis.i = i + 3;\n\n\t\t\t\t\t\t// read contents\n\t\t\t\t\t\treturn this.string_literal_long_single();\n\t\t\t\t\t}\n\t\t\t\t\t// not long type\n\t\t\t\t\telse {\n\t\t\t\t\t\t// advance index beyond token\n\t\t\t\t\t\tthis.i = i + 1;\n\n\t\t\t\t\t\t// read contents\n\t\t\t\t\t\treturn this.string_literal_short_single();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t// enough chars to eliminate long type\n\t\t\t\telse if((i+1) < n && \"'\" !== s[i+1]) {\n\t\t\t\t\t// advance index beyond token\n\t\t\t\t\tthis.i = i + 1;\n\n\t\t\t\t\t// read contents\n\t\t\t\t\treturn this.string_literal_short_single();\n\t\t\t\t}\n\t\t\t\t// not enough chars to deduce type; retry next chunk\n\t\t\t\telse {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t// not string literal long single quote, not string literal single quote\n\t\t\t// match counter: 0\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// break loop to retry on next chunk if eos\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t\t\t\t// ran out of characters\n\t\t\t\t// update index value\n\t\tthis.i = i;\n\n\t\t// not yet eos\n\t\tif(i < this.n) {\n\t\t\t// expected token was not found\n\t\t\tif(0 === i) {\n\t\t\t\t// we've exceeded the maximum token length\n\t\t\t\tif(this.n > this.max_string_length) {\n\t\t\t\t\treturn this.parse_error('string_literal');\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// save state before pausing\n\t\tthis._f_state = this.string_literal;\n\n\t\t// store what is unparsed\n\t\tthis.pre = s.slice(i);\n\n\t\t// if we're not parsing a stream, then this is an error\n\t\tif(this.eos) this.eos();\n\t\treturn;\n\t}\n\n\n\n\t// parse state for datatype_or_langtag\n\tdatatype_or_langtag() {\n\t\t// destruct chunk, length, and index\n\t\tlet {s, n, i} = this;\n\n\t\t// start labeled loop, run while there are characters\n\t\twhile(i < n) { // eslint-disable-line no-unmodified-loop-condition\n\t\t\t// ref character\n\t\t\tlet x = s[i];\n\n\t\t\t// next token indicates datatype or langtag\n\t\t\tif('^' === x || '@' === x) {\n// '^^' datatype\n\n\t\t\t\t// prepare sticky regex index\n\t\t\t\tR_DOUBLE_CARET.lastIndex = i;\n\n\t\t\t\tif(R_DOUBLE_CARET.exec(s)) {\n\t\t\t\t\t// advance index\n\t\t\t\t\tthis.i = R_DOUBLE_CARET.lastIndex;\n\t\t\t\t\treturn this.datatype();\n\n\t\t\t\t// '@' language tag\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\tR_LANGTAG.lastIndex = i;\n\t\t\t\t\t// execute regex\n\t\t\t\t\tlet m_langtag = R_LANGTAG.exec(s);\n\n\t\t\t\t\t// regex was a match\n\t\t\t\t\tif(m_langtag) {\n\t\t\t\t\t\t// advance index\n\t\t\t\t\t\tthis.i = R_LANGTAG.lastIndex;\n\t\t\t\t\t\tthis._kt_object = this._dc_factory.languagedLiteral(this._s_literal, m_langtag[1]);\n\n\t\t\t\t\t\t// reset literal\n\t\t\t\t\t\tthis._s_literal = '';\n\n\t\t\t\t// next token definitely datatype or langtag, we are just being interrupted by eos\n\t\t\t\t// match counter: 1\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\t// break loop to retry on next chunk if eos\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t} // brace #1\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// prepare sticky regex index\n\t\t\t\tR_COMMENT.lastIndex = i;\n\t\t\t\t// execute regex\n\t\t\t\tlet m_comment = R_COMMENT.exec(s);\n\n\t\t\t\t// regex was a match\n\t\t\t\tif(m_comment) {\n\t\t\t\t\t// advance index\n\t\t\t\t\ti = R_COMMENT.lastIndex;\n\t\t\t\t\tif(this.emit_comments) this.emit_comments(m_comment[0]);\n\t\t\t\t\tcontinue;\n\n\t\t\t\t// match counter: 1\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tthis._kt_object = this._dc_factory.simpleLiteral(this._s_literal);\n\n\t\t\t\t\t// reset literal\n\t\t\t\t\tthis._s_literal = '';\n\n\t\t\t\t// not datatype, not language tag => that's okay! those are optional\n\t\t\t\t}\n\t\t\t} // brace #1\n\n\n\t\t\t// goto end of statement state\n\t\t\t// at this point, a new statement has been parsed\n\t\t\tthis.data();\n\n\n\t\t\t// goto next parsing state; bail out of stack\n\t\t\treturn this.after_end_of_statement;\n\t\t}\n\n\t\t\t\t// ran out of characters\n\t\t\t\t// update index value\n\t\tthis.i = i;\n\n\t\t// not yet eos\n\t\tif(i < this.n) {\n\t\t\t// expected token was not found\n\t\t\tif(0 === i) {\n\t\t\t\t// we've exceeded the maximum token length\n\t\t\t\tif(this.n > this.max_token_length) {\n\t\t\t\t\treturn this.parse_error('datatype_or_langtag');\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// save state before pausing\n\t\tthis._f_state = this.datatype_or_langtag;\n\n\t\t// store what is unparsed\n\t\tthis.pre = s.slice(i);\n\n\t\t// if we're not parsing a stream, then this is an error\n\t\tif(this.eos) this.eos();\n\t\treturn;\n\t}\n\n\n\n\t// parse state for datatype\n\tdatatype() {\n\t\t// destruct chunk, length, and index\n\t\tlet {s, n, i} = this;\n\n\t\t// start labeled loop, run while there are characters\n\t\twhile(i < n) { // eslint-disable-line no-unmodified-loop-condition\n\t\t\tlet kt_datatype = null;\n\n// prefixed name quick\n\n\t\t\t// prepare sticky regex index\n\t\t\tR_PREFIXED_NAME_QUICK.lastIndex = i;\n\t\t\t// execute regex\n\t\t\tlet m_pnq_datatype = R_PREFIXED_NAME_QUICK.exec(s);\n\n\t\t\t// regex was a match\n\t\t\tif(m_pnq_datatype) {\n\t\t\t\t// advance index\n\t\t\t\tthis.i = R_PREFIXED_NAME_QUICK.lastIndex;\n\t\t\t\t// check valid prefix\n\t\t\t\tlet s_prefix_id = m_pnq_datatype[1] || '';\n\t\t\t\t// invalid prefix\n\t\t\t\tif(!OPHOP.call(this._h_prefixes, s_prefix_id)) return this.error(`no such prefix \"${s_prefix_id}\"`);\n\n\n\t\t\t\t// commit object iri from resolve prefixed name\n\t\t\t\tkt_datatype = this.prefixed_name(s_prefix_id, m_pnq_datatype[2]);\n\n\t\t\t// iriref\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// prepare sticky regex index\n\t\t\t\tR_IRIREF_ESCAPELESS.lastIndex = i;\n\t\t\t\t// execute regex\n\t\t\t\tlet m_iriref_e_datatype = R_IRIREF_ESCAPELESS.exec(s);\n\n\t\t\t\t// regex was a match\n\t\t\t\tif(m_iriref_e_datatype) {\n\t\t\t\t\t// advance index\n\t\t\t\t\tthis.i = R_IRIREF_ESCAPELESS.lastIndex;\n\t\t\t\t\tlet p_datatype;\n\n\t\t\t\t\t// ref iri\n\t\t\t\t\tlet s_iri = m_iriref_e_datatype[1];\n\t\t\t\t\t// absolute iri\n\t\t\t\t\tif(!this._s_base_url || RT_IRI_ABSOLUTE.test(s_iri)) {\n\t\t\t\t\t\t// set p_datatype\n\t\t\t\t\t\tp_datatype = s_iri;\n\t\t\t\t\t}\n\t\t\t\t\t// relative iri\n\t\t\t\t\telse {\n\t\t\t\t\t\tp_datatype = uri.resolve(this._s_base_url, s_iri);\n\t\t\t\t\t}\n\n\t\t\t\t\tkt_datatype = this.check_named_node_escapeless(p_datatype);\n\n\t\t\t\t// prefixed name\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t// try match\n\t\t\t\t\tlet aw_valid_this_match_prefixed_name_escapeless = this.match_prefixed_name_escapeless(s, i);\n\t\t\t\t\t// stack bail out\n\t\t\t\t\tif(!aw_valid_this_match_prefixed_name_escapeless) return true;\n\t\t\t\t\tlet [m_prefixed_named_e_datatype, im_prefixed_named_e_datatype] = aw_valid_this_match_prefixed_name_escapeless;\n\t\t\t\t\tif(m_prefixed_named_e_datatype) {\n\t\t\t\t\t\t// advance index\n\t\t\t\t\t\tthis.i = im_prefixed_named_e_datatype;\n\t\t\t\t\t\t// check valid prefix\n\t\t\t\t\t\tlet s_prefix_id = m_prefixed_named_e_datatype[1] || '';\n\t\t\t\t\t\t// invalid prefix\n\t\t\t\t\t\tif(!OPHOP.call(this._h_prefixes, s_prefix_id)) return this.error(`no such prefix \"${s_prefix_id}\"`);\n\n\n\t\t\t\t\t\tkt_datatype = this.prefixed_name(s_prefix_id, m_prefixed_named_e_datatype[2]);\n\n\t\t\t\t\t// iriref\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\tR_IRIREF.lastIndex = i;\n\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\tlet m_iriref_datatype = R_IRIREF.exec(s);\n\n\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\tif(m_iriref_datatype) {\n\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\tthis.i = R_IRIREF.lastIndex;\n\t\t\t\t\t\t\tlet p_datatype;\n\n\t\t\t\t\t\t\t// ref iri\n\t\t\t\t\t\t\tlet s_iri = m_iriref_e_datatype[1].replace(R_UNICODE_ANY, F_REPLACE_UNICODE_ANY);\n\t\t\t\t\t\t\t// absolute iri\n\t\t\t\t\t\t\tif(!this._s_base_url || RT_IRI_ABSOLUTE.test(s_iri)) {\n\t\t\t\t\t\t\t\t// set p_datatype\n\t\t\t\t\t\t\t\tp_datatype = s_iri;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t// relative iri\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tp_datatype = uri.resolve(this._s_base_url, s_iri);\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\tkt_datatype = this.check_named_node(p_datatype);\n\n\t\t\t\t\t\t// prefixed name\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t// try match\n\t\t\t\t\t\t\tlet aw_valid_this_match_prefixed_name = this.match_prefixed_name(s, i);\n\t\t\t\t\t\t\t// stack bail out\n\t\t\t\t\t\t\tif(!aw_valid_this_match_prefixed_name) return true;\n\t\t\t\t\t\t\tlet [m_prefixed_named_datatype, im_prefixed_named_datatype] = aw_valid_this_match_prefixed_name;\n\t\t\t\t\t\t\tif(m_prefixed_named_datatype) {\n\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\tthis.i = im_prefixed_named_datatype;\n\t\t\t\t\t\t\t\t// check valid prefix\n\t\t\t\t\t\t\t\tlet s_prefix_id = m_prefixed_named_datatype[1] || '';\n\t\t\t\t\t\t\t\t// invalid prefix\n\t\t\t\t\t\t\t\tif(!OPHOP.call(this._h_prefixes, s_prefix_id)) return this.error(`no such prefix \"${s_prefix_id}\"`);\n\n\n\t\t\t\t\t\t\t\t// escape local escapes\n\t\t\t\t\t\t\t\tlet s_suffix = m_prefixed_named_datatype[2]\n\t\t\t\t\t\t\t\t\t.replace(R_UNICODE_ANY, F_REPLACE_UNICODE_ANY)\n\t\t\t\t\t\t\t\t\t.replace(R_PN_LOCAL_ESCAPES, '$1');\n\n\t\t\t\t\t\t\t\t// set literal datatype\n\t\t\t\t\t\t\t\tkt_datatype = this.prefixed_name(s_prefix_id, s_suffix);\n\n\t\t\t// not iriref, not prefixed name\n\t\t\t// match counter: 4\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t// break loop to retry on next chunk if eos\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} // brace #4\n\t\t\t\t\t} // brace #3\n\t\t\t\t} // brace #2\n\t\t\t} // brace #1\n\n\n\t\t\tthis._kt_object = this._dc_factory.datatypedLiteral(this._s_literal, kt_datatype);\n\n\t\t\t// reset literal\n\t\t\tthis._s_literal = '';\n\n\t\t\t// goto end of statement state\n\t\t\t// at this point, a new statement has been parsed\n\t\t\tthis.data();\n\n\n\t\t\t// goto next parsing state; bail out of stack\n\t\t\treturn this.after_end_of_statement;\n\t\t}\n\n\t\t\t\t// ran out of characters\n\t\t\t\t// update index value\n\t\tthis.i = i;\n\n\t\t// not yet eos\n\t\tif(i < this.n) {\n\t\t\t// expected token was not found\n\t\t\tif(0 === i) {\n\t\t\t\t// we've exceeded the maximum token length\n\t\t\t\tif(this.n > this.max_token_length) {\n\t\t\t\t\treturn this.parse_error('datatype');\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// save state before pausing\n\t\tthis._f_state = this.datatype;\n\n\t\t// store what is unparsed\n\t\tthis.pre = s.slice(i);\n\n\t\t// if we're not parsing a stream, then this is an error\n\t\tif(this.eos) this.eos();\n\t\treturn;\n\t}\n\n\n\n\t// parse state for post_object\n\tpost_object() {\n\t\t// destruct chunk, length, and index\n\t\tlet {s, n, i} = this;\n\n\t\t// start labeled loop, run while there are characters\n\t\twhile(i < n) { // eslint-disable-line no-unmodified-loop-condition\n\t\t\tlet i_reset = i;\n\n\t\t\t// benchmarks confirm: character ref faster than regexes in this context\n\t\t\tlet x = s[i];\n\n\t\t\t// advance index to next token beyond delimiter\n\t\t\t// consume whitespace (and incidentally reset index)\n\t\t\tR_WS.lastIndex = i+1;\n\t\t\tR_WS.exec(s);\n\t\t\tthis.i = R_WS.lastIndex;\n\n\t\t\t// ',' more objects\n\t\t\tif(',' === x) {\n\t\t\t\treturn this.object_list();\n\n\t\t\t// ';' more predicate-object pairs\n\t\t\t}\n\t\t\telse \tif(';' === x) {\n\t\t\t\tfor(;;) {\n\t\t\t\t\t// next token is end of outer section\n\t\t\t\t\tlet s_peek = s[this.i];\n\t\t\t\t\tif('.' === s_peek || ']' === s_peek || ';' === s_peek || '}' === s_peek) {\n\t\t\t\t\t\t// goto post_object state\n\t\t\t\t\t\treturn this.post_object();\n\t\t\t\t\t}\n\t\t\t\t\t// comment\n\t\t\t\t\telse if('#' === s_peek) {\n\t\t\t\t\t\t// comment\n\t\t\t\t\t\ti = this.i;\n\n\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\tR_COMMENT.lastIndex = i;\n\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\tlet m_comment = R_COMMENT.exec(s);\n\n\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\tif(m_comment) {\n\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\tthis.i = R_COMMENT.lastIndex;\n\t\t\t\t\t\t\tif(this.emit_comments) this.emit_comments(m_comment[0]);\n\t\t\t\t\t\t\t// retry\n\t\t\t\t\t\t\tcontinue;\n\t\t\t\t\t\t}\n\n\n\t\t\t\t\t\t// no eol to close comment (yet)\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t// already consumed\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t// eos\n\t\t\t\t\telse if(this.i === n) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\t// something else\n\t\t\t\t\telse {\n\t\t\t\t\t\treturn this.pairs();\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// rather than pushing a dedicated state, just try again next chunk\n\t\t\t\ti = i_reset;\n\t\t\t\tbreak;\n\n\t\t\t// '.' end of statement\n\t\t\t}\n\t\t\telse \tif('.' === x) {\n\t\t\t\t// assert not nested\n\t\t\t\tif(this._a_nested.length) {\n\t\t\t\t\t// reset index to that character\n\t\t\t\t\tthis.i = i;\n\n\t\t\t\t\t// emit parse error\n\t\t\t\t\treturn this.parse_error('end_of_property_list');\n\t\t\t\t}\n\n\t\t\t\treturn (this._kt_default_graph === this._kt_graph)? this.block(): this.statement();\n\n\t\t\t// ']' end of property-object pairs\n\t\t\t}\n\t\t\telse \tif(']' === x) {\n\t\t\t\tlet s_resume_state;\n\t\t\t\t[this._kt_subject, this._kt_predicate, s_resume_state] = this._a_nested.pop();\n\t\t\t\treturn this[s_resume_state]();\n\n\t\t\t// ')' end of collection\n\t\t\t}\n\t\t\telse \tif(')' === x) {\n\t\t\t\t// should not be here\n\t\t\t\treturn Reader$syntax_error(this, i, 'post_object', 'but encountered end of collection');\n\n\t\t\t// closing graph '}'\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// prepare sticky regex index\n\t\t\t\tR_CHAR_CLOSE.lastIndex = i;\n\n\t\t\t\tif(R_CHAR_CLOSE.exec(s)) {\n\t\t\t\t\t// advance index\n\t\t\t\t\tthis.i = R_CHAR_CLOSE.lastIndex;\n\t\t\t\t\t// emit graph_close event\n\t\t\t\t\tthis.emit('exit', this._kt_graph);\n\n\t\t\t\t\t// reset graph\n\t\t\t\t\tthis._kt_graph = this._kt_default_graph;\n\n\t\t\t\t\treturn this.block();\n\n\t\t\t\t// comment\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\tR_COMMENT.lastIndex = i;\n\t\t\t\t\t// execute regex\n\t\t\t\t\tlet m_comment = R_COMMENT.exec(s);\n\n\t\t\t\t\t// regex was a match\n\t\t\t\t\tif(m_comment) {\n\t\t\t\t\t\t// advance index\n\t\t\t\t\t\ti = R_COMMENT.lastIndex;\n\t\t\t\t\t\tif(this.emit_comments) this.emit_comments(m_comment[0]);\n\t\t\t\t\t\t// do not change state\n\t\t\t\t\t\tcontinue;\n\n\t\t\t// comment interrupted by eos?\n\t\t\t// match counter: 2\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\t// break loop to retry on next chunk if eos\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t} // brace #2\n\t\t\t} // brace #1\n\t\t}\n\n\t\t\t\t// ran out of characters\n\t\t\t\t// update index value\n\t\tthis.i = i;\n\n\t\t// not yet eos\n\t\tif(i < this.n) {\n\t\t\t// expected token was not found\n\t\t\tif(0 === i) {\n\t\t\t\t// we've exceeded the maximum token length\n\t\t\t\tif(this.n > this.max_token_length) {\n\t\t\t\t\treturn this.parse_error('post_object');\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// save state before pausing\n\t\tthis._f_state = this.post_object;\n\n\t\t// store what is unparsed\n\t\tthis.pre = s.slice(i);\n\n\t\t// if we're not parsing a stream, then this is an error\n\t\tif(this.eos) this.eos();\n\t\treturn;\n\t}\n\n\n\n\t// parse state for base_iri\n\tbase_iri() {\n\t\t// destruct chunk, length, and index\n\t\tlet {s, n, i} = this;\n\n\t\t// start labeled loop, run while there are characters\n\t\twhile(i < n) { // eslint-disable-line no-unmodified-loop-condition\n// prefix id\n\n\t\t\t// prepare sticky regex index\n\t\t\tR_IRIREF_ESCAPELESS.lastIndex = i;\n\t\t\t// execute regex\n\t\t\tlet m_iriref_e_base = R_IRIREF_ESCAPELESS.exec(s);\n\n\t\t\t// regex was a match\n\t\t\tif(m_iriref_e_base) {\n\t\t\t\t// advance index\n\t\t\t\tthis.i = R_IRIREF_ESCAPELESS.lastIndex;\n\n\t\t\t\t// ref iri\n\t\t\t\tlet s_iri = m_iriref_e_base[1];\n\t\t\t\t// absolute iri\n\t\t\t\tif(!this._s_base_url || RT_IRI_ABSOLUTE.test(s_iri)) {\n\t\t\t\t\t// set base_url\n\t\t\t\t\tthis._s_base_url = s_iri;\n\t\t\t\t}\n\t\t\t\t// relative iri\n\t\t\t\telse {\n\t\t\t\t\tthis._s_base_url = uri.resolve(this._s_base_url, s_iri);\n\t\t\t\t}\t\tlet m_base_iri = R_BASE_IRI.exec(this._s_base_url);\n\t\t\t\tthis._s_base_url = m_base_iri[1];\n\t\t\t\tthis._s_base_url_root = m_base_iri[2] || '';\n\t\t\t\tthis._s_base_url_scheme = m_base_iri[3] || '';\n\t\t\t\tthis._s_base_url_path = m_base_iri[4] || '';\n\n\n\t\t\t\t// emit base event\n\t\t\t\tthis.emit('base', this._s_base_url);\n\n\t\t\t\tif(this._b_expecting_full_stop) {\n\t\t\t\t\t// change state\n\t\t\t\t\treturn this.full_stop();\n\t\t\t\t}\n\n\t\t\t\t// goto prefix iri state\n\t\t\t\treturn this.block();\n\n\t\t\t// prefix id\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// prepare sticky regex index\n\t\t\t\tR_IRIREF.lastIndex = i;\n\t\t\t\t// execute regex\n\t\t\t\tlet m_iriref_base = R_IRIREF.exec(s);\n\n\t\t\t\t// regex was a match\n\t\t\t\tif(m_iriref_base) {\n\t\t\t\t\t// advance index\n\t\t\t\t\tthis.i = R_IRIREF.lastIndex;\n\n\t\t\t\t\t// ref iri\n\t\t\t\t\tlet s_iri = m_iriref_base[1].replace(R_UNICODE_ANY, F_REPLACE_UNICODE_ANY);\n\t\t\t\t\t// absolute iri\n\t\t\t\t\tif(!this._s_base_url || RT_IRI_ABSOLUTE.test(s_iri)) {\n\t\t\t\t\t\t// set base_url\n\t\t\t\t\t\tthis._s_base_url = s_iri;\n\t\t\t\t\t}\n\t\t\t\t\t// relative iri\n\t\t\t\t\telse {\n\t\t\t\t\t\tthis._s_base_url = uri.resolve(this._s_base_url, s_iri);\n\t\t\t\t\t}\t\tlet m_base_iri = R_BASE_IRI.exec(this._s_base_url);\n\t\t\t\t\tthis._s_base_url = m_base_iri[1];\n\t\t\t\t\tthis._s_base_url_root = m_base_iri[2] || '';\n\t\t\t\t\tthis._s_base_url_scheme = m_base_iri[3] || '';\n\t\t\t\t\tthis._s_base_url_path = m_base_iri[4] || '';\n\n\n\t\t\t\t\t// emit base event\n\t\t\t\t\tthis.emit('base', this._s_base_url);\n\n\t\t\t\t\tif(this._b_expecting_full_stop) {\n\t\t\t\t\t\t// change state\n\t\t\t\t\t\treturn this.full_stop();\n\t\t\t\t\t}\n\n\t\t\t\t\t// goto prefix iri state\n\t\t\t\t\treturn this.block();\n\n\t\t\t\t// for poorly-placed comments\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\tR_COMMENT.lastIndex = i;\n\t\t\t\t\t// execute regex\n\t\t\t\t\tlet m_comment = R_COMMENT.exec(s);\n\n\t\t\t\t\t// regex was a match\n\t\t\t\t\tif(m_comment) {\n\t\t\t\t\t\t// advance index\n\t\t\t\t\t\ti = R_COMMENT.lastIndex;\n\t\t\t\t\t\tif(this.emit_comments) this.emit_comments(m_comment[0]);\n\t\t\t\t\t\t// do not change state\n\t\t\t\t\t\tcontinue;\n\n\t\t\t\t\t// match counter: 2\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\t// break loop to retry on next chunk if eos\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t} // brace #2\n\t\t\t} // brace #1\n\t\t}\n\n\t\t\t\t// ran out of characters\n\t\t\t\t// update index value\n\t\tthis.i = i;\n\n\t\t// not yet eos\n\t\tif(i < this.n) {\n\t\t\t// expected token was not found\n\t\t\tif(0 === i) {\n\t\t\t\t// we've exceeded the maximum token length\n\t\t\t\tif(this.n > this.max_token_length) {\n\t\t\t\t\treturn this.parse_error('base_iri');\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// save state before pausing\n\t\tthis._f_state = this.base_iri;\n\n\t\t// store what is unparsed\n\t\tthis.pre = s.slice(i);\n\n\t\t// if we're not parsing a stream, then this is an error\n\t\tif(this.eos) this.eos();\n\t\treturn;\n\t}\n\n\n\n\t// parse state for prefix_id\n\tprefix_id() {\n\t\t// destruct chunk, length, and index\n\t\tlet {s, n, i} = this;\n\n\t\t// start labeled loop, run while there are characters\n\t\twhile(i < n) { // eslint-disable-line no-unmodified-loop-condition\n// prefix id\n\n\t\t\t// prepare sticky regex index\n\t\t\tR_PREFIX_ID.lastIndex = i;\n\t\t\t// execute regex\n\t\t\tlet m_prefix_id = R_PREFIX_ID.exec(s);\n\n\t\t\t// regex was a match\n\t\t\tif(m_prefix_id) {\n\t\t\t\t// advance index\n\t\t\t\tthis.i = R_PREFIX_ID.lastIndex;\n\t\t\t\t// set temp prefix id\n\t\t\t\tthis._s_temp_prefix_id = m_prefix_id[1];\n\n\t\t\t\t// goto prefix iri state\n\t\t\t\treturn this.prefix_iri();\n\n\t\t\t// for poorly-placed comments\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// prepare sticky regex index\n\t\t\t\tR_COMMENT.lastIndex = i;\n\t\t\t\t// execute regex\n\t\t\t\tlet m_comment = R_COMMENT.exec(s);\n\n\t\t\t\t// regex was a match\n\t\t\t\tif(m_comment) {\n\t\t\t\t\t// advance index\n\t\t\t\t\ti = R_COMMENT.lastIndex;\n\t\t\t\t\tif(this.emit_comments) this.emit_comments(m_comment[0]);\n\t\t\t\t\t// do not change state\n\t\t\t\t\tcontinue;\n\n\t\t\t\t// match counter: 1\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t// break loop to retry on next chunk if eos\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t} // brace #1\n\t\t}\n\n\t\t\t\t// ran out of characters\n\t\t\t\t// update index value\n\t\tthis.i = i;\n\n\t\t// not yet eos\n\t\tif(i < this.n) {\n\t\t\t// expected token was not found\n\t\t\tif(0 === i) {\n\t\t\t\t// we've exceeded the maximum token length\n\t\t\t\tif(this.n > this.max_token_length) {\n\t\t\t\t\treturn this.parse_error('prefix_id');\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// save state before pausing\n\t\tthis._f_state = this.prefix_id;\n\n\t\t// store what is unparsed\n\t\tthis.pre = s.slice(i);\n\n\t\t// if we're not parsing a stream, then this is an error\n\t\tif(this.eos) this.eos();\n\t\treturn;\n\t}\n\n\n\n\t// parse state for prefix_iri\n\tprefix_iri() {\n\t\t// destruct chunk, length, and index\n\t\tlet {s, n, i} = this;\n\n\t\t// start labeled loop, run while there are characters\n\t\twhile(i < n) { // eslint-disable-line no-unmodified-loop-condition\n\t\t\tlet h_prefixes = this._h_prefixes;\n\t\t\tlet s_prefix_id = this._s_temp_prefix_id;\n\t\t\tlet p_prefix_iri;\n\n// prefix iri\n\n\t\t\t// prepare sticky regex index\n\t\t\tR_IRIREF_ESCAPELESS.lastIndex = i;\n\t\t\t// execute regex\n\t\t\tlet m_iriref_e_prefix = R_IRIREF_ESCAPELESS.exec(s);\n\n\t\t\t// regex was a match\n\t\t\tif(m_iriref_e_prefix) {\n\t\t\t\t// advance index\n\t\t\t\tthis.i = R_IRIREF_ESCAPELESS.lastIndex;\n\n\t\t\t\t// ref iri\n\t\t\t\tlet s_iri = m_iriref_e_prefix[1];\n\t\t\t\t// absolute iri\n\t\t\t\tif(!this._s_base_url || RT_IRI_ABSOLUTE.test(s_iri)) {\n\t\t\t\t\t// set p_prefix_iri\n\t\t\t\t\tp_prefix_iri = s_iri;\n\t\t\t\t}\n\t\t\t\t// relative iri\n\t\t\t\telse {\n\t\t\t\t\tp_prefix_iri = uri.resolve(this._s_base_url, s_iri);\n\t\t\t\t}\n\n\t\t\t\tlet b_relax = this._b_relax;\n\n// existing mapping\n\n\t\t\t\tif(s_prefix_id in h_prefixes) {\n\t\t\t\t\t// doesn't match existing\n\t\t\t\t\tif(p_prefix_iri !== h_prefixes[s_prefix_id]) {\n\t\t\t\t\t\t// emit change event\n\t\t\t\t\t\tif(this.prefix_change) {\n\t\t\t\t\t\t\tthis.prefix_change(s_prefix_id, h_prefixes[s_prefix_id], p_prefix_iri);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// update prefix\n\t\t\t\t\t\th_prefixes[s_prefix_id] = p_prefix_iri;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t// first mapping\n\t\t\t\telse {\n\t\t\t\t\t// check namespace, invalid\n\t\t\t\t\tif(!b_relax && !RT_PREFIXED_NAME_NAMESPACE_VALID.test(s_prefix_id)) {\n\t\t\t\t\t\treturn this.error(`Invalid namespace for prefixed name: \"${s_prefix_id}:\"`);\n\t\t\t\t\t}\n\n\t\t\t\t\t// set prefix\n\t\t\t\t\th_prefixes[s_prefix_id] = p_prefix_iri;\n\t\t\t\t}\n\n\t\t\t\t// check iri, invalid\n\t\t\t\tif(!b_relax && !RT_NAMED_NODE_VALID.test(p_prefix_iri)) {\n\t\t\t\t\treturn this.error(`Invalid IRI found in prefix delcaration: \"${s_iri}\"`);\n\t\t\t\t}\n\n\t\t\t\t// emit prefix event\n\t\t\t\tthis.event('prefix', s_prefix_id, p_prefix_iri);\n\n\t\t\t\tif(this._b_expecting_full_stop) {\n\t\t\t\t\t// change state\n\t\t\t\t\treturn this.full_stop();\n\t\t\t\t}\n\n\t\t\t\t// goto statement state\n\t\t\t\treturn this.block();\n\n\t\t\t// prefix iri\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// prepare sticky regex index\n\t\t\t\tR_IRIREF.lastIndex = i;\n\t\t\t\t// execute regex\n\t\t\t\tlet m_iriref_prefix = R_IRIREF.exec(s);\n\n\t\t\t\t// regex was a match\n\t\t\t\tif(m_iriref_prefix) {\n\t\t\t\t\t// advance index\n\t\t\t\t\tthis.i = R_IRIREF.lastIndex;\n\n\t\t\t\t\t// ref iri\n\t\t\t\t\tlet s_iri = m_iriref_prefix[1].replace(R_UNICODE_ANY, F_REPLACE_UNICODE_ANY);\n\t\t\t\t\t// absolute iri\n\t\t\t\t\tif(!this._s_base_url || RT_IRI_ABSOLUTE.test(s_iri)) {\n\t\t\t\t\t\t// set p_prefix_iri\n\t\t\t\t\t\tp_prefix_iri = s_iri;\n\t\t\t\t\t}\n\t\t\t\t\t// relative iri\n\t\t\t\t\telse {\n\t\t\t\t\t\tp_prefix_iri = uri.resolve(this._s_base_url, s_iri);\n\t\t\t\t\t}\n\n\t\t\t\t\tlet b_relax = this._b_relax;\n\n// existing mapping\n\n\t\t\t\t\tif(s_prefix_id in h_prefixes) {\n\t\t\t\t\t\t// doesn't match existing\n\t\t\t\t\t\tif(p_prefix_iri !== h_prefixes[s_prefix_id]) {\n\t\t\t\t\t\t\t// emit change event\n\t\t\t\t\t\t\tif(this.prefix_change) {\n\t\t\t\t\t\t\t\tthis.prefix_change(s_prefix_id, h_prefixes[s_prefix_id], p_prefix_iri);\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// update prefix\n\t\t\t\t\t\t\th_prefixes[s_prefix_id] = p_prefix_iri;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t// first mapping\n\t\t\t\t\telse {\n\t\t\t\t\t\t// check namespace, invalid\n\t\t\t\t\t\tif(!b_relax && !RT_PREFIXED_NAME_NAMESPACE_VALID.test(s_prefix_id)) {\n\t\t\t\t\t\t\treturn this.error(`Invalid namespace for prefixed name: \"${s_prefix_id}:\"`);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// set prefix\n\t\t\t\t\t\th_prefixes[s_prefix_id] = p_prefix_iri;\n\t\t\t\t\t}\n\n\t\t\t\t\t// check iri, invalid\n\t\t\t\t\tif(!b_relax && !RT_NAMED_NODE_VALID.test(p_prefix_iri)) {\n\t\t\t\t\t\treturn this.error(`Invalid IRI found in prefix delcaration: \"${s_iri}\"`);\n\t\t\t\t\t}\n\n\t\t\t\t\t// emit prefix event\n\t\t\t\t\tthis.event('prefix', s_prefix_id, p_prefix_iri);\n\n\t\t\t\t\tif(this._b_expecting_full_stop) {\n\t\t\t\t\t\t// change state\n\t\t\t\t\t\treturn this.full_stop();\n\t\t\t\t\t}\n\n\t\t\t\t\t// goto statement state\n\t\t\t\t\treturn this.block();\n\n\t\t\t\t// for poorly-placed comments\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\tR_COMMENT.lastIndex = i;\n\t\t\t\t\t// execute regex\n\t\t\t\t\tlet m_comment = R_COMMENT.exec(s);\n\n\t\t\t\t\t// regex was a match\n\t\t\t\t\tif(m_comment) {\n\t\t\t\t\t\t// advance index\n\t\t\t\t\t\ti = R_COMMENT.lastIndex;\n\t\t\t\t\t\tif(this.emit_comments) this.emit_comments(m_comment[0]);\n\t\t\t\t\t\t// do not change state\n\t\t\t\t\t\tcontinue;\n\n\t\t\t\t\t// match counter: 2\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\t// break loop to retry on next chunk if eos\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t} // brace #2\n\t\t\t} // brace #1\n\t\t}\n\n\t\t\t\t// ran out of characters\n\t\t\t\t// update index value\n\t\tthis.i = i;\n\n\t\t// not yet eos\n\t\tif(i < this.n) {\n\t\t\t// expected token was not found\n\t\t\tif(0 === i) {\n\t\t\t\t// we've exceeded the maximum token length\n\t\t\t\tif(this.n > this.max_token_length) {\n\t\t\t\t\treturn this.parse_error('prefix_iri');\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// save state before pausing\n\t\tthis._f_state = this.prefix_iri;\n\n\t\t// store what is unparsed\n\t\tthis.pre = s.slice(i);\n\n\t\t// if we're not parsing a stream, then this is an error\n\t\tif(this.eos) this.eos();\n\t\treturn;\n\t}\n\n\n// in case eos happens twice during prefix / base (extremely unlikely)\n\n\n\t// parse state for full_stop\n\tfull_stop() {\n\t\t// destruct chunk, length, and index\n\t\tlet {s, n, i} = this;\n\n\t\t// start labeled loop, run while there are characters\n\t\twhile(i < n) { // eslint-disable-line no-unmodified-loop-condition\n\t\t\t// prepare sticky regex index\n\t\t\tR_CHAR_STOP.lastIndex = i;\n\n\t\t\tif(R_CHAR_STOP.exec(s)) {\n\t\t\t\t// advance index\n\t\t\t\tthis.i = R_CHAR_STOP.lastIndex;\n\t\t\t\t// resume statement\n\t\t\t\treturn this.block();\n\n\t\t\t// poorly-placed comment\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// prepare sticky regex index\n\t\t\t\tR_COMMENT.lastIndex = i;\n\t\t\t\t// execute regex\n\t\t\t\tlet m_comment = R_COMMENT.exec(s);\n\n\t\t\t\t// regex was a match\n\t\t\t\tif(m_comment) {\n\t\t\t\t\t// advance index\n\t\t\t\t\ti = R_COMMENT.lastIndex;\n\t\t\t\t\tif(this.emit_comments) this.emit_comments(m_comment[0]);\n\t\t\t\t\t// try again\n\t\t\t\t\tcontinue;\n\n\t\t\t// possibly interrupted by eos\n\t\t\t// match counter: 1\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t// break loop to retry on next chunk if eos\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t} // brace #1\n\t\t}\n\n\t\t\t\t// ran out of characters\n\t\t\t\t// update index value\n\t\tthis.i = i;\n\n\t\t// not yet eos\n\t\tif(i < this.n) {\n\t\t\t// expected token was not found\n\t\t\tif(0 === i) {\n\t\t\t\t// we've exceeded the maximum token length\n\t\t\t\tif(this.n > this.max_token_length) {\n\t\t\t\t\treturn this.parse_error('full_stop');\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// save state before pausing\n\t\tthis._f_state = this.full_stop;\n\n\t\t// store what is unparsed\n\t\tthis.pre = s.slice(i);\n\n\t\t// if we're not parsing a stream, then this is an error\n\t\tif(this.eos) this.eos();\n\t\treturn;\n\t}\n\n\n\n\t// parse state for collection_subject\n\tcollection_subject() {\n\t\t// destruct chunk, length, and index\n\t\tlet {s, n, i} = this;\n\n\t\t// start labeled loop, run while there are characters\n\t\twhile(i < n) { // eslint-disable-line no-unmodified-loop-condition\n\t\t\t// ref char\n\t\t\tlet x = s[i];\n\n\t\t\t// end of collection\n\t\t\tif(')' === x) {\n\t\t\t\t// consume whitespace (and incidentally reset index)\n\t\t\t\tR_WS.lastIndex = i+1;\n\t\t\t\tR_WS.exec(s);\n\t\t\t\tthis.i = R_WS.lastIndex;\n\n\t\t\t\t// no items in collection subject\n\t\t\t\tif(null === this._kt_subject) {\n\t\t\t\t\t// prepare subject\n\t\t\t\t\tthis._kt_subject = this._kt_rdf_nil;\n\n\t\t\t\t\t// state was never pushed to stack, jump to post_subject state\n\t\t\t\t\treturn this.post_blank_subject();\n\t\t\t\t}\n// otherwise, there must be items in collection\n\n\t\t\t\t// commit collection end\n\t\t\t\tthis._kt_object = this._kt_rdf_nil;\n\t\t\t\tthis.data();\n\n\n\t\t\t\t// restore state from stack\n\t\t\t\tlet s_resume_state;\n\t\t\t\t[this._kt_subject, this._kt_predicate, s_resume_state] = this._a_nested.pop();\n\t\t\t\treturn this[s_resume_state]();\n\t\t\t}\n\n\n\n\t\t\t// otherwise, pre-emptively secure the next blank node label\n\t\t\tlet s_pointer_label;\n\n\t\t\t// very first collection object\n\t\t\tlet b_pushed = false;\n\t\t\tif(null === this._kt_subject) {\n\t\t\t\t// set quasi subject (really for resume state)\n\t\t\t\ts_pointer_label = this.next_label();\n\t\t\t\tthis._kt_subject = this.anonymous_blank_node(s_pointer_label);\n\t\t\t\tthis._a_nested.push([this._kt_subject, this._kt_predicate, 'pairs']);\n\t\t\t\t// reset subject for later conditional branch\n\t\t\t\tthis._kt_subject = null;\n\t\t\t\tb_pushed = true;\n\t\t\t}\n\n// iriref\n\n\t\t\t// prepare sticky regex index\n\t\t\tR_IRIREF_ESCAPELESS.lastIndex = i;\n\t\t\t// execute regex\n\t\t\tlet m_iriref_e_object = R_IRIREF_ESCAPELESS.exec(s);\n\n\t\t\t// regex was a match\n\t\t\tif(m_iriref_e_object) {\n\t\t\t\t// advance index\n\t\t\t\ti = R_IRIREF_ESCAPELESS.lastIndex;\n\n\t\t\t\t// ref iri\n\t\t\t\tlet s_iri = m_iriref_e_object[1];\n\t\t\t\t// absolute iri\n\t\t\t\tif(!this._s_base_url || RT_IRI_ABSOLUTE.test(s_iri)) {\n\t\t\t\t\t// set object\n\t\t\t\t\tthis._kt_object = this.check_named_node_escapeless(s_iri);\n\t\t\t\t}\n\t\t\t\t// relative iri\n\t\t\t\telse {\n\t\t\t\t\tthis._kt_object = this.check_named_node_escapeless(uri.resolve(this._s_base_url, s_iri));\n\t\t\t\t}\n\n\t\t\t// prefixed name\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// try match\n\t\t\t\tlet aw_valid_this_match_prefixed_name_escapeless = this.match_prefixed_name_escapeless(s, i);\n\t\t\t\t// stack bail out\n\t\t\t\tif(!aw_valid_this_match_prefixed_name_escapeless) return true;\n\t\t\t\tlet [m_prefixed_named_e_object, im_prefixed_named_e_object] = aw_valid_this_match_prefixed_name_escapeless;\n\t\t\t\tif(m_prefixed_named_e_object) {\n\t\t\t\t\t// advance index\n\t\t\t\t\ti = im_prefixed_named_e_object;\n\t\t\t\t\t// check valid prefix\n\t\t\t\t\tlet s_prefix_id = m_prefixed_named_e_object[1] || '';\n\t\t\t\t\t// invalid prefix\n\t\t\t\t\tif(!OPHOP.call(this._h_prefixes, s_prefix_id)) return this.error(`no such prefix \"${s_prefix_id}\"`);\n\n\n\t\t\t\t\t// commit object iri from resolve prefixed name\n\t\t\t\t\tthis._kt_object = this.prefixed_name(s_prefix_id, m_prefixed_named_e_object[2]);\n\n\t\t\t\t// string literal\n\t\t\t\t}\n\t\t\t\telse \tif('\"' === x || '\\'' === x) {\n\t\t\t\t\t// first item in list\n\t\t\t\t\tif(null === this._kt_subject) {\n\t\t\t\t\t\ts_pointer_label = this.next_label();\n\t\t\t\t\t\tthis._kt_subject = this.anonymous_blank_node(s_pointer_label);\n\t\t\t\t\t\tthis._kt_predicate = this._kt_rdf_first;\n\t\t\t\t\t}\n\t\t\t\t\t// not first item in list\n\t\t\t\t\telse {\n\t\t\t\t\t\t// make nest list item\n\t\t\t\t\t\ts_pointer_label = this.next_label();\n\t\t\t\t\t\tlet kt_blank_node = this._kt_object = this.anonymous_blank_node(s_pointer_label);\n\t\t\t\t\t\tthis.data();\n\n\n\t\t\t\t\t\t// setup for object literal\n\t\t\t\t\t\tthis._kt_subject = kt_blank_node;\n\t\t\t\t\t\tthis._kt_predicate = this._kt_rdf_first;\n\t\t\t\t\t}\n\n\t\t\t\t\t// how to resume collection subject state after object literal\n\t\t\t\t\tthis.after_end_of_statement = function() {\n\t\t\t\t\t\tthis._kt_predicate = this._kt_rdf_rest;\n\t\t\t\t\t\tthis.after_end_of_statement = this.post_object;\n\t\t\t\t\t\treturn this.collection_subject();\n\t\t\t\t\t};\n\t\t\t\t\treturn this.string_literal();\n\n\t\t\t\t// numeric literal\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\tR_NUMERIC_LITERAL.lastIndex = i;\n\t\t\t\t\t// execute regex\n\t\t\t\t\tlet m_numeric_literal = R_NUMERIC_LITERAL.exec(s);\n\n\t\t\t\t\t// regex was a match\n\t\t\t\t\tif(m_numeric_literal) {\n\t\t\t\t\t\t// advance index\n\t\t\t\t\t\ti = R_NUMERIC_LITERAL.lastIndex;\n\t\t\t\t\t\t// it has exponent term, xsd:double\n\t\t\t\t\t\tif(m_numeric_literal[4]) {\n\t\t\t\t\t\t\tthis._kt_object = this._dc_factory.double(m_numeric_literal[1]);\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// contains decimal point, xsd:decimal\n\t\t\t\t\t\telse if(m_numeric_literal[2] || m_numeric_literal[3]) {\n\t\t\t\t\t\t\tthis._kt_object = this._dc_factory.decimal(m_numeric_literal[1]);\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// otherwise, it is an integer\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tthis._kt_object = this._dc_factory.integer(m_numeric_literal[1]);\n\t\t\t\t\t\t}\n\n\n\t\t\t\t\t// boolean literal\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\tR_BOOLEAN_LITERAL.lastIndex = i;\n\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\tlet m_boolean_literal = R_BOOLEAN_LITERAL.exec(s);\n\n\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\tif(m_boolean_literal) {\n\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\ti = R_BOOLEAN_LITERAL.lastIndex;\n\t\t\t\t\t\t\t// make literal\n\t\t\t\t\t\t\tthis._kt_object = this._dc_factory.boolean(!!m_boolean_literal[1]);\n\n\t\t\t\t\t\t// blank node property list\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse \tif('[' === x) {\n\t\t\t\t// advance index to next token\n\t\t\t\t// consume whitespace (and incidentally reset index)\n\t\t\t\t\t\t\tR_WS.lastIndex = i+1;\n\t\t\t\t\t\t\tR_WS.exec(s);\n\t\t\t\t\t\t\tthis.i = R_WS.lastIndex;\n\n\t\t\t\t\t\t\t// this blank node is just the next item in the list\n\t\t\t\t\t\t\ts_pointer_label = this.next_label();\n\t\t\t\t\t\t\tlet kt_blank_node;\n\t\t\t\t\t\t\tif(null !== this._kt_subject) {\n\t\t\t\t\t\t\t\tkt_blank_node = this._kt_object = this.anonymous_blank_node(s_pointer_label);\n\t\t\t\t\t\t\t\tthis.data();\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// subject needs to be set\n\t\t\t\t\t\t\tthis._kt_subject = kt_blank_node || this.anonymous_blank_node(s_pointer_label);\n\t\t\t\t\t\t\tthis._kt_predicate = this._kt_rdf_first;\n\t\t\t\t\t\t\tlet s_label = this.next_label();\n\t\t\t\t\t\t\tkt_blank_node = this._kt_object = this.anonymous_blank_node(s_label);\n\t\t\t\t\t\t\tthis.data();\n\n\n\t\t\t\t\t\t\t// when resume\n\t\t\t\t\t\t\tthis._kt_predicate = this._kt_rdf_rest;\n\n\t\t\t\t\t\t\t// push state\n\t\t\t\t\t\t\tthis._a_nested.push([this._kt_subject, this._kt_predicate, 'collection_subject']);\n\n\t\t\t\t\t\t\t// prepare next triple\n\t\t\t\t\t\t\tthis._kt_subject = kt_blank_node;\n\n\t\t\t\t\t\t\t// goto parsing pairs state\n\t\t\t\t\t\t\treturn this.pairs();\n\n\t\t\t\t\t\t// new collection\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse \tif('(' === x) {\n\t\t\t\t\t\t\t// consume whitespace (and incidentally reset index)\n\t\t\t\t\t\t\tR_WS.lastIndex = i+1;\n\t\t\t\t\t\t\tR_WS.exec(s);\n\t\t\t\t\t\t\ti = R_WS.lastIndex;\n\n\t\t\t\t\t\t\t// empty collection\n\t\t\t\t\t\t\tif(')' === s[i]) {\n\t\t\t\t\t\t\t\tthis.i = i;\n\t\t\t\t\t\t\t\tthis._kt_subject = this._a_nested[this._a_nested.length-1][0];\n\t\t\t\t\t\t\t\tthis._kt_predicate = this._kt_rdf_first;\n\t\t\t\t\t\t\t\tthis._a_nested.push([\n\t\t\t\t\t\t\t\t\tthis._kt_subject,\n\t\t\t\t\t\t\t\t\tthis._kt_rdf_rest,\n\t\t\t\t\t\t\t\t\t'collection_subject',\n\t\t\t\t\t\t\t\t]);\n\t\t\t\t\t\t\t\treturn this.collection_object();\n\t\t\t\t\t\t\t}\n\n\n\n\t\t\t\t\t\t\t// commit list item pointer\n\t\t\t\t\t\t\ts_pointer_label = this.next_label();\n\t\t\t\t\t\t\tlet kt_blank_node = this._kt_object = this.anonymous_blank_node(s_pointer_label);\n\t\t\t\t\t\t\tthis.data();\n\n\n\t\t\t\t\t\t\t// add this list as an item to the outer list\n\t\t\t\t\t\t\tthis._kt_subject = kt_blank_node;\n\t\t\t\t\t\t\tthis._kt_predicate = this._kt_rdf_rest;\n\t\t\t\t\t\t\tthis._a_nested.push([this._kt_subject, this._kt_predicate, 'collection_object']);\n\n\t\t\t\t\t\t\t// prepare next triple\n\t\t\t\t\t\t\tthis._kt_predicate = this._kt_rdf_first;\n\n\n\n\t\t\t\t\t\t\t// flowing\n\t\t\t\t\t\t\tcontinue;\n\n\t\t\t\t\t\t// labeled blank node\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\tR_BLANK_NODE_LABEL.lastIndex = i;\n\t\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\t\tlet m_blank_node_label_object = R_BLANK_NODE_LABEL.exec(s);\n\n\t\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\t\tif(m_blank_node_label_object) {\n\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\ti = R_BLANK_NODE_LABEL.lastIndex;\n\t\t\t\t\t\t\t\t// ref blank node label\n\t\t\t\t\t\t\t\tlet s_label = m_blank_node_label_object[1];\n\n\t\t\t\t\t\t\t\t// make object\n\t\t\t\t\t\t\t\tthis._kt_object = this.blank_node(s_label);\n\n\t\t\t\t\t\t\t// iriref\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\t\tR_IRIREF.lastIndex = i;\n\t\t\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\t\t\tlet m_iriref_object = R_IRIREF.exec(s);\n\n\t\t\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\t\t\tif(m_iriref_object) {\n\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\ti = R_IRIREF.lastIndex;\n\n\t\t\t\t\t\t\t\t\t// ref iri\n\t\t\t\t\t\t\t\t\tlet s_iri = m_iriref_object[1].replace(R_UNICODE_ANY, F_REPLACE_UNICODE_ANY);\n\t\t\t\t\t\t\t\t\t// absolute iri\n\t\t\t\t\t\t\t\t\tif(!this._s_base_url || RT_IRI_ABSOLUTE.test(s_iri)) {\n\t\t\t\t\t\t\t\t\t\t// set object\n\t\t\t\t\t\t\t\t\t\tthis._kt_object = this.check_named_node(s_iri);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t// relative iri\n\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\tthis._kt_object = this.check_named_node(uri.resolve(this._s_base_url, s_iri));\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// prefixed name\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t// try match\n\t\t\t\t\t\t\t\t\tlet aw_valid_this_match_prefixed_name = this.match_prefixed_name(s, i);\n\t\t\t\t\t\t\t\t\t// stack bail out\n\t\t\t\t\t\t\t\t\tif(!aw_valid_this_match_prefixed_name) return true;\n\t\t\t\t\t\t\t\t\tlet [m_prefixed_named_object, im_prefixed_named_object] = aw_valid_this_match_prefixed_name;\n\t\t\t\t\t\t\t\t\tif(m_prefixed_named_object) {\n\t\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\t\ti = im_prefixed_named_object;\n\t\t\t\t\t\t\t\t\t\t// check valid prefix\n\t\t\t\t\t\t\t\t\t\tlet s_prefix_id = m_prefixed_named_object[1] || '';\n\t\t\t\t\t\t\t\t\t\t// invalid prefix\n\t\t\t\t\t\t\t\t\t\tif(!OPHOP.call(this._h_prefixes, s_prefix_id)) return this.error(`no such prefix \"${s_prefix_id}\"`);\n\n\n\t\t\t\t\t\t\t\t\t\t// escape local escapes\n\t\t\t\t\t\t\t\t\t\tlet s_suffix = m_prefixed_named_object[2]\n\t\t\t\t\t\t\t\t\t\t\t.replace(R_UNICODE_ANY, F_REPLACE_UNICODE_ANY)\n\t\t\t\t\t\t\t\t\t\t\t.replace(R_PN_LOCAL_ESCAPES, '$1');\n\n\t\t\t\t\t\t\t\t\t\t// commit object iri from resolve prefixed name\n\t\t\t\t\t\t\t\t\t\tthis._kt_object = this.prefixed_name(s_prefix_id, s_suffix);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\t\t\t\tR_COMMENT.lastIndex = i;\n\t\t\t\t\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\t\t\t\t\tlet m_comment = R_COMMENT.exec(s);\n\n\t\t\t\t\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\t\t\t\t\tif(m_comment) {\n\t\t\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\t\t\ti = R_COMMENT.lastIndex;\n\t\t\t\t\t\t\t\t\t\t\tif(this.emit_comments) this.emit_comments(m_comment[0]);\n\t\t\t\t\t\t\t\t\t\t\tcontinue;\n\n\t\t\t// not iriref, not prefixed name, not string literal, not numeric literal, not boolean literal, not blank node property list, not collection\n\t\t\t// match counter: 7\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t\t// ran out of characters after pushing state, pop it\n\t\t\t\t\t\t\t\t\t\t\tif(b_pushed) this._a_nested.pop();\n\n\t\t\t\t\t\t\t\t\t\t\t// break loop to retry on next chunk if eos\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t} // brace #7\n\t\t\t\t\t\t\t\t} // brace #6\n\t\t\t\t\t\t\t} // brace #5\n\t\t\t\t\t\t} // brace #4\n\t\t\t\t\t} // brace #3\n\t\t\t\t} // brace #2\n\t\t\t} // brace #1\n\n\n\t\t\tlet kt_blank_node_outer;\n\t\t\tif(!s_pointer_label) s_pointer_label = this.next_label();\n\n\t\t\t// not the very first item of collection subject\n\t\t\tif(this._kt_subject !== null) {\n\t\t\t\t// ref object\n\t\t\t\tlet w_object = this._kt_object;\n\n\t\t\t\t// create blanknode to embed list\n\t\t\t\tkt_blank_node_outer = this._kt_object = this.anonymous_blank_node(s_pointer_label);\n\n\t\t\t\t// emit statement that functions as collection's head \"pointer\"\n\t\t\t\tthis.data();\n\n\n\t\t\t\t// swap back object\n\t\t\t\tthis._kt_object = w_object;\n\t\t\t}\n\n\t\t\t// emit statement that is item\n\t\t\tthis._kt_subject = kt_blank_node_outer || this.anonymous_blank_node(s_pointer_label);\n\t\t\tthis._kt_predicate = this._kt_rdf_first;\n\t\t\tthis.data();\n\n\n\t\t\t// prepare next predicate\n\t\t\tthis._kt_predicate = this._kt_rdf_rest;\n\t\t}\n\n\t\t\t\t// ran out of characters\n\t\t\t\t// update index value\n\t\tthis.i = i;\n\n\t\t// not yet eos\n\t\tif(i < this.n) {\n\t\t\t// expected token was not found\n\t\t\tif(0 === i) {\n\t\t\t\t// we've exceeded the maximum token length\n\t\t\t\tif(this.n > this.max_token_length) {\n\t\t\t\t\treturn this.parse_error('collection_subject');\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// save state before pausing\n\t\tthis._f_state = this.collection_subject;\n\n\t\t// store what is unparsed\n\t\tthis.pre = s.slice(i);\n\n\t\t// if we're not parsing a stream, then this is an error\n\t\tif(this.eos) this.eos();\n\t\treturn;\n\t}\n\n\n\n\t// parse state for collection_object\n\tcollection_object() {\n\t\t// destruct chunk, length, and index\n\t\tlet {s, n, i} = this;\n\n\t\t// start labeled loop, run while there are characters\n\t\twhile(i < n) { // eslint-disable-line no-unmodified-loop-condition\n\t\t\t// ref char\n\t\t\tlet x = s[i];\n\n\t\t\t// end of collection\n\t\t\tif(')' === x) {\n\t\t\t\t// consume whitespace (and incidentally reset index)\n\t\t\t\tR_WS.lastIndex = i+1;\n\t\t\t\tR_WS.exec(s);\n\t\t\t\tthis.i = R_WS.lastIndex;\n\n\t\t\t\t// make & emit collection's tail \"pointer\"\n\t\t\t\tthis._kt_object = this._kt_rdf_nil;\n\t\t\t\tthis.data();\n\n\n\t\t\t\t// restore previous state\n\t\t\t\tlet s_resume_state;\n\t\t\t\t[this._kt_subject, this._kt_predicate, s_resume_state] = this._a_nested.pop();\n\t\t\t\treturn this[s_resume_state]();\n\t\t\t}\n\n\n\n\t\t\t// otherwise, pre-emptively secure the next blank node label\n\t\t\tlet s_pointer_label;\n\n// iriref\n\n\t\t\t// prepare sticky regex index\n\t\t\tR_IRIREF_ESCAPELESS.lastIndex = i;\n\t\t\t// execute regex\n\t\t\tlet m_iriref_e_object = R_IRIREF_ESCAPELESS.exec(s);\n\n\t\t\t// regex was a match\n\t\t\tif(m_iriref_e_object) {\n\t\t\t\t// advance index\n\t\t\t\ti = R_IRIREF_ESCAPELESS.lastIndex;\n// commit object iri as is\n\n\t\t\t\t// ref iri\n\t\t\t\tlet s_iri = m_iriref_e_object[1];\n\t\t\t\t// absolute iri\n\t\t\t\tif(!this._s_base_url || RT_IRI_ABSOLUTE.test(s_iri)) {\n\t\t\t\t\t// set object\n\t\t\t\t\tthis._kt_object = this.check_named_node_escapeless(s_iri);\n\t\t\t\t}\n\t\t\t\t// relative iri\n\t\t\t\telse {\n\t\t\t\t\tthis._kt_object = this.check_named_node_escapeless(uri.resolve(this._s_base_url, s_iri));\n\t\t\t\t}\n\n\t\t\t// prefixed name\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// try match\n\t\t\t\tlet aw_valid_this_match_prefixed_name_escapeless = this.match_prefixed_name_escapeless(s, i);\n\t\t\t\t// stack bail out\n\t\t\t\tif(!aw_valid_this_match_prefixed_name_escapeless) return true;\n\t\t\t\tlet [m_prefixed_named_e_object, im_prefixed_named_e_object] = aw_valid_this_match_prefixed_name_escapeless;\n\t\t\t\tif(m_prefixed_named_e_object) {\n\t\t\t\t\t// advance index\n\t\t\t\t\ti = im_prefixed_named_e_object;\n\t\t\t\t\t// check valid prefix\n\t\t\t\t\tlet s_prefix_id = m_prefixed_named_e_object[1] || '';\n\t\t\t\t\t// invalid prefix\n\t\t\t\t\tif(!OPHOP.call(this._h_prefixes, s_prefix_id)) return this.error(`no such prefix \"${s_prefix_id}\"`);\n\n\n\t\t\t\t\t// commit object iri from resolve prefixed name\n\t\t\t\t\tthis._kt_object = this.prefixed_name(s_prefix_id, m_prefixed_named_e_object[2]);\n\n\t\t\t\t// string literal\n\t\t\t\t}\n\t\t\t\telse \tif('\"' === x || '\\'' === x) {\n\t\t\t\t\t// update index before changing states\n\t\t\t\t\tthis.i = i;\n\n\t\t\t\t\t// create blanknode to embed list\n\t\t\t\t\tlet kt_blank_node = this._kt_object = this.anonymous_blank_node(this.next_label());\n\n\t\t\t\t\t// emit statement that functions as collection's head \"pointer\"\n\t\t\t\t\tthis.data();\n\n\n\t\t\t\t\t// prepare statement that is item\n\t\t\t\t\tthis._kt_subject = kt_blank_node;\n\t\t\t\t\tthis._kt_predicate = this._kt_rdf_first;\n\n\t\t\t\t\tthis.after_end_of_statement = function() {\n\t\t\t\t\t\tthis._kt_predicate = this._kt_rdf_rest;\n\t\t\t\t\t\tthis.after_end_of_statement = this.post_object;\n\t\t\t\t\t\treturn this.collection_object();\n\t\t\t\t\t};\n\t\t\t\t\treturn this.string_literal();\n\n\t\t\t\t// numeric literal\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\tR_NUMERIC_LITERAL.lastIndex = i;\n\t\t\t\t\t// execute regex\n\t\t\t\t\tlet m_numeric_literal = R_NUMERIC_LITERAL.exec(s);\n\n\t\t\t\t\t// regex was a match\n\t\t\t\t\tif(m_numeric_literal) {\n\t\t\t\t\t\t// advance index\n\t\t\t\t\t\ti = R_NUMERIC_LITERAL.lastIndex;\n\t\t\t\t\t\t// it has exponent term, xsd:double\n\t\t\t\t\t\tif(m_numeric_literal[4]) {\n\t\t\t\t\t\t\tthis._kt_object = this._dc_factory.double(m_numeric_literal[1]);\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// contains decimal point, xsd:decimal\n\t\t\t\t\t\telse if(m_numeric_literal[2] || m_numeric_literal[3]) {\n\t\t\t\t\t\t\tthis._kt_object = this._dc_factory.decimal(m_numeric_literal[1]);\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// otherwise, it is an integer\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tthis._kt_object = this._dc_factory.integer(m_numeric_literal[1]);\n\t\t\t\t\t\t}\n\n\n\t\t\t\t\t// boolean literal\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\tR_BOOLEAN_LITERAL.lastIndex = i;\n\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\tlet m_boolean_literal = R_BOOLEAN_LITERAL.exec(s);\n\n\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\tif(m_boolean_literal) {\n\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\ti = R_BOOLEAN_LITERAL.lastIndex;\n\t\t\t\t\t\t\t// make literal\n\t\t\t\t\t\t\tthis._kt_object = this._dc_factory.boolean(!!m_boolean_literal[1]);\n\n\t\t\t\t\t\t// blank node property list\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse \tif('[' === x) {\n\t\t\t\t// advance index to next token\n\t\t\t\t// consume whitespace (and incidentally reset index)\n\t\t\t\t\t\t\tR_WS.lastIndex = i+1;\n\t\t\t\t\t\t\tR_WS.exec(s);\n\t\t\t\t\t\t\tthis.i = R_WS.lastIndex;\n\n\t\t\t\t\t\t\t// commit head of list pointer\n\t\t\t\t\t\t\tlet kt_blank_node = this._kt_object = this.anonymous_blank_node(this.next_label());\n\t\t\t\t\t\t\tthis.data();\n\n\n\t\t\t\t\t\t\t// setup state to resume and push\n\t\t\t\t\t\t\tthis._kt_subject = kt_blank_node;\n\t\t\t\t\t\t\tthis._kt_predicate = this._kt_rdf_rest;\n\t\t\t\t\t\t\tthis._a_nested.push([this._kt_subject, this._kt_predicate, 'collection_object']);\n\n\t\t\t\t\t\t\t// enter blank node\n\t\t\t\t\t\t\tthis._kt_predicate = this._kt_rdf_first;\n\t\t\t\t\t\t\tkt_blank_node = this._kt_object = this.anonymous_blank_node(this.next_label());\n\t\t\t\t\t\t\tthis.data();\n\n\n\t\t\t\t\t\t\t// prepare next triple\n\t\t\t\t\t\t\tthis._kt_subject = kt_blank_node;\n\t\t\t\t\t\t\tthis._kt_predicate = this._kt_rdf_first;\n\n\t\t\t\t\t\t\t// goto parsing pairs state\n\t\t\t\t\t\t\treturn this.pairs();\n\n\t\t\t\t\t\t// new collection\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse \tif('(' === x) {\n\t\t\t\t\t\t\t// consume whitespace (and incidentally reset index)\n\t\t\t\t\t\t\tR_WS.lastIndex = i+1;\n\t\t\t\t\t\t\tR_WS.exec(s);\n\t\t\t\t\t\t\ti = R_WS.lastIndex;\n\n\t\t\t\t\t\t\t// commit list item pointer\n\t\t\t\t\t\t\ts_pointer_label = this.next_label();\n\t\t\t\t\t\t\tlet kt_blank_node = this._kt_object = this.anonymous_blank_node(s_pointer_label);\n\t\t\t\t\t\t\tif(null === this._kt_subject) {\n\t\t\t\t\t\t\t\tlet a_recent = this._a_nested[this._a_nested.length-1];\n\t\t\t\t\t\t\t\tthis._kt_subject = a_recent[0];\n\t\t\t\t\t\t\t\tthis._kt_predicate = a_recent[1];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tthis.data();\n\n\n\t\t\t\t\t\t\t// add this list as an item to the outer list\n\t\t\t\t\t\t\tthis._kt_subject = kt_blank_node;\n\t\t\t\t\t\t\tthis._kt_predicate = this._kt_rdf_rest;\n\t\t\t\t\t\t\tthis._a_nested.push([this._kt_subject, this._kt_predicate, 'collection_object']);\n\n\t\t\t\t\t\t\t// prepare next triple\n\t\t\t\t\t\t\tthis._kt_predicate = this._kt_rdf_first;\n\n\t\t\t\t\t\t\t// flowing\n\t\t\t\t\t\t\tcontinue;\n\n\t\t\t\t\t\t// labeled blank node\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\tR_BLANK_NODE_LABEL.lastIndex = i;\n\t\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\t\tlet m_blank_node_label_object = R_BLANK_NODE_LABEL.exec(s);\n\n\t\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\t\tif(m_blank_node_label_object) {\n\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\ti = R_BLANK_NODE_LABEL.lastIndex;\n\t\t\t\t\t\t\t\t// ref blank node label\n\t\t\t\t\t\t\t\tlet s_label = m_blank_node_label_object[1];\n\n\t\t\t\t\t\t\t\t// make collection pointer label first\n\t\t\t\t\t\t\t\ts_pointer_label = this.next_label();\n\n\t\t\t\t\t\t\t\t// make object\n\t\t\t\t\t\t\t\tthis._kt_object = this.blank_node(s_label);\n\n\t\t\t\t\t\t\t// iriref\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\t\tR_IRIREF.lastIndex = i;\n\t\t\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\t\t\tlet m_iriref_object = R_IRIREF.exec(s);\n\n\t\t\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\t\t\tif(m_iriref_object) {\n\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\ti = R_IRIREF.lastIndex;\n// commit object iri as is\n\n\t\t\t\t\t\t\t\t\t// ref iri\n\t\t\t\t\t\t\t\t\tlet s_iri = m_iriref_object[1].replace(R_UNICODE_ANY, F_REPLACE_UNICODE_ANY);\n\t\t\t\t\t\t\t\t\t// absolute iri\n\t\t\t\t\t\t\t\t\tif(!this._s_base_url || RT_IRI_ABSOLUTE.test(s_iri)) {\n\t\t\t\t\t\t\t\t\t\t// set object\n\t\t\t\t\t\t\t\t\t\tthis._kt_object = this.check_named_node(s_iri);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t// relative iri\n\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\tthis._kt_object = this.check_named_node(uri.resolve(this._s_base_url, s_iri));\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// prefixed name\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t// try match\n\t\t\t\t\t\t\t\t\tlet aw_valid_this_match_prefixed_name = this.match_prefixed_name(s, i);\n\t\t\t\t\t\t\t\t\t// stack bail out\n\t\t\t\t\t\t\t\t\tif(!aw_valid_this_match_prefixed_name) return true;\n\t\t\t\t\t\t\t\t\tlet [m_prefixed_named_object, im_prefixed_named_object] = aw_valid_this_match_prefixed_name;\n\t\t\t\t\t\t\t\t\tif(m_prefixed_named_object) {\n\t\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\t\ti = im_prefixed_named_object;\n\t\t\t\t\t\t\t\t\t\t// check valid prefix\n\t\t\t\t\t\t\t\t\t\tlet s_prefix_id = m_prefixed_named_object[1] || '';\n\t\t\t\t\t\t\t\t\t\t// invalid prefix\n\t\t\t\t\t\t\t\t\t\tif(!OPHOP.call(this._h_prefixes, s_prefix_id)) return this.error(`no such prefix \"${s_prefix_id}\"`);\n\n\n\t\t\t\t\t\t\t\t\t\t// escape local escapes\n\t\t\t\t\t\t\t\t\t\tlet s_suffix = m_prefixed_named_object[2]\n\t\t\t\t\t\t\t\t\t\t\t.replace(R_UNICODE_ANY, F_REPLACE_UNICODE_ANY)\n\t\t\t\t\t\t\t\t\t\t\t.replace(R_PN_LOCAL_ESCAPES, '$1');\n\n\t\t\t\t\t\t\t\t\t\t// commit object iri from resolve prefixed name\n\t\t\t\t\t\t\t\t\t\tthis._kt_object = this.prefixed_name(s_prefix_id, s_suffix);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t// prepare sticky regex index\n\t\t\t\t\t\t\t\t\t\tR_COMMENT.lastIndex = i;\n\t\t\t\t\t\t\t\t\t\t// execute regex\n\t\t\t\t\t\t\t\t\t\tlet m_comment = R_COMMENT.exec(s);\n\n\t\t\t\t\t\t\t\t\t\t// regex was a match\n\t\t\t\t\t\t\t\t\t\tif(m_comment) {\n\t\t\t\t\t\t\t\t\t\t\t// advance index\n\t\t\t\t\t\t\t\t\t\t\ti = R_COMMENT.lastIndex;\n\t\t\t\t\t\t\t\t\t\t\tif(this.emit_comments) this.emit_comments(m_comment[0]);\n\t\t\t\t\t\t\t\t\t\t\tcontinue;\n\n\t\t\t// not iriref, not prefixed name, not string literal, not numeric literal, not boolean literal, not blank node property list, not collection\n\t\t\t// match counter: 7\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t\t// break loop to retry on next chunk if eos\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t} // brace #7\n\t\t\t\t\t\t\t\t} // brace #6\n\t\t\t\t\t\t\t} // brace #5\n\t\t\t\t\t\t} // brace #4\n\t\t\t\t\t} // brace #3\n\t\t\t\t} // brace #2\n\t\t\t} // brace #1\n\n\n\n\t\t\t// ref object\n\t\t\tlet w_object = this._kt_object;\n\n\t\t\t// create blanknode to embed list\n\t\t\tif(!s_pointer_label) s_pointer_label = this.next_label();\n\t\t\tlet kt_blank_node_outer = this._kt_object = this.anonymous_blank_node(s_pointer_label);\n\n\t\t\t// emit statement that functions as collection's head \"pointer\"\n\t\t\tthis.data();\n\n\n\t\t\t// emit statement that is item\n\t\t\tthis._kt_subject = kt_blank_node_outer;\n\t\t\tthis._kt_predicate = this._kt_rdf_first;\n\t\t\tthis._kt_object = w_object;\n\t\t\tthis.data();\n\n\n\t\t\t// prepare next predicate\n\t\t\tthis._kt_predicate = this._kt_rdf_rest;\n\t\t}\n\n\t\t\t\t// ran out of characters\n\t\t\t\t// update index value\n\t\tthis.i = i;\n\n\t\t// not yet eos\n\t\tif(i < this.n) {\n\t\t\t// expected token was not found\n\t\t\tif(0 === i) {\n\t\t\t\t// we've exceeded the maximum token length\n\t\t\t\tif(this.n > this.max_token_length) {\n\t\t\t\t\treturn this.parse_error('collection_object');\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// save state before pausing\n\t\tthis._f_state = this.collection_object;\n\n\t\t// store what is unparsed\n\t\tthis.pre = s.slice(i);\n\n\t\t// if we're not parsing a stream, then this is an error\n\t\tif(this.eos) this.eos();\n\t\treturn;\n\t}\n\n\n\tdestroy(e_destroy) {\n\t\tthis.post_blank_subject = () => {};\n\n\t\tthis.statement = () => {};\n\n\t\tthis.block = () => {};\n\n\t\tthis.graph_or_subject = () => {};\n\n\t\tthis.graph_or_subject_property_list = () => {};\n\n\t\tthis.graph_or_subject_anon = () => {};\n\n\t\tthis.graph_keyword = () => {};\n\n\t\tthis.graph_post_name = () => {};\n\n\t\tthis.pairs = () => {};\n\n\t\tthis.object_list = () => {};\n\n\t\tthis.string_literal_short_double = () => {};\n\n\t\tthis.string_literal_short_single = () => {};\n\n\t\tthis.string_literal_long_double = () => {};\n\n\t\tthis.string_literal_long_single = () => {};\n\n\t\tthis.string_literal = () => {};\n\n\t\tthis.datatype_or_langtag = () => {};\n\n\t\tthis.datatype = () => {};\n\n\t\tthis.post_object = () => {};\n\n\t\tthis.base_iri = () => {};\n\n\t\tthis.prefix_id = () => {};\n\n\t\tthis.prefix_iri = () => {};\n\n\t\tthis.full_stop = () => {};\n\n\t\tthis.collection_subject = () => {};\n\n\t\tthis.collection_object = () => {};\n\n\n\t\tthis.eof = () => {\n\t\t\tthis.s = null;\n\t\t};\n\n\t\tthis._b_destroyed = true;\n\n\t\t// propagate input destroy\n\t\tif(!e_destroy && this._ds_input) {\n\t\t\tthis._ds_input.destroy(e_destroy);\n\t\t}\n\n\t\tthis.transform.demolish(e_destroy);\n\t}\n}\n\nmodule.exports = function(...a_args) {\n\tlet g_config = {};\n\n\t// at least one argument\n\tif(a_args.length) {\n\t\tlet z_arg_0 = a_args[0];\n\n\t\t// input given unspecified\n\t\tif(z_arg_0 && z_arg_0.input && 'undefined' === typeof z_arg_0.input.string && !z_arg_0.input.stream) {\n\t\t\tz_arg_0 = z_arg_0.input;\n\t\t}\n\n\t\t// string\n\t\tif('string' === typeof z_arg_0) {\n\t\t\tg_config.input = {string:z_arg_0};\n\t\t}\n\t\t// null\n\t\telse if(null === z_arg_0) {\n\t\t\tg_config.input = null;\n\t\t}\n\t\t// node stream\n\t\telse if('function' === typeof z_arg_0.setEncoding) {\n\t\t\tg_config.input = {stream:z_arg_0};\n\t\t}\n\t\t// whatwg stream\n\t\telse if('function' === typeof z_arg_0.pipeTo) {\n\t\t\tthrow new TypeError(`Sorry, WHATWG streams are currently not supported :(`);\n\t\t// g_config.input = {stream:z_arg_0};\n\t\t}\n\t\t// config struct\n\t\telse if(z_arg_0 && 'object' === typeof z_arg_0 && '[object Object]' === Object.prototype.toString.call(z_arg_0)) {\n\t\t\tg_config = z_arg_0;\n\n\t\t\t// more args; invalid\n\t\t\tif(a_args.length > 1) {\n\t\t\t\tthrow new TypeError(`unexpected argument(s) after config struct: ${a_args.slice(1)}`);\n\t\t\t}\n\t\t}\n\t\t// unknown\n\t\telse {\n\t\t\tthrow new TypeError(`unexpected input type: ${z_arg_0}`);\n\t\t}\n\n\t\t// more args\n\t\tif(a_args.length > 1) {\n\t\t\t// copy onto struct\n\t\t\tObject.assign(g_config, a_args[1]);\n\n\t\t\t// more args\n\t\t\tif(a_args.length > 2) {\n\t\t\t\tthrow new TypeError(`unexpected argument(s) after input and config struct: ${a_args.slice(2)}`);\n\t\t\t}\n\t\t}\n\t}\n\n\t// create reader, return transform stream\n\treturn (new Reader(g_config)).transform;\n};\n","const stream = require('readable-stream');\n\n\n\nclass Readable extends stream.Readable {\n\tconstructor(gc_readable={}) {\n\t\tsuper(gc_readable);\n\n\t\t// use iterator\n\t\tif(gc_readable.iterator) {\n\t\t\tthrow new Error('readable stream iterator shortcut not yet implemented');\n\t\t}\n\t}\n\n\tuntil(s_event, b_return_stream) {\n\t\treturn new Promise((fk_until, fe_until) => {\n\t\t\t// convert error to rejected promise\n\t\t\tthis.on('error', (e_stream) => {\n\t\t\t\tfe_until(e_stream);\n\t\t\t});\n\n\t\t\t// special cases returns `this`\n\t\t\tif(b_return_stream) {\n\t\t\t\tthis.once(s_event, (...a_args) => {\n\t\t\t\t\tfk_until(this, ...a_args);\n\t\t\t\t});\n\t\t\t}\n\t\t\telse {\n\t\t\t\tthis.once(s_event, fk_until);\n\t\t\t}\n\t\t});\n\t}\n\n\tbucket(s_encoding='utf8') {\n\t\tlet g_readable = this._readableState;\n\n\t\t// object mode\n\t\tif(g_readable.objectMode) {\n\t\t\t// async operation\n\t\t\treturn new Promise((fk_bucket, fe_bucket) => {\n\t\t\t\tlet a_data = [];\n\n\t\t\t\t// pipe to writable\n\t\t\t\tthis.pipe(new stream.Writable({\n\t\t\t\t\twrite(w_event, s_write_encoding, fk_write) {\n\t\t\t\t\t\ta_data.push(w_event);\n\t\t\t\t\t\tfk_write();\n\t\t\t\t\t},\n\n\t\t\t\t\twritev(a_chunks, fk_writev) {\n\t\t\t\t\t\ta_data.push(...a_chunks);\n\t\t\t\t\t\tfk_writev();\n\t\t\t\t\t},\n\t\t\t\t}))\n\t\t\t\t\t// error\n\t\t\t\t\t.on('error', (e_stream) => {\n\t\t\t\t\t\tfe_bucket(e_stream);\n\t\t\t\t\t})\n\t\t\t\t\t// wait for it to finish\n\t\t\t\t\t.on('finish', () => {\n\t\t\t\t\t\tfk_bucket(a_data);\n\t\t\t\t\t});\n\t\t\t});\n\t\t}\n\t\t// utf8-encoded strings\n\t\telse if('utf8' === s_encoding || 'utf-8' === s_encoding) {\n\t\t\t// async operation\n\t\t\treturn new Promise((fk_bucket, fe_bucket) => {\n\t\t\t\tlet s_data = '';\n\n\t\t\t\t// set encoding\n\t\t\t\tthis.setEncoding(s_encoding);\n\n\t\t\t\t// pipe to writable\n\t\t\t\tthis.pipe(new stream.Writable({\n\t\t\t\t\tdecodeStrings: false,\n\n\t\t\t\t\twrite(s_chunk, s_write_encoding, fk_write) {\n\t\t\t\t\t\ts_data += s_chunk;\n\t\t\t\t\t\tfk_write();\n\t\t\t\t\t},\n\n\t\t\t\t\twritev(a_chunks, fk_writev) {\n\t\t\t\t\t\ts_data += a_chunks.join('');\n\t\t\t\t\t\tfk_writev();\n\t\t\t\t\t},\n\t\t\t\t}))\n\t\t\t\t\t// error\n\t\t\t\t\t.on('error', (e_stream) => {\n\t\t\t\t\t\tfe_bucket(e_stream);\n\t\t\t\t\t})\n\t\t\t\t\t// wait for it to finish\n\t\t\t\t\t.on('finish', () => {\n\t\t\t\t\t\tfk_bucket(s_data);\n\t\t\t\t\t});\n\t\t\t});\n\t\t}\n\t\t// buffer\n\t\telse if('buffer' === s_encoding) {\n\t\t\t// async operation\n\t\t\treturn new Promise((fk_bucket, fe_bucket) => {\n\t\t\t\tlet ab_data = Buffer.from([]);\n\n\t\t\t\t// pipe to writable\n\t\t\t\tthis.pipe(new stream.Writable({\n\t\t\t\t\tdecodeStrings: true,\n\n\t\t\t\t\twrite(ab_chunk, s_write_encoding, fk_write) {\n\t\t\t\t\t\tab_data = Buffer.concat([ab_data, ab_chunk], ab_data.length+ab_chunk.length);\n\t\t\t\t\t\tfk_write();\n\t\t\t\t\t},\n\t\t\t\t}))\n\t\t\t\t\t// error\n\t\t\t\t\t.on('error', (e_stream) => {\n\t\t\t\t\t\tfe_bucket(e_stream);\n\t\t\t\t\t})\n\t\t\t\t\t// wait for it to finish\n\t\t\t\t\t.on('finish', () => {\n\t\t\t\t\t\tfk_bucket(ab_data);\n\t\t\t\t\t});\n\t\t\t});\n\t\t}\n\t}\n}\n\nclass Writable extends stream.Writable {\n\tuntil(s_event, b_return_stream) {\n\t\treturn new Promise((fk_until, fe_until) => {\n\t\t\t// convert error to rejected promise\n\t\t\tthis.on('error', (e_stream) => {\n\t\t\t\tfe_until(e_stream);\n\t\t\t});\n\n\t\t\t// special cases returns `this`\n\t\t\tif(b_return_stream) {\n\t\t\t\tthis.once(s_event, (...a_args) => {\n\t\t\t\t\tfk_until(this, ...a_args);\n\t\t\t\t});\n\t\t\t}\n\t\t\telse {\n\t\t\t\tthis.once(s_event, fk_until);\n\t\t\t}\n\t\t});\n\t}\n\n\t// rdfjs impl\n\timport(ds_source) {\n\t\tds_source\n\t\t\t.on('data', w_chunk => this.write(w_chunk))\n\t\t\t.on('end', () => this.end())\n\t\t\t.on('error', e_read => this.emit('error', e_read));\n\n\t\treturn this;\n\t}\n}\n\nclass Duplex extends stream.Duplex {\n\tuntil(s_event, b_return_stream) {\n\t\treturn new Promise((fk_until, fe_until) => {\n\t\t\t// convert error to rejected promise\n\t\t\tthis.on('error', (e_stream) => {\n\t\t\t\tfe_until(e_stream);\n\t\t\t});\n\n\t\t\t// special cases returns `this`\n\t\t\tif(b_return_stream) {\n\t\t\t\tthis.once(s_event, (...a_args) => {\n\t\t\t\t\tfk_until(this, ...a_args);\n\t\t\t\t});\n\t\t\t}\n\t\t\telse {\n\t\t\t\tthis.once(s_event, fk_until);\n\t\t\t}\n\t\t});\n\t}\n\n\tbucket(s_encoding='utf8') {\n\t\tlet g_readable = this._readableState;\n\n\t\t// object mode\n\t\tif(g_readable.objectMode) {\n\t\t\t// async operation\n\t\t\treturn new Promise((fk_bucket, fe_bucket) => {\n\t\t\t\tlet a_data = [];\n\n\t\t\t\t// pipe to writable\n\t\t\t\tthis.pipe(new stream.Writable({\n\t\t\t\t\twrite(w_event, s_write_encoding, fk_write) {\n\t\t\t\t\t\ta_data.push(w_event);\n\t\t\t\t\t\tfk_write();\n\t\t\t\t\t},\n\n\t\t\t\t\twritev(a_chunks, fk_writev) {\n\t\t\t\t\t\ta_data.push(...a_chunks);\n\t\t\t\t\t\tfk_writev();\n\t\t\t\t\t},\n\t\t\t\t}))\n\t\t\t\t\t// error\n\t\t\t\t\t.on('error', (e_stream) => {\n\t\t\t\t\t\tfe_bucket(e_stream);\n\t\t\t\t\t})\n\t\t\t\t\t// wait for it to finish\n\t\t\t\t\t.on('finish', () => {\n\t\t\t\t\t\tfk_bucket(a_data);\n\t\t\t\t\t});\n\t\t\t});\n\t\t}\n\t\t// utf8-encoded strings\n\t\telse if('utf8' === s_encoding || 'utf-8' === s_encoding) {\n\t\t\t// async operation\n\t\t\treturn new Promise((fk_bucket, fe_bucket) => {\n\t\t\t\tlet s_data = '';\n\n\t\t\t\t// set encoding\n\t\t\t\tthis.setEncoding(s_encoding);\n\n\t\t\t\t// pipe to writable\n\t\t\t\tthis.pipe(new stream.Writable({\n\t\t\t\t\tdecodeStrings: false,\n\n\t\t\t\t\twrite(s_chunk, s_write_encoding, fk_write) {\n\t\t\t\t\t\ts_data += s_chunk;\n\t\t\t\t\t\tfk_write();\n\t\t\t\t\t},\n\n\t\t\t\t\twritev(a_chunks, fk_writev) {\n\t\t\t\t\t\ts_data += a_chunks.join('');\n\t\t\t\t\t\tfk_writev();\n\t\t\t\t\t},\n\t\t\t\t}))\n\t\t\t\t\t// error\n\t\t\t\t\t.on('error', (e_stream) => {\n\t\t\t\t\t\tfe_bucket(e_stream);\n\t\t\t\t\t})\n\t\t\t\t\t// wait for it to finish\n\t\t\t\t\t.on('finish', () => {\n\t\t\t\t\t\tfk_bucket(s_data);\n\t\t\t\t\t});\n\t\t\t});\n\t\t}\n\t\t// buffer\n\t\telse if('buffer' === s_encoding) {\n\t\t\t// async operation\n\t\t\treturn new Promise((fk_bucket, fe_bucket) => {\n\t\t\t\tlet ab_data = Buffer.from([]);\n\n\t\t\t\t// pipe to writable\n\t\t\t\tthis.pipe(new stream.Writable({\n\t\t\t\t\tdecodeStrings: true,\n\n\t\t\t\t\twrite(ab_chunk, s_write_encoding, fk_write) {\n\t\t\t\t\t\tab_data = Buffer.concat([ab_data, ab_chunk], ab_data.length+ab_chunk.length);\n\t\t\t\t\t\tfk_write();\n\t\t\t\t\t},\n\t\t\t\t}))\n\t\t\t\t\t// error\n\t\t\t\t\t.on('error', (e_stream) => {\n\t\t\t\t\t\tfe_bucket(e_stream);\n\t\t\t\t\t})\n\t\t\t\t\t// wait for it to finish\n\t\t\t\t\t.on('finish', () => {\n\t\t\t\t\t\tfk_bucket(ab_data);\n\t\t\t\t\t});\n\t\t\t});\n\t\t}\n\t}\n}\n\nclass Transform extends stream.Transform {\n\tuntil(s_event, b_return_stream) {\n\t\treturn new Promise((fk_until, fe_until) => {\n\t\t\t// convert error to rejected promise\n\t\t\tthis.on('error', (e_stream) => {\n\t\t\t\tfe_until(e_stream);\n\t\t\t});\n\n\t\t\t// special cases returns `this`\n\t\t\tif(b_return_stream) {\n\t\t\t\tthis.once(s_event, (...a_args) => {\n\t\t\t\t\tfk_until(this, ...a_args);\n\t\t\t\t});\n\t\t\t}\n\t\t\telse {\n\t\t\t\tthis.once(s_event, fk_until);\n\t\t\t}\n\t\t});\n\t}\n\n\tbucket(s_encoding='utf8') {\n\t\tlet g_readable = this._readableState;\n\n\t\t// object mode\n\t\tif(g_readable.objectMode) {\n\t\t\t// async operation\n\t\t\treturn new Promise((fk_bucket, fe_bucket) => {\n\t\t\t\tlet a_data = [];\n\n\t\t\t\t// pipe to writable\n\t\t\t\tthis.pipe(new stream.Writable({\n\t\t\t\t\twrite(w_event, s_write_encoding, fk_write) {\n\t\t\t\t\t\ta_data.push(w_event);\n\t\t\t\t\t\tfk_write();\n\t\t\t\t\t},\n\n\t\t\t\t\twritev(a_chunks, fk_writev) {\n\t\t\t\t\t\ta_data.push(...a_chunks);\n\t\t\t\t\t\tfk_writev();\n\t\t\t\t\t},\n\t\t\t\t}))\n\t\t\t\t\t// error\n\t\t\t\t\t.on('error', (e_stream) => {\n\t\t\t\t\t\tfe_bucket(e_stream);\n\t\t\t\t\t})\n\t\t\t\t\t// wait for it to finish\n\t\t\t\t\t.on('finish', () => {\n\t\t\t\t\t\tfk_bucket(a_data);\n\t\t\t\t\t});\n\t\t\t});\n\t\t}\n\t\t// utf8-encoded strings\n\t\telse if('utf8' === s_encoding || 'utf-8' === s_encoding) {\n\t\t\t// async operation\n\t\t\treturn new Promise((fk_bucket, fe_bucket) => {\n\t\t\t\tlet s_data = '';\n\n\t\t\t\t// set encoding\n\t\t\t\tthis.setEncoding(s_encoding);\n\n\t\t\t\t// pipe to writable\n\t\t\t\tthis.pipe(new stream.Writable({\n\t\t\t\t\tdecodeStrings: false,\n\n\t\t\t\t\twrite(s_chunk, s_write_encoding, fk_write) {\n\t\t\t\t\t\ts_data += s_chunk;\n\t\t\t\t\t\tfk_write();\n\t\t\t\t\t},\n\n\t\t\t\t\twritev(a_chunks, fk_writev) {\n\t\t\t\t\t\ts_data += a_chunks.join('');\n\t\t\t\t\t\tfk_writev();\n\t\t\t\t\t},\n\t\t\t\t}))\n\t\t\t\t\t// error\n\t\t\t\t\t.on('error', (e_stream) => {\n\t\t\t\t\t\tfe_bucket(e_stream);\n\t\t\t\t\t})\n\t\t\t\t\t// wait for it to finish\n\t\t\t\t\t.on('finish', () => {\n\t\t\t\t\t\tfk_bucket(s_data);\n\t\t\t\t\t});\n\t\t\t});\n\t\t}\n\t\t// buffer\n\t\telse if('buffer' === s_encoding) {\n\t\t\t// async operation\n\t\t\treturn new Promise((fk_bucket, fe_bucket) => {\n\t\t\t\tlet ab_data = Buffer.from([]);\n\n\t\t\t\t// pipe to writable\n\t\t\t\tthis.pipe(new stream.Writable({\n\t\t\t\t\tdecodeStrings: true,\n\n\t\t\t\t\twrite(ab_chunk, s_write_encoding, fk_write) {\n\t\t\t\t\t\tab_data = Buffer.concat([ab_data, ab_chunk], ab_data.length+ab_chunk.length);\n\t\t\t\t\t\tfk_write();\n\t\t\t\t\t},\n\t\t\t\t}))\n\t\t\t\t\t// error\n\t\t\t\t\t.on('error', (e_stream) => {\n\t\t\t\t\t\tfe_bucket(e_stream);\n\t\t\t\t\t})\n\t\t\t\t\t// wait for it to finish\n\t\t\t\t\t.on('finish', () => {\n\t\t\t\t\t\tfk_bucket(ab_data);\n\t\t\t\t\t});\n\t\t\t});\n\t\t}\n\t}\n\n\t// rdfjs impl\n\timport(ds_source) {\n\t\tds_source\n\t\t\t.on('data', w_chunk => this.write(w_chunk))\n\t\t\t.on('end', () => this.end())\n\t\t\t.on('error', e_read => this.emit('error', e_read));\n\n\t\treturn this;\n\t}\n\n\tdemolish(e_destroy) {\n\t\t// do not allow to push\n\t\tthis.push = (z_chunk) => {\n\t\t\t// ignore eof signals from node core\n\t\t\tif(null === z_chunk) return;\n\n\t\t\t// anything else is bad\n\t\t\tthrow new Error(`[ERR_STREAM_DESTROYED]: Cannot push after stream was destroyed`);\n\t\t};\n\n\t\t// do not allow to emit 'end'\n\t\tthis.emit = function(s_event, ...a_args) {\n\t\t\tif('end' === s_event) return;\n\n\t\t\tObject.getPrototypeOf(this).emit.apply(this, [s_event, ...a_args]);\n\t\t};\n\n\t\t// an error was given, destroy the stream as well\n\t\tif(e_destroy) {\n\t\t\treturn stream.Transform.prototype.destroy.call(this, e_destroy);\n\t\t}\n\t}\n}\n\n// eslint-disable-next-line no-new-func\nconst b_is_node = (new Function(/* syntax: js */ `try {return this===global;}catch(e){return false;}`))();\n\n// deduce the runtime environment\nconst [B_BROWSER, B_BROWSERIFY] = (() => 'undefined' === typeof process\n\t? [true, false]\n\t: (process.browser\n\t\t? [true, true]\n\t\t: ('undefined' === process.versions || 'undefined' === process.versions.node\n\t\t\t? [true, false]\n\t\t\t: [false, false])))();\n\n// node.js or browserify; patch for node < v10\nif(B_BROWSERIFY || (b_is_node && (+(/^v(\\d+)/.exec(process.version)[1])) < 10)) {\n\t// override destroy methods\n\tTransform.prototype.destroy = Duplex.prototype.destroy = function(e_destroy, fke_destroy) {\n\t\tthis._readableState.destroyed = true;\n\t\tthis._writableState.destroyed = true;\n\n\t\tlet f_emit_close = () => {\n\t\t\tif(!this._writableState.emitClose) return;\n\t\t\tif(!this._readableState.emitClose) return;\n\t\t\tthis.emit('close');\n\t\t};\n\n\t\tthis._destroy(e_destroy || null, (e_destroy_re) => {\n\t\t\tif(!fke_destroy && e_destroy_re) {\n\t\t\t\tprocess.nextTick(() => {\n\t\t\t\t\tthis.emit('error', e_destroy_re);\n\t\t\t\t\tf_emit_close();\n\t\t\t\t});\n\t\t\t\tthis._writableState.errorEmitted = true;\n\t\t\t}\n\t\t\telse {\n\t\t\t\tprocess.nextTick(f_emit_close);\n\t\t\t\tif(fke_destroy) fke_destroy(e_destroy_re);\n\t\t\t}\n\t\t});\n\n\t\treturn this;\n\t};\n\n\t// override default _destroy implementations\n\tTransform.prototype._destroy = Duplex.prototype._destroy = (e_destroy, fke_destroy) => fke_destroy(e_destroy);\n}\n\nclass QuadsToOther extends Transform {\n\tconstructor(gc_transform={}) {\n\t\tsuper({\n\t\t\t...gc_transform,\n\t\t\twritableObjectMode: true,\n\t\t\treadableObjectMode: true,\n\t\t});\n\n\t\tthis._as_inputs = new Set();\n\n\t\t// forward prefix and comment events\n\t\tthis.on('pipe', (ds_src) => {\n\t\t\tthis._as_inputs.add(ds_src);\n\n\t\t\tds_src\n\t\t\t\t.on('prefix', (...a_args) => {\n\t\t\t\t\tthis.emit('prefix', ...a_args);\n\t\t\t\t})\n\t\t\t\t.on('comment', (...a_args) => {\n\t\t\t\t\tthis.emit('comment', ...a_args);\n\t\t\t\t});\n\t\t});\n\n\t\tthis.on('unpipe', (ds_src) => {\n\t\t\tthis._as_inputs.delete(ds_src);\n\t\t});\n\t}\n\n\t_destroy() {\n\t\tfor(let ds_input of this._as_inputs) {\n\t\t\tds_input.destroy();\n\t\t}\n\t}\n}\n\nclass Quads_To_JSON_Transform extends QuadsToOther {\n\t// serializse json\n\t_transform(g_quad, s_encoding, fk_transform) {\n\t\tfk_transform(null, JSON.stringify(g_quad.isolate())+'\\n');\n\t}\n}\n\nclass Quads_To_Writable extends QuadsToOther {\n\t_transform(g_quad, s_encoding, fk_transform) {\n\t\tfk_transform(null, {\n\t\t\ttype: 'quad',\n\t\t\tvalue: g_quad,\n\t\t});\n\t}\n}\n\nTransform.QuadsToOther = QuadsToOther;\n\nmodule.exports = {\n\t...stream,\n\tReadable,\n\tWritable,\n\tDuplex,\n\tTransform,\n\n\tQuadsToOther,\n\n\t// create a transform from quad objects into JSON strings for trivial serialization\n\tquads_to_json() {\n\t\treturn new Quads_To_JSON_Transform();\n\t},\n\n\t// create a transform from quad objects into writable data events\n\tquads_to_writable() {\n\t\treturn new Quads_To_Writable();\n\t},\n\n\t// create a simple, single-event readable stream\n\tsource(w_push, s_encoding=null) {\n\t\t// encoding not explicit, string given; assume utf8\n\t\tif(!s_encoding && 'string' === typeof w_push) s_encoding = 'utf8';\n\n\t\t// readable\n\t\treturn new Readable({\n\t\t\tobjectMode: !s_encoding && 'string' !== typeof w_push && !Buffer.isBuffer(w_push),\n\n\t\t\tread() {\n\t\t\t\tthis.push(w_push, s_encoding);\n\t\t\t\tthis.push(null);\n\t\t\t},\n\t\t});\n\t},\n};\n"],"names":["queueMicrotask","dp_resolve","Promise","resolve","fk","then","catch","e_callback","setTimeout","e_define","uri","string_decoder","stream","factory","quad","k","_kt_subject","_kt_predicate","_kt_object","_kt_graph","RT_PREFIXED_NAME_NAMESPACE_VALID","RT_PREFIXED_NAME_LOCAL_NAME_VALID","RT_BLANK_NODE_VALID","RT_NAMED_NODE_VALID","RT_NAMED_NODE_ESCAPELESS_VALID","R_UNICODE_ANY","F_REPLACE_UNICODE_ANY","s_","s_4","s_8","String","fromCodePoint","parseInt","OPHOP","Object","prototype","hasOwnProperty","R_PREFIXED_NAME_QUICK","R_PREFIXED_NAME_ESCAPELESS","R_PREFIXED_NAME","R_PN_LOCAL_ESCAPES","R_BLANK_NODE_LABEL","R_BLANK_NODE_LABEL_TERMINAL","R_IRIREF_ESCAPELESS","R_IRIREF","R_NUMERIC_LITERAL","R_BOOLEAN_LITERAL","R_A","R_DOUBLE_CARET","R_WS","R_LANGTAG","R_PREFIX_KEYWORD","R_PREFIX_ID","R_BASE_KEYWORD","R_GRAPH_IRI_ESCAPELESS","R_GRAPH_PREFIXED_NAME","R_GRAPH_LABELED_BLANK_NODE","R_GRAPH_ANONYMOUS_BLANK_NODE","R_GRAPH_IRI","R_GRAPH","R_COMMENT","RT_IRI_ABSOLUTE","R_BASE_IRI","R_ANONYMOUS_BLANK_NODE","R_CHAR_BLANK_NODE","R_CHAR_COLLECTION","R_CHAR_KET","R_CHAR_OPEN","R_CHAR_CLOSE","R_CHAR_STOP","R_STRLIT_SHORT_DOUBLE_BREAK","R_STRLIT_SHORT_SINGLE_BREAK","R_STRLIT_LONG_DOUBLE_UNFINISHED_TERM","R_STRLIT_LONG_SINGLE_UNFINISHED_TERM","R_STRLIT_LONG_DOUBLE_BREAK","R_STRLIT_LONG_SINGLE_BREAK","F_REPLACE_STRLIT_CONTENTS","s_whitespace","s_auto","s_invalid","console","assert","Error","JSON","stringify","R_STRLIT_SHORT_CONTENTS_ESCAPES_HARD","R_STRLIT_SHORT_CONTENTS_ESCAPES_SOFT","unescape_literal_short_hard","s_literal","replace","unescape_literal_short_soft","m_incomplete","R_STRLIT_ESCAPE_INCOMPLETE","exec","i_safe","index","slice","R_STRLIT_LONG_CONTENTS_ESCAPES_HARD","R_STRLIT_LONG_CONTENTS_ESCAPES_SOFT","unescape_literal_long_hard","unescape_literal_long_soft","R_STRLIT_SHORT_DOUBLE_TERM","R_STRLIT_SHORT_SINGLE_TERM","R_STRLIT_LONG_DOUBLE_TERM","R_STRLIT_LONG_SINGLE_TERM","RegExp_$lookbehind_polyfill","s_input","m_match","RegExp","call","this","i_start","length","mk_lookbehind_regex","e_compile","f_lookbehind","r_polyfill","f_polyfill","match_prefixed_name_escapeless","s","i","lastIndex","match_prefixed_name","Reader$syntax_error","k_self","si_state","s_info","i_off","Math","min","abs","error","substr","repeat","TriG_Reader","Transform","constructor","g_impls","super","decodeStrings","writableObjectMode","readableObjectMode","flush","transform","pipe","ds_out","ds_dst","_writableState","objectMode","isGraphyWritable","quads_to_writable","quads_to_json","Reader","g_config","input","g_input","state","g_state","blank_node_index","i_anon","prefixes","h_prefixes","labels","h_labels","dc_factory","adopt","dataFactory","data_factory","unfiltered","kt_default_graph","defaultGraph","create","kt_rdf_first","namedNode","blankNode","emit_data","ds_transform","push","g_quad","assign","n","pre","prepend","_b_debug","debug","_b_relax","relax","_dc_factory","_f_state","block","_h_prefixes","_b_destroyed","_s_base_url","_s_base_url_scheme","_s_base_url_root","_s_base_url_path","_s_literal","_kt_rdf_type","_kt_rdf_first","_kt_rdf_rest","_kt_rdf_nil","_kt_default_graph","_a_nested","_h_labels","event","emit","data","restore_data","_a_queue_event","_b_expecting_full_stop","_s_temp_prefix_id","_b_trim_start","anonymous_blank_node","s_label","next_label","eos","after_end_of_statement","post_object","_n_max_token_length","max_token_length","maxTokenLength","_n_max_string_length","max_string_length","maxStringLength","Infinity","_b_byte_tracking","byte_tracking","byteTracking","_nb_seen","_nb_last","_nb_curr","relaxed","warn","stack","blank_node","z_label_state","check_named_node","check_named_node_escapeless","test","p_iri","match_prefixed_name_quick","m_prefixed_name_e","im_prefixed_name_e","m_prefixed_name","im_prefixed_name","named_node","prefixed_name","si_prefix","s_suffix","base","TypeError","p_set_base_uri","base_uri","baseUri","baseURI","base_iri","baseIri","baseIRI","m_base_iri","base_url","baseUrl","baseURL","s_chunk","s_encoding","fke_chunk","safe_parse","fke_flush","eof","e_eof","destroy","on","ds_input","_ds_input","b_byte_tracking","setEncoding","f_write","write","d_decoder","StringDecoder","f_write_track","fk_write","nb_chunk","Buffer","from","f_decode_write_track","ab_chunk","f_decode_write","z_chunk","nb_post","ib_post","byteRange","s_event","emit_comments","s_captured","a_comments","split","s_comment","_destroy","a_args","bind","string","end","f_sync","apply","e_read","queue","args","s_message","parse_error","s_expected","b_eof","info_error","a_queue","h_event","shift","name","m_comment","prefix","enter","exit","comment","read","once","progress","finish","post_blank_subject","statement","equals","pairs","m_pnq_subject","s_prefix_id","m_iriref_e_subject","s_iri","aw_valid_this_match_prefixed_name_escapeless","m_prefixed_named_e_subject","im_prefixed_named_e_subject","m_blank_node_label_subject","collection_subject","m_iriref_subject","aw_valid_this_match_prefixed_name","m_prefixed_named_subject","im_prefixed_named_subject","m_graph_iriref_e_graph","m_graph_prefixed_name","m_graph_anonymous_blank_node","m_graph_labeled_blank_node","m_iriref_e_graph_subject","graph_or_subject","graph_or_subject_property_list","m_prefix_keyword","prefix_id","m_base_keyword","m_graph_iriref_graph","graph_keyword","x","graph_or_subject_anon","pop","m_prefixed_named_e_graph","im_prefixed_named_e_graph","graph_post_name","m_iriref_e_graph","m_blank_node_label_graph","m_iriref_graph","m_prefixed_named_graph","im_prefixed_named_graph","m_iriref_e_predicate","object_list","m_prefixed_named_e_predicate","im_prefixed_named_e_predicate","s_resume_state","m_iriref_predicate","m_prefixed_named_predicate","im_prefixed_named_predicate","string_literal_long_double","string_literal_short_double","m_pnq_object","m_iriref_e_object","m_prefixed_named_e_object","im_prefixed_named_e_object","string_literal_long_single","string_literal_short_single","m_numeric_literal","double","decimal","integer","m_boolean_literal","boolean","kt_blank_node","m_blank_node_label_object","collection_object","m_iriref_object","m_prefixed_named_object","im_prefixed_named_object","m_break","i_break","datatype_or_langtag","m_term","i_term","s_dirty","s_clean","s_incomplete","m_unfinished","string_literal","datatype","m_langtag","languagedLiteral","simpleLiteral","kt_datatype","m_pnq_datatype","m_iriref_e_datatype","p_datatype","m_prefixed_named_e_datatype","im_prefixed_named_e_datatype","m_iriref_datatype","m_prefixed_named_datatype","im_prefixed_named_datatype","datatypedLiteral","i_reset","s_peek","m_iriref_e_base","full_stop","m_iriref_base","m_prefix_id","prefix_iri","p_prefix_iri","m_iriref_e_prefix","b_relax","prefix_change","m_iriref_prefix","s_pointer_label","b_pushed","kt_blank_node_outer","w_object","a_recent","e_destroy","demolish","module","exports","z_arg_0","pipeTo","toString","Readable","gc_readable","iterator","until","b_return_stream","fk_until","fe_until","e_stream","bucket","g_readable","_readableState","fk_bucket","fe_bucket","a_data","Writable","w_event","s_write_encoding","writev","a_chunks","fk_writev","s_data","join","ab_data","concat","import","ds_source","w_chunk","Duplex","getPrototypeOf","b_is_node","Function","B_BROWSER","B_BROWSERIFY","process","browser","versions","node","version","fke_destroy","destroyed","f_emit_close","emitClose","e_destroy_re","nextTick","errorEmitted","QuadsToOther","gc_transform","_as_inputs","Set","ds_src","add","delete","Quads_To_JSON_Transform","_transform","fk_transform","isolate","Quads_To_Writable","type","value","source","w_push","isBuffer"],"sourceRoot":""} \ No newline at end of file diff --git a/dist/js/590.387eb152.js b/dist/js/590.387eb152.js new file mode 100644 index 0000000..8f68ac7 --- /dev/null +++ b/dist/js/590.387eb152.js @@ -0,0 +1,73 @@ +(self["webpackChunkmobilitydcatap_ui"]=self["webpackChunkmobilitydcatap_ui"]||[]).push([[590],{67826:function(e,t,n){"use strict";const{SymbolDispose:r}=n(4345),{AbortError:o,codes:i}=n(55782),{isNodeStream:a,isWebStream:s,kControllerErrorFunction:l}=n(42416),c=n(25389),{ERR_INVALID_ARG_TYPE:d}=i;let u;const p=(e,t)=>{if("object"!==typeof e||!("aborted"in e))throw new d(t,"AbortSignal",e)};e.exports.addAbortSignal=function(t,n){if(p(t,"signal"),!a(n)&&!s(n))throw new d("stream",["ReadableStream","WritableStream","Stream"],n);return e.exports.addAbortSignalNoValidate(t,n)},e.exports.addAbortSignalNoValidate=function(e,t){if("object"!==typeof e||!("aborted"in e))return t;const i=a(t)?()=>{t.destroy(new o(void 0,{cause:e.reason}))}:()=>{t[l](new o(void 0,{cause:e.reason}))};if(e.aborted)i();else{u=u||n(60313).addAbortListener;const o=u(e,i);c(t,o[r])}return t}},2826:function(e,t,n){"use strict";const{StringPrototypeSlice:r,SymbolIterator:o,TypedArrayPrototypeSet:i,Uint8Array:a}=n(4345),{Buffer:s}=n(48287),{inspect:l}=n(60313);e.exports=class{constructor(){this.head=null,this.tail=null,this.length=0}push(e){const t={data:e,next:null};this.length>0?this.tail.next=t:this.head=t,this.tail=t,++this.length}unshift(e){const t={data:e,next:this.head};0===this.length&&(this.tail=t),this.head=t,++this.length}shift(){if(0===this.length)return;const e=this.head.data;return 1===this.length?this.head=this.tail=null:this.head=this.head.next,--this.length,e}clear(){this.head=this.tail=null,this.length=0}join(e){if(0===this.length)return"";let t=this.head,n=""+t.data;while(null!==(t=t.next))n+=e+t.data;return n}concat(e){if(0===this.length)return s.alloc(0);const t=s.allocUnsafe(e>>>0);let n=this.head,r=0;while(n)i(t,n.data,r),r+=n.data.length,n=n.next;return t}consume(e,t){const n=this.head.data;if(ei.length)){e===i.length?(t+=i,++o,n.next?this.head=n.next:this.head=this.tail=null):(t+=r(i,0,e),this.head=n,n.data=r(i,e));break}t+=i,e-=i.length,++o}while(null!==(n=n.next));return this.length-=o,t}_getBuffer(e){const t=s.allocUnsafe(e),n=e;let r=this.head,o=0;do{const s=r.data;if(!(e>s.length)){e===s.length?(i(t,s,n-e),++o,r.next?this.head=r.next:this.head=this.tail=null):(i(t,new a(s.buffer,s.byteOffset,e),n-e),this.head=r,r.data=s.slice(e));break}i(t,s,n-e),e-=s.length,++o}while(null!==(r=r.next));return this.length-=o,t}[Symbol.for("nodejs.util.inspect.custom")](e,t){return l(this,{...t,depth:0,customInspect:!1})}}},36353:function(e,t,n){"use strict";const{pipeline:r}=n(58503),o=n(61599),{destroyer:i}=n(40023),{isNodeStream:a,isReadable:s,isWritable:l,isWebStream:c,isTransformStream:d,isWritableStream:u,isReadableStream:p}=n(42416),{AbortError:f,codes:{ERR_INVALID_ARG_VALUE:h,ERR_MISSING_ARGS:g}}=n(55782),y=n(25389);e.exports=function(...e){if(0===e.length)throw new g("streams");if(1===e.length)return o.from(e[0]);const t=[...e];if("function"===typeof e[0]&&(e[0]=o.from(e[0])),"function"===typeof e[e.length-1]){const t=e.length-1;e[t]=o.from(e[t])}for(let r=0;r0&&!(l(e[r])||u(e[r])||d(e[r])))throw new h(`streams[${r}]`,t[r],"must be writable")}let n,b,v,m,w;function x(e){const t=m;m=null,t?t(e):e?w.destroy(e):I||E||w.destroy()}const _=e[0],S=r(e,x),E=!!(l(_)||u(_)||d(_)),I=!!(s(S)||p(S)||d(S));if(w=new o({writableObjectMode:!(null===_||void 0===_||!_.writableObjectMode),readableObjectMode:!(null===S||void 0===S||!S.readableObjectMode),writable:E,readable:I}),E){if(a(_))w._write=function(e,t,r){_.write(e,t)?r():n=r},w._final=function(e){_.end(),b=e},_.on("drain",(function(){if(n){const e=n;n=null,e()}}));else if(c(_)){const e=d(_)?_.writable:_,t=e.getWriter();w._write=async function(e,n,r){try{await t.ready,t.write(e).catch((()=>{})),r()}catch(o){r(o)}},w._final=async function(e){try{await t.ready,t.close().catch((()=>{})),b=e}catch(n){e(n)}}}const e=d(S)?S.readable:S;y(e,(()=>{if(b){const e=b;b=null,e()}}))}if(I)if(a(S))S.on("readable",(function(){if(v){const e=v;v=null,e()}})),S.on("end",(function(){w.push(null)})),w._read=function(){while(1){const e=S.read();if(null===e)return void(v=w._read);if(!w.push(e))return}};else if(c(S)){const e=d(S)?S.readable:S,t=e.getReader();w._read=async function(){while(1)try{const{value:e,done:n}=await t.read();if(!w.push(e))return;if(n)return void w.push(null)}catch{return}}}return w._destroy=function(e,t){e||null===m||(e=new f),v=null,n=null,b=null,null===m?t(e):(m=t,a(S)&&i(S,e))},w}},40023:function(e,t,n){"use strict";const r=n(65606),{aggregateTwoErrors:o,codes:{ERR_MULTIPLE_CALLBACK:i},AbortError:a}=n(55782),{Symbol:s}=n(4345),{kIsDestroyed:l,isDestroyed:c,isFinished:d,isServerRequest:u}=n(42416),p=s("kDestroy"),f=s("kConstruct");function h(e,t,n){e&&(e.stack,t&&!t.errored&&(t.errored=e),n&&!n.errored&&(n.errored=e))}function g(e,t){const n=this._readableState,r=this._writableState,i=r||n;return null!==r&&void 0!==r&&r.destroyed||null!==n&&void 0!==n&&n.destroyed?("function"===typeof t&&t(),this):(h(e,r,n),r&&(r.destroyed=!0),n&&(n.destroyed=!0),i.constructed?y(this,e,t):this.once(p,(function(n){y(this,o(n,e),t)})),this)}function y(e,t,n){let o=!1;function i(t){if(o)return;o=!0;const i=e._readableState,a=e._writableState;h(t,a,i),a&&(a.closed=!0),i&&(i.closed=!0),"function"===typeof n&&n(t),t?r.nextTick(b,e,t):r.nextTick(v,e)}try{e._destroy(t||null,i)}catch(t){i(t)}}function b(e,t){m(e,t),v(e)}function v(e){const t=e._readableState,n=e._writableState;n&&(n.closeEmitted=!0),t&&(t.closeEmitted=!0),(null!==n&&void 0!==n&&n.emitClose||null!==t&&void 0!==t&&t.emitClose)&&e.emit("close")}function m(e,t){const n=e._readableState,r=e._writableState;null!==r&&void 0!==r&&r.errorEmitted||null!==n&&void 0!==n&&n.errorEmitted||(r&&(r.errorEmitted=!0),n&&(n.errorEmitted=!0),e.emit("error",t))}function w(){const e=this._readableState,t=this._writableState;e&&(e.constructed=!0,e.closed=!1,e.closeEmitted=!1,e.destroyed=!1,e.errored=null,e.errorEmitted=!1,e.reading=!1,e.ended=!1===e.readable,e.endEmitted=!1===e.readable),t&&(t.constructed=!0,t.destroyed=!1,t.closed=!1,t.closeEmitted=!1,t.errored=null,t.errorEmitted=!1,t.finalCalled=!1,t.prefinished=!1,t.ended=!1===t.writable,t.ending=!1===t.writable,t.finished=!1===t.writable)}function x(e,t,n){const o=e._readableState,i=e._writableState;if(null!==i&&void 0!==i&&i.destroyed||null!==o&&void 0!==o&&o.destroyed)return this;null!==o&&void 0!==o&&o.autoDestroy||null!==i&&void 0!==i&&i.autoDestroy?e.destroy(t):t&&(t.stack,i&&!i.errored&&(i.errored=t),o&&!o.errored&&(o.errored=t),n?r.nextTick(m,e,t):m(e,t))}function _(e,t){if("function"!==typeof e._construct)return;const n=e._readableState,o=e._writableState;n&&(n.constructed=!1),o&&(o.constructed=!1),e.once(f,t),e.listenerCount(f)>1||r.nextTick(S,e)}function S(e){let t=!1;function n(n){if(t)return void x(e,null!==n&&void 0!==n?n:new i);t=!0;const o=e._readableState,a=e._writableState,s=a||o;o&&(o.constructed=!0),a&&(a.constructed=!0),s.destroyed?e.emit(p,n):n?x(e,n,!0):r.nextTick(E,e)}try{e._construct((e=>{r.nextTick(n,e)}))}catch(o){r.nextTick(n,o)}}function E(e){e.emit(f)}function I(e){return(null===e||void 0===e?void 0:e.setHeader)&&"function"===typeof e.abort}function j(e){e.emit("close")}function R(e,t){e.emit("error",t),r.nextTick(j,e)}function A(e,t){e&&!c(e)&&(t||d(e)||(t=new a),u(e)?(e.socket=null,e.destroy(t)):I(e)?e.abort():I(e.req)?e.req.abort():"function"===typeof e.destroy?e.destroy(t):"function"===typeof e.close?e.close():t?r.nextTick(R,e,t):r.nextTick(j,e),e.destroyed||(e[l]=!0))}e.exports={construct:_,destroyer:A,destroy:g,undestroy:w,errorOrDestroy:x}},61599:function(e,t,n){"use strict";const{ObjectDefineProperties:r,ObjectGetOwnPropertyDescriptor:o,ObjectKeys:i,ObjectSetPrototypeOf:a}=n(4345);e.exports=c;const s=n(51005),l=n(16381);a(c.prototype,s.prototype),a(c,s);{const e=i(l.prototype);for(let t=0;t{u=!1,e&&v(t,e),p(e)})),c._write=function(e,t,o){n.write(e,t)?o():r=o},c._final=function(e){n.end(),o=e},n.on("drain",(function(){if(r){const e=r;r=null,e()}})),n.on("finish",(function(){if(o){const e=o;o=null,e()}}))),d&&(h(t,(e=>{d=!1,e&&v(t,e),p(e)})),t.on("readable",(function(){if(s){const e=s;s=null,e()}})),t.on("end",(function(){c.push(null)})),c._read=function(){while(1){const e=t.read();if(null===e)return void(s=c._read);if(!c.push(e))return}}),c._destroy=function(e,i){e||null===l||(e=new g),s=null,r=null,o=null,null===l?i(e):(l=i,v(n,e),v(t,e))},c}e.exports=function e(t,n){if(u(t))return t;if(c(t))return k({readable:t});if(d(t))return k({writable:t});if(l(t))return k({writable:!1,readable:!1});if(p(t))return k({readable:w.fromWeb(t)});if(f(t))return k({writable:x.fromWeb(t)});if("function"===typeof t){const{value:e,write:o,final:i,destroy:a}=N(t);if(s(e))return S(A,e,{objectMode:!0,write:o,final:i,destroy:a});const l=null===e||void 0===e?void 0:e.then;if("function"===typeof l){let t;const n=R(l,e,(e=>{if(null!=e)throw new b("nully","body",e)}),(e=>{v(t,e)}));return t=new A({objectMode:!0,readable:!1,write:o,final(e){i((async()=>{try{await n,r.nextTick(e,null)}catch(t){r.nextTick(e,t)}}))},destroy:a})}throw new b("Iterable, AsyncIterable or AsyncFunction",n,e)}if(I(t))return e(t.arrayBuffer());if(s(t))return S(A,t,{objectMode:!0,writable:!1});if(p(null===t||void 0===t?void 0:t.readable)&&f(null===t||void 0===t?void 0:t.writable))return A.fromWeb(t);if("object"===typeof(null===t||void 0===t?void 0:t.writable)||"object"===typeof(null===t||void 0===t?void 0:t.readable)){const n=null!==t&&void 0!==t&&t.readable?c(null===t||void 0===t?void 0:t.readable)?null===t||void 0===t?void 0:t.readable:e(t.readable):void 0,r=null!==t&&void 0!==t&&t.writable?d(null===t||void 0===t?void 0:t.writable)?null===t||void 0===t?void 0:t.writable:e(t.writable):void 0;return k({readable:n,writable:r})}const o=null===t||void 0===t?void 0:t.then;if("function"===typeof o){let e;return R(o,t,(t=>{null!=t&&e.push(t),e.push(null)}),(t=>{v(e,t)})),e=new A({objectMode:!0,writable:!1,read(){}})}throw new y(n,["Blob","ReadableStream","WritableStream","Stream","Iterable","AsyncIterable","Function","{ readable, writable } pair","Promise"],t)}},25389:function(e,t,n){const r=n(65606),{AbortError:o,codes:i}=n(55782),{ERR_INVALID_ARG_TYPE:a,ERR_STREAM_PREMATURE_CLOSE:s}=i,{kEmptyObject:l,once:c}=n(60313),{validateAbortSignal:d,validateFunction:u,validateObject:p,validateBoolean:f}=n(44120),{Promise:h,PromisePrototypeThen:g,SymbolDispose:y}=n(4345),{isClosed:b,isReadable:v,isReadableNodeStream:m,isReadableStream:w,isReadableFinished:x,isReadableErrored:_,isWritable:S,isWritableNodeStream:E,isWritableStream:I,isWritableFinished:j,isWritableErrored:R,isNodeStream:A,willEmitClose:N,kIsClosedPromise:k}=n(42416);let D;function O(e){return e.setHeader&&"function"===typeof e.abort}const T=()=>{};function L(e,t,i){var f,h;if(2===arguments.length?(i=t,t=l):null==t?t=l:p(t,"options"),u(i,"callback"),d(t.signal,"options.signal"),i=c(i),w(e)||I(e))return C(e,t,i);if(!A(e))throw new a("stream",["ReadableStream","WritableStream","Stream"],e);const g=null!==(f=t.readable)&&void 0!==f?f:m(e),k=null!==(h=t.writable)&&void 0!==h?h:E(e),L=e._writableState,M=e._readableState,P=()=>{e.writable||J()};let F=N(e)&&m(e)===g&&E(e)===k,W=j(e,!1);const J=()=>{W=!0,e.destroyed&&(F=!1),(!F||e.readable&&!g)&&(g&&!B||i.call(e))};let B=x(e,!1);const $=()=>{B=!0,e.destroyed&&(F=!1),(!F||e.writable&&!k)&&(k&&!W||i.call(e))},H=t=>{i.call(e,t)};let U=b(e);const V=()=>{U=!0;const t=R(e)||_(e);return t&&"boolean"!==typeof t?i.call(e,t):g&&!B&&m(e,!0)&&!x(e,!1)?i.call(e,new s):!k||W||j(e,!1)?void i.call(e):i.call(e,new s)},q=()=>{U=!0;const t=R(e)||_(e);if(t&&"boolean"!==typeof t)return i.call(e,t);i.call(e)},G=()=>{e.req.on("finish",J)};O(e)?(e.on("complete",J),F||e.on("abort",V),e.req?G():e.on("request",G)):k&&!L&&(e.on("end",P),e.on("close",P)),F||"boolean"!==typeof e.aborted||e.on("aborted",V),e.on("end",$),e.on("finish",J),!1!==t.error&&e.on("error",H),e.on("close",V),U?r.nextTick(V):null!==L&&void 0!==L&&L.errorEmitted||null!==M&&void 0!==M&&M.errorEmitted?F||r.nextTick(q):(g||F&&!v(e)||!W&&!1!==S(e))&&(k||F&&!S(e)||!B&&!1!==v(e))?M&&e.req&&e.aborted&&r.nextTick(q):r.nextTick(q);const z=()=>{i=T,e.removeListener("aborted",V),e.removeListener("complete",J),e.removeListener("abort",V),e.removeListener("request",G),e.req&&e.req.removeListener("finish",J),e.removeListener("end",P),e.removeListener("close",P),e.removeListener("finish",J),e.removeListener("end",$),e.removeListener("error",H),e.removeListener("close",V)};if(t.signal&&!U){const a=()=>{const n=i;z(),n.call(e,new o(void 0,{cause:t.signal.reason}))};if(t.signal.aborted)r.nextTick(a);else{D=D||n(60313).addAbortListener;const r=D(t.signal,a),o=i;i=c(((...t)=>{r[y](),o.apply(e,t)}))}}return z}function C(e,t,i){let a=!1,s=T;if(t.signal)if(s=()=>{a=!0,i.call(e,new o(void 0,{cause:t.signal.reason}))},t.signal.aborted)r.nextTick(s);else{D=D||n(60313).addAbortListener;const r=D(t.signal,s),o=i;i=c(((...t)=>{r[y](),o.apply(e,t)}))}const l=(...t)=>{a||r.nextTick((()=>i.apply(e,t)))};return g(e[k].promise,l,l),T}function M(e,t){var n;let r=!1;return null===t&&(t=l),null!==(n=t)&&void 0!==n&&n.cleanup&&(f(t.cleanup,"cleanup"),r=t.cleanup),new h(((n,o)=>{const i=L(e,t,(e=>{r&&i(),e?o(e):n()}))}))}e.exports=L,e.exports.finished=M},24485:function(e,t,n){"use strict";const r=n(65606),{PromisePrototypeThen:o,SymbolAsyncIterator:i,SymbolIterator:a}=n(4345),{Buffer:s}=n(48287),{ERR_INVALID_ARG_TYPE:l,ERR_STREAM_NULL_VALUES:c}=n(55782).codes;function d(e,t,n){let d,u;if("string"===typeof t||t instanceof s)return new e({objectMode:!0,...n,read(){this.push(t),this.push(null)}});if(t&&t[i])u=!0,d=t[i]();else{if(!t||!t[a])throw new l("iterable",["Iterable"],t);u=!1,d=t[a]()}const p=new e({objectMode:!0,highWaterMark:1,...n});let f=!1;async function h(e){const t=void 0!==e&&null!==e,n="function"===typeof d.throw;if(t&&n){const{value:t,done:n}=await d.throw(e);if(await t,n)return}if("function"===typeof d.return){const{value:e}=await d.return();await e}}async function g(){for(;;){try{const{value:e,done:t}=u?await d.next():d.next();if(t)p.push(null);else{const t=e&&"function"===typeof e.then?await e:e;if(null===t)throw f=!1,new c;if(p.push(t))continue;f=!1}}catch(e){p.destroy(e)}break}}return p._read=function(){f||(f=!0,g())},p._destroy=function(e,t){o(h(e),(()=>r.nextTick(t,e)),(n=>r.nextTick(t,n||e)))},p}e.exports=d},17798:function(e,t,n){"use strict";const{ArrayIsArray:r,ObjectSetPrototypeOf:o}=n(4345),{EventEmitter:i}=n(37007);function a(e){i.call(this,e)}function s(e,t,n){if("function"===typeof e.prependListener)return e.prependListener(t,n);e._events&&e._events[t]?r(e._events[t])?e._events[t].unshift(n):e._events[t]=[n,e._events[t]]:e.on(t,n)}o(a.prototype,i.prototype),o(a,i),a.prototype.pipe=function(e,t){const n=this;function r(t){e.writable&&!1===e.write(t)&&n.pause&&n.pause()}function o(){n.readable&&n.resume&&n.resume()}n.on("data",r),e.on("drain",o),e._isStdio||t&&!1===t.end||(n.on("end",l),n.on("close",c));let a=!1;function l(){a||(a=!0,e.end())}function c(){a||(a=!0,"function"===typeof e.destroy&&e.destroy())}function d(e){u(),0===i.listenerCount(this,"error")&&this.emit("error",e)}function u(){n.removeListener("data",r),e.removeListener("drain",o),n.removeListener("end",l),n.removeListener("close",c),n.removeListener("error",d),e.removeListener("error",d),n.removeListener("end",u),n.removeListener("close",u),e.removeListener("close",u)}return s(n,"error",d),s(e,"error",d),n.on("end",u),n.on("close",u),e.on("close",u),e.emit("pipe",n),e},e.exports={Stream:a,prependListener:s}},74988:function(e,t,n){"use strict";const r=globalThis.AbortController||n(25568).AbortController,{codes:{ERR_INVALID_ARG_VALUE:o,ERR_INVALID_ARG_TYPE:i,ERR_MISSING_ARGS:a,ERR_OUT_OF_RANGE:s},AbortError:l}=n(55782),{validateAbortSignal:c,validateInteger:d,validateObject:u}=n(44120),p=n(4345).Symbol("kWeak"),f=n(4345).Symbol("kResistStopPropagation"),{finished:h}=n(25389),g=n(36353),{addAbortSignalNoValidate:y}=n(67826),{isWritable:b,isNodeStream:v}=n(42416),{deprecate:m}=n(60313),{ArrayPrototypePush:w,Boolean:x,MathFloor:_,Number:S,NumberIsNaN:E,Promise:I,PromiseReject:j,PromiseResolve:R,PromisePrototypeThen:A,Symbol:N}=n(4345),k=N("kEmpty"),D=N("kEof");function O(e,t){if(null!=t&&u(t,"options"),null!=(null===t||void 0===t?void 0:t.signal)&&c(t.signal,"options.signal"),v(e)&&!b(e))throw new o("stream",e,"must be writable");const n=g(this,e);return null!==t&&void 0!==t&&t.signal&&y(t.signal,n),n}function T(e,t){if("function"!==typeof e)throw new i("fn",["Function","AsyncFunction"],e);null!=t&&u(t,"options"),null!=(null===t||void 0===t?void 0:t.signal)&&c(t.signal,"options.signal");let r=1;null!=(null===t||void 0===t?void 0:t.concurrency)&&(r=_(t.concurrency));let o=r-1;return null!=(null===t||void 0===t?void 0:t.highWaterMark)&&(o=_(t.highWaterMark)),d(r,"options.concurrency",1),d(o,"options.highWaterMark",0),o+=r,async function*(){const i=n(60313).AbortSignalAny([null===t||void 0===t?void 0:t.signal].filter(x)),a=this,s=[],c={signal:i};let d,u,p=!1,f=0;function h(){p=!0,g()}function g(){f-=1,y()}function y(){u&&!p&&f=o||f>=r)&&await new I((e=>{u=e}))}s.push(D)}catch(t){const e=j(t);A(e,g,h),s.push(e)}finally{p=!0,d&&(d(),d=null)}}b();try{while(1){while(s.length>0){const e=await s[0];if(e===D)return;if(i.aborted)throw new l;e!==k&&(yield e),s.shift(),y()}await new I((e=>{d=e}))}}finally{p=!0,u&&(u(),u=null)}}.call(this)}function L(e=void 0){return null!=e&&u(e,"options"),null!=(null===e||void 0===e?void 0:e.signal)&&c(e.signal,"options.signal"),async function*(){let t=0;for await(const r of this){var n;if(null!==e&&void 0!==e&&null!==(n=e.signal)&&void 0!==n&&n.aborted)throw new l({cause:e.signal.reason});yield[t++,r]}}.call(this)}async function C(e,t=void 0){for await(const n of W.call(this,e,t))return!0;return!1}async function M(e,t=void 0){if("function"!==typeof e)throw new i("fn",["Function","AsyncFunction"],e);return!await C.call(this,(async(...t)=>!await e(...t)),t)}async function P(e,t){for await(const n of W.call(this,e,t))return n}async function F(e,t){if("function"!==typeof e)throw new i("fn",["Function","AsyncFunction"],e);async function n(t,n){return await e(t,n),k}for await(const r of T.call(this,n,t));}function W(e,t){if("function"!==typeof e)throw new i("fn",["Function","AsyncFunction"],e);async function n(t,n){return await e(t,n)?t:k}return T.call(this,n,t)}class J extends a{constructor(){super("reduce"),this.message="Reduce of an empty stream requires an initial value"}}async function B(e,t,n){var o;if("function"!==typeof e)throw new i("reducer",["Function","AsyncFunction"],e);null!=n&&u(n,"options"),null!=(null===n||void 0===n?void 0:n.signal)&&c(n.signal,"options.signal");let a=arguments.length>1;if(null!==n&&void 0!==n&&null!==(o=n.signal)&&void 0!==o&&o.aborted){const e=new l(void 0,{cause:n.signal.reason});throw this.once("error",(()=>{})),await h(this.destroy(e)),e}const s=new r,d=s.signal;if(null!==n&&void 0!==n&&n.signal){const e={once:!0,[p]:this,[f]:!0};n.signal.addEventListener("abort",(()=>s.abort()),e)}let g=!1;try{for await(const r of this){var y;if(g=!0,null!==n&&void 0!==n&&null!==(y=n.signal)&&void 0!==y&&y.aborted)throw new l;a?t=await e(t,r,{signal:d}):(t=r,a=!0)}if(!g&&!a)throw new J}finally{s.abort()}return t}async function $(e){null!=e&&u(e,"options"),null!=(null===e||void 0===e?void 0:e.signal)&&c(e.signal,"options.signal");const t=[];for await(const r of this){var n;if(null!==e&&void 0!==e&&null!==(n=e.signal)&&void 0!==n&&n.aborted)throw new l(void 0,{cause:e.signal.reason});w(t,r)}return t}function H(e,t){const n=T.call(this,e,t);return async function*(){for await(const e of n)yield*e}.call(this)}function U(e){if(e=S(e),E(e))return 0;if(e<0)throw new s("number",">= 0",e);return e}function V(e,t=void 0){return null!=t&&u(t,"options"),null!=(null===t||void 0===t?void 0:t.signal)&&c(t.signal,"options.signal"),e=U(e),async function*(){var n;if(null!==t&&void 0!==t&&null!==(n=t.signal)&&void 0!==n&&n.aborted)throw new l;for await(const o of this){var r;if(null!==t&&void 0!==t&&null!==(r=t.signal)&&void 0!==r&&r.aborted)throw new l;e--<=0&&(yield o)}}.call(this)}function q(e,t=void 0){return null!=t&&u(t,"options"),null!=(null===t||void 0===t?void 0:t.signal)&&c(t.signal,"options.signal"),e=U(e),async function*(){var n;if(null!==t&&void 0!==t&&null!==(n=t.signal)&&void 0!==n&&n.aborted)throw new l;for await(const o of this){var r;if(null!==t&&void 0!==t&&null!==(r=t.signal)&&void 0!==r&&r.aborted)throw new l;if(e-- >0&&(yield o),e<=0)return}}.call(this)}e.exports.streamReturningOperators={asIndexedPairs:m(L,"readable.asIndexedPairs will be removed in a future version."),drop:V,filter:W,flatMap:H,map:T,take:q,compose:O},e.exports.promiseReturningOperators={every:M,forEach:F,reduce:B,toArray:$,some:C,find:P}},60579:function(e,t,n){"use strict";const{ObjectSetPrototypeOf:r}=n(4345);e.exports=i;const o=n(13665);function i(e){if(!(this instanceof i))return new i(e);o.call(this,e)}r(i.prototype,o.prototype),r(i,o),i.prototype._transform=function(e,t,n){n(null,e)}},58503:function(e,t,n){const r=n(65606),{ArrayIsArray:o,Promise:i,SymbolAsyncIterator:a,SymbolDispose:s}=n(4345),l=n(25389),{once:c}=n(60313),d=n(40023),u=n(61599),{aggregateTwoErrors:p,codes:{ERR_INVALID_ARG_TYPE:f,ERR_INVALID_RETURN_VALUE:h,ERR_MISSING_ARGS:g,ERR_STREAM_DESTROYED:y,ERR_STREAM_PREMATURE_CLOSE:b},AbortError:v}=n(55782),{validateFunction:m,validateAbortSignal:w}=n(44120),{isIterable:x,isReadable:_,isReadableNodeStream:S,isNodeStream:E,isTransformStream:I,isWebStream:j,isReadableStream:R,isReadableFinished:A}=n(42416),N=globalThis.AbortController||n(25568).AbortController;let k,D,O;function T(e,t,n){let r=!1;e.on("close",(()=>{r=!0}));const o=l(e,{readable:t,writable:n},(e=>{r=!e}));return{destroy:t=>{r||(r=!0,d.destroyer(e,t||new y("pipe")))},cleanup:o}}function L(e){return m(e[e.length-1],"streams[stream.length - 1]"),e.pop()}function C(e){if(x(e))return e;if(S(e))return M(e);throw new f("val",["Readable","Iterable","AsyncIterable"],e)}async function*M(e){D||(D=n(51005)),yield*D.prototype[a].call(e)}async function P(e,t,n,{end:r}){let o,a=null;const s=e=>{if(e&&(o=e),a){const e=a;a=null,e()}},c=()=>new i(((e,t)=>{o?t(o):a=()=>{o?t(o):e()}}));t.on("drain",s);const d=l(t,{readable:!1},s);try{t.writableNeedDrain&&await c();for await(const n of e)t.write(n)||await c();r&&(t.end(),await c()),n()}catch(u){n(o!==u?p(o,u):u)}finally{d(),t.off("drain",s)}}async function F(e,t,n,{end:r}){I(t)&&(t=t.writable);const o=t.getWriter();try{for await(const t of e)await o.ready,o.write(t).catch((()=>{}));await o.ready,r&&await o.close(),n()}catch(i){try{await o.abort(i),n(i)}catch(i){n(i)}}}function W(...e){return J(e,c(L(e)))}function J(e,t,i){if(1===e.length&&o(e[0])&&(e=e[0]),e.length<2)throw new g("streams");const a=new N,l=a.signal,c=null===i||void 0===i?void 0:i.signal,d=[];function p(){W(new v)}let y,b,m;w(c,"options.signal"),O=O||n(60313).addAbortListener,c&&(y=O(c,p));const A=[];let D,L=0;function M(e){W(e,0===--L)}function W(e,n){var o;if(!e||b&&"ERR_STREAM_PREMATURE_CLOSE"!==b.code||(b=e),b||n){while(A.length)A.shift()(b);null===(o=y)||void 0===o||o[s](),a.abort(),n&&(b||d.forEach((e=>e())),r.nextTick(t,b,m))}}for(let U=0;U0,z=q||!1!==(null===i||void 0===i?void 0:i.end),K=U===e.length-1;if(E(V)){if(z){const{destroy:Q,cleanup:X}=T(V,q,G);A.push(Q),_(V)&&K&&d.push(X)}function J(e){e&&"AbortError"!==e.name&&"ERR_STREAM_PREMATURE_CLOSE"!==e.code&&M(e)}V.on("error",J),_(V)&&K&&d.push((()=>{V.removeListener("error",J)}))}if(0===U)if("function"===typeof V){if(D=V({signal:l}),!x(D))throw new h("Iterable, AsyncIterable or Stream","source",D)}else D=x(V)||S(V)||I(V)?V:u.from(V);else if("function"===typeof V){var $;if(I(D))D=C(null===($=D)||void 0===$?void 0:$.readable);else D=C(D);if(D=V(D,{signal:l}),q){if(!x(D,!0))throw new h("AsyncIterable",`transform[${U-1}]`,D)}else{var H;k||(k=n(60579));const Y=new k({objectMode:!0}),Z=null===(H=D)||void 0===H?void 0:H.then;if("function"===typeof Z)L++,Z.call(D,(e=>{m=e,null!=e&&Y.write(e),z&&Y.end(),r.nextTick(M)}),(e=>{Y.destroy(e),r.nextTick(M,e)}));else if(x(D,!0))L++,P(D,Y,M,{end:z});else{if(!R(D)&&!I(D))throw new h("AsyncIterable or Promise","destination",D);{const ne=D.readable||D;L++,P(ne,Y,M,{end:z})}}D=Y;const{destroy:ee,cleanup:te}=T(D,!1,!0);A.push(ee),K&&d.push(te)}}else if(E(V)){if(S(D)){L+=2;const re=B(D,V,M,{end:z});_(V)&&K&&d.push(re)}else if(I(D)||R(D)){const oe=D.readable||D;L++,P(oe,V,M,{end:z})}else{if(!x(D))throw new f("val",["Readable","Iterable","AsyncIterable","ReadableStream","TransformStream"],D);L++,P(D,V,M,{end:z})}D=V}else if(j(V)){if(S(D))L++,F(C(D),V,M,{end:z});else if(R(D)||x(D))L++,F(D,V,M,{end:z});else{if(!I(D))throw new f("val",["Readable","Iterable","AsyncIterable","ReadableStream","TransformStream"],D);L++,F(D.readable,V,M,{end:z})}D=V}else D=u.from(V)}return(null!==l&&void 0!==l&&l.aborted||null!==c&&void 0!==c&&c.aborted)&&r.nextTick(p),D}function B(e,t,n,{end:o}){let i=!1;if(t.on("close",(()=>{i||n(new b)})),e.pipe(t,{end:!1}),o){function a(){i=!0,t.end()}A(e)?r.nextTick(a):e.once("end",a)}else n();return l(e,{readable:!0,writable:!1},(t=>{const r=e._readableState;t&&"ERR_STREAM_PREMATURE_CLOSE"===t.code&&r&&r.ended&&!r.errored&&!r.errorEmitted?e.once("end",n).once("error",n):n(t)})),l(t,{readable:!1,writable:!0},n)}e.exports={pipelineImpl:J,pipeline:W}},51005:function(e,t,n){const r=n(65606),{ArrayPrototypeIndexOf:o,NumberIsInteger:i,NumberIsNaN:a,NumberParseInt:s,ObjectDefineProperties:l,ObjectKeys:c,ObjectSetPrototypeOf:d,Promise:u,SafeSet:p,SymbolAsyncDispose:f,SymbolAsyncIterator:h,Symbol:g}=n(4345);e.exports=se,se.ReadableState=ae;const{EventEmitter:y}=n(37007),{Stream:b,prependListener:v}=n(17798),{Buffer:m}=n(48287),{addAbortSignal:w}=n(67826),x=n(25389);let _=n(60313).debuglog("stream",(e=>{_=e}));const S=n(2826),E=n(40023),{getHighWaterMark:I,getDefaultHighWaterMark:j}=n(104),{aggregateTwoErrors:R,codes:{ERR_INVALID_ARG_TYPE:A,ERR_METHOD_NOT_IMPLEMENTED:N,ERR_OUT_OF_RANGE:k,ERR_STREAM_PUSH_AFTER_EOF:D,ERR_STREAM_UNSHIFT_AFTER_END_EVENT:O},AbortError:T}=n(55782),{validateObject:L}=n(44120),C=g("kPaused"),{StringDecoder:M}=n(83141),P=n(24485);d(se.prototype,b.prototype),d(se,b);const F=()=>{},{errorOrDestroy:W}=E,J=1,B=2,$=4,H=8,U=16,V=32,q=64,G=128,z=256,K=512,Q=1024,X=2048,Y=4096,Z=8192,ee=16384,te=32768,ne=65536,re=1<<17,oe=1<<18;function ie(e){return{enumerable:!1,get(){return 0!==(this.state&e)},set(t){t?this.state|=e:this.state&=~e}}}function ae(e,t,r){"boolean"!==typeof r&&(r=t instanceof n(61599)),this.state=X|Y|U|V,e&&e.objectMode&&(this.state|=J),r&&e&&e.readableObjectMode&&(this.state|=J),this.highWaterMark=e?I(this,e,"readableHighWaterMark",r):j(!1),this.buffer=new S,this.length=0,this.pipes=[],this.flowing=null,this[C]=null,e&&!1===e.emitClose&&(this.state&=~X),e&&!1===e.autoDestroy&&(this.state&=~Y),this.errored=null,this.defaultEncoding=e&&e.defaultEncoding||"utf8",this.awaitDrainWriters=null,this.decoder=null,this.encoding=null,e&&e.encoding&&(this.decoder=new M(e.encoding),this.encoding=e.encoding)}function se(e){if(!(this instanceof se))return new se(e);const t=this instanceof n(61599);this._readableState=new ae(e,this,t),e&&("function"===typeof e.read&&(this._read=e.read),"function"===typeof e.destroy&&(this._destroy=e.destroy),"function"===typeof e.construct&&(this._construct=e.construct),e.signal&&!t&&w(e.signal,this)),b.call(this,e),E.construct(this,(()=>{this._readableState.needReadable&&ye(this,this._readableState)}))}function le(e,t,n,r){_("readableAddChunk",t);const o=e._readableState;let i;if(0===(o.state&J)&&("string"===typeof t?(n=n||o.defaultEncoding,o.encoding!==n&&(r&&o.encoding?t=m.from(t,n).toString(o.encoding):(t=m.from(t,n),n=""))):t instanceof m?n="":b._isUint8Array(t)?(t=b._uint8ArrayToBuffer(t),n=""):null!=t&&(i=new A("chunk",["string","Buffer","Uint8Array"],t))),i)W(e,i);else if(null===t)o.state&=~H,fe(e,o);else if(0!==(o.state&J)||t&&t.length>0)if(r)if(0!==(o.state&$))W(e,new O);else{if(o.destroyed||o.errored)return!1;ce(e,o,t,!0)}else if(o.ended)W(e,new D);else{if(o.destroyed||o.errored)return!1;o.state&=~H,o.decoder&&!n?(t=o.decoder.write(t),o.objectMode||0!==t.length?ce(e,o,t,!1):ye(e,o)):ce(e,o,t,!1)}else r||(o.state&=~H,ye(e,o));return!o.ended&&(o.length0?(0!==(t.state&ne)?t.awaitDrainWriters.clear():t.awaitDrainWriters=null,t.dataEmitted=!0,e.emit("data",n)):(t.length+=t.objectMode?1:n.length,r?t.buffer.unshift(n):t.buffer.push(n),0!==(t.state&q)&&he(e)),ye(e,t)}l(ae.prototype,{objectMode:ie(J),ended:ie(B),endEmitted:ie($),reading:ie(H),constructed:ie(U),sync:ie(V),needReadable:ie(q),emittedReadable:ie(G),readableListening:ie(z),resumeScheduled:ie(K),errorEmitted:ie(Q),emitClose:ie(X),autoDestroy:ie(Y),destroyed:ie(Z),closed:ie(ee),closeEmitted:ie(te),multiAwaitDrain:ie(ne),readingMore:ie(re),dataEmitted:ie(oe)}),se.prototype.destroy=E.destroy,se.prototype._undestroy=E.undestroy,se.prototype._destroy=function(e,t){t(e)},se.prototype[y.captureRejectionSymbol]=function(e){this.destroy(e)},se.prototype[f]=function(){let e;return this.destroyed||(e=this.readableEnded?null:new T,this.destroy(e)),new u(((t,n)=>x(this,(r=>r&&r!==e?n(r):t(null)))))},se.prototype.push=function(e,t){return le(this,e,t,!1)},se.prototype.unshift=function(e,t){return le(this,e,t,!0)},se.prototype.isPaused=function(){const e=this._readableState;return!0===e[C]||!1===e.flowing},se.prototype.setEncoding=function(e){const t=new M(e);this._readableState.decoder=t,this._readableState.encoding=this._readableState.decoder.encoding;const n=this._readableState.buffer;let r="";for(const o of n)r+=t.write(o);return n.clear(),""!==r&&n.push(r),this._readableState.length=r.length,this};const de=1073741824;function ue(e){if(e>de)throw new k("size","<= 1GiB",e);return e--,e|=e>>>1,e|=e>>>2,e|=e>>>4,e|=e>>>8,e|=e>>>16,e++,e}function pe(e,t){return e<=0||0===t.length&&t.ended?0:0!==(t.state&J)?1:a(e)?t.flowing&&t.length?t.buffer.first().length:t.length:e<=t.length?e:t.ended?t.length:0}function fe(e,t){if(_("onEofChunk"),!t.ended){if(t.decoder){const e=t.decoder.end();e&&e.length&&(t.buffer.push(e),t.length+=t.objectMode?1:e.length)}t.ended=!0,t.sync?he(e):(t.needReadable=!1,t.emittedReadable=!0,ge(e))}}function he(e){const t=e._readableState;_("emitReadable",t.needReadable,t.emittedReadable),t.needReadable=!1,t.emittedReadable||(_("emitReadable",t.flowing),t.emittedReadable=!0,r.nextTick(ge,e))}function ge(e){const t=e._readableState;_("emitReadable_",t.destroyed,t.length,t.ended),t.destroyed||t.errored||!t.length&&!t.ended||(e.emit("readable"),t.emittedReadable=!1),t.needReadable=!t.flowing&&!t.ended&&t.length<=t.highWaterMark,Se(e)}function ye(e,t){!t.readingMore&&t.constructed&&(t.readingMore=!0,r.nextTick(be,e,t))}function be(e,t){while(!t.reading&&!t.ended&&(t.length0,t.resumeScheduled&&!1===t[C]?t.flowing=!0:e.listenerCount("data")>0?e.resume():t.readableListening||(t.flowing=null)}function we(e){_("readable nexttick read 0"),e.read(0)}function xe(e,t){t.resumeScheduled||(t.resumeScheduled=!0,r.nextTick(_e,e,t))}function _e(e,t){_("resume",t.reading),t.reading||e.read(0),t.resumeScheduled=!1,e.emit("resume"),Se(e),t.flowing&&!t.reading&&e.read(0)}function Se(e){const t=e._readableState;_("flow",t.flowing);while(t.flowing&&null!==e.read());}function Ee(e,t){"function"!==typeof e.read&&(e=se.wrap(e,{objectMode:!0}));const n=Ie(e,t);return n.stream=e,n}async function*Ie(e,t){let n,r=F;function o(t){this===e?(r(),r=F):r=t}e.on("readable",o);const i=x(e,{writable:!1},(e=>{n=e?R(n,e):null,r(),r=F}));try{while(1){const t=e.destroyed?null:e.read();if(null!==t)yield t;else{if(n)throw n;if(null===n)return;await new u(o)}}}catch(a){throw n=R(n,a),n}finally{!n&&!1===(null===t||void 0===t?void 0:t.destroyOnReturn)||void 0!==n&&!e._readableState.autoDestroy?(e.off("readable",o),i()):E.destroyer(e,null)}}function je(e,t){if(0===t.length)return null;let n;return t.objectMode?n=t.buffer.shift():!e||e>=t.length?(n=t.decoder?t.buffer.join(""):1===t.buffer.length?t.buffer.first():t.buffer.concat(t.length),t.buffer.clear()):n=t.buffer.consume(e,t.decoder),n}function Re(e){const t=e._readableState;_("endReadable",t.endEmitted),t.endEmitted||(t.ended=!0,r.nextTick(Ae,t,e))}function Ae(e,t){if(_("endReadableNT",e.endEmitted,e.length),!e.errored&&!e.closeEmitted&&!e.endEmitted&&0===e.length)if(e.endEmitted=!0,t.emit("end"),t.writable&&!1===t.allowHalfOpen)r.nextTick(Ne,t);else if(e.autoDestroy){const e=t._writableState,n=!e||e.autoDestroy&&(e.finished||!1===e.writable);n&&t.destroy()}}function Ne(e){const t=e.writable&&!e.writableEnded&&!e.destroyed;t&&e.end()}let ke;function De(){return void 0===ke&&(ke={}),ke}se.prototype.read=function(e){_("read",e),void 0===e?e=NaN:i(e)||(e=s(e,10));const t=this._readableState,n=e;if(e>t.highWaterMark&&(t.highWaterMark=ue(e)),0!==e&&(t.state&=~G),0===e&&t.needReadable&&((0!==t.highWaterMark?t.length>=t.highWaterMark:t.length>0)||t.ended))return _("read: emitReadable",t.length,t.ended),0===t.length&&t.ended?Re(this):he(this),null;if(e=pe(e,t),0===e&&t.ended)return 0===t.length&&Re(this),null;let r,o=0!==(t.state&q);if(_("need readable",o),(0===t.length||t.length-e0?je(e,t):null,null===r?(t.needReadable=t.length<=t.highWaterMark,e=0):(t.length-=e,t.multiAwaitDrain?t.awaitDrainWriters.clear():t.awaitDrainWriters=null),0===t.length&&(t.ended||(t.needReadable=!0),n!==e&&t.ended&&Re(this)),null===r||t.errorEmitted||t.closeEmitted||(t.dataEmitted=!0,this.emit("data",r)),r},se.prototype._read=function(e){throw new N("_read()")},se.prototype.pipe=function(e,t){const n=this,o=this._readableState;1===o.pipes.length&&(o.multiAwaitDrain||(o.multiAwaitDrain=!0,o.awaitDrainWriters=new p(o.awaitDrainWriters?[o.awaitDrainWriters]:[]))),o.pipes.push(e),_("pipe count=%d opts=%j",o.pipes.length,t);const i=(!t||!1!==t.end)&&e!==r.stdout&&e!==r.stderr,a=i?l:m;function s(e,t){_("onunpipe"),e===n&&t&&!1===t.hasUnpiped&&(t.hasUnpiped=!0,u())}function l(){_("onend"),e.end()}let c;o.endEmitted?r.nextTick(a):n.once("end",a),e.on("unpipe",s);let d=!1;function u(){_("cleanup"),e.removeListener("close",y),e.removeListener("finish",b),c&&e.removeListener("drain",c),e.removeListener("error",g),e.removeListener("unpipe",s),n.removeListener("end",l),n.removeListener("end",m),n.removeListener("data",h),d=!0,c&&o.awaitDrainWriters&&(!e._writableState||e._writableState.needDrain)&&c()}function f(){d||(1===o.pipes.length&&o.pipes[0]===e?(_("false write response, pause",0),o.awaitDrainWriters=e,o.multiAwaitDrain=!1):o.pipes.length>1&&o.pipes.includes(e)&&(_("false write response, pause",o.awaitDrainWriters.size),o.awaitDrainWriters.add(e)),n.pause()),c||(c=ve(n,e),e.on("drain",c))}function h(t){_("ondata");const n=e.write(t);_("dest.write",n),!1===n&&f()}function g(t){if(_("onerror",t),m(),e.removeListener("error",g),0===e.listenerCount("error")){const n=e._writableState||e._readableState;n&&!n.errorEmitted?W(e,t):e.emit("error",t)}}function y(){e.removeListener("finish",b),m()}function b(){_("onfinish"),e.removeListener("close",y),m()}function m(){_("unpipe"),n.unpipe(e)}return n.on("data",h),v(e,"error",g),e.once("close",y),e.once("finish",b),e.emit("pipe",n),!0===e.writableNeedDrain?f():o.flowing||(_("pipe resume"),n.resume()),e},se.prototype.unpipe=function(e){const t=this._readableState,n={hasUnpiped:!1};if(0===t.pipes.length)return this;if(!e){const e=t.pipes;t.pipes=[],this.pause();for(let t=0;t0,!1!==o.flowing&&this.resume()):"readable"===e&&(o.endEmitted||o.readableListening||(o.readableListening=o.needReadable=!0,o.flowing=!1,o.emittedReadable=!1,_("on readable",o.length,o.reading),o.length?he(this):o.reading||r.nextTick(we,this))),n},se.prototype.addListener=se.prototype.on,se.prototype.removeListener=function(e,t){const n=b.prototype.removeListener.call(this,e,t);return"readable"===e&&r.nextTick(me,this),n},se.prototype.off=se.prototype.removeListener,se.prototype.removeAllListeners=function(e){const t=b.prototype.removeAllListeners.apply(this,arguments);return"readable"!==e&&void 0!==e||r.nextTick(me,this),t},se.prototype.resume=function(){const e=this._readableState;return e.flowing||(_("resume"),e.flowing=!e.readableListening,xe(this,e)),e[C]=!1,this},se.prototype.pause=function(){return _("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(_("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState[C]=!0,this},se.prototype.wrap=function(e){let t=!1;e.on("data",(n=>{!this.push(n)&&e.pause&&(t=!0,e.pause())})),e.on("end",(()=>{this.push(null)})),e.on("error",(e=>{W(this,e)})),e.on("close",(()=>{this.destroy()})),e.on("destroy",(()=>{this.destroy()})),this._read=()=>{t&&e.resume&&(t=!1,e.resume())};const n=c(e);for(let r=1;r{t?e?e(t):this.destroy(t):(null!=n&&this.push(n),this.push(null),e&&e())}))}function u(){this._final!==d&&d.call(this)}c.prototype._final=d,c.prototype._transform=function(e,t,n){throw new i("_transform()")},c.prototype._write=function(e,t,n){const r=this._readableState,o=this._writableState,i=r.length;this._transform(e,t,((e,t)=>{e?n(e):(null!=t&&this.push(t),o.ended||i===r.length||r.length{const e=this._writableState;e.writing||H(this,e),G(this,e)}))}function C(e,t,n,o){const i=e._writableState;if("function"===typeof n)o=n,n=i.defaultEncoding;else{if(n){if("buffer"!==n&&!g.isEncoding(n))throw new A(n)}else n=i.defaultEncoding;"function"!==typeof o&&(o=k)}if(null===t)throw new j;if(!i.objectMode)if("string"===typeof t)!1!==i.decodeStrings&&(t=g.from(t,n),n="buffer");else if(t instanceof g)n="buffer";else{if(!h._isUint8Array(t))throw new w("chunk",["string","Buffer","Uint8Array"],t);t=h._uint8ArrayToBuffer(t),n="buffer"}let a;return i.ending?a=new R:i.destroyed&&(a=new E("write")),a?(r.nextTick(o,a),N(e,a,!0),a):(i.pendingcb++,M(e,i,t,n,o))}function M(e,t,n,r,o){const i=t.objectMode?1:n.length;t.length+=i;const a=t.lengthn.bufferedIndex&&H(e,n),o?null!==n.afterWriteTickInfo&&n.afterWriteTickInfo.cb===i?n.afterWriteTickInfo.count++:(n.afterWriteTickInfo={count:1,cb:i,stream:e,state:n},r.nextTick(J,n.afterWriteTickInfo)):B(e,n,1,i))):N(e,new _)}function J({stream:e,state:t,count:n,cb:r}){return t.afterWriteTickInfo=null,B(e,t,n,r)}function B(e,t,n,r){const o=!t.ending&&!e.destroyed&&0===t.length&&t.needDrain;o&&(t.needDrain=!1,e.emit("drain"));while(n-- >0)t.pendingcb--,r();t.destroyed&&$(t),G(e,t)}function $(e){if(e.writing)return;for(let o=e.bufferedIndex;o1&&e._writev){t.pendingcb-=a-1;const r=t.allNoop?k:e=>{for(let t=s;t256?(n.splice(0,s),t.bufferedIndex=0):t.bufferedIndex=s}t.bufferProcessing=!1}function U(e){return e.ending&&!e.destroyed&&e.constructed&&0===e.length&&!e.errored&&0===e.buffered.length&&!e.finished&&!e.writing&&!e.errorEmitted&&!e.closeEmitted}function V(e,t){let n=!1;function o(o){if(n)N(e,null!==o&&void 0!==o?o:_());else if(n=!0,t.pendingcb--,o){const n=t[D].splice(0);for(let e=0;e{U(t)?z(e,t):t.pendingcb--}),e,t)):U(t)&&(t.pendingcb++,z(e,t))))}function z(e,t){t.pendingcb--,t.finished=!0;const n=t[D].splice(0);for(let r=0;r>>0}const N=/^[0-7]+$/,k="must be a 32-bit unsigned integer or an octal string";function D(e,t,n){if("undefined"===typeof e&&(e=n),"string"===typeof e){if(null===f(N,e))throw new w(t,e,k);e=u(e,8)}return L(e,t),e}const O=b(((e,t,n=d,r=c)=>{if("number"!==typeof e)throw new m(t,"number",e);if(!s(e))throw new x(t,"an integer",e);if(er)throw new x(t,`>= ${n} && <= ${r}`,e)})),T=b(((e,t,n=-2147483648,r=2147483647)=>{if("number"!==typeof e)throw new m(t,"number",e);if(!s(e))throw new x(t,"an integer",e);if(er)throw new x(t,`>= ${n} && <= ${r}`,e)})),L=b(((e,t,n=!1)=>{if("number"!==typeof e)throw new m(t,"number",e);if(!s(e))throw new x(t,"an integer",e);const r=n?1:0,o=4294967295;if(eo)throw new x(t,`>= ${r} && <= ${o}`,e)}));function C(e,t){if("string"!==typeof e)throw new m(t,"string",e)}function M(e,t,n=void 0,r){if("number"!==typeof e)throw new m(t,"number",e);if(null!=n&&er||(null!=n||null!=r)&&l(e))throw new x(t,`${null!=n?`>= ${n}`:""}${null!=n&&null!=r?" && ":""}${null!=r?`<= ${r}`:""}`,e)}const P=b(((e,t,n)=>{if(!o(n,e)){const r=i(a(n,(e=>"string"===typeof e?`'${e}'`:h(e))),", "),o="must be one of: "+r;throw new w(t,e,o)}}));function F(e,t){if("boolean"!==typeof e)throw new m(t,"boolean",e)}function W(e,t,n){return null!=e&&p(e,t)?e[t]:n}const J=b(((e,t,n=null)=>{const o=W(n,"allowArray",!1),i=W(n,"allowFunction",!1),a=W(n,"nullable",!1);if(!a&&null===e||!o&&r(e)||"object"!==typeof e&&(!i||"function"!==typeof e))throw new m(t,"Object",e)})),B=b(((e,t)=>{if(null!=e&&"object"!==typeof e&&"function"!==typeof e)throw new m(t,"a dictionary",e)})),$=b(((e,t,n=0)=>{if(!r(e))throw new m(t,"Array",e);if(e.length{if(!I(e))throw new m(t,["Buffer","TypedArray","DataView"],e)}));function z(e,t){const n=S(t),r=e.length;if("hex"===n&&r%2!==0)throw new w("encoding",t,`is invalid for data of length ${r}`)}function K(e,t="Port",n=!0){if("number"!==typeof e&&"string"!==typeof e||"string"===typeof e&&0===y(e).length||+e!==+e>>>0||e>65535||0===e&&!n)throw new v(t,e,n);return 0|e}const Q=b(((e,t)=>{if(void 0!==e&&(null===e||"object"!==typeof e||!("aborted"in e)))throw new m(t,"AbortSignal",e)})),X=b(((e,t)=>{if("function"!==typeof e)throw new m(t,"Function",e)})),Y=b(((e,t)=>{if("function"!==typeof e||E(e))throw new m(t,"Function",e)})),Z=b(((e,t)=>{if(void 0!==e)throw new m(t,"undefined",e)}));function ee(e,t,n){if(!o(n,e))throw new m(t,`('${i(n,"|")}')`,e)}const te=/^(?:<[^>]*>)(?:\s*;\s*[^;"\s]+(?:=(")?[^;"\s]*\1)?)*$/;function ne(e,t){if("undefined"===typeof e||!f(te,e))throw new w(t,e,'must be an array or string of format "; rel=preload; as=style"')}function re(e){if("string"===typeof e)return ne(e,"hints"),e;if(r(e)){const t=e.length;let n="";if(0===t)return n;for(let r=0;r; rel=preload; as=style"')}e.exports={isInt32:R,isUint32:A,parseFileMode:D,validateArray:$,validateStringArray:H,validateBooleanArray:U,validateAbortSignalArray:V,validateBoolean:F,validateBuffer:G,validateDictionary:B,validateEncoding:z,validateFunction:X,validateInt32:T,validateInteger:O,validateNumber:M,validateObject:J,validateOneOf:P,validatePlainFunction:Y,validatePort:K,validateSignalName:q,validateString:C,validateUint32:L,validateUndefined:Z,validateUnion:ee,validateAbortSignal:Q,validateLinkHeaderValue:re}},23521:function(e,t,n){"use strict";const r=n(79057),o=n(80466),i=r.Readable.destroy;e.exports=r.Readable,e.exports._uint8ArrayToBuffer=r._uint8ArrayToBuffer,e.exports._isUint8Array=r._isUint8Array,e.exports.isDisturbed=r.isDisturbed,e.exports.isErrored=r.isErrored,e.exports.isReadable=r.isReadable,e.exports.Readable=r.Readable,e.exports.Writable=r.Writable,e.exports.Duplex=r.Duplex,e.exports.Transform=r.Transform,e.exports.PassThrough=r.PassThrough,e.exports.addAbortSignal=r.addAbortSignal,e.exports.finished=r.finished,e.exports.destroy=r.destroy,e.exports.destroy=i,e.exports.pipeline=r.pipeline,e.exports.compose=r.compose,Object.defineProperty(r,"promises",{configurable:!0,enumerable:!0,get(){return o}}),e.exports.Stream=r.Stream,e.exports["default"]=e.exports},55782:function(e,t,n){"use strict";const{format:r,inspect:o,AggregateError:i}=n(60313),a=globalThis.AggregateError||i,s=Symbol("kIsNodeError"),l=["string","function","number","object","Function","Object","boolean","bigint","symbol"],c=/^([A-Z][a-z0-9]*)+$/,d="__node_internal_",u={};function p(e,t){if(!e)throw new u.ERR_INTERNAL_ASSERTION(t)}function f(e){let t="",n=e.length;const r="-"===e[0]?1:0;for(;n>=r+4;n-=3)t=`_${e.slice(n-3,n)}${t}`;return`${e.slice(0,n)}${t}`}function h(e,t,n){if("function"===typeof t)return p(t.length<=n.length,`Code: ${e}; The provided arguments length (${n.length}) does not match the required ones (${t.length}).`),t(...n);const o=(t.match(/%[dfijoOs]/g)||[]).length;return p(o===n.length,`Code: ${e}; The provided arguments length (${n.length}) does not match the required ones (${o}).`),0===n.length?t:r(t,...n)}function g(e,t,n){n||(n=Error);class r extends n{constructor(...n){super(h(e,t,n))}toString(){return`${this.name} [${e}]: ${this.message}`}}Object.defineProperties(r.prototype,{name:{value:n.name,writable:!0,enumerable:!1,configurable:!0},toString:{value(){return`${this.name} [${e}]: ${this.message}`},writable:!0,enumerable:!1,configurable:!0}}),r.prototype.code=e,r.prototype[s]=!0,u[e]=r}function y(e){const t=d+e.name;return Object.defineProperty(e,"name",{value:t}),e}function b(e,t){if(e&&t&&e!==t){if(Array.isArray(t.errors))return t.errors.push(e),t;const n=new a([t,e],t.message);return n.code=t.code,n}return e||t}class v extends Error{constructor(e="The operation was aborted",t=void 0){if(void 0!==t&&"object"!==typeof t)throw new u.ERR_INVALID_ARG_TYPE("options","Object",t);super(e,t),this.code="ABORT_ERR",this.name="AbortError"}}g("ERR_ASSERTION","%s",Error),g("ERR_INVALID_ARG_TYPE",((e,t,n)=>{p("string"===typeof e,"'name' must be a string"),Array.isArray(t)||(t=[t]);let r="The ";e.endsWith(" argument")?r+=`${e} `:r+=`"${e}" ${e.includes(".")?"property":"argument"} `,r+="must be ";const i=[],a=[],s=[];for(const o of t)p("string"===typeof o,"All expected entries have to be of type string"),l.includes(o)?i.push(o.toLowerCase()):c.test(o)?a.push(o):(p("object"!==o,'The value "object" should be written as "Object"'),s.push(o));if(a.length>0){const e=i.indexOf("object");-1!==e&&(i.splice(i,e,1),a.push("Object"))}if(i.length>0){switch(i.length){case 1:r+=`of type ${i[0]}`;break;case 2:r+=`one of type ${i[0]} or ${i[1]}`;break;default:{const e=i.pop();r+=`one of type ${i.join(", ")}, or ${e}`}}(a.length>0||s.length>0)&&(r+=" or ")}if(a.length>0){switch(a.length){case 1:r+=`an instance of ${a[0]}`;break;case 2:r+=`an instance of ${a[0]} or ${a[1]}`;break;default:{const e=a.pop();r+=`an instance of ${a.join(", ")}, or ${e}`}}s.length>0&&(r+=" or ")}switch(s.length){case 0:break;case 1:s[0].toLowerCase()!==s[0]&&(r+="an "),r+=`${s[0]}`;break;case 2:r+=`one of ${s[0]} or ${s[1]}`;break;default:{const e=s.pop();r+=`one of ${s.join(", ")}, or ${e}`}}if(null==n)r+=`. Received ${n}`;else if("function"===typeof n&&n.name)r+=`. Received function ${n.name}`;else if("object"===typeof n){var d;if(null!==(d=n.constructor)&&void 0!==d&&d.name)r+=`. Received an instance of ${n.constructor.name}`;else{const e=o(n,{depth:-1});r+=`. Received ${e}`}}else{let e=o(n,{colors:!1});e.length>25&&(e=`${e.slice(0,25)}...`),r+=`. Received type ${typeof n} (${e})`}return r}),TypeError),g("ERR_INVALID_ARG_VALUE",((e,t,n="is invalid")=>{let r=o(t);r.length>128&&(r=r.slice(0,128)+"...");const i=e.includes(".")?"property":"argument";return`The ${i} '${e}' ${n}. Received ${r}`}),TypeError),g("ERR_INVALID_RETURN_VALUE",((e,t,n)=>{var r;const o=null!==n&&void 0!==n&&null!==(r=n.constructor)&&void 0!==r&&r.name?`instance of ${n.constructor.name}`:"type "+typeof n;return`Expected ${e} to be returned from the "${t}" function but got ${o}.`}),TypeError),g("ERR_MISSING_ARGS",((...e)=>{let t;p(e.length>0,"At least one arg needs to be specified");const n=e.length;switch(e=(Array.isArray(e)?e:[e]).map((e=>`"${e}"`)).join(" or "),n){case 1:t+=`The ${e[0]} argument`;break;case 2:t+=`The ${e[0]} and ${e[1]} arguments`;break;default:{const n=e.pop();t+=`The ${e.join(", ")}, and ${n} arguments`}break}return`${t} must be specified`}),TypeError),g("ERR_OUT_OF_RANGE",((e,t,n)=>{let r;return p(t,'Missing "range" argument'),Number.isInteger(n)&&Math.abs(n)>2**32?r=f(String(n)):"bigint"===typeof n?(r=String(n),(n>2n**32n||n<-(2n**32n))&&(r=f(r)),r+="n"):r=o(n),`The value of "${e}" is out of range. It must be ${t}. Received ${r}`}),RangeError),g("ERR_MULTIPLE_CALLBACK","Callback called multiple times",Error),g("ERR_METHOD_NOT_IMPLEMENTED","The %s method is not implemented",Error),g("ERR_STREAM_ALREADY_FINISHED","Cannot call %s after a stream was finished",Error),g("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable",Error),g("ERR_STREAM_DESTROYED","Cannot call %s after a stream was destroyed",Error),g("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),g("ERR_STREAM_PREMATURE_CLOSE","Premature close",Error),g("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF",Error),g("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event",Error),g("ERR_STREAM_WRITE_AFTER_END","write after end",Error),g("ERR_UNKNOWN_ENCODING","Unknown encoding: %s",TypeError),e.exports={AbortError:v,aggregateTwoErrors:y(b),hideStackFrames:y,codes:u}},4345:function(e){"use strict";e.exports={ArrayIsArray(e){return Array.isArray(e)},ArrayPrototypeIncludes(e,t){return e.includes(t)},ArrayPrototypeIndexOf(e,t){return e.indexOf(t)},ArrayPrototypeJoin(e,t){return e.join(t)},ArrayPrototypeMap(e,t){return e.map(t)},ArrayPrototypePop(e,t){return e.pop(t)},ArrayPrototypePush(e,t){return e.push(t)},ArrayPrototypeSlice(e,t,n){return e.slice(t,n)},Error:Error,FunctionPrototypeCall(e,t,...n){return e.call(t,...n)},FunctionPrototypeSymbolHasInstance(e,t){return Function.prototype[Symbol.hasInstance].call(e,t)},MathFloor:Math.floor,Number:Number,NumberIsInteger:Number.isInteger,NumberIsNaN:Number.isNaN,NumberMAX_SAFE_INTEGER:Number.MAX_SAFE_INTEGER,NumberMIN_SAFE_INTEGER:Number.MIN_SAFE_INTEGER,NumberParseInt:Number.parseInt,ObjectDefineProperties(e,t){return Object.defineProperties(e,t)},ObjectDefineProperty(e,t,n){return Object.defineProperty(e,t,n)},ObjectGetOwnPropertyDescriptor(e,t){return Object.getOwnPropertyDescriptor(e,t)},ObjectKeys(e){return Object.keys(e)},ObjectSetPrototypeOf(e,t){return Object.setPrototypeOf(e,t)},Promise:Promise,PromisePrototypeCatch(e,t){return e.catch(t)},PromisePrototypeThen(e,t,n){return e.then(t,n)},PromiseReject(e){return Promise.reject(e)},PromiseResolve(e){return Promise.resolve(e)},ReflectApply:Reflect.apply,RegExpPrototypeTest(e,t){return e.test(t)},SafeSet:Set,String:String,StringPrototypeSlice(e,t,n){return e.slice(t,n)},StringPrototypeToLowerCase(e){return e.toLowerCase()},StringPrototypeToUpperCase(e){return e.toUpperCase()},StringPrototypeTrim(e){return e.trim()},Symbol:Symbol,SymbolFor:Symbol.for,SymbolAsyncIterator:Symbol.asyncIterator,SymbolHasInstance:Symbol.hasInstance,SymbolIterator:Symbol.iterator,SymbolDispose:Symbol.dispose||Symbol("Symbol.dispose"),SymbolAsyncDispose:Symbol.asyncDispose||Symbol("Symbol.asyncDispose"),TypedArrayPrototypeSet(e,t,n){return e.set(t,n)},Boolean:Boolean,Uint8Array:Uint8Array}},60313:function(e,t,n){"use strict";const r=n(48287),{kResistStopPropagation:o,SymbolDispose:i}=n(4345),a=globalThis.AbortSignal||n(25568).AbortSignal,s=globalThis.AbortController||n(25568).AbortController,l=Object.getPrototypeOf((async function(){})).constructor,c=globalThis.Blob||r.Blob,d="undefined"!==typeof c?function(e){return e instanceof c}:function(e){return!1},u=(e,t)=>{if(void 0!==e&&(null===e||"object"!==typeof e||!("aborted"in e)))throw new ERR_INVALID_ARG_TYPE(t,"AbortSignal",e)},p=(e,t)=>{if("function"!==typeof e)throw new ERR_INVALID_ARG_TYPE(t,"Function",e)};class f extends Error{constructor(e){if(!Array.isArray(e))throw new TypeError("Expected input to be an Array, got "+typeof e);let t="";for(let n=0;n{e=n,t=r}));return{promise:n,resolve:e,reject:t}},promisify(e){return new Promise(((t,n)=>{e(((e,...r)=>e?n(e):t(...r)))}))},debuglog(){return function(){}},format(e,...t){return e.replace(/%([sdifj])/g,(function(...[e,n]){const r=t.shift();if("f"===n)return r.toFixed(6);if("j"===n)return JSON.stringify(r);if("s"===n&&"object"===typeof r){const e=r.constructor!==Object?r.constructor.name:"";return`${e} {}`.trim()}return r.toString()}))},inspect(e){switch(typeof e){case"string":if(e.includes("'")){if(!e.includes('"'))return`"${e}"`;if(!e.includes("`")&&!e.includes("${"))return`\`${e}\``}return`'${e}'`;case"number":return isNaN(e)?"NaN":Object.is(e,-0)?String(e):e;case"bigint":return`${String(e)}n`;case"boolean":case"undefined":return String(e);case"object":return"{}"}},types:{isAsyncFunction(e){return e instanceof l},isArrayBufferView(e){return ArrayBuffer.isView(e)}},isBlob:d,deprecate(e,t){return e},addAbortListener:n(37007).addAbortListener||function(e,t){if(void 0===e)throw new ERR_INVALID_ARG_TYPE("signal","AbortSignal",e);let n;return u(e,"signal"),p(t,"listener"),e.aborted?queueMicrotask((()=>t())):(e.addEventListener("abort",t,{__proto__:null,once:!0,[o]:!0}),n=()=>{e.removeEventListener("abort",t)}),{__proto__:null,[i](){var e;null===(e=n)||void 0===e||e()}}},AbortSignalAny:a.any||function(e){if(1===e.length)return e[0];const t=new s,n=()=>t.abort();return e.forEach((e=>{u(e,"signals"),e.addEventListener("abort",n,{once:!0})})),t.signal.addEventListener("abort",(()=>{e.forEach((e=>e.removeEventListener("abort",n)))}),{once:!0}),t.signal}},e.exports.promisify.custom=Symbol.for("nodejs.util.promisify.custom")},79057:function(e,t,n){const{Buffer:r}=n(48287),{ObjectDefineProperty:o,ObjectKeys:i,ReflectApply:a}=n(4345),{promisify:{custom:s}}=n(60313),{streamReturningOperators:l,promiseReturningOperators:c}=n(74988),{codes:{ERR_ILLEGAL_CONSTRUCTOR:d}}=n(55782),u=n(36353),{setDefaultHighWaterMark:p,getDefaultHighWaterMark:f}=n(104),{pipeline:h}=n(58503),{destroyer:g}=n(40023),y=n(25389),b=n(80466),v=n(42416),m=e.exports=n(17798).Stream;m.isDestroyed=v.isDestroyed,m.isDisturbed=v.isDisturbed,m.isErrored=v.isErrored,m.isReadable=v.isReadable,m.isWritable=v.isWritable,m.Readable=n(51005);for(const _ of i(l)){const S=l[_];function w(...e){if(new.target)throw d();return m.Readable.from(a(S,this,e))}o(w,"name",{__proto__:null,value:S.name}),o(w,"length",{__proto__:null,value:S.length}),o(m.Readable.prototype,_,{__proto__:null,value:w,enumerable:!1,configurable:!0,writable:!0})}for(const E of i(c)){const I=c[E];function w(...e){if(new.target)throw d();return a(I,this,e)}o(w,"name",{__proto__:null,value:I.name}),o(w,"length",{__proto__:null,value:I.length}),o(m.Readable.prototype,E,{__proto__:null,value:w,enumerable:!1,configurable:!0,writable:!0})}m.Writable=n(16381),m.Duplex=n(61599),m.Transform=n(13665),m.PassThrough=n(60579),m.pipeline=h;const{addAbortSignal:x}=n(67826);m.addAbortSignal=x,m.finished=y,m.destroy=g,m.compose=u,m.setDefaultHighWaterMark=p,m.getDefaultHighWaterMark=f,o(m,"promises",{__proto__:null,configurable:!0,enumerable:!0,get(){return b}}),o(h,s,{__proto__:null,enumerable:!0,get(){return b.pipeline}}),o(y,s,{__proto__:null,enumerable:!0,get(){return b.finished}}),m.Stream=m,m._isUint8Array=function(e){return e instanceof Uint8Array},m._uint8ArrayToBuffer=function(e){return r.from(e.buffer,e.byteOffset,e.byteLength)}},80466:function(e,t,n){"use strict";const{ArrayPrototypePop:r,Promise:o}=n(4345),{isIterable:i,isNodeStream:a,isWebStream:s}=n(42416),{pipelineImpl:l}=n(58503),{finished:c}=n(25389);function d(...e){return new o(((t,n)=>{let o,c;const d=e[e.length-1];if(d&&"object"===typeof d&&!a(d)&&!i(d)&&!s(d)){const t=r(e);o=t.signal,c=t.end}l(e,((e,r)=>{e?n(e):t(r)}),{signal:o,end:c})}))}n(79057),e.exports={finished:c,pipeline:d}},82341:function(e){"use strict";e.exports=function e(t){return null===t||"object"!==typeof t||null!=t.toJSON?JSON.stringify(t):Array.isArray(t)?"["+t.reduce(((t,n,r)=>{const o=0===r?"":",",i=void 0===n||"symbol"===typeof n?null:n;return t+o+e(i)}),"")+"]":"{"+Object.keys(t).sort().reduce(((n,r,o)=>{if(void 0===t[r]||"symbol"===typeof t[r])return n;const i=0===n.length?"":",";return n+i+e(r)+":"+e(t[r])}),"")+"}"}},47034:function(e,t,n){"use strict";const{isArray:r,isObject:o,isString:i}=n(7382),{asArray:a}=n(59263),{prependBase:s}=n(30470),l=n(82207),c=n(37532),d=10;function u(e){throw new l("Invalid JSON-LD syntax; @context must be an object.","jsonld.SyntaxError",{code:"invalid local context",context:e})}function p({context:e,base:t}){if(!e)return;const n=e["@context"];if(i(n))e["@context"]=s(t,n);else if(r(n))for(let r=0;rd)throw new l("Maximum number of @context URLs exceeded.","jsonld.ContextUrlError",{code:"json-ld-1.0"===e.processingMode?"loading remote context failed":"context overflow",max:d});if(a.has(t))throw new l("Cyclical @context URLs detected.","jsonld.ContextUrlError",{code:"json-ld-1.0"===e.processingMode?"recursive context inclusion":"context overflow",url:t});let s,c;a.add(t);try{c=await n(t),s=c.document||null,i(s)&&(s=JSON.parse(s))}catch(u){throw new l("Dereferencing a URL did not result in a valid JSON-LD object. Possible causes are an inaccessible URL perhaps due to a same-origin policy (ensure the server uses CORS if you are using client-side JavaScript), too many redirects, a non-JSON response, or more than one HTTP Link Header was provided for a remote context.","jsonld.InvalidUrl",{code:"loading remote context failed",url:t,cause:u})}if(!o(s))throw new l("Dereferencing a URL did not result in a JSON object. The response was valid JSON, but it was not a JSON object.","jsonld.InvalidUrl",{code:"invalid remote context",url:t});return s="@context"in s?{"@context":s["@context"]}:{"@context":{}},c.contextUrl&&(r(s["@context"])||(s["@context"]=[s["@context"]]),s["@context"].push(c.contextUrl)),{context:s,remoteDoc:c}}}},82207:function(e){"use strict";e.exports=class extends Error{constructor(e="An unspecified JSON-LD error occurred.",t="jsonld.Error",n={}){super(e),this.name=t,this.message=e,this.details=n}}},45445:function(e){"use strict";e.exports=e=>{class t{toString(){return"[object JsonLdProcessor]"}}return Object.defineProperty(t,"prototype",{writable:!1,enumerable:!1}),Object.defineProperty(t.prototype,"constructor",{writable:!0,enumerable:!1,configurable:!0,value:t}),t.compact=function(t,n){return arguments.length<2?Promise.reject(new TypeError("Could not compact, too few arguments.")):e.compact(t,n)},t.expand=function(t){return arguments.length<1?Promise.reject(new TypeError("Could not expand, too few arguments.")):e.expand(t)},t.flatten=function(t){return arguments.length<1?Promise.reject(new TypeError("Could not flatten, too few arguments.")):e.flatten(t)},t}},68229:function(e,t,n){"use strict";e.exports=n(60989).NQuads},73743:function(e){"use strict";e.exports=class{constructor(){this._requests={}}wrapLoader(e){const t=this;return t._loader=e,function(){return t.add.apply(t,arguments)}}async add(e){let t=this._requests[e];if(t)return Promise.resolve(t);t=this._requests[e]=this._loader(e);try{return await t}finally{delete this._requests[e]}}}},37532:function(e,t,n){"use strict";const r=n(1235),o=10;e.exports=class{constructor({document:e}){this.document=e,this.cache=new r({max:o})}getProcessed(e){return this.cache.get(e)}setProcessed(e,t){this.cache.set(e,t)}}},21058:function(e,t,n){"use strict";const r=n(82207),{isArray:o,isObject:i,isString:a,isUndefined:s}=n(7382),{isList:l,isValue:c,isGraph:d,isSimpleGraph:u,isSubjectReference:p}=n(3978),{expandIri:f,getContextValue:h,isKeyword:g,process:y,processingMode:b}=n(51972),{removeBase:v,prependBase:m}=n(30470),{REGEX_KEYWORD:w,addValue:x,asArray:_,compareShortestLeast:S}=n(59263),E={};function I(e,t,n,r,o,a){null===a&&(a="@null");const s=[];if(("@id"===a||"@reverse"===a)&&i(n)&&"@id"in n){"@reverse"===a&&s.push("@reverse");const t=E.compactIri({activeCtx:e,iri:n["@id"],relativeTo:{vocab:!0}});e.mappings.has(t)&&e.mappings.get(t)&&e.mappings.get(t)["@id"]===n["@id"]?s.push.apply(s,["@vocab","@id"]):s.push.apply(s,["@id","@vocab"])}else{s.push(a);const e=s.find((e=>e.includes("_")));e&&s.push(e.replace(/^[^_]+_/,"_"))}s.push("@none");const l=e.inverse[t];for(const i of r){if(!(i in l))continue;const e=l[i][o];for(const t of s)if(t in e)return e[t]}return null}function j(e,t,n){if("@nest"!==f(e,t,{vocab:!0},n))throw new r("JSON-LD compact error; nested property must have an @nest value resolving to @nest.","jsonld.SyntaxError",{code:"invalid @nest value"})}e.exports=E,E.compact=async({activeCtx:e,activeProperty:t=null,element:n,options:f={}})=>{if(o(n)){let r=[];for(let o=0;o1&&(I=Array.from(I).sort());const R=e;for(const t of I){const n=E.compactIri({activeCtx:R,iri:t,relativeTo:{vocab:!0}}),r=h(w,n,"@context");s(r)||(e=await y({activeCtx:e,localCtx:r,options:f,propagate:!1}))}const A=Object.keys(n).sort();for(const s of A){const p=n[s];if("@id"!==s)if("@type"!==s)if("@reverse"!==s)if("@preserve"!==s)if("@index"!==s)if("@graph"!==s&&"@list"!==s&&"@included"!==s&&g(s)){const t=E.compactIri({activeCtx:e,iri:s,relativeTo:{vocab:!0}});x(m,t,p)}else{if(!o(p))throw new r("JSON-LD expansion error; expanded value must be an array.","jsonld.SyntaxError");if(0===p.length){const t=E.compactIri({activeCtx:e,iri:s,value:p,relativeTo:{vocab:!0},reverse:v}),n=e.mappings.has(t)?e.mappings.get(t)["@nest"]:null;let r=m;n&&(j(e,n,f),i(m[n])||(m[n]={}),r=m[n]),x(r,t,p,{propertyIsArray:!0})}for(const t of p){const n=E.compactIri({activeCtx:e,iri:s,value:t,relativeTo:{vocab:!0},reverse:v}),r=e.mappings.has(n)?e.mappings.get(n)["@nest"]:null;let p=m;r&&(j(e,r,f),i(m[r])||(m[r]={}),p=m[r]);const g=h(e,n,"@container")||[],y=d(t),b=l(t);let w;b?w=t["@list"]:y&&(w=t["@graph"]);let S=await E.compact({activeCtx:e,activeProperty:n,element:b||y?w:t,options:f});if(b){if(o(S)||(S=[S]),g.includes("@list")){x(p,n,S,{valueIsArray:!0,allowDuplicate:!0});continue}S={[E.compactIri({activeCtx:e,iri:"@list",relativeTo:{vocab:!0}})]:S},"@index"in t&&(S[E.compactIri({activeCtx:e,iri:"@index",relativeTo:{vocab:!0}})]=t["@index"])}if(y)if(g.includes("@graph")&&(g.includes("@id")||g.includes("@index")&&u(t))){let r;p.hasOwnProperty(n)?r=p[n]:p[n]=r={};const o=(g.includes("@id")?t["@id"]:t["@index"])||E.compactIri({activeCtx:e,iri:"@none",relativeTo:{vocab:!0}});x(r,o,S,{propertyIsArray:!f.compactArrays||g.includes("@set")})}else g.includes("@graph")&&u(t)?(o(S)&&S.length>1&&(S={"@included":S}),x(p,n,S,{propertyIsArray:!f.compactArrays||g.includes("@set")})):(o(S)&&1===S.length&&f.compactArrays&&(S=S[0]),S={[E.compactIri({activeCtx:e,iri:"@graph",relativeTo:{vocab:!0}})]:S},"@id"in t&&(S[E.compactIri({activeCtx:e,iri:"@id",relativeTo:{vocab:!0}})]=t["@id"]),"@index"in t&&(S[E.compactIri({activeCtx:e,iri:"@index",relativeTo:{vocab:!0}})]=t["@index"]),x(p,n,S,{propertyIsArray:!f.compactArrays||g.includes("@set")}));else if(g.includes("@language")||g.includes("@index")||g.includes("@id")||g.includes("@type")){let r,o;if(p.hasOwnProperty(n)?r=p[n]:p[n]=r={},g.includes("@language"))c(S)&&(S=S["@value"]),o=t["@language"];else if(g.includes("@index")){const r=h(e,n,"@index")||"@index",i=E.compactIri({activeCtx:e,iri:r,relativeTo:{vocab:!0}});if("@index"===r)o=t["@index"],delete S[i];else{let e;if([o,...e]=_(S[r]||[]),a(o))switch(e.length){case 0:delete S[r];break;case 1:S[r]=e[0];break;default:S[r]=e;break}else o=null}}else if(g.includes("@id")){const t=E.compactIri({activeCtx:e,iri:"@id",relativeTo:{vocab:!0}});o=S[t],delete S[t]}else if(g.includes("@type")){const r=E.compactIri({activeCtx:e,iri:"@type",relativeTo:{vocab:!0}});let i;switch([o,...i]=_(S[r]||[]),i.length){case 0:delete S[r];break;case 1:S[r]=i[0];break;default:S[r]=i;break}1===Object.keys(S).length&&"@id"in t&&(S=await E.compact({activeCtx:e,activeProperty:n,element:{"@id":t["@id"]},options:f}))}o||(o=E.compactIri({activeCtx:e,iri:"@none",relativeTo:{vocab:!0}})),x(r,o,S,{propertyIsArray:g.includes("@set")})}else{const e=!f.compactArrays||g.includes("@set")||g.includes("@list")||o(S)&&0===S.length||"@list"===s||"@graph"===s;x(p,n,S,{propertyIsArray:e})}}}else{const n=h(e,t,"@container")||[];if(n.includes("@index"))continue;const r=E.compactIri({activeCtx:e,iri:s,relativeTo:{vocab:!0}});x(m,r,p)}else{const n=await E.compact({activeCtx:e,activeProperty:t,element:p,options:f});o(n)&&0===n.length||x(m,s,n)}else{const t=await E.compact({activeCtx:e,activeProperty:"@reverse",element:p,options:f});for(const n in t)if(e.mappings.has(n)&&e.mappings.get(n).reverse){const r=t[n],o=h(e,n,"@container")||[],i=o.includes("@set")||!f.compactArrays;x(m,n,r,{propertyIsArray:i}),delete t[n]}if(Object.keys(t).length>0){const n=E.compactIri({activeCtx:e,iri:s,relativeTo:{vocab:!0}});x(m,n,t)}}else{let t=_(p).map((e=>E.compactIri({activeCtx:w,iri:e,relativeTo:{vocab:!0}})));1===t.length&&(t=t[0]);const n=E.compactIri({activeCtx:e,iri:"@type",relativeTo:{vocab:!0}}),r=h(e,n,"@container")||[],i=r.includes("@set")&&b(e,1.1),a=i||o(t)&&0===p.length;x(m,n,t,{propertyIsArray:a})}else{let t=_(p).map((t=>E.compactIri({activeCtx:e,iri:t,relativeTo:{vocab:!1},base:f.base})));1===t.length&&(t=t[0]);const n=E.compactIri({activeCtx:e,iri:"@id",relativeTo:{vocab:!0}});m[n]=t}}return m}return n},E.compactIri=({activeCtx:e,iri:t,value:n=null,relativeTo:o={vocab:!1},reverse:a=!1,base:s=null})=>{if(null===t)return t;e.isPropertyTermScoped&&e.previousContext&&(e=e.previousContext);const u=e.getInverse();if(g(t)&&t in u&&"@none"in u[t]&&"@type"in u[t]["@none"]&&"@none"in u[t]["@none"]["@type"])return u[t]["@none"]["@type"]["@none"];if(o.vocab&&t in u){const r=e["@language"]||"@none",o=[];i(n)&&"@index"in n&&!("@graph"in n)&&o.push("@index","@index@set"),i(n)&&"@preserve"in n&&(n=n["@preserve"][0]),d(n)?("@index"in n&&o.push("@graph@index","@graph@index@set","@index","@index@set"),"@id"in n&&o.push("@graph@id","@graph@id@set"),o.push("@graph","@graph@set","@set"),"@index"in n||o.push("@graph@index","@graph@index@set","@index","@index@set"),"@id"in n||o.push("@graph@id","@graph@id@set")):i(n)&&!c(n)&&o.push("@id","@id@set","@type","@set@type");let s="@language",u="@null";if(a)s="@type",u="@reverse",o.push("@set");else if(l(n)){"@index"in n||o.push("@list");const e=n["@list"];if(0===e.length)s="@any",u="@none";else{let t=0===e.length?r:null,n=null;for(let r=0;r=0;--r){const o=f[r],i=o.terms;for(const r of i){const i=r+":"+t.substr(o.iri.length),a=e.mappings.get(r)._prefix&&(!e.mappings.has(i)||null===n&&e.mappings.get(i)["@id"]===t);a&&(null===p||S(i,p)<0)&&(p=i)}}if(null!==p)return p;for(const[i,l]of e.mappings)if(l&&l._prefix&&t.startsWith(i+":"))throw new r(`Absolute IRI "${t}" confused with prefix "${i}".`,"jsonld.SyntaxError",{code:"IRI confused with prefix",context:e});if(!o.vocab){if("@base"in e){if(e["@base"]){const n=v(m(s,e["@base"]),t);return w.test(n)?`./${n}`:n}return t}return v(s,t)}return t},E.compactValue=({activeCtx:e,activeProperty:t,value:n,options:r})=>{if(c(n)){const r=h(e,t,"@type"),o=h(e,t,"@language"),i=h(e,t,"@direction"),s=h(e,t,"@container")||[],l="@index"in n&&!s.includes("@index");if(!l&&"@none"!==r){if(n["@type"]===r)return n["@value"];if("@language"in n&&n["@language"]===o&&"@direction"in n&&n["@direction"]===i)return n["@value"];if("@language"in n&&n["@language"]===o)return n["@value"];if("@direction"in n&&n["@direction"]===i)return n["@value"]}const c=Object.keys(n).length,d=1===c||2===c&&"@index"in n&&!l,u="@language"in e,p=a(n["@value"]),f=e.mappings.has(t)&&null===e.mappings.get(t)["@language"];if(d&&"@none"!==r&&(!u||!p||f))return n["@value"];const g={};return l&&(g[E.compactIri({activeCtx:e,iri:"@index",relativeTo:{vocab:!0}})]=n["@index"]),"@type"in n?g[E.compactIri({activeCtx:e,iri:"@type",relativeTo:{vocab:!0}})]=E.compactIri({activeCtx:e,iri:n["@type"],relativeTo:{vocab:!0}}):"@language"in n&&(g[E.compactIri({activeCtx:e,iri:"@language",relativeTo:{vocab:!0}})]=n["@language"]),"@direction"in n&&(g[E.compactIri({activeCtx:e,iri:"@direction",relativeTo:{vocab:!0}})]=n["@direction"]),g[E.compactIri({activeCtx:e,iri:"@value",relativeTo:{vocab:!0}})]=n["@value"],g}const o=f(e,t,{vocab:!0},r),i=h(e,t,"@type"),s=E.compactIri({activeCtx:e,iri:n["@id"],relativeTo:{vocab:"@vocab"===i},base:r.base});return"@id"===i||"@vocab"===i||"@graph"===o?s:{[E.compactIri({activeCtx:e,iri:"@id",relativeTo:{vocab:!0}})]:s}}},49378:function(e){"use strict";const t="http://www.w3.org/1999/02/22-rdf-syntax-ns#",n="http://www.w3.org/2001/XMLSchema#";e.exports={LINK_HEADER_REL:"http://www.w3.org/ns/json-ld#context",LINK_HEADER_CONTEXT:"http://www.w3.org/ns/json-ld#context",RDF:t,RDF_LIST:t+"List",RDF_FIRST:t+"first",RDF_REST:t+"rest",RDF_NIL:t+"nil",RDF_TYPE:t+"type",RDF_PLAIN_LITERAL:t+"PlainLiteral",RDF_XML_LITERAL:t+"XMLLiteral",RDF_JSON_LITERAL:t+"JSON",RDF_OBJECT:t+"object",RDF_LANGSTRING:t+"langString",XSD:n,XSD_BOOLEAN:n+"boolean",XSD_DOUBLE:n+"double",XSD_INTEGER:n+"integer",XSD_STRING:n+"string"}},51972:function(e,t,n){"use strict";const r=n(59263),o=n(82207),{isArray:i,isObject:a,isString:s,isUndefined:l}=n(7382),{isAbsolute:c,isRelative:d,prependBase:u}=n(30470),{handleEvent:p}=n(92246),{REGEX_BCP47:f,REGEX_KEYWORD:h,asArray:g,compareShortestLeast:y}=n(59263),b=new Map,v=1e4,m={};function w(e,t,n,r,o,i){if(null===t||!s(t)||m.isKeyword(t))return t;if(t.match(h))return null;if(r&&r.hasOwnProperty(t)&&!0!==o.get(t)&&m.createTermDefinition({activeCtx:e,localCtx:r,term:t,defined:o,options:i}),n=n||{},n.vocab){const n=e.mappings.get(t);if(null===n)return null;if(a(n)&&"@id"in n)return n["@id"]}const l=t.indexOf(":");if(l>0){const n=t.substr(0,l),a=t.substr(l+1);if("_"===n||0===a.indexOf("//"))return t;r&&r.hasOwnProperty(n)&&m.createTermDefinition({activeCtx:e,localCtx:r,term:n,defined:o,options:i});const s=e.mappings.get(n);if(s&&s._prefix)return s["@id"]+a;if(c(t))return t}if(n.vocab&&"@vocab"in e){const n=e["@vocab"]+t;t=n}else if(n.base){let n,r;"@base"in e?e["@base"]?(r=u(i.base,e["@base"]),n=u(r,t)):(r=e["@base"],n=t):(r=i.base,n=u(i.base,t)),t=n}return t}function x(e,t){if(!e||"object"!==typeof e||!t||"object"!==typeof t)return e===t;const n=Array.isArray(e);if(n!==Array.isArray(t))return!1;if(n){if(e.length!==t.length)return!1;for(let n=0;n{a(t)&&"@context"in t&&i(t["@context"])&&(t=t["@context"]);const y=g(t);if(0===y.length)return e;const b=[],v=[({event:e,next:t})=>{b.push(e),t()}];n.eventHandler&&v.push(n.eventHandler);const x=n;n={...n,eventHandler:v};const _=await n.contextResolver.resolve({activeCtx:e,context:t,documentLoader:n.documentLoader,base:n.base});a(_[0].document)&&"boolean"===typeof _[0].document["@propagate"]&&(r=_[0].document["@propagate"]);let S=e;r||S.previousContext||(S=S.clone(),S.previousContext=e);for(const i of _){let{document:r}=i;if(e=S,null===r){if(!l&&0!==Object.keys(e.protected).length)throw new o("Tried to nullify a context with protected terms outside of a term definition.","jsonld.SyntaxError",{code:"invalid context nullification"});S=e=m.getInitialContext(n).clone();continue}const g=i.getProcessed(e);if(g){if(x.eventHandler)for(const e of g.events)p({event:e,options:x});S=e=g.context;continue}if(a(r)&&"@context"in r&&(r=r["@context"]),!a(r))throw new o("Invalid JSON-LD syntax; @context must be an object.","jsonld.SyntaxError",{code:"invalid local context",context:r});S=S.clone();const y=new Map;if("@version"in r){if(1.1!==r["@version"])throw new o("Unsupported JSON-LD version: "+r["@version"],"jsonld.UnsupportedVersion",{code:"invalid @version value",context:r});if(e.processingMode&&"json-ld-1.0"===e.processingMode)throw new o("@version: "+r["@version"]+" not compatible with "+e.processingMode,"jsonld.ProcessingModeConflict",{code:"processing mode conflict",context:r});S.processingMode="json-ld-1.1",S["@version"]=r["@version"],y.set("@version",!0)}if(S.processingMode=S.processingMode||e.processingMode,"@base"in r){let e=r["@base"];if(null===e||c(e));else{if(!d(e))throw new o('Invalid JSON-LD syntax; the value of "@base" in a @context must be an absolute IRI, a relative IRI, or null.',"jsonld.SyntaxError",{code:"invalid base IRI",context:r});e=u(S["@base"],e)}S["@base"]=e,y.set("@base",!0)}if("@vocab"in r){const e=r["@vocab"];if(null===e)delete S["@vocab"];else{if(!s(e))throw new o('Invalid JSON-LD syntax; the value of "@vocab" in a @context must be a string or null.',"jsonld.SyntaxError",{code:"invalid vocab mapping",context:r});if(!c(e)&&m.processingMode(S,1))throw new o('Invalid JSON-LD syntax; the value of "@vocab" in a @context must be an absolute IRI.',"jsonld.SyntaxError",{code:"invalid vocab mapping",context:r});{const t=w(S,e,{vocab:!0,base:!0},void 0,void 0,n);c(t)||n.eventHandler&&p({event:{type:["JsonLdEvent"],code:"relative @vocab reference",level:"warning",message:"Relative @vocab reference found.",details:{vocab:t}},options:n}),S["@vocab"]=t}}y.set("@vocab",!0)}if("@language"in r){const e=r["@language"];if(null===e)delete S["@language"];else{if(!s(e))throw new o('Invalid JSON-LD syntax; the value of "@language" in a @context must be a string or null.',"jsonld.SyntaxError",{code:"invalid default language",context:r});e.match(f)||n.eventHandler&&p({event:{type:["JsonLdEvent"],code:"invalid @language value",level:"warning",message:"@language value must be valid BCP47.",details:{language:e}},options:n}),S["@language"]=e.toLowerCase()}y.set("@language",!0)}if("@direction"in r){const t=r["@direction"];if("json-ld-1.0"===e.processingMode)throw new o("Invalid JSON-LD syntax; @direction not compatible with "+e.processingMode,"jsonld.SyntaxError",{code:"invalid context member",context:r});if(null===t)delete S["@direction"];else{if("ltr"!==t&&"rtl"!==t)throw new o('Invalid JSON-LD syntax; the value of "@direction" in a @context must be null, "ltr", or "rtl".',"jsonld.SyntaxError",{code:"invalid base direction",context:r});S["@direction"]=t}y.set("@direction",!0)}if("@propagate"in r){const n=r["@propagate"];if("json-ld-1.0"===e.processingMode)throw new o("Invalid JSON-LD syntax; @propagate not compatible with "+e.processingMode,"jsonld.SyntaxError",{code:"invalid context entry",context:r});if("boolean"!==typeof n)throw new o("Invalid JSON-LD syntax; @propagate value must be a boolean.","jsonld.SyntaxError",{code:"invalid @propagate value",context:t});y.set("@propagate",!0)}if("@import"in r){const i=r["@import"];if("json-ld-1.0"===e.processingMode)throw new o("Invalid JSON-LD syntax; @import not compatible with "+e.processingMode,"jsonld.SyntaxError",{code:"invalid context entry",context:r});if(!s(i))throw new o("Invalid JSON-LD syntax; @import must be a string.","jsonld.SyntaxError",{code:"invalid @import value",context:t});const a=await n.contextResolver.resolve({activeCtx:e,context:i,documentLoader:n.documentLoader,base:n.base});if(1!==a.length)throw new o("Invalid JSON-LD syntax; @import must reference a single context.","jsonld.SyntaxError",{code:"invalid remote context",context:t});const l=a[0].getProcessed(e);if(l)r=l;else{const n=a[0].document;if("@import"in n)throw new o("Invalid JSON-LD syntax: imported context must not include @import.","jsonld.SyntaxError",{code:"invalid context entry",context:t});for(const e in n)r.hasOwnProperty(e)||(r[e]=n[e]);a[0].setProcessed(e,r)}y.set("@import",!0)}y.set("@protected",r["@protected"]||!1);for(const e in r)if(m.createTermDefinition({activeCtx:S,localCtx:r,term:e,defined:y,options:n,overrideProtected:l}),a(r[e])&&"@context"in r[e]){const t=r[e]["@context"];let i=!0;if(s(t)){const e=u(n.base,t);h.has(e)?i=!1:h.add(e)}if(i)try{await m.process({activeCtx:S.clone(),localCtx:r[e]["@context"],overrideProtected:!0,options:n,cycles:h})}catch(E){throw new o("Invalid JSON-LD syntax; invalid scoped context.","jsonld.SyntaxError",{code:"invalid scoped context",context:r[e]["@context"],term:e})}}i.setProcessed(e,{context:S,events:b})}return S},m.createTermDefinition=({activeCtx:e,localCtx:t,term:n,defined:r,options:l,overrideProtected:d=!1})=>{if(r.has(n)){if(r.get(n))return;throw new o("Cyclical context definition detected.","jsonld.CyclicalContext",{code:"cyclic IRI mapping",context:t,term:n})}let u;if(r.set(n,!1),t.hasOwnProperty(n)&&(u=t[n]),"@type"===n&&a(u)&&"@set"===(u["@container"]||"@set")&&m.processingMode(e,1.1)){const e=["@container","@id","@protected"],r=Object.keys(u);if(0===r.length||r.some((t=>!e.includes(t))))throw new o("Invalid JSON-LD syntax; keywords cannot be overridden.","jsonld.SyntaxError",{code:"keyword redefinition",context:t,term:n})}else{if(m.isKeyword(n))throw new o("Invalid JSON-LD syntax; keywords cannot be overridden.","jsonld.SyntaxError",{code:"keyword redefinition",context:t,term:n});if(n.match(h))return void(l.eventHandler&&p({event:{type:["JsonLdEvent"],code:"reserved term",level:"warning",message:'Terms beginning with "@" are reserved for future use and dropped.',details:{term:n}},options:l}));if(""===n)throw new o("Invalid JSON-LD syntax; a term cannot be an empty string.","jsonld.SyntaxError",{code:"invalid term definition",context:t})}const f=e.mappings.get(n);e.mappings.has(n)&&e.mappings.delete(n);let g=!1;if((s(u)||null===u)&&(g=!0,u={"@id":u}),!a(u))throw new o("Invalid JSON-LD syntax; @context term values must be strings or objects.","jsonld.SyntaxError",{code:"invalid term definition",context:t});const y={};e.mappings.set(n,y),y.reverse=!1;const b=["@container","@id","@language","@reverse","@type"];m.processingMode(e,1.1)&&b.push("@context","@direction","@index","@nest","@prefix","@protected");for(const i in u)if(!b.includes(i))throw new o("Invalid JSON-LD syntax; a term definition must not contain "+i,"jsonld.SyntaxError",{code:"invalid term definition",context:t});const v=n.indexOf(":");if(y._termHasColon=v>0,"@reverse"in u){if("@id"in u)throw new o("Invalid JSON-LD syntax; a @reverse term definition must not contain @id.","jsonld.SyntaxError",{code:"invalid reverse property",context:t});if("@nest"in u)throw new o("Invalid JSON-LD syntax; a @reverse term definition must not contain @nest.","jsonld.SyntaxError",{code:"invalid reverse property",context:t});const i=u["@reverse"];if(!s(i))throw new o("Invalid JSON-LD syntax; a @context @reverse value must be a string.","jsonld.SyntaxError",{code:"invalid IRI mapping",context:t});if(i.match(h))return l.eventHandler&&p({event:{type:["JsonLdEvent"],code:"reserved @reverse value",level:"warning",message:'@reverse values beginning with "@" are reserved for future use and dropped.',details:{reverse:i}},options:l}),void(f?e.mappings.set(n,f):e.mappings.delete(n));const a=w(e,i,{vocab:!0,base:!1},t,r,l);if(!c(a))throw new o("Invalid JSON-LD syntax; a @context @reverse value must be an absolute IRI or a blank node identifier.","jsonld.SyntaxError",{code:"invalid IRI mapping",context:t});y["@id"]=a,y.reverse=!0}else if("@id"in u){let i=u["@id"];if(i&&!s(i))throw new o("Invalid JSON-LD syntax; a @context @id value must be an array of strings or a string.","jsonld.SyntaxError",{code:"invalid IRI mapping",context:t});if(null===i)y["@id"]=null;else{if(!m.isKeyword(i)&&i.match(h))return l.eventHandler&&p({event:{type:["JsonLdEvent"],code:"reserved @id value",level:"warning",message:'@id values beginning with "@" are reserved for future use and dropped.',details:{id:i}},options:l}),void(f?e.mappings.set(n,f):e.mappings.delete(n));if(i!==n){if(i=w(e,i,{vocab:!0,base:!1},t,r,l),!c(i)&&!m.isKeyword(i))throw new o("Invalid JSON-LD syntax; a @context @id value must be an absolute IRI, a blank node identifier, or a keyword.","jsonld.SyntaxError",{code:"invalid IRI mapping",context:t});if(n.match(/(?::[^:])|\//)){const a=new Map(r).set(n,!0),s=w(e,n,{vocab:!0,base:!1},t,a,l);if(s!==i)throw new o("Invalid JSON-LD syntax; term in form of IRI must expand to definition.","jsonld.SyntaxError",{code:"invalid IRI mapping",context:t})}y["@id"]=i,y._prefix=g&&!y._termHasColon&&null!==i.match(/[:\/\?#\[\]@]$/)}}}if(!("@id"in y))if(y._termHasColon){const o=n.substr(0,v);if(t.hasOwnProperty(o)&&m.createTermDefinition({activeCtx:e,localCtx:t,term:o,defined:r,options:l}),e.mappings.has(o)){const t=n.substr(v+1);y["@id"]=e.mappings.get(o)["@id"]+t}else y["@id"]=n}else if("@type"===n)y["@id"]=n;else{if(!("@vocab"in e))throw new o("Invalid JSON-LD syntax; @context terms must define an @id.","jsonld.SyntaxError",{code:"invalid IRI mapping",context:t,term:n});y["@id"]=e["@vocab"]+n}if((!0===u["@protected"]||!0===r.get("@protected")&&!1!==u["@protected"])&&(e.protected[n]=!0,y.protected=!0),r.set(n,!0),"@type"in u){let n=u["@type"];if(!s(n))throw new o("Invalid JSON-LD syntax; an @context @type value must be a string.","jsonld.SyntaxError",{code:"invalid type mapping",context:t});if("@json"===n||"@none"===n){if(m.processingMode(e,1))throw new o(`Invalid JSON-LD syntax; an @context @type value must not be "${n}" in JSON-LD 1.0 mode.`,"jsonld.SyntaxError",{code:"invalid type mapping",context:t})}else if("@id"!==n&&"@vocab"!==n){if(n=w(e,n,{vocab:!0,base:!1},t,r,l),!c(n))throw new o("Invalid JSON-LD syntax; an @context @type value must be an absolute IRI.","jsonld.SyntaxError",{code:"invalid type mapping",context:t});if(0===n.indexOf("_:"))throw new o("Invalid JSON-LD syntax; an @context @type value must be an IRI, not a blank node identifier.","jsonld.SyntaxError",{code:"invalid type mapping",context:t})}y["@type"]=n}if("@container"in u){const n=s(u["@container"])?[u["@container"]]:u["@container"]||[],r=["@list","@set","@index","@language"];let a=!0;const l=n.includes("@set");if(m.processingMode(e,1.1)){if(r.push("@graph","@id","@type"),n.includes("@list")){if(1!==n.length)throw new o("Invalid JSON-LD syntax; @context @container with @list must have no other values","jsonld.SyntaxError",{code:"invalid container mapping",context:t})}else if(n.includes("@graph")){if(n.some((e=>"@graph"!==e&&"@id"!==e&&"@index"!==e&&"@set"!==e)))throw new o("Invalid JSON-LD syntax; @context @container with @graph must have no other values other than @id, @index, and @set","jsonld.SyntaxError",{code:"invalid container mapping",context:t})}else a&=n.length<=(l?2:1);if(n.includes("@type")&&(y["@type"]=y["@type"]||"@id",!["@id","@vocab"].includes(y["@type"])))throw new o("Invalid JSON-LD syntax; container: @type requires @type to be @id or @vocab.","jsonld.SyntaxError",{code:"invalid type mapping",context:t})}else a&=!i(u["@container"]),a&=n.length<=1;if(a&=n.every((e=>r.includes(e))),a&=!(l&&n.includes("@list")),!a)throw new o("Invalid JSON-LD syntax; @context @container value must be one of the following: "+r.join(", "),"jsonld.SyntaxError",{code:"invalid container mapping",context:t});if(y.reverse&&!n.every((e=>["@index","@set"].includes(e))))throw new o("Invalid JSON-LD syntax; @context @container value for a @reverse type definition must be @index or @set.","jsonld.SyntaxError",{code:"invalid reverse property",context:t});y["@container"]=n}if("@index"in u){if(!("@container"in u)||!y["@container"].includes("@index"))throw new o(`Invalid JSON-LD syntax; @index without @index in @container: "${u["@index"]}" on term "${n}".`,"jsonld.SyntaxError",{code:"invalid term definition",context:t});if(!s(u["@index"])||0===u["@index"].indexOf("@"))throw new o(`Invalid JSON-LD syntax; @index must expand to an IRI: "${u["@index"]}" on term "${n}".`,"jsonld.SyntaxError",{code:"invalid term definition",context:t});y["@index"]=u["@index"]}if("@context"in u&&(y["@context"]=u["@context"]),"@language"in u&&!("@type"in u)){let e=u["@language"];if(null!==e&&!s(e))throw new o("Invalid JSON-LD syntax; @context @language value must be a string or null.","jsonld.SyntaxError",{code:"invalid language mapping",context:t});null!==e&&(e=e.toLowerCase()),y["@language"]=e}if("@prefix"in u){if(n.match(/:|\//))throw new o("Invalid JSON-LD syntax; @context @prefix used on a compact IRI term","jsonld.SyntaxError",{code:"invalid term definition",context:t});if(m.isKeyword(y["@id"]))throw new o("Invalid JSON-LD syntax; keywords may not be used as prefixes","jsonld.SyntaxError",{code:"invalid term definition",context:t});if("boolean"!==typeof u["@prefix"])throw new o("Invalid JSON-LD syntax; @context value for @prefix must be boolean","jsonld.SyntaxError",{code:"invalid @prefix value",context:t});y._prefix=!0===u["@prefix"]}if("@direction"in u){const e=u["@direction"];if(null!==e&&"ltr"!==e&&"rtl"!==e)throw new o('Invalid JSON-LD syntax; @direction value must be null, "ltr", or "rtl".',"jsonld.SyntaxError",{code:"invalid base direction",context:t});y["@direction"]=e}if("@nest"in u){const e=u["@nest"];if(!s(e)||"@nest"!==e&&0===e.indexOf("@"))throw new o("Invalid JSON-LD syntax; @context @nest value must be a string which is not a keyword other than @nest.","jsonld.SyntaxError",{code:"invalid @nest value",context:t});y["@nest"]=e} +// disallow aliasing @context and @preserve +const _=y["@id"];if("@context"===_||"@preserve"===_)throw new o("Invalid JSON-LD syntax; @context and @preserve cannot be aliased.","jsonld.SyntaxError",{code:"invalid keyword alias",context:t});if(f&&f.protected&&!d&&(e.protected[n]=!0,y.protected=!0,!x(f,y)))throw new o("Invalid JSON-LD syntax; tried to redefine a protected term.","jsonld.SyntaxError",{code:"protected term redefinition",context:t,term:n})},m.expandIri=(e,t,n,r)=>w(e,t,n,void 0,void 0,r),m.getInitialContext=e=>{const t=JSON.stringify({processingMode:e.processingMode}),n=b.get(t);if(n)return n;const o={processingMode:e.processingMode,mappings:new Map,inverse:null,getInverse:i,clone:l,revertToPreviousContext:c,protected:{}};return b.size===v&&b.clear(),b.set(t,o),o;function i(){const e=this;if(e.inverse)return e.inverse;const t=e.inverse={},n=e.fastCurieMap={},r={},o=(e["@language"]||"@none").toLowerCase(),i=e["@direction"],l=e.mappings,c=[...l.keys()].sort(y);for(const a of c){const e=l.get(a);if(null===e)continue;let c=e["@container"]||"@none";if(c=[].concat(c).sort().join(""),null===e["@id"])continue;const d=g(e["@id"]);for(const l of d){let d=t[l];const u=m.isKeyword(l);if(d)u||e._termHasColon||r[l].push(a);else if(t[l]=d={},!u&&!e._termHasColon){r[l]=[a];const e={iri:l,terms:r[l]};l[0]in n?n[l[0]].push(e):n[l[0]]=[e]}if(d[c]||(d[c]={"@language":{},"@type":{},"@any":{}}),d=d[c],s(a,d["@any"],"@none"),e.reverse)s(a,d["@type"],"@reverse");else if("@none"===e["@type"])s(a,d["@any"],"@none"),s(a,d["@language"],"@none"),s(a,d["@type"],"@none");else if("@type"in e)s(a,d["@type"],e["@type"]);else if("@language"in e&&"@direction"in e){const t=e["@language"],n=e["@direction"];s(a,d["@language"],t&&n?`${t}_${n}`.toLowerCase():t?t.toLowerCase():n?`_${n}`:"@null")}else"@language"in e?s(a,d["@language"],(e["@language"]||"@null").toLowerCase()):"@direction"in e?e["@direction"]?s(a,d["@language"],`_${e["@direction"]}`):s(a,d["@language"],"@none"):i?(s(a,d["@language"],`_${i}`),s(a,d["@language"],"@none"),s(a,d["@type"],"@none")):(s(a,d["@language"],o),s(a,d["@language"],"@none"),s(a,d["@type"],"@none"))}}for(const s in n)a(n,s,1);return t}function a(e,t,n){const r=e[t],o=e[t]={};let i,s;for(const a of r)i=a.iri,s=n>=i.length?"":i[n],s in o?o[s].push(a):o[s]=[a];for(const l in o)""!==l&&a(o,l,n+1)}function s(e,t,n){t.hasOwnProperty(n)||(t[n]=e)}function l(){const e={};return e.mappings=r.clone(this.mappings),e.clone=this.clone,e.inverse=null,e.getInverse=this.getInverse,e.protected=r.clone(this.protected),this.previousContext&&(e.previousContext=this.previousContext.clone()),e.revertToPreviousContext=this.revertToPreviousContext,"@base"in this&&(e["@base"]=this["@base"]),"@language"in this&&(e["@language"]=this["@language"]),"@vocab"in this&&(e["@vocab"]=this["@vocab"]),e}function c(){return this.previousContext?this.previousContext.clone():this}},m.getContextValue=(e,t,n)=>{if(null===t){if("@context"===n)return;return null}if(e.mappings.has(t)){const r=e.mappings.get(t);if(l(n))return r;if(r.hasOwnProperty(n))return r[n]}return"@language"===n&&n in e||"@direction"===n&&n in e?e[n]:"@context"!==n?null:void 0},m.processingMode=(e,t)=>t.toString()>="1.1"?!e.processingMode||e.processingMode>="json-ld-"+t.toString():"json-ld-1.0"===e.processingMode,m.isKeyword=e=>{if(!s(e)||"@"!==e[0])return!1;switch(e){case"@base":case"@container":case"@context":case"@default":case"@direction":case"@embed":case"@explicit":case"@graph":case"@id":case"@included":case"@index":case"@json":case"@language":case"@list":case"@nest":case"@none":case"@omitDefault":case"@prefix":case"@preserve":case"@protected":case"@requireAll":case"@reverse":case"@set":case"@type":case"@value":case"@version":case"@vocab":return!0}return!1}},86957:function(e,t,n){"use strict";const{parseLinkHeader:r,buildHeaders:o}=n(59263),{LINK_HEADER_CONTEXT:i}=n(49378),a=n(82207),s=n(73743),{prependBase:l}=n(30470),c=/(^|(\r\n))link:/i;function d(e,t,n){e=e||XMLHttpRequest;const r=new e;return new Promise(((e,o)=>{r.onload=()=>e(r),r.onerror=e=>o(e),r.open("GET",t,!0);for(const t in n)r.setRequestHeader(t,n[t]);r.send()}))}e.exports=({secure:e,headers:t={},xhr:n}={headers:{}})=>{t=o(t);const u=new s;return u.wrapLoader(p);async function p(o){if(0!==o.indexOf("http:")&&0!==o.indexOf("https:"))throw new a('URL could not be dereferenced; only "http" and "https" URLs are supported.',"jsonld.InvalidUrl",{code:"loading document failed",url:o});if(e&&0!==o.indexOf("https"))throw new a('URL could not be dereferenced; secure mode is enabled and the URL\'s scheme is not "https".',"jsonld.InvalidUrl",{code:"loading document failed",url:o});let s;try{s=await d(n,o,t)}catch(y){throw new a("URL could not be dereferenced, an error occurred.","jsonld.LoadDocumentError",{code:"loading document failed",url:o,cause:y})}if(s.status>=400)throw new a("URL could not be dereferenced: "+s.statusText,"jsonld.LoadDocumentError",{code:"loading document failed",url:o,httpStatusCode:s.status});let u={contextUrl:null,documentUrl:o,document:s.response},f=null;const h=s.getResponseHeader("Content-Type");let g;if(c.test(s.getAllResponseHeaders())&&(g=s.getResponseHeader("Link")),g&&"application/ld+json"!==h){const e=r(g),t=e[i];if(Array.isArray(t))throw new a("URL could not be dereferenced, it has more than one associated HTTP Link Header.","jsonld.InvalidUrl",{code:"multiple context link headers",url:o});t&&(u.contextUrl=t.target),f=e.alternate,f&&"application/ld+json"==f.type&&!(h||"").match(/^application\/(\w*\+)?json$/)&&(u=await p(l(o,f.target)))}return u}}},92246:function(e,t,n){"use strict";const r=n(82207),{isArray:o}=n(7382),{asArray:i}=n(59263),a={};function s({event:e,handlers:t}){let n=!0;for(let i=0;n&&i{n=!0}});else{if("object"!==typeof a)throw new r("Invalid event handler.","jsonld.InvalidEventHandler",{event:e});e.code in a?a[e.code]({event:e,next:()=>{n=!0}}):n=!0}}return n}e.exports=a,a.defaultEventHandler=null,a.setupEventHandler=({options:e={}})=>{const t=[].concat(e.safe?a.safeEventHandler:[],e.eventHandler?i(e.eventHandler):[],a.defaultEventHandler?a.defaultEventHandler:[]);return 0===t.length?null:t},a.handleEvent=({event:e,options:t})=>{s({event:e,handlers:t.eventHandler})};const l=new Set(["empty object","free-floating scalar","invalid @language value","invalid property","null @id value","null @value value","object with only @id","object with only @language","object with only @list","object with only @value","relative @id reference","relative @type reference","relative @vocab reference","reserved @id value","reserved @reverse value","reserved term","blank node predicate","relative graph reference","relative object reference","relative predicate reference","relative subject reference","rdfDirection not set"]);a.safeEventHandler=function({event:e,next:t}){if("warning"===e.level&&l.has(e.code))throw new r("Safe mode validation error.","jsonld.ValidationError",{event:e});t()},a.logEventHandler=function({event:e,next:t}){console.log(`EVENT: ${e.message}`,{event:e}),t()},a.logWarningEventHandler=function({event:e,next:t}){"warning"===e.level&&console.warn(`WARNING: ${e.message}`,{event:e}),t()},a.unhandledEventHandler=function({event:e}){throw new r("No handler for event.","jsonld.UnhandledEvent",{event:e})},a.setDefaultEventHandler=function({eventHandler:e}={}){a.defaultEventHandler=e?i(e):null}},34019:function(e,t,n){"use strict";const r=n(82207),{isArray:o,isObject:i,isEmptyObject:a,isString:s,isUndefined:l}=n(7382),{isList:c,isValue:d,isGraph:u,isSubject:p}=n(3978),{expandIri:f,getContextValue:h,isKeyword:g,process:y,processingMode:b}=n(51972),{isAbsolute:v}=n(30470),{REGEX_BCP47:m,REGEX_KEYWORD:w,addValue:x,asArray:_,getValues:S,validateTypeValue:E}=n(59263),{handleEvent:I}=n(92246),j={};function R({value:e,count:t,options:n}){if(0===t||"@value"in e||"@list"in e||1===t&&"@id"in e){if(n.eventHandler){let r,o;0===t?(r="empty object",o="Dropping empty object."):"@value"in e?(r="object with only @value",o="Dropping object with only @value."):"@list"in e?(r="object with only @list",o="Dropping object with only @list."):1===t&&"@id"in e&&(r="object with only @id",o="Dropping object with only @id."),I({event:{type:["JsonLdEvent"],code:r,level:"warning",message:o,details:{value:e}},options:n})}return null}return e}async function A({activeCtx:e,activeProperty:t,expandedActiveProperty:n,element:u,expandedParent:w,options:S={},insideList:N,typeKey:O,typeScopedContext:T}){const L=Object.keys(u).sort(),C=[];let M;const P=u[O]&&"@json"===f(e,o(u[O])?u[O][0]:u[O],{vocab:!0},{...S,typeExpansion:!0});for(const A of L){let N,O=u[A];if("@context"===A)continue;const L=f(e,A,{vocab:!0},S);if(null===L||!v(L)&&!g(L)){S.eventHandler&&I({event:{type:["JsonLdEvent"],code:"invalid property",level:"warning",message:"Dropping property that did not expand into an absolute IRI or keyword.",details:{property:A,expandedProperty:L}},options:S});continue}if(g(L)){if("@reverse"===n)throw new r("Invalid JSON-LD syntax; a keyword cannot be used as a @reverse property.","jsonld.SyntaxError",{code:"invalid reverse property map",value:O});if(L in w&&"@included"!==L&&"@type"!==L)throw new r("Invalid JSON-LD syntax; colliding keywords detected.","jsonld.SyntaxError",{code:"colliding keywords",keyword:L})}if("@id"===L){if(!s(O)){if(!S.isFrame)throw new r('Invalid JSON-LD syntax; "@id" value must a string.',"jsonld.SyntaxError",{code:"invalid @id value",value:O});if(i(O)){if(!a(O))throw new r('Invalid JSON-LD syntax; "@id" value an empty object or array of strings, if framing',"jsonld.SyntaxError",{code:"invalid @id value",value:O})}else{if(!o(O))throw new r('Invalid JSON-LD syntax; "@id" value an empty object or array of strings, if framing',"jsonld.SyntaxError",{code:"invalid @id value",value:O});if(!O.every((e=>s(e))))throw new r('Invalid JSON-LD syntax; "@id" value an empty object or array of strings, if framing',"jsonld.SyntaxError",{code:"invalid @id value",value:O})}}x(w,"@id",_(O).map((t=>{if(s(t)){const n=f(e,t,{base:!0},S);return S.eventHandler&&(null===n?I(null===t?{event:{type:["JsonLdEvent"],code:"null @id value",level:"warning",message:"Null @id found.",details:{id:t}},options:S}:{event:{type:["JsonLdEvent"],code:"reserved @id value",level:"warning",message:"Reserved @id found.",details:{id:t}},options:S}):v(n)||I({event:{type:["JsonLdEvent"],code:"relative @id reference",level:"warning",message:"Relative @id reference found.",details:{id:t,expandedId:n}},options:S})),n}return t})),{propertyIsArray:S.isFrame});continue}if("@type"===L){i(O)&&(O=Object.fromEntries(Object.entries(O).map((([e,t])=>[f(T,e,{vocab:!0}),_(t).map((e=>f(T,e,{base:!0,vocab:!0},{...S,typeExpansion:!0})))])))),E(O,S.isFrame),x(w,"@type",_(O).map((e=>{if(s(e)){const t=f(T,e,{base:!0,vocab:!0},{...S,typeExpansion:!0});return"@json"===t||v(t)||S.eventHandler&&I({event:{type:["JsonLdEvent"],code:"relative @type reference",level:"warning",message:"Relative @type reference found.",details:{type:e}},options:S}),t}return e})),{propertyIsArray:!!S.isFrame});continue}if("@included"===L&&b(e,1.1)){const n=_(await j.expand({activeCtx:e,activeProperty:t,element:O,options:S}));if(!n.every((e=>p(e))))throw new r("Invalid JSON-LD syntax; values of @included must expand to node objects.","jsonld.SyntaxError",{code:"invalid @included value",value:O});x(w,"@included",n,{propertyIsArray:!0});continue}if("@graph"===L&&!i(O)&&!o(O))throw new r('Invalid JSON-LD syntax; "@graph" value must not be an object or an array.',"jsonld.SyntaxError",{code:"invalid @graph value",value:O});if("@value"===L){M=O,P&&b(e,1.1)?w["@value"]=O:x(w,"@value",O,{propertyIsArray:S.isFrame});continue}if("@language"===L){if(null===O)continue;if(!s(O)&&!S.isFrame)throw new r('Invalid JSON-LD syntax; "@language" value must be a string.',"jsonld.SyntaxError",{code:"invalid language-tagged string",value:O});O=_(O).map((e=>s(e)?e.toLowerCase():e));for(const e of O)s(e)&&!e.match(m)&&S.eventHandler&&I({event:{type:["JsonLdEvent"],code:"invalid @language value",level:"warning",message:"@language value must be valid BCP47.",details:{language:e}},options:S});x(w,"@language",O,{propertyIsArray:S.isFrame});continue}if("@direction"===L){if(!s(O)&&!S.isFrame)throw new r('Invalid JSON-LD syntax; "@direction" value must be a string.',"jsonld.SyntaxError",{code:"invalid base direction",value:O});O=_(O);for(const e of O)if(s(e)&&"ltr"!==e&&"rtl"!==e)throw new r('Invalid JSON-LD syntax; "@direction" must be "ltr" or "rtl".',"jsonld.SyntaxError",{code:"invalid base direction",value:O});x(w,"@direction",O,{propertyIsArray:S.isFrame});continue}if("@index"===L){if(!s(O))throw new r('Invalid JSON-LD syntax; "@index" value must be a string.',"jsonld.SyntaxError",{code:"invalid @index value",value:O});x(w,"@index",O);continue}if("@reverse"===L){if(!i(O))throw new r('Invalid JSON-LD syntax; "@reverse" value must be an object.',"jsonld.SyntaxError",{code:"invalid @reverse value",value:O});if(N=await j.expand({activeCtx:e,activeProperty:"@reverse",element:O,options:S}),"@reverse"in N)for(const e in N["@reverse"])x(w,e,N["@reverse"][e],{propertyIsArray:!0});let t=w["@reverse"]||null;for(const e in N){if("@reverse"===e)continue;null===t&&(t=w["@reverse"]={}),x(t,e,[],{propertyIsArray:!0});const n=N[e];for(let o=0;o"@id"===e||"@index"===e))){if(N=_(N),S.isFrame||(N=N.filter((e=>{const t=Object.keys(e).length;return null!==R({value:e,count:t,options:S})}))),0===N.length)continue;N=N.map((e=>({"@graph":_(e)})))}if(F.mappings.has(A)&&F.mappings.get(A).reverse){const e=w["@reverse"]=w["@reverse"]||{};N=_(N);for(let t=0;t"@value"===f(e,t,{vocab:!0},S))))throw new r("Invalid JSON-LD syntax; nested value must be a node object.","jsonld.SyntaxError",{code:"invalid @nest value",value:o});await A({activeCtx:e,activeProperty:t,expandedActiveProperty:n,element:o,expandedParent:w,options:S,insideList:N,typeScopedContext:T,typeKey:O})}}}function N({activeCtx:e,activeProperty:t,value:n,options:r}){if(null===n||void 0===n)return null;const o=f(e,t,{vocab:!0},r);if("@id"===o)return f(e,n,{base:!0},r);if("@type"===o)return f(e,n,{vocab:!0,base:!0},{...r,typeExpansion:!0});const i=h(e,t,"@type");if(("@id"===i||"@graph"===o)&&s(n)){const o=f(e,n,{base:!0},r);return null===o&&n.match(w)&&r.eventHandler&&I({event:{type:["JsonLdEvent"],code:"reserved @id value",level:"warning",message:"Reserved @id found.",details:{id:t}},options:r}),{"@id":o}}if("@vocab"===i&&s(n))return{"@id":f(e,n,{vocab:!0,base:!0},r)};if(g(o))return n;const a={};if(i&&!["@id","@vocab","@none"].includes(i))a["@type"]=i;else if(s(n)){const n=h(e,t,"@language");null!==n&&(a["@language"]=n);const r=h(e,t,"@direction");null!==r&&(a["@direction"]=r)}return["boolean","number","string"].includes(typeof n)||(n=n.toString()),a["@value"]=n,a}function k(e,t,n,i){const a=[],l=Object.keys(t).sort();for(const c of l){const l=f(e,c,{vocab:!0},i);let d=t[c];o(d)||(d=[d]);for(const e of d){if(null===e)continue;if(!s(e))throw new r("Invalid JSON-LD syntax; language map values must be strings.","jsonld.SyntaxError",{code:"invalid language map value",languageMap:t});const o={"@value":e};"@none"!==l&&(c.match(m)||i.eventHandler&&I({event:{type:["JsonLdEvent"],code:"invalid @language value",level:"warning",message:"@language value must be valid BCP47.",details:{language:c}},options:i}),o["@language"]=c.toLowerCase()),n&&(o["@direction"]=n),a.push(o)}}return a}async function D({activeCtx:e,options:t,activeProperty:n,value:i,asGraph:a,indexKey:s,propertyIndex:c}){const p=[],g=Object.keys(i).sort(),b="@type"===s;for(let v of g){if(b){const n=h(e,v,"@context");l(n)||(e=await y({activeCtx:e,localCtx:n,propagate:!1,options:t}))}let g,m=i[v];o(m)||(m=[m]),m=await j.expand({activeCtx:e,activeProperty:n,element:m,options:t,insideList:!1,insideIndex:!0}),g=c?"@none"===v?"@none":N({activeCtx:e,activeProperty:s,value:v,options:t}):f(e,v,{vocab:!0},t),"@id"===s?v=f(e,v,{base:!0},t):b&&(v=g);for(let e of m){if(a&&!u(e)&&(e={"@graph":[e]}),"@type"===s)"@none"===g||(e["@type"]?e["@type"]=[v].concat(e["@type"]):e["@type"]=[v]);else{if(d(e)&&!["@language","@type","@index"].includes(s))throw new r(`Invalid JSON-LD syntax; Attempt to add illegal key to value object: "${s}".`,"jsonld.SyntaxError",{code:"invalid value object",value:e});c?"@none"!==g&&x(e,c,g,{propertyIsArray:!0,prependValue:!0}):"@none"===g||s in e||(e[s]=v)}p.push(e)}}return p}e.exports=j,j.expand=async({activeCtx:e,activeProperty:t=null,element:n,options:c={},insideList:d=!1,insideIndex:u=!1,typeScopedContext:p=null})=>{if(null===n||void 0===n)return null;if("@default"===t&&(c=Object.assign({},c,{isFrame:!1})),!o(n)&&!i(n))return d||null!==t&&"@graph"!==f(e,t,{vocab:!0},c)?N({activeCtx:e,activeProperty:t,value:n,options:c}):(c.eventHandler&&I({event:{type:["JsonLdEvent"],code:"free-floating scalar",level:"warning",message:"Dropping free-floating scalar not in a list.",details:{value:n}},options:c}),null);if(o(n)){let r=[];const i=h(e,t,"@container")||[];d=d||i.includes("@list");for(let a=0;a1?t.slice().sort():t:[t];for(const n of o){const t=h(p,n,"@context");l(t)||(e=await y({activeCtx:e,localCtx:t,options:c,propagate:!1}))}}}let k={};await A({activeCtx:e,activeProperty:t,expandedActiveProperty:g,element:n,expandedParent:k,options:c,insideList:d,typeKey:E,typeScopedContext:p}),w=Object.keys(k);let D=w.length;if("@value"in k){if("@type"in k&&("@language"in k||"@direction"in k))throw new r('Invalid JSON-LD syntax; an element containing "@value" may not contain both "@type" and either "@language" or "@direction".',"jsonld.SyntaxError",{code:"invalid value object",element:k});let t=D-1;if("@type"in k&&(t-=1),"@index"in k&&(t-=1),"@language"in k&&(t-=1),"@direction"in k&&(t-=1),0!==t)throw new r('Invalid JSON-LD syntax; an element containing "@value" may only have an "@index" property and either "@type" or either or both "@language" or "@direction".',"jsonld.SyntaxError",{code:"invalid value object",element:k});const n=null===k["@value"]?[]:_(k["@value"]),o=S(k,"@type");if(b(e,1.1)&&o.includes("@json")&&1===o.length);else if(0===n.length)c.eventHandler&&I({event:{type:["JsonLdEvent"],code:"null @value value",level:"warning",message:"Dropping null @value value.",details:{value:k}},options:c}),k=null;else{if(!n.every((e=>s(e)||a(e)))&&"@language"in k)throw new r("Invalid JSON-LD syntax; only strings may be language-tagged.","jsonld.SyntaxError",{code:"invalid language-tagged value",element:k});if(!o.every((e=>v(e)&&!(s(e)&&0===e.indexOf("_:"))||a(e))))throw new r('Invalid JSON-LD syntax; an element containing "@value" and "@type" must have an absolute IRI for the value of "@type".',"jsonld.SyntaxError",{code:"invalid typed value",element:k})}}else if("@type"in k&&!o(k["@type"]))k["@type"]=[k["@type"]];else if("@set"in k||"@list"in k){if(D>1&&(2!==D||!("@index"in k)))throw new r('Invalid JSON-LD syntax; if an element has the property "@set" or "@list", then it can have at most one other property that is "@index".',"jsonld.SyntaxError",{code:"invalid set or list object",element:k});"@set"in k&&(k=k["@set"],w=Object.keys(k),D=w.length)}else 1===D&&"@language"in k&&(c.eventHandler&&I({event:{type:["JsonLdEvent"],code:"object with only @language",level:"warning",message:"Dropping object with only @language.",details:{value:k}},options:c}),k=null);return!i(k)||c.keepFreeFloatingNodes||d||null!==t&&"@graph"!==g&&!(h(e,t,"@container")||[]).includes("@graph")||(k=R({value:k,count:D,options:c})),k}},5229:function(e,t,n){"use strict";const{isSubjectReference:r}=n(3978),{createMergedNodeMap:o}=n(9233),i={};e.exports=i,i.flatten=e=>{const t=o(e),n=[],i=Object.keys(t).sort();for(let o=0;o=0;--r){const o=n[r];if(o.graph===t&&o.subject["@id"]===e["@id"])return!0}return!1}function h(e,t,n){const r="@"+n;let o=r in e?e[r][0]:t[n];if("embed"===n)if(!0===o)o="@once";else if(!1===o)o="@never";else if("@always"!==o&&"@never"!==o&&"@link"!==o&&"@first"!==o&&"@last"!==o&&"@once"!==o)throw new l("Invalid JSON-LD syntax; invalid value of @embed.","jsonld.SyntaxError",{code:"invalid @embed value",frame:e});return o}function g(e){if(!i.isArray(e)||1!==e.length||!i.isObject(e[0]))throw new l("Invalid JSON-LD syntax; a JSON-LD frame must be a single object.","jsonld.SyntaxError",{frame:e});if("@id"in e[0])for(const t of a.asArray(e[0]["@id"]))if(!i.isObject(t)&&!s.isAbsolute(t)||i.isString(t)&&0===t.indexOf("_:"))throw new l("Invalid JSON-LD syntax; invalid @id in frame.","jsonld.SyntaxError",{code:"invalid frame",frame:e});if("@type"in e[0])for(const t of a.asArray(e[0]["@type"]))if(!i.isObject(t)&&!s.isAbsolute(t)&&"@json"!==t||i.isString(t)&&0===t.indexOf("_:"))throw new l("Invalid JSON-LD syntax; invalid @type in frame.","jsonld.SyntaxError",{code:"invalid frame",frame:e})}function y(e,t,n,r){const o={};for(const i of t){const t=e.graphMap[e.graph][i];b(e,t,n,r)&&(o[i]=t)}return o}function b(e,t,n,s){let l=!0,c=!1;for(const d in n){let u=!1;const p=a.getValues(t,d),f=0===a.getValues(n,d).length;if("@id"===d){if(i.isEmptyObject(n["@id"][0]||{})?u=!0:n["@id"].length>=0&&(u=n["@id"].includes(p[0])),!s.requireAll)return u}else if("@type"===d){if(l=!1,f){if(p.length>0)return!1;u=!0}else if(1===n["@type"].length&&i.isEmptyObject(n["@type"][0]))u=p.length>0;else for(const e of n["@type"])u=!(!i.isObject(e)||!("@default"in e))||(u||p.some((t=>t===e)));if(!s.requireAll)return u}else{if(r(d))continue;{const t=a.getValues(n,d)[0];let r=!1;if(t&&(g([t]),r="@default"in t),l=!1,0===p.length&&r)continue;if(p.length>0&&f)return!1;if(void 0===t){if(p.length>0)return!1;u=!0}else if(o.isList(t)){const n=t["@list"][0];if(o.isList(p[0])){const t=p[0]["@list"];o.isValue(n)?u=t.some((e=>_(n,e))):(o.isSubject(n)||o.isSubjectReference(n))&&(u=t.some((t=>x(e,n,t,s))))}}else u=o.isValue(t)?p.some((e=>_(t,e))):o.isSubjectReference(t)?p.some((n=>x(e,t,n,s))):!!i.isObject(t)&&p.length>0}}if(!u&&s.requireAll)return!1;c=c||u}return l||c}function v(e,t){const n=e.uniqueEmbeds[e.graph],r=n[t],o=r.parent,s=r.property,l={"@id":t};if(i.isArray(o)){for(let i=0;i{const t=Object.keys(n);for(const r of t)r in n&&i.isObject(n[r].parent)&&n[r].parent["@id"]===e&&(delete n[r],c(r))};c(t)} +/** + * Removes the @preserve keywords from expanded result of framing. + * + * @param input the framed, framed output. + * @param options the framing options used. + * + * @return the resulting output. + */function m(e,t){if(i.isArray(e))return e.map((e=>m(e,t)));if(i.isObject(e)){ +// remove @preserve +if("@preserve"in e)return e["@preserve"][0];if(o.isValue(e))return e;if(o.isList(e))return e["@list"]=m(e["@list"],t),e;if("@id"in e){const n=e["@id"];if(t.link.hasOwnProperty(n)){const r=t.link[n].indexOf(e);if(-1!==r)return t.link[n][r];t.link[n].push(e)}else t.link[n]=[e]}for(const n in e)"@id"===n&&t.bnodesToClear.includes(e[n])?delete e["@id"]:e[n]=m(e[n],t)}return e}function w(e,t,n){i.isObject(e)?a.addValue(e,t,n,{propertyIsArray:!0}):e.push(n)}function x(e,t,n,r){if(!("@id"in n))return!1;const o=e.subjects[n["@id"]];return o&&b(e,o,t,r)}function _(e,t){const n=t["@value"],r=t["@type"],o=t["@language"],a=e["@value"]?i.isArray(e["@value"])?e["@value"]:[e["@value"]]:[],s=e["@type"]?i.isArray(e["@type"])?e["@type"]:[e["@type"]]:[],l=e["@language"]?i.isArray(e["@language"])?e["@language"]:[e["@language"]]:[];return 0===a.length&&0===s.length&&0===l.length||!(!a.includes(n)&&!i.isEmptyObject(a[0]))&&(!!(!r&&0===s.length||s.includes(r)||r&&i.isEmptyObject(s[0]))&&!!(!o&&0===l.length||l.includes(o)||o&&i.isEmptyObject(l[0])))}e.exports=u,u.frameMergedOrDefault=(e,t,n)=>{const r={options:n,embedded:!1,graph:"@default",graphMap:{"@default":{}},subjectStack:[],link:{},bnodeMap:{}},o=new a.IdentifierIssuer("_:b");c(e,r.graphMap,"@default",o),n.merged&&(r.graphMap["@merged"]=d(r.graphMap),r.graph="@merged"),r.subjects=r.graphMap[r.graph];const i=[];return u.frame(r,Object.keys(r.subjects).sort(),t,i),n.pruneBlankNodeIdentifiers&&(n.bnodesToClear=Object.keys(r.bnodeMap).filter((e=>1===r.bnodeMap[e].length))), +// remove @preserve from results +n.link={},m(i,n)},u.frame=(e,t,n,s,c=null)=>{g(n),n=n[0];const d=e.options,b={embed:h(n,d,"embed"),explicit:h(n,d,"explicit"),requireAll:h(n,d,"requireAll")};e.link.hasOwnProperty(e.graph)||(e.link[e.graph]={});const m=e.link[e.graph],x=y(e,t,n,b),S=Object.keys(x).sort();for(const g of S){const y=x[g];if(null===c?e.uniqueEmbeds={[e.graph]:{}}:e.uniqueEmbeds[e.graph]=e.uniqueEmbeds[e.graph]||{},"@link"===b.embed&&g in m){w(s,c,m[g]);continue}const S={"@id":g};if(0===g.indexOf("_:")&&a.addValue(e.bnodeMap,g,S,{propertyIsArray:!0}),m[g]=S,("@first"===b.embed||"@last"===b.embed)&&e.is11)throw new l("Invalid JSON-LD syntax; invalid value of @embed.","jsonld.SyntaxError",{code:"invalid @embed value",frame:n});if(e.embedded||!e.uniqueEmbeds[e.graph].hasOwnProperty(g))if(!e.embedded||"@never"!==b.embed&&!f(y,e.graph,e.subjectStack))if(!e.embedded||"@first"!=b.embed&&"@once"!=b.embed||!e.uniqueEmbeds[e.graph].hasOwnProperty(g)){if("@last"===b.embed&&g in e.uniqueEmbeds[e.graph]&&v(e,g),e.uniqueEmbeds[e.graph][g]={parent:s,property:c},e.subjectStack.push({subject:y,graph:e.graph}),g in e.graphMap){let t=!1,r=null;"@graph"in n?(r=n["@graph"][0],t=!("@merged"===g||"@default"===g),i.isObject(r)||(r={})):(t="@merged"!==e.graph,r={}),t&&u.frame({...e,graph:g,embedded:!1},Object.keys(e.graphMap[g]).sort(),[r],S,"@graph")}"@included"in n&&u.frame({...e,embedded:!1},t,n["@included"],S,"@included");for(const t of Object.keys(y).sort())if(r(t)){if(S[t]=a.clone(y[t]),"@type"===t)for(const n of y["@type"])0===n.indexOf("_:")&&a.addValue(e.bnodeMap,n,S,{propertyIsArray:!0})}else if(!b.explicit||t in n)for(const r of y[t]){const i=t in n?n[t]:p(b);if(o.isList(r)){const i=n[t]&&n[t][0]&&n[t][0]["@list"]?n[t][0]["@list"]:p(b),s={"@list":[]};w(S,t,s);const l=r["@list"];for(const t of l)o.isSubjectReference(t)?u.frame({...e,embedded:!0},[t["@id"]],i,s,"@list"):w(s,"@list",a.clone(t))}else o.isSubjectReference(r)?u.frame({...e,embedded:!0},[r["@id"]],i,S,t):_(i[0],r)&&w(S,t,a.clone(r))}for(const e of Object.keys(n).sort()){if("@type"===e){if(!i.isObject(n[e][0])||!("@default"in n[e][0]))continue}else if(r(e))continue;const t=n[e][0]||{},o=h(t,d,"omitDefault");if(!o&&!(e in S)){let n="@null";"@default"in t&&(n=a.clone(t["@default"])),i.isArray(n)||(n=[n]),S[e]=[{"@preserve":n}]}}for(const t of Object.keys(n["@reverse"]||{}).sort()){const r=n["@reverse"][t];for(const n of Object.keys(e.subjects)){const o=a.getValues(e.subjects[n],t);o.some((e=>e["@id"]===g))&&(S["@reverse"]=S["@reverse"]||{},a.addValue(S["@reverse"],t,[],{propertyIsArray:!0}),u.frame({...e,embedded:!0},[n],r,S["@reverse"][t],c))}}w(s,c,S),e.subjectStack.pop()}else w(s,c,S);else w(s,c,S)}},u.cleanupNull=(e,t)=>{if(i.isArray(e)){const n=e.map((e=>u.cleanupNull(e,t)));return n.filter((e=>e))}if("@null"===e)return null;if(i.isObject(e)){if("@id"in e){const n=e["@id"];if(t.link.hasOwnProperty(n)){const r=t.link[n].indexOf(e);if(-1!==r)return t.link[n][r];t.link[n].push(e)}else t.link[n]=[e]}for(const n in e)e[n]=u.cleanupNull(e[n],t)}return e}},43947:function(e,t,n){"use strict";const r=n(82207),o=n(3978),i=n(7382),{REGEX_BCP47:a,addValue:s}=n(59263),{handleEvent:l}=n(92246),{RDF_LIST:c,RDF_FIRST:d,RDF_REST:u,RDF_NIL:p,RDF_TYPE:f,RDF_JSON_LITERAL:h,XSD_BOOLEAN:g,XSD_DOUBLE:y,XSD_INTEGER:b,XSD_STRING:v}=n(49378),m={};function w(e,t,n,o){if(e.termType.endsWith("Node"))return{"@id":e.value};const s={"@value":e.value};if(e.language)e.language.match(a)||o.eventHandler&&l({event:{type:["JsonLdEvent"],code:"invalid @language value",level:"warning",message:"@language value must be valid BCP47.",details:{language:e.language}},options:o}),s["@language"]=e.language;else{let d=e.datatype.value;if(d||(d=v),d===h){d="@json";try{s["@value"]=JSON.parse(s["@value"])}catch(c){throw new r("JSON literal could not be parsed.","jsonld.InvalidJsonLiteral",{code:"invalid JSON literal",value:s["@value"],cause:c})}}if(t){if(d===g)"true"===s["@value"]?s["@value"]=!0:"false"===s["@value"]&&(s["@value"]=!1);else if(i.isNumeric(s["@value"]))if(d===b){const e=parseInt(s["@value"],10);e.toFixed(0)===s["@value"]&&(s["@value"]=e)}else d===y&&(s["@value"]=parseFloat(s["@value"]));[g,b,y,v].includes(d)||(s["@type"]=d)}else if("i18n-datatype"===n&&d.startsWith("https://www.w3.org/ns/i18n#")){const[,e,t]=d.split(/[#_]/);e.length>0&&(s["@language"]=e,e.match(a)||o.eventHandler&&l({event:{type:["JsonLdEvent"],code:"invalid @language value",level:"warning",message:"@language value must be valid BCP47.",details:{language:e}},options:o})),s["@direction"]=t}else d!==v&&(s["@type"]=d)}return s}e.exports=m,m.fromRDF=async(e,t)=>{const{useRdfType:n=!1,useNativeTypes:a=!1,rdfDirection:l=null}=t,h={},g={"@default":h},y={};if(l){if("compound-literal"===l)throw new r("Unsupported rdfDirection value.","jsonld.InvalidRdfDirection",{value:l});if("i18n-datatype"!==l)throw new r("Unknown rdfDirection value.","jsonld.InvalidRdfDirection",{value:l})}for(const r of e){const e="DefaultGraph"===r.graph.termType?"@default":r.graph.value;e in g||(g[e]={}),"@default"===e||e in h||(h[e]={"@id":e});const o=g[e],i=r.subject.value,c=r.predicate.value,d=r.object;i in o||(o[i]={"@id":i});const u=o[i],b=d.termType.endsWith("Node");if(b&&!(d.value in o)&&(o[d.value]={"@id":d.value}),c===f&&!n&&b){s(u,"@type",d.value,{propertyIsArray:!0});continue}const v=w(d,a,l,t);if(s(u,c,v,{propertyIsArray:!0}),b)if(d.value===p){const e=o[d.value];"usages"in e||(e.usages=[]),e.usages.push({node:u,property:c,value:v})}else d.value in y?y[d.value]=!1:y[d.value]={node:u,property:c,value:v}}for(const r in g){const e=g[r];if(!(p in e))continue;const t=e[p];if(t.usages){for(let n of t.usages){let t=n.node,r=n.property,a=n.value;const s=[],l=[];let p=Object.keys(t).length;while(r===u&&i.isObject(y[t["@id"]])&&i.isArray(t[d])&&1===t[d].length&&i.isArray(t[u])&&1===t[u].length&&(3===p||4===p&&i.isArray(t["@type"])&&1===t["@type"].length&&t["@type"][0]===c))if(s.push(t[d][0]),l.push(t["@id"]),n=y[t["@id"]],t=n.node,r=n.property,a=n.value,p=Object.keys(t).length,!o.isBlankNode(t))break;delete a["@id"],a["@list"]=s.reverse();for(const n of l)delete e[n]}delete t.usages}}const b=[],v=Object.keys(h).sort();for(const r of v){const e=h[r];if(r in g){const t=e["@graph"]=[],n=g[r],i=Object.keys(n).sort();for(const e of i){const r=n[e];o.isSubjectReference(r)||t.push(r)}}o.isSubjectReference(e)||b.push(e)}return b}},3978:function(e,t,n){"use strict";const r=n(7382),o={};e.exports=o,o.isSubject=e=>{if(r.isObject(e)&&!("@value"in e||"@set"in e||"@list"in e)){const t=Object.keys(e).length;return t>1||!("@id"in e)}return!1},o.isSubjectReference=e=>r.isObject(e)&&1===Object.keys(e).length&&"@id"in e,o.isValue=e=>r.isObject(e)&&"@value"in e,o.isList=e=>r.isObject(e)&&"@list"in e,o.isGraph=e=>r.isObject(e)&&"@graph"in e&&1===Object.keys(e).filter((e=>"@id"!==e&&"@index"!==e)).length,o.isSimpleGraph=e=>o.isGraph(e)&&!("@id"in e),o.isBlankNode=e=>{if(r.isObject(e)){if("@id"in e){const t=e["@id"];return!r.isString(t)||0===t.indexOf("_:")}return 0===Object.keys(e).length||!("@value"in e||"@set"in e||"@list"in e)}return!1}},34841:function(e,t,n){ +/** + * A JavaScript implementation of the JSON-LD API. + * + * @author Dave Longley + * + * @license BSD 3-Clause License + * Copyright (c) 2011-2022 Digital Bazaar, Inc. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * Neither the name of the Digital Bazaar, Inc. nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED + * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +const r=n(60989),o=n(60701),i=n(59263),a=n(47034),s=i.IdentifierIssuer,l=n(82207),c=n(1235),d=n(68229),{expand:u}=n(34019),{flatten:p}=n(5229),{fromRDF:f}=n(43947),{toRDF:h}=n(99180),{frameMergedOrDefault:g,cleanupNull:y}=n(47946),{isArray:b,isObject:v,isString:m}=n(7382),{isSubjectReference:w}=n(3978),{expandIri:x,getInitialContext:_,process:S,processingMode:E}=n(51972),{compact:I,compactIri:j}=n(21058),{createNodeMap:R,createMergedNodeMap:A,mergeNodeMaps:N}=n(9233),{logEventHandler:k,logWarningEventHandler:D,safeEventHandler:O,setDefaultEventHandler:T,setupEventHandler:L,strictEventHandler:C,unhandledEventHandler:M}=n(92246),P=function(e){const t={},P=100,F=new c({max:P});function W(t,{documentLoader:n=e.documentLoader,...r}){if(t&&"compactionMap"in t)throw new l('"compactionMap" not supported.',"jsonld.OptionsError");if(t&&"expansionMap"in t)throw new l('"expansionMap" not supported.',"jsonld.OptionsError");return Object.assign({},{documentLoader:n},r,t,{eventHandler:L({options:t})})}return e.compact=async function(t,n,r){if(arguments.length<2)throw new TypeError("Could not compact, too few arguments.");if(null===n)throw new l("The compaction context must not be null.","jsonld.CompactError",{code:"invalid local context"});if(null===t)return null;let o;r=W(r,{base:m(t)?t:"",compactArrays:!0,compactToRelative:!0,graph:!1,skipExpansion:!1,link:!1,issuer:new s("_:b"),contextResolver:new a({sharedCache:F})}),r.link&&(r.skipExpansion=!0),r.compactToRelative||delete r.base,o=r.skipExpansion?t:await e.expand(t,r);const c=await e.processContext(_(r),n,r);let d=await I({activeCtx:c,element:o,options:r});r.compactArrays&&!r.graph&&b(d)?1===d.length?d=d[0]:0===d.length&&(d={}):r.graph&&v(d)&&(d=[d]),v(n)&&"@context"in n&&(n=n["@context"]),n=i.clone(n),b(n)||(n=[n]);const u=n;n=[];for(let e=0;e0)&&n.push(u[e]);const p=n.length>0;if(1===n.length&&(n=n[0]),b(d)){const e=j({activeCtx:c,iri:"@graph",relativeTo:{vocab:!0}}),t=d;d={},p&&(d["@context"]=n),d[e]=t}else if(v(d)&&p){const e=d;d={"@context":n};for(const t in e)d[t]=e[t]}return d},e.expand=async function(t,n){if(arguments.length<1)throw new TypeError("Could not expand, too few arguments.");n=W(n,{keepFreeFloatingNodes:!1,contextResolver:new a({sharedCache:F})});const r={},o=[];if("expandContext"in n){const e=i.clone(n.expandContext);v(e)&&"@context"in e?r.expandContext=e:r.expandContext={"@context":e},o.push(r.expandContext)}let s;if(m(t)){const i=await e.get(t,n);s=i.documentUrl,r.input=i.document,i.contextUrl&&(r.remoteContext={"@context":i.contextUrl},o.push(r.remoteContext))}else r.input=i.clone(t);"base"in n||(n.base=s||"");let l=_(n);for(const e of o)l=await S({activeCtx:l,localCtx:e,options:n});let c=await u({activeCtx:l,element:r.input,options:n});return v(c)&&"@graph"in c&&1===Object.keys(c).length?c=c["@graph"]:null===c&&(c=[]),b(c)||(c=[c]),c},e.flatten=async function(t,n,r){if(arguments.length<1)return new TypeError("Could not flatten, too few arguments.");n="function"===typeof n?null:n||null,r=W(r,{base:m(t)?t:"",contextResolver:new a({sharedCache:F})});const o=await e.expand(t,r),i=p(o);if(null===n)return i;r.graph=!0,r.skipExpansion=!0;const s=await e.compact(i,n,r);return s},e.frame=async function(t,n,r){if(arguments.length<2)throw new TypeError("Could not frame, too few arguments.");if(r=W(r,{base:m(t)?t:"",embed:"@once",explicit:!1,requireAll:!1,omitDefault:!1,bnodesToClear:[],contextResolver:new a({sharedCache:F})}),m(n)){const t=await e.get(n,r);if(n=t.document,t.contextUrl){let e=n["@context"];e?b(e)?e.push(t.contextUrl):e=[e,t.contextUrl]:e=t.contextUrl,n["@context"]=e}}const o=n&&n["@context"]||{},i=await e.processContext(_(r),o,r);r.hasOwnProperty("omitGraph")||(r.omitGraph=E(i,1.1)),r.hasOwnProperty("pruneBlankNodeIdentifiers")||(r.pruneBlankNodeIdentifiers=E(i,1.1));const s=await e.expand(t,r),l={...r};l.isFrame=!0,l.keepFreeFloatingNodes=!0;const c=await e.expand(n,l),d=Object.keys(n).map((e=>x(i,e,{vocab:!0})));l.merged=!d.includes("@graph"),l.is11=E(i,1.1);const u=g(s,c,l);l.graph=!r.omitGraph,l.skipExpansion=!0,l.link={},l.framing=!0;let p=await e.compact(u,o,l);return l.link={},p=y(p,l),p},e.link=async function(t,n,r){const o={};return n&&(o["@context"]=n),o["@embed"]="@link",e.frame(t,o,r)},e.normalize=e.canonize=async function(t,n){if(arguments.length<1)throw new TypeError("Could not canonize, too few arguments.");if(n=W(n,{base:m(t)?t:null,algorithm:"URDNA2015",skipExpansion:!1,safe:!0,contextResolver:new a({sharedCache:F})}),"inputFormat"in n){if("application/n-quads"!==n.inputFormat&&"application/nquads"!==n.inputFormat)throw new l("Unknown canonicalization input format.","jsonld.CanonizeError");const e=d.parse(t);return r.canonize(e,n)}const o={...n};delete o.format,o.produceGeneralizedRdf=!1;const i=await e.toRDF(t,o);return r.canonize(i,n)},e.fromRDF=async function(e,n){if(arguments.length<1)throw new TypeError("Could not convert from RDF, too few arguments.");n=W(n,{format:m(e)?"application/n-quads":void 0});const{format:r}=n;let{rdfParser:o}=n;if(r){if(o=o||t[r],!o)throw new l("Unknown input format.","jsonld.UnknownFormat",{format:r})}else o=()=>e;const i=await o(e);return f(i,n)},e.toRDF=async function(t,n){if(arguments.length<1)throw new TypeError("Could not convert to RDF, too few arguments.");let r;n=W(n,{base:m(t)?t:"",skipExpansion:!1,contextResolver:new a({sharedCache:F})}),r=n.skipExpansion?t:await e.expand(t,n);const o=h(r,n);if(n.format){if("application/n-quads"===n.format||"application/nquads"===n.format)return d.serialize(o);throw new l("Unknown output format.","jsonld.UnknownFormat",{format:n.format})}return o},e.createNodeMap=async function(t,n){if(arguments.length<1)throw new TypeError("Could not create node map, too few arguments.");n=W(n,{base:m(t)?t:"",contextResolver:new a({sharedCache:F})});const r=await e.expand(t,n);return A(r,n)},e.merge=async function(t,n,r){if(arguments.length<1)throw new TypeError("Could not merge, too few arguments.");if(!b(t))throw new TypeError('Could not merge, "docs" must be an array.');n="function"===typeof n?null:n||null,r=W(r,{contextResolver:new a({sharedCache:F})});const o=await Promise.all(t.map((t=>{const n={...r};return e.expand(t,n)})));let l=!0;"mergeNodes"in r&&(l=r.mergeNodes);const c=r.issuer||new s("_:b"),d={"@default":{}};for(let e=0;ee._documentLoader,set:t=>e._documentLoader=t}),e.documentLoader=async e=>{throw new l("Could not retrieve a JSON-LD document from the URL. URL dereferencing not implemented.","jsonld.LoadDocumentError",{code:"loading document failed",url:e})},e.get=async function(t,n){let r;r="function"===typeof n.documentLoader?n.documentLoader:e.documentLoader;const o=await r(t);try{if(!o.document)throw new l("No remote document found at the given URL.","jsonld.NullRemoteDocument");m(o.document)&&(o.document=JSON.parse(o.document))}catch(i){throw new l("Could not retrieve a JSON-LD document from the URL.","jsonld.LoadDocumentError",{code:"loading document failed",cause:i,remoteDoc:o})}return o},e.processContext=async function(e,t,n){return n=W(n,{base:"",contextResolver:new a({sharedCache:F})}),null===t?_(n):(t=i.clone(t),v(t)&&"@context"in t||(t={"@context":t}),S({activeCtx:e,localCtx:t,options:n}))},e.getContextValue=n(51972).getContextValue,e.documentLoaders={},e.useDocumentLoader=function(t){if(!(t in e.documentLoaders))throw new l('Unknown document loader type: "'+t+'"',"jsonld.UnknownDocumentLoader",{type:t});e.documentLoader=e.documentLoaders[t].apply(e,Array.prototype.slice.call(arguments,1))},e.registerRDFParser=function(e,n){t[e]=n},e.unregisterRDFParser=function(e){delete t[e]},e.registerRDFParser("application/n-quads",d.parse),e.registerRDFParser("application/nquads",d.parse),e.url=n(30470),e.logEventHandler=k,e.logWarningEventHandler=D,e.safeEventHandler=O,e.setDefaultEventHandler=T,e.strictEventHandler=C,e.unhandledEventHandler=M,e.util=i,Object.assign(e,i),e.promises=e,e.RequestQueue=n(73743),e.JsonLdProcessor=n(45445)(e),o.setupGlobals(e),o.setupDocumentLoaders(e),e},F=function(){return P((function(){return F()}))};P(F),e.exports=F},9233:function(e,t,n){"use strict";const{isKeyword:r}=n(51972),o=n(3978),i=n(7382),a=n(59263),s=n(82207),l={};e.exports=l,l.createMergedNodeMap=(e,t)=>{t=t||{};const n=t.issuer||new a.IdentifierIssuer("_:b"),r={"@default":{}};return l.createNodeMap(e,r,"@default",n),l.mergeNodeMaps(r)},l.createNodeMap=(e,t,n,c,d,u)=>{if(i.isArray(e)){for(const r of e)l.createNodeMap(r,t,n,c,void 0,u);return}if(!i.isObject(e))return void(u&&u.push(e));if(o.isValue(e)){if("@type"in e){let t=e["@type"];0===t.indexOf("_:")&&(e["@type"]=t=c.getId(t))}return void(u&&u.push(e))}if(u&&o.isList(e)){const r=[];return l.createNodeMap(e["@list"],t,n,c,d,r),void u.push({"@list":r})}if("@type"in e){const t=e["@type"];for(const e of t)0===e.indexOf("_:")&&c.getId(e)}i.isUndefined(d)&&(d=o.isBlankNode(e)?c.getId(e["@id"]):e["@id"]),u&&u.push({"@id":d});const p=t[n],f=p[d]=p[d]||{};f["@id"]=d;const h=Object.keys(e).sort();for(let i of h){if("@id"===i)continue;if("@reverse"===i){const r={"@id":d},i=e["@reverse"];for(const e in i){const s=i[e];for(const i of s){let s=i["@id"];o.isBlankNode(i)&&(s=c.getId(s)),l.createNodeMap(i,t,n,c,s),a.addValue(p[s],e,r,{propertyIsArray:!0,allowDuplicate:!1})}}continue}if("@graph"===i){d in t||(t[d]={}),l.createNodeMap(e[i],t,d,c);continue}if("@included"===i){l.createNodeMap(e[i],t,n,c);continue}if("@type"!==i&&r(i)){if("@index"===i&&i in f&&(e[i]!==f[i]||e[i]["@id"]!==f[i]["@id"]))throw new s("Invalid JSON-LD syntax; conflicting @index property detected.","jsonld.SyntaxError",{code:"conflicting indexes",subject:f});f[i]=e[i];continue}const u=e[i];if(0===i.indexOf("_:")&&(i=c.getId(i)),0!==u.length)for(let e of u)if("@type"===i&&(e=0===e.indexOf("_:")?c.getId(e):e),o.isSubject(e)||o.isSubjectReference(e)){if("@id"in e&&!e["@id"])continue;const r=o.isBlankNode(e)?c.getId(e["@id"]):e["@id"];a.addValue(f,i,{"@id":r},{propertyIsArray:!0,allowDuplicate:!1}),l.createNodeMap(e,t,n,c,r)}else if(o.isValue(e))a.addValue(f,i,e,{propertyIsArray:!0,allowDuplicate:!1});else if(o.isList(e)){const r=[];l.createNodeMap(e["@list"],t,n,c,d,r),e={"@list":r},a.addValue(f,i,e,{propertyIsArray:!0,allowDuplicate:!1})}else l.createNodeMap(e,t,n,c,d),a.addValue(f,i,e,{propertyIsArray:!0,allowDuplicate:!1});else a.addValue(f,i,[],{propertyIsArray:!0})}},l.mergeNodeMapGraphs=e=>{const t={};for(const n of Object.keys(e).sort())for(const o of Object.keys(e[n]).sort()){const i=e[n][o];o in t||(t[o]={"@id":o});const s=t[o];for(const e of Object.keys(i).sort())if(r(e)&&"@type"!==e)s[e]=a.clone(i[e]);else for(const t of i[e])a.addValue(s,e,a.clone(t),{propertyIsArray:!0,allowDuplicate:!1})}return t},l.mergeNodeMaps=e=>{const t=e["@default"],n=Object.keys(e).sort();for(const r of n){if("@default"===r)continue;const n=e[r];let i=t[r];i?"@graph"in i||(i["@graph"]=[]):t[r]=i={"@id":r,"@graph":[]};const a=i["@graph"];for(const e of Object.keys(n).sort()){const t=n[e];o.isSubjectReference(t)||a.push(t)}}return t}},60701:function(e,t,n){"use strict";const r=n(86957),o={};e.exports=o,o.setupDocumentLoaders=function(e){"undefined"!==typeof XMLHttpRequest&&(e.documentLoaders.xhr=r,e.useDocumentLoader("xhr"))},o.setupGlobals=function(e){"undefined"===typeof globalThis.JsonLdProcessor&&Object.defineProperty(globalThis,"JsonLdProcessor",{writable:!0,enumerable:!1,configurable:!0,value:e.JsonLdProcessor})}},99180:function(e,t,n){"use strict";const{createNodeMap:r}=n(9233),{isKeyword:o}=n(51972),i=n(3978),a=n(82341),s=n(82207),l=n(7382),c=n(59263),{handleEvent:d}=n(92246),{RDF_FIRST:u,RDF_REST:p,RDF_NIL:f,RDF_TYPE:h,RDF_JSON_LITERAL:g,RDF_LANGSTRING:y,XSD_BOOLEAN:b,XSD_DOUBLE:v,XSD_INTEGER:m,XSD_STRING:w}=n(49378),{isAbsolute:x}=n(30470),_={};function S(e,t,n,r,i){const a=Object.keys(t).sort();for(const s of a){const a=t[s],l=Object.keys(a).sort();for(let t of l){const l=a[t];if("@type"===t)t=h;else if(o(t))continue;for(const o of l){const a={termType:s.startsWith("_:")?"BlankNode":"NamedNode",value:s};if(!x(s)){i.eventHandler&&d({event:{type:["JsonLdEvent"],code:"relative subject reference",level:"warning",message:"Relative subject reference found.",details:{subject:s}},options:i});continue}const l={termType:t.startsWith("_:")?"BlankNode":"NamedNode",value:t};if(!x(t)){i.eventHandler&&d({event:{type:["JsonLdEvent"],code:"relative predicate reference",level:"warning",message:"Relative predicate reference found.",details:{predicate:t}},options:i});continue}if("BlankNode"===l.termType&&!i.produceGeneralizedRdf){i.eventHandler&&d({event:{type:["JsonLdEvent"],code:"blank node predicate",level:"warning",message:"Dropping blank node predicate.",details:{property:r.getOldIds().find((e=>r.getId(e)===t))}},options:i});continue}const c=I(o,r,e,n,i.rdfDirection,i);c&&e.push({subject:a,predicate:l,object:c,graph:n})}}}}function E(e,t,n,r,o,i){const a={termType:"NamedNode",value:u},s={termType:"NamedNode",value:p},l={termType:"NamedNode",value:f},c=e.pop(),d=c?{termType:"BlankNode",value:t.getId()}:l;let h=d;for(const u of e){const e=I(u,t,n,r,o,i),l={termType:"BlankNode",value:t.getId()};n.push({subject:h,predicate:a,object:e,graph:r}),n.push({subject:h,predicate:s,object:l,graph:r}),h=l}if(c){const e=I(c,t,n,r,o,i);n.push({subject:h,predicate:a,object:e,graph:r}),n.push({subject:h,predicate:s,object:l,graph:r})}return d}function I(e,t,n,r,o,c){const u={};if(i.isValue(e)){u.termType="Literal",u.value=void 0,u.datatype={termType:"NamedNode"};let t=e["@value"];const n=e["@type"]||null;if("@json"===n)u.value=a(t),u.datatype.value=g;else if(l.isBoolean(t))u.value=t.toString(),u.datatype.value=n||b;else if(l.isDouble(t)||n===v)l.isDouble(t)||(t=parseFloat(t)),u.value=t.toExponential(15).replace(/(\d)0*e\+?/,"$1E"),u.datatype.value=n||v;else if(l.isNumber(t))u.value=t.toFixed(0),u.datatype.value=n||m;else if("@direction"in e&&"i18n-datatype"===o){const n=(e["@language"]||"").toLowerCase(),r=e["@direction"],o=`https://www.w3.org/ns/i18n#${n}_${r}`;u.datatype.value=o,u.value=t}else{if("@direction"in e&&"compound-literal"===o)throw new s("Unsupported rdfDirection value.","jsonld.InvalidRdfDirection",{value:o});if("@direction"in e&&o)throw new s("Unknown rdfDirection value.","jsonld.InvalidRdfDirection",{value:o});"@language"in e?("@direction"in e&&!o&&c.eventHandler&&d({event:{type:["JsonLdEvent"],code:"rdfDirection not set",level:"warning",message:"rdfDirection not set for @direction.",details:{object:u.value}},options:c}),u.value=t,u.datatype.value=n||y,u.language=e["@language"]):("@direction"in e&&!o&&c.eventHandler&&d({event:{type:["JsonLdEvent"],code:"rdfDirection not set",level:"warning",message:"rdfDirection not set for @direction.",details:{object:u.value}},options:c}),u.value=t,u.datatype.value=n||w)}}else if(i.isList(e)){const i=E(e["@list"],t,n,r,o,c);u.termType=i.termType,u.value=i.value}else{const t=l.isObject(e)?e["@id"]:e;u.termType=t.startsWith("_:")?"BlankNode":"NamedNode",u.value=t}return"NamedNode"!==u.termType||x(u.value)?u:(c.eventHandler&&d({event:{type:["JsonLdEvent"],code:"relative object reference",level:"warning",message:"Relative object reference found.",details:{object:u.value}},options:c}),null)}e.exports=_,_.toRDF=(e,t)=>{const n=new c.IdentifierIssuer("_:b"),o={"@default":{}};r(e,o,"@default",n);const i=[],a=Object.keys(o).sort();for(const r of a){let e;if("@default"===r)e={termType:"DefaultGraph",value:""};else{if(!x(r)){t.eventHandler&&d({event:{type:["JsonLdEvent"],code:"relative graph reference",level:"warning",message:"Relative graph reference found.",details:{graph:r}},options:t});continue}e=r.startsWith("_:")?{termType:"BlankNode"}:{termType:"NamedNode"},e.value=r}S(i,o[r],e,n,t)}return i}},7382:function(e){"use strict";const t={};e.exports=t,t.isArray=Array.isArray,t.isBoolean=e=>"boolean"===typeof e||"[object Boolean]"===Object.prototype.toString.call(e),t.isDouble=e=>t.isNumber(e)&&(-1!==String(e).indexOf(".")||Math.abs(e)>=1e21),t.isEmptyObject=e=>t.isObject(e)&&0===Object.keys(e).length,t.isNumber=e=>"number"===typeof e||"[object Number]"===Object.prototype.toString.call(e),t.isNumeric=e=>!isNaN(parseFloat(e))&&isFinite(e),t.isObject=e=>"[object Object]"===Object.prototype.toString.call(e),t.isString=e=>"string"===typeof e||"[object String]"===Object.prototype.toString.call(e),t.isUndefined=e=>"undefined"===typeof e},30470:function(e,t,n){"use strict";const r=n(7382),o={};e.exports=o,o.parsers={simple:{keys:["href","scheme","authority","path","query","fragment"],regex:/^(?:([^:\/?#]+):)?(?:\/\/([^\/?#]*))?([^?#]*)(?:\?([^#]*))?(?:#(.*))?/},full:{keys:["href","protocol","scheme","authority","auth","user","password","hostname","port","path","directory","file","query","fragment"],regex:/^(([a-zA-Z][a-zA-Z0-9+-.]*):)?(?:\/\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?))?(?:(((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/}},o.parse=(e,t)=>{const n={},r=o.parsers[t||"full"],i=r.regex.exec(e);let a=r.keys.length;while(a--)n[r.keys[a]]=void 0===i[a]?null:i[a];return("https"===n.scheme&&"443"===n.port||"http"===n.scheme&&"80"===n.port)&&(n.href=n.href.replace(":"+n.port,""),n.authority=n.authority.replace(":"+n.port,""),n.port=null),n.normalizedPath=o.removeDotSegments(n.path),n},o.prependBase=(e,t)=>{if(null===e)return t;if(o.isAbsolute(t))return t;e&&!r.isString(e)||(e=o.parse(e||""));const n=o.parse(t),i={protocol:e.protocol||""};if(null!==n.authority)i.authority=n.authority,i.path=n.path,i.query=n.query;else if(i.authority=e.authority,""===n.path)i.path=e.path,null!==n.query?i.query=n.query:i.query=e.query;else{if(0===n.path.indexOf("/"))i.path=n.path;else{let t=e.path;t=t.substr(0,t.lastIndexOf("/")+1),(t.length>0||e.authority)&&"/"!==t.substr(-1)&&(t+="/"),t+=n.path,i.path=t}i.query=n.query}""!==n.path&&(i.path=o.removeDotSegments(i.path));let a=i.protocol;return null!==i.authority&&(a+="//"+i.authority),a+=i.path,null!==i.query&&(a+="?"+i.query),null!==n.fragment&&(a+="#"+n.fragment),""===a&&(a="./"),a},o.removeBase=(e,t)=>{if(null===e)return t;e&&!r.isString(e)||(e=o.parse(e||""));let n="";if(""!==e.href?n+=(e.protocol||"")+"//"+(e.authority||""):t.indexOf("//")&&(n+="//"),0!==t.indexOf(n))return t;const i=o.parse(t.substr(n.length)),a=e.normalizedPath.split("/"),s=i.normalizedPath.split("/"),l=i.fragment||i.query?0:1;while(a.length>0&&s.length>l){if(a[0]!==s[0])break;a.shift(),s.shift()}let c="";if(a.length>0){a.pop();for(let e=0;e{if(0===e.length)return"";const t=e.split("/"),n=[];while(t.length>0){const e=t.shift(),r=0===t.length;"."!==e?".."!==e?n.push(e):(n.pop(),r&&n.push("")):r&&n.push("")}return"/"===e[0]&&n.length>0&&""!==n[0]&&n.unshift(""),1===n.length&&""===n[0]?"/":n.join("/")};const i=/^([A-Za-z][A-Za-z0-9+-.]*|_):[^\s]*$/;o.isAbsolute=e=>r.isString(e)&&i.test(e),o.isRelative=e=>r.isString(e)},59263:function(e,t,n){"use strict";const r=n(3978),o=n(7382),i=n(60989).IdentifierIssuer,a=n(82207),s=/^[a-zA-Z]{1,8}(-[a-zA-Z0-9]{1,8})*$/,l=/(?:<[^>]*?>|"[^"]*?"|[^,])+/g,c=/\s*<([^>]*?)>\s*(?:;\s*(.*))?/,d=/(.*?)=(?:(?:"([^"]*?)")|([^"]*?))\s*(?:(?:;\s*)|$)/g,u=/^@[a-zA-Z]+$/,p={headers:{accept:"application/ld+json, application/json"}},f={};function h(e,t){if(o.isArray(t))for(let n=0;n{const t=Object.keys(e).some((e=>"accept"===e.toLowerCase()));if(t)throw new RangeError('Accept header may not be specified; only "'+p.headers.accept+'" is supported.');return Object.assign({Accept:p.headers.accept},e)},f.parseLinkHeader=e=>{const t={},n=e.match(l);for(let r=0;r{if(!o.isString(e)&&(!o.isArray(e)||!e.every((e=>o.isString(e))))){if(t&&o.isObject(e))switch(Object.keys(e).length){case 0:return;case 1:if("@default"in e&&f.asArray(e["@default"]).every((e=>o.isString(e))))return}throw new a('Invalid JSON-LD syntax; "@type" value must a string, an array of strings, an empty object, or a default object.',"jsonld.SyntaxError",{code:"invalid type value",value:e})}},f.hasProperty=(e,t)=>{if(e.hasOwnProperty(t)){const n=e[t];return!o.isArray(n)||n.length>0}return!1},f.hasValue=(e,t,n)=>{if(f.hasProperty(e,t)){let i=e[t];const a=r.isList(i);if(o.isArray(i)||a){a&&(i=i["@list"]);for(let e=0;e{if(r=r||{},"propertyIsArray"in r||(r.propertyIsArray=!1),"valueIsArray"in r||(r.valueIsArray=!1),"allowDuplicate"in r||(r.allowDuplicate=!0),"prependValue"in r||(r.prependValue=!1),r.valueIsArray)e[t]=n;else if(o.isArray(n)){0===n.length&&r.propertyIsArray&&!e.hasOwnProperty(t)&&(e[t]=[]),r.prependValue&&(n=n.concat(e[t]),e[t]=[]);for(let o=0;o[].concat(e[t]||[]),f.removeProperty=(e,t)=>{delete e[t]},f.removeValue=(e,t,n,r)=>{r=r||{},"propertyIsArray"in r||(r.propertyIsArray=!1);const o=f.getValues(e,t).filter((e=>!f.compareValues(e,n)));0===o.length?f.removeProperty(e,t):1!==o.length||r.propertyIsArray?e[t]=o:e[t]=o[0]},f.relabelBlankNodes=(e,t)=>{t=t||{};const n=t.issuer||new i("_:b");return h(n,e)},f.compareValues=(e,t)=>e===t||(!(!r.isValue(e)||!r.isValue(t)||e["@value"]!==t["@value"]||e["@type"]!==t["@type"]||e["@language"]!==t["@language"]||e["@index"]!==t["@index"])||!!(o.isObject(e)&&"@id"in e&&o.isObject(t)&&"@id"in t)&&e["@id"]===t["@id"]),f.compareShortestLeast=(e,t)=>e.length1;class g{constructor(e){if("number"===typeof e&&(e={max:e}),e||(e={}),e.max&&("number"!==typeof e.max||e.max<0))throw new TypeError("max must be a non-negative number");this[o]=e.max||1/0;const t=e.length||h;if(this[a]="function"!==typeof t?h:t,this[s]=e.stale||!1,e.maxAge&&"number"!==typeof e.maxAge)throw new TypeError("maxAge must be a number");this[l]=e.maxAge||0,this[c]=e.dispose,this[d]=e.noDisposeOnSet||!1,this[f]=e.updateAgeOnGet||!1,this.reset()}set max(e){if("number"!==typeof e||e<0)throw new TypeError("max must be a non-negative number");this[o]=e||1/0,v(this)}get max(){return this[o]}set allowStale(e){this[s]=!!e}get allowStale(){return this[s]}set maxAge(e){if("number"!==typeof e)throw new TypeError("maxAge must be a non-negative number");this[l]=e,v(this)}get maxAge(){return this[l]}set lengthCalculator(e){"function"!==typeof e&&(e=h),e!==this[a]&&(this[a]=e,this[i]=0,this[u].forEach((e=>{e.length=this[a](e.value,e.key),this[i]+=e.length}))),v(this)}get lengthCalculator(){return this[a]}get length(){return this[i]}get itemCount(){return this[u].length}rforEach(e,t){t=t||this;for(let n=this[u].tail;null!==n;){const r=n.prev;x(this,e,n,t),n=r}}forEach(e,t){t=t||this;for(let n=this[u].head;null!==n;){const r=n.next;x(this,e,n,t),n=r}}keys(){return this[u].toArray().map((e=>e.key))}values(){return this[u].toArray().map((e=>e.value))}reset(){this[c]&&this[u]&&this[u].length&&this[u].forEach((e=>this[c](e.key,e.value))),this[p]=new Map,this[u]=new r,this[i]=0}dump(){return this[u].map((e=>!b(this,e)&&{k:e.key,v:e.value,e:e.now+(e.maxAge||0)})).toArray().filter((e=>e))}dumpLru(){return this[u]}set(e,t,n){if(n=n||this[l],n&&"number"!==typeof n)throw new TypeError("maxAge must be a number");const r=n?Date.now():0,s=this[a](t,e);if(this[p].has(e)){if(s>this[o])return m(this,this[p].get(e)),!1;const a=this[p].get(e),l=a.value;return this[c]&&(this[d]||this[c](e,l.value)),l.now=r,l.maxAge=n,l.value=t,this[i]+=s-l.length,l.length=s,this.get(e),v(this),!0}const f=new w(e,t,s,r,n);return f.length>this[o]?(this[c]&&this[c](e,t),!1):(this[i]+=f.length,this[u].unshift(f),this[p].set(e,this[u].head),v(this),!0)}has(e){if(!this[p].has(e))return!1;const t=this[p].get(e).value;return!b(this,t)}get(e){return y(this,e,!0)}peek(e){return y(this,e,!1)}pop(){const e=this[u].tail;return e?(m(this,e),e.value):null}del(e){m(this,this[p].get(e))}load(e){this.reset();const t=Date.now();for(let n=e.length-1;n>=0;n--){const r=e[n],o=r.e||0;if(0===o)this.set(r.k,r.v);else{const e=o-t;e>0&&this.set(r.k,r.v,e)}}}prune(){this[p].forEach(((e,t)=>y(this,t,!1)))}}const y=(e,t,n)=>{const r=e[p].get(t);if(r){const t=r.value;if(b(e,t)){if(m(e,r),!e[s])return}else n&&(e[f]&&(r.value.now=Date.now()),e[u].unshiftNode(r));return t.value}},b=(e,t)=>{if(!t||!t.maxAge&&!e[l])return!1;const n=Date.now()-t.now;return t.maxAge?n>t.maxAge:e[l]&&n>e[l]},v=e=>{if(e[i]>e[o])for(let t=e[u].tail;e[i]>e[o]&&null!==t;){const n=t.prev;m(e,t),t=n}},m=(e,t)=>{if(t){const n=t.value;e[c]&&e[c](n.key,n.value),e[i]-=n.length,e[p].delete(n.key),e[u].removeNode(t)}};class w{constructor(e,t,n,r,o){this.key=e,this.value=t,this.length=n,this.now=r,this.maxAge=o||0}}const x=(e,t,n,r)=>{let o=n.value;b(e,o)&&(m(e,n),e[s]||(o=void 0)),o&&t.call(r,o.value,o.key,e)};e.exports=g},43269:function(e){"use strict";e.exports=function(e){e.prototype[Symbol.iterator]=function*(){for(let e=this.head;e;e=e.next)yield e.value}}},86717:function(e,t,n){"use strict";function r(e){var t=this;if(t instanceof r||(t=new r),t.tail=null,t.head=null,t.length=0,e&&"function"===typeof e.forEach)e.forEach((function(e){t.push(e)}));else if(arguments.length>0)for(var n=0,o=arguments.length;n1)n=t;else{if(!this.head)throw new TypeError("Reduce of empty list with no initial value");r=this.head.next,n=this.head.value}for(var o=0;null!==r;o++)n=e(n,r.value,o),r=r.next;return n},r.prototype.reduceReverse=function(e,t){var n,r=this.tail;if(arguments.length>1)n=t;else{if(!this.tail)throw new TypeError("Reduce of empty list with no initial value");r=this.tail.prev,n=this.tail.value}for(var o=this.length-1;null!==r;o--)n=e(n,r.value,o),r=r.prev;return n},r.prototype.toArray=function(){for(var e=new Array(this.length),t=0,n=this.head;null!==n;t++)e[t]=n.value,n=n.next;return e},r.prototype.toArrayReverse=function(){for(var e=new Array(this.length),t=0,n=this.tail;null!==n;t++)e[t]=n.value,n=n.prev;return e},r.prototype.slice=function(e,t){t=t||this.length,t<0&&(t+=this.length),e=e||0,e<0&&(e+=this.length);var n=new r;if(tthis.length&&(t=this.length);for(var o=0,i=this.head;null!==i&&othis.length&&(t=this.length);for(var o=this.length,i=this.tail;null!==i&&o>t;o--)i=i.prev;for(;null!==i&&o>e;o--,i=i.prev)n.push(i.value);return n},r.prototype.splice=function(e,t,...n){e>this.length&&(e=this.length-1),e<0&&(e=this.length+e);for(var r=0,i=this.head;null!==i&&r{const e="(?:<([^:]+:[^>]*)>)",t="A-Za-zÀ-ÖØ-öø-˿Ͱ-ͽͿ-῿‌-‍⁰-↏Ⰰ-⿯、-퟿豈-﷏ﷰ-�",n=t+"_",r=n+"0-9-·̀-ͯ‿-⁀",o="(_:(?:["+n+"0-9])(?:(?:["+r+".])*(?:["+r+"]))?)",i=o,a='"([^"\\\\]*(?:\\\\.[^"\\\\]*)*)"',s="(?:\\^\\^"+e+")",c="(?:@([a-zA-Z]+(?:-[a-zA-Z0-9]+)*))",d="(?:"+a+"(?:"+s+"|"+c+")?)",u="[ \\t]+",p="[ \\t]*",f="(?:"+e+"|"+i+")"+u,h=e+u,g="(?:"+e+"|"+i+"|"+d+")"+p,y="(?:\\.|(?:(?:"+e+"|"+i+")"+p+"\\.))";l.eoln=/(?:\r\n)|(?:\n)|(?:\r)/g,l.empty=new RegExp("^"+p+"$"),l.quad=new RegExp("^"+p+f+h+g+y+p+"$")})(),e.exports=class e{static parse(e){const t=[],d={},u=e.split(l.eoln);let p=0;for(const h of u){if(p++,l.empty.test(h))continue;const e=h.match(l.quad);if(null===e)throw new Error("N-Quads parse error on line "+p+".");const u={subject:null,predicate:null,object:null,graph:null};if(void 0!==e[1]?u.subject={termType:o,value:e[1]}:u.subject={termType:i,value:e[2]},u.predicate={termType:o,value:e[3]},void 0!==e[4]?u.object={termType:o,value:e[4]}:void 0!==e[5]?u.object={termType:i,value:e[5]}:(u.object={termType:a,value:void 0,datatype:{termType:o}},void 0!==e[7]?u.object.datatype.value=e[7]:void 0!==e[8]?(u.object.datatype.value=n,u.object.language=e[8]):u.object.datatype.value=r,u.object.value=f(e[6])),void 0!==e[9]?u.graph={termType:o,value:e[9]}:void 0!==e[10]?u.graph={termType:i,value:e[10]}:u.graph={termType:s,value:""},u.graph.value in d){let e=!0;const n=d[u.graph.value];for(const t of n)if(c(t,u)){e=!1;break}e&&(n.push(u),t.push(u))}else d[u.graph.value]=[u],t.push(u)}return t}static serialize(t){Array.isArray(t)||(t=e.legacyDatasetToQuads(t));const n=[];for(const r of t)n.push(e.serializeQuad(r));return n.sort().join("")}static serializeQuadComponents(e,t,a,s){let l="";return e.termType===o?l+=`<${e.value}>`:l+=`${e.value}`,l+=` <${t.value}> `,a.termType===o?l+=`<${a.value}>`:a.termType===i?l+=a.value:(l+=`"${u(a.value)}"`,a.datatype.value===n?a.language&&(l+=`@${a.language}`):a.datatype.value!==r&&(l+=`^^<${a.datatype.value}>`)),s.termType===o?l+=` <${s.value}>`:s.termType===i&&(l+=` ${s.value}`),l+=" .\n",l}static serializeQuad(t){return e.serializeQuadComponents(t.subject,t.predicate,t.object,t.graph)}static legacyDatasetToQuads(e){const t=[],l={"blank node":i,IRI:o,literal:a};for(const c in e){const d=e[c];d.forEach((e=>{const d={};for(const t in e){const i=e[t],s={termType:l[i.type],value:i.value};s.termType===a&&(s.datatype={termType:o},"datatype"in i&&(s.datatype.value=i.datatype),"language"in i?("datatype"in i||(s.datatype.value=n),s.language=i.language):"datatype"in i||(s.datatype.value=r)),d[t]=s}d.graph="@default"===c?{termType:s,value:""}:{termType:c.startsWith("_:")?i:o,value:c},t.push(d)}))}return t}};const d=/["\\\n\r]/g;function u(e){return e.replace(d,(function(e){switch(e){case'"':return'\\"';case"\\":return"\\\\";case"\n":return"\\n";case"\r":return"\\r"}}))}const p=/(?:\\([tbnrf"'\\]))|(?:\\u([0-9A-Fa-f]{4}))|(?:\\U([0-9A-Fa-f]{8}))/g;function f(e){return e.replace(p,(function(e,t,n,r){if(t)switch(t){case"t":return"\t";case"b":return"\b";case"n":return"\n";case"r":return"\r";case"f":return"\f";case'"':return'"';case"'":return"'";case"\\":return"\\"}if(n)return String.fromCharCode(parseInt(n,16));if(r)throw new Error("Unsupported U escape")}))}},29925:function(e){"use strict"; +/*! + * Copyright (c) 2016-2022 Digital Bazaar, Inc. All rights reserved. + */e.exports=class{constructor(e){this.current=e.sort(),this.done=!1,this.dir=new Map;for(let t=0;tr)&&(s&&a>0&&n>e[a-1]||!s&&ae[a+1])&&(r=n,o=a)}if(null===r)this.done=!0;else{const n=t.get(r)?o-1:o+1;e[o]=e[n],e[n]=r;for(const o of e)o>r&&t.set(o,!t.get(o))}return n}}},43513:function(e,t,n){"use strict"; +/*! + * Copyright (c) 2016-2022 Digital Bazaar, Inc. All rights reserved. + */const r=n(32985),o=n(23751),i=n(29925),a=n(11227);function s(e,t){return e.hasht.hash?1:0}e.exports=class{constructor({createMessageDigest:e=()=>new o("sha256"),canonicalIdMap:t=new Map,maxDeepIterations:n=1/0}={}){this.name="URDNA2015",this.blankNodeInfo=new Map,this.canonicalIssuer=new r("_:c14n",t),this.createMessageDigest=e,this.maxDeepIterations=n,this.quads=null,this.deepIterations=null}async main(e){this.deepIterations=new Map,this.quads=e;for(const r of e)this._addBlankNodeQuadInfo({quad:r,component:r.subject}),this._addBlankNodeQuadInfo({quad:r,component:r.object}),this._addBlankNodeQuadInfo({quad:r,component:r.graph});const t=new Map,n=[...this.blankNodeInfo.keys()];let o=0;for(const r of n)++o%100===0&&await this._yield(),await this._hashAndTrackBlankNode({id:r,hashToBlankNodes:t});const i=[...t.keys()].sort(),l=[];for(const r of i){const e=t.get(r);if(e.length>1){l.push(e);continue}const n=e[0];this.canonicalIssuer.getId(n)}for(const a of l){const e=[];for(const t of a){if(this.canonicalIssuer.hasId(t))continue;const n=new r("_:b");n.getId(t);const o=await this.hashNDegreeQuads(t,n);e.push(o)}e.sort(s);for(const t of e){const e=t.issuer.getOldIds();for(const t of e)this.canonicalIssuer.getId(t)}}const c=[];for(const r of this.quads){const e=a.serializeQuadComponents(this._componentWithCanonicalId(r.subject),r.predicate,this._componentWithCanonicalId(r.object),this._componentWithCanonicalId(r.graph));c.push(e)}return c.sort(),c.join("")}async hashFirstDegreeQuads(e){const t=[],n=this.blankNodeInfo.get(e),r=n.quads;for(const i of r){const n={subject:null,predicate:i.predicate,object:null,graph:null};n.subject=this.modifyFirstDegreeComponent(e,i.subject,"subject"),n.object=this.modifyFirstDegreeComponent(e,i.object,"object"),n.graph=this.modifyFirstDegreeComponent(e,i.graph,"graph"),t.push(a.serializeQuad(n))}t.sort();const o=this.createMessageDigest();for(const i of t)o.update(i);return n.hash=await o.digest(),n.hash}async hashRelatedBlankNode(e,t,n,r){let o;o=this.canonicalIssuer.hasId(e)?this.canonicalIssuer.getId(e):n.hasId(e)?n.getId(e):this.blankNodeInfo.get(e).hash;const i=this.createMessageDigest();return i.update(r),"g"!==r&&i.update(this.getRelatedPredicate(t)),i.update(o),i.digest()}async hashNDegreeQuads(e,t){const n=this.deepIterations.get(e)||0;if(n>this.maxDeepIterations)throw new Error(`Maximum deep iterations (${this.maxDeepIterations}) exceeded.`);this.deepIterations.set(e,n+1);const r=this.createMessageDigest(),o=await this.createHashToRelated(e,t),a=[...o.keys()].sort();for(const s of a){r.update(s);let e,n="";const a=new i(o.get(s));let l=0;while(a.hasNext()){const r=a.next();++l%3===0&&await this._yield();let o=t.clone(),i="";const s=[];let c=!1;for(const e of r)if(this.canonicalIssuer.hasId(e)?i+=this.canonicalIssuer.getId(e):(o.hasId(e)||s.push(e),i+=o.getId(e)),0!==n.length&&i>n){c=!0;break}if(!c){for(const e of s){const t=await this.hashNDegreeQuads(e,o);if(i+=o.getId(e),i+=`<${t.hash}>`,o=t.issuer,0!==n.length&&i>n){c=!0;break}}c||(0===n.length||i`}async createHashToRelated(e,t){const n=new Map,r=this.blankNodeInfo.get(e).quads;let o=0;for(const i of r)++o%100===0&&await this._yield(),await Promise.all([this._addRelatedBlankNodeHash({quad:i,component:i.subject,position:"s",id:e,issuer:t,hashToRelated:n}),this._addRelatedBlankNodeHash({quad:i,component:i.object,position:"o",id:e,issuer:t,hashToRelated:n}),this._addRelatedBlankNodeHash({quad:i,component:i.graph,position:"g",id:e,issuer:t,hashToRelated:n})]);return n}async _hashAndTrackBlankNode({id:e,hashToBlankNodes:t}){const n=await this.hashFirstDegreeQuads(e),r=t.get(n);r?r.push(e):t.set(n,[e])}_addBlankNodeQuadInfo({quad:e,component:t}){if("BlankNode"!==t.termType)return;const n=t.value,r=this.blankNodeInfo.get(n);r?r.quads.add(e):this.blankNodeInfo.set(n,{quads:new Set([e]),hash:null})}async _addRelatedBlankNodeHash({quad:e,component:t,position:n,id:r,issuer:o,hashToRelated:i}){if("BlankNode"!==t.termType||t.value===r)return;const a=t.value,s=await this.hashRelatedBlankNode(a,e,o,n),l=i.get(s);l?l.push(a):i.set(s,[a])}_componentWithCanonicalId(e){return"BlankNode"!==e.termType||e.value.startsWith(this.canonicalIssuer.prefix)?e:{termType:"BlankNode",value:this.canonicalIssuer.getId(e.value)}}async _yield(){return new Promise((e=>setImmediate(e)))}}},62438:function(e,t,n){"use strict"; +/*! + * Copyright (c) 2016-2022 Digital Bazaar, Inc. All rights reserved. + */const r=n(32985),o=n(23751),i=n(29925),a=n(11227);function s(e,t){return e.hasht.hash?1:0}e.exports=class{constructor({createMessageDigest:e=()=>new o("sha256"),canonicalIdMap:t=new Map,maxDeepIterations:n=1/0}={}){this.name="URDNA2015",this.blankNodeInfo=new Map,this.canonicalIssuer=new r("_:c14n",t),this.createMessageDigest=e,this.maxDeepIterations=n,this.quads=null,this.deepIterations=null}main(e){this.deepIterations=new Map,this.quads=e;for(const r of e)this._addBlankNodeQuadInfo({quad:r,component:r.subject}),this._addBlankNodeQuadInfo({quad:r,component:r.object}),this._addBlankNodeQuadInfo({quad:r,component:r.graph});const t=new Map,n=[...this.blankNodeInfo.keys()];for(const r of n)this._hashAndTrackBlankNode({id:r,hashToBlankNodes:t});const o=[...t.keys()].sort(),i=[];for(const r of o){const e=t.get(r);if(e.length>1){i.push(e);continue}const n=e[0];this.canonicalIssuer.getId(n)}for(const a of i){const e=[];for(const t of a){if(this.canonicalIssuer.hasId(t))continue;const n=new r("_:b");n.getId(t);const o=this.hashNDegreeQuads(t,n);e.push(o)}e.sort(s);for(const t of e){const e=t.issuer.getOldIds();for(const t of e)this.canonicalIssuer.getId(t)}}const l=[];for(const r of this.quads){const e=a.serializeQuadComponents(this._componentWithCanonicalId({component:r.subject}),r.predicate,this._componentWithCanonicalId({component:r.object}),this._componentWithCanonicalId({component:r.graph}));l.push(e)}return l.sort(),l.join("")}hashFirstDegreeQuads(e){const t=[],n=this.blankNodeInfo.get(e),r=n.quads;for(const i of r){const n={subject:null,predicate:i.predicate,object:null,graph:null};n.subject=this.modifyFirstDegreeComponent(e,i.subject,"subject"),n.object=this.modifyFirstDegreeComponent(e,i.object,"object"),n.graph=this.modifyFirstDegreeComponent(e,i.graph,"graph"),t.push(a.serializeQuad(n))}t.sort();const o=this.createMessageDigest();for(const i of t)o.update(i);return n.hash=o.digest(),n.hash}hashRelatedBlankNode(e,t,n,r){let o;o=this.canonicalIssuer.hasId(e)?this.canonicalIssuer.getId(e):n.hasId(e)?n.getId(e):this.blankNodeInfo.get(e).hash;const i=this.createMessageDigest();return i.update(r),"g"!==r&&i.update(this.getRelatedPredicate(t)),i.update(o),i.digest()}hashNDegreeQuads(e,t){const n=this.deepIterations.get(e)||0;if(n>this.maxDeepIterations)throw new Error(`Maximum deep iterations (${this.maxDeepIterations}) exceeded.`);this.deepIterations.set(e,n+1);const r=this.createMessageDigest(),o=this.createHashToRelated(e,t),a=[...o.keys()].sort();for(const s of a){r.update(s);let e,n="";const a=new i(o.get(s));while(a.hasNext()){const r=a.next();let o=t.clone(),i="";const s=[];let l=!1;for(const e of r)if(this.canonicalIssuer.hasId(e)?i+=this.canonicalIssuer.getId(e):(o.hasId(e)||s.push(e),i+=o.getId(e)),0!==n.length&&i>n){l=!0;break}if(!l){for(const e of s){const t=this.hashNDegreeQuads(e,o);if(i+=o.getId(e),i+=`<${t.hash}>`,o=t.issuer,0!==n.length&&i>n){l=!0;break}}l||(0===n.length||i`}createHashToRelated(e,t){const n=new Map,r=this.blankNodeInfo.get(e).quads;for(const o of r)this._addRelatedBlankNodeHash({quad:o,component:o.subject,position:"s",id:e,issuer:t,hashToRelated:n}),this._addRelatedBlankNodeHash({quad:o,component:o.object,position:"o",id:e,issuer:t,hashToRelated:n}),this._addRelatedBlankNodeHash({quad:o,component:o.graph,position:"g",id:e,issuer:t,hashToRelated:n});return n}_hashAndTrackBlankNode({id:e,hashToBlankNodes:t}){const n=this.hashFirstDegreeQuads(e),r=t.get(n);r?r.push(e):t.set(n,[e])}_addBlankNodeQuadInfo({quad:e,component:t}){if("BlankNode"!==t.termType)return;const n=t.value,r=this.blankNodeInfo.get(n);r?r.quads.add(e):this.blankNodeInfo.set(n,{quads:new Set([e]),hash:null})}_addRelatedBlankNodeHash({quad:e,component:t,position:n,id:r,issuer:o,hashToRelated:i}){if("BlankNode"!==t.termType||t.value===r)return;const a=t.value,s=this.hashRelatedBlankNode(a,e,o,n),l=i.get(s);l?l.push(a):i.set(s,[a])}_componentWithCanonicalId({component:e}){return"BlankNode"!==e.termType||e.value.startsWith(this.canonicalIssuer.prefix)?e:{termType:"BlankNode",value:this.canonicalIssuer.getId(e.value)}}}},93845:function(e,t,n){"use strict"; +/*! + * Copyright (c) 2016-2022 Digital Bazaar, Inc. All rights reserved. + */const r=n(23751),o=n(43513);e.exports=class extends o{constructor(){super(),this.name="URGNA2012",this.createMessageDigest=()=>new r("sha1")}modifyFirstDegreeComponent(e,t,n){return"BlankNode"!==t.termType?t:"graph"===n?{termType:"BlankNode",value:"_:g"}:{termType:"BlankNode",value:t.value===e?"_:a":"_:z"}}getRelatedPredicate(e){return e.predicate.value}async createHashToRelated(e,t){const n=new Map,r=this.blankNodeInfo.get(e).quads;let o=0;for(const i of r){let r,a;if("BlankNode"===i.subject.termType&&i.subject.value!==e)a=i.subject.value,r="p";else{if("BlankNode"!==i.object.termType||i.object.value===e)continue;a=i.object.value,r="r"}++o%100===0&&await this._yield();const s=await this.hashRelatedBlankNode(a,i,t,r),l=n.get(s);l?l.push(a):n.set(s,[a])}return n}}},7997:function(e,t,n){"use strict"; +/*! + * Copyright (c) 2016-2021 Digital Bazaar, Inc. All rights reserved. + */const r=n(23751),o=n(62438);e.exports=class extends o{constructor(){super(),this.name="URGNA2012",this.createMessageDigest=()=>new r("sha1")}modifyFirstDegreeComponent(e,t,n){return"BlankNode"!==t.termType?t:"graph"===n?{termType:"BlankNode",value:"_:g"}:{termType:"BlankNode",value:t.value===e?"_:a":"_:z"}}getRelatedPredicate(e){return e.predicate.value}createHashToRelated(e,t){const n=new Map,r=this.blankNodeInfo.get(e).quads;for(const o of r){let r,i;if("BlankNode"===o.subject.termType&&o.subject.value!==e)i=o.subject.value,r="p";else{if("BlankNode"!==o.object.termType||o.object.value===e)continue;i=o.object.value,r="r"}const a=this.hashRelatedBlankNode(i,o,t,r),s=n.get(a);s?s.push(i):n.set(a,[i])}return n}}},64005:function(e,t,n){"use strict";const r=n(43513),o=n(93845),i=n(62438),a=n(7997);let s;try{s=n(67789)}catch(c){}function l(e){return Array.isArray(e)?e:t.NQuads.legacyDatasetToQuads(e)}t.NQuads=n(11227),t.IdentifierIssuer=n(32985),t._rdfCanonizeNative=function(e){return e&&(s=e),s},t.canonize=async function(e,t){const n=l(e,t);if(t.useNative){if(!s)throw new Error("rdf-canonize-native not available");if(t.createMessageDigest)throw new Error('"createMessageDigest" cannot be used with "useNative".');return new Promise(((e,r)=>s.canonize(n,t,((t,n)=>t?r(t):e(n)))))}if("URDNA2015"===t.algorithm)return new r(t).main(n);if("URGNA2012"===t.algorithm){if(t.createMessageDigest)throw new Error('"createMessageDigest" cannot be used with "URGNA2012".');return new o(t).main(n)}if(!("algorithm"in t))throw new Error("No RDF Dataset Canonicalization algorithm specified.");throw new Error("Invalid RDF Dataset Canonicalization algorithm: "+t.algorithm)},t._canonizeSync=function(e,t){const n=l(e,t);if(t.useNative){if(!s)throw new Error("rdf-canonize-native not available");if(t.createMessageDigest)throw new Error('"createMessageDigest" cannot be used with "useNative".');return s.canonizeSync(n,t)}if("URDNA2015"===t.algorithm)return new i(t).main(n);if("URGNA2012"===t.algorithm){if(t.createMessageDigest)throw new Error('"createMessageDigest" cannot be used with "URGNA2012".');return new a(t).main(n)}if(!("algorithm"in t))throw new Error("No RDF Dataset Canonicalization algorithm specified.");throw new Error("Invalid RDF Dataset Canonicalization algorithm: "+t.algorithm)}},42791:function(e,t,n){var r=n(65606);(function(e,t){"use strict";if(!e.setImmediate){var n,o=1,i={},a=!1,s=e.document,l=Object.getPrototypeOf&&Object.getPrototypeOf(e);l=l&&l.setTimeout?l:e,"[object process]"==={}.toString.call(e.process)?f():h()?g():e.MessageChannel?y():s&&"onreadystatechange"in s.createElement("script")?b():v(),l.setImmediate=c,l.clearImmediate=d}function c(e){"function"!==typeof e&&(e=new Function(""+e));for(var t=new Array(arguments.length-1),r=0;r{n.readable||n.emit("end")})),e.on("error",(e=>{n.emit("error",e)})),n}}var o=r,i=n(34841),a=n(23521);async function s(e){const t=[];for await(const n of e)t.push(n);return t}var l=s;class c extends a.Readable{constructor(e,{baseIRI:t,compact:n,context:r={},encoding:o="object",flatten:i,frame:a,prettyPrint:s,skipContext:l}={}){super({objectMode:!0,read:()=>{}}),this.compact=n,this.context=r,this.encoding=o,this.flatten=i,this.frame=a,this.prettyPrint=s,this.skipContext=l,t&&(this.context["@base"]=t.value||t.toString()),e.on("prefix",((e,t)=>{this.context[e]||(this.context[e]=t.value)})),this.handleData(e)}async handleData(e){try{const t=(await l(e)).map(c.toJsonldQuad),n=await i.fromRDF(t),r=await this.transform(n,this.options);this.push(r),this.push(null)}catch(t){this.emit("error",t)}}async transform(e){return this.compact&&(e=await i.compact(e,this.context)),this.flatten&&(e=await i.flatten(e,this.context)),this.frame&&(e=await i.frame(e,this.context)),this.skipContext&&e["@context"]&&delete e["@context"],"string"===this.encoding?this.prettyPrint?JSON.stringify(e,null,2):JSON.stringify(e):e}static toJsonldQuad(e){return{subject:c.toJsonldTerm(e.subject),predicate:c.toJsonldTerm(e.predicate),object:c.toJsonldTerm(e.object),graph:c.toJsonldTerm(e.graph)}}static toJsonldTerm(e){return"BlankNode"===e.termType?{termType:"BlankNode",value:`_:${e.value}`}:e}}var d=c;class u extends o{constructor(e){super(d,e)}}var p=u}}]); +//# sourceMappingURL=590.387eb152.js.map \ No newline at end of file diff --git a/dist/js/590.387eb152.js.map b/dist/js/590.387eb152.js.map new file mode 100644 index 0000000..cf93b4e --- /dev/null +++ b/dist/js/590.387eb152.js.map @@ -0,0 +1 @@ +{"version":3,"file":"js/590.387eb152.js","mappings":"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","sources":["webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld-ext/node_modules/readable-stream/lib/internal/streams/add-abort-signal.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld-ext/node_modules/readable-stream/lib/internal/streams/buffer_list.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld-ext/node_modules/readable-stream/lib/internal/streams/compose.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld-ext/node_modules/readable-stream/lib/internal/streams/destroy.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld-ext/node_modules/readable-stream/lib/internal/streams/duplex.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld-ext/node_modules/readable-stream/lib/internal/streams/duplexify.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld-ext/node_modules/readable-stream/lib/internal/streams/end-of-stream.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld-ext/node_modules/readable-stream/lib/internal/streams/from.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld-ext/node_modules/readable-stream/lib/internal/streams/legacy.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld-ext/node_modules/readable-stream/lib/internal/streams/operators.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld-ext/node_modules/readable-stream/lib/internal/streams/passthrough.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld-ext/node_modules/readable-stream/lib/internal/streams/pipeline.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld-ext/node_modules/readable-stream/lib/internal/streams/readable.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld-ext/node_modules/readable-stream/lib/internal/streams/state.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld-ext/node_modules/readable-stream/lib/internal/streams/transform.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld-ext/node_modules/readable-stream/lib/internal/streams/utils.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld-ext/node_modules/readable-stream/lib/internal/streams/writable.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld-ext/node_modules/readable-stream/lib/internal/validators.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld-ext/node_modules/readable-stream/lib/ours/browser.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld-ext/node_modules/readable-stream/lib/ours/errors.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld-ext/node_modules/readable-stream/lib/ours/primordials.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld-ext/node_modules/readable-stream/lib/ours/util.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld-ext/node_modules/readable-stream/lib/stream.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld-ext/node_modules/readable-stream/lib/stream/promises.js","webpack://mobilitydcatap-ui/./node_modules/canonicalize/lib/canonicalize.js","webpack://mobilitydcatap-ui/./node_modules/jsonld/lib/ContextResolver.js","webpack://mobilitydcatap-ui/./node_modules/jsonld/lib/JsonLdError.js","webpack://mobilitydcatap-ui/./node_modules/jsonld/lib/JsonLdProcessor.js","webpack://mobilitydcatap-ui/./node_modules/jsonld/lib/NQuads.js","webpack://mobilitydcatap-ui/./node_modules/jsonld/lib/RequestQueue.js","webpack://mobilitydcatap-ui/./node_modules/jsonld/lib/ResolvedContext.js","webpack://mobilitydcatap-ui/./node_modules/jsonld/lib/compact.js","webpack://mobilitydcatap-ui/./node_modules/jsonld/lib/constants.js","webpack://mobilitydcatap-ui/./node_modules/jsonld/lib/context.js","webpack://mobilitydcatap-ui/./node_modules/jsonld/lib/documentLoaders/xhr.js","webpack://mobilitydcatap-ui/./node_modules/jsonld/lib/events.js","webpack://mobilitydcatap-ui/./node_modules/jsonld/lib/expand.js","webpack://mobilitydcatap-ui/./node_modules/jsonld/lib/flatten.js","webpack://mobilitydcatap-ui/./node_modules/jsonld/lib/frame.js","webpack://mobilitydcatap-ui/./node_modules/jsonld/lib/fromRdf.js","webpack://mobilitydcatap-ui/./node_modules/jsonld/lib/graphTypes.js","webpack://mobilitydcatap-ui/./node_modules/jsonld/lib/jsonld.js","webpack://mobilitydcatap-ui/./node_modules/jsonld/lib/nodeMap.js","webpack://mobilitydcatap-ui/./node_modules/jsonld/lib/platform-browser.js","webpack://mobilitydcatap-ui/./node_modules/jsonld/lib/toRdf.js","webpack://mobilitydcatap-ui/./node_modules/jsonld/lib/types.js","webpack://mobilitydcatap-ui/./node_modules/jsonld/lib/url.js","webpack://mobilitydcatap-ui/./node_modules/jsonld/lib/util.js","webpack://mobilitydcatap-ui/./node_modules/jsonld/node_modules/lru-cache/index.js","webpack://mobilitydcatap-ui/./node_modules/jsonld/node_modules/yallist/iterator.js","webpack://mobilitydcatap-ui/./node_modules/jsonld/node_modules/yallist/yallist.js","webpack://mobilitydcatap-ui/./node_modules/rdf-canonize/index.js","webpack://mobilitydcatap-ui/./node_modules/rdf-canonize/lib/IdentifierIssuer.js","webpack://mobilitydcatap-ui/./node_modules/rdf-canonize/lib/MessageDigest-browser.js","webpack://mobilitydcatap-ui/./node_modules/rdf-canonize/lib/NQuads.js","webpack://mobilitydcatap-ui/./node_modules/rdf-canonize/lib/Permuter.js","webpack://mobilitydcatap-ui/./node_modules/rdf-canonize/lib/URDNA2015.js","webpack://mobilitydcatap-ui/./node_modules/rdf-canonize/lib/URDNA2015Sync.js","webpack://mobilitydcatap-ui/./node_modules/rdf-canonize/lib/URGNA2012.js","webpack://mobilitydcatap-ui/./node_modules/rdf-canonize/lib/URGNA2012Sync.js","webpack://mobilitydcatap-ui/./node_modules/rdf-canonize/lib/index.js","webpack://mobilitydcatap-ui/./node_modules/setimmediate/setImmediate.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld-ext/node_modules/@rdfjs/sink/index.js","webpack://mobilitydcatap-ui/./node_modules/stream-chunks/chunks.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld-ext/lib/SerializerStream.js","webpack://mobilitydcatap-ui/./node_modules/@rdfjs/serializer-jsonld-ext/index.js"],"sourcesContent":["'use strict'\n\nconst { SymbolDispose } = require('../../ours/primordials')\nconst { AbortError, codes } = require('../../ours/errors')\nconst { isNodeStream, isWebStream, kControllerErrorFunction } = require('./utils')\nconst eos = require('./end-of-stream')\nconst { ERR_INVALID_ARG_TYPE } = codes\nlet addAbortListener\n\n// This method is inlined here for readable-stream\n// It also does not allow for signal to not exist on the stream\n// https://github.com/nodejs/node/pull/36061#discussion_r533718029\nconst validateAbortSignal = (signal, name) => {\n if (typeof signal !== 'object' || !('aborted' in signal)) {\n throw new ERR_INVALID_ARG_TYPE(name, 'AbortSignal', signal)\n }\n}\nmodule.exports.addAbortSignal = function addAbortSignal(signal, stream) {\n validateAbortSignal(signal, 'signal')\n if (!isNodeStream(stream) && !isWebStream(stream)) {\n throw new ERR_INVALID_ARG_TYPE('stream', ['ReadableStream', 'WritableStream', 'Stream'], stream)\n }\n return module.exports.addAbortSignalNoValidate(signal, stream)\n}\nmodule.exports.addAbortSignalNoValidate = function (signal, stream) {\n if (typeof signal !== 'object' || !('aborted' in signal)) {\n return stream\n }\n const onAbort = isNodeStream(stream)\n ? () => {\n stream.destroy(\n new AbortError(undefined, {\n cause: signal.reason\n })\n )\n }\n : () => {\n stream[kControllerErrorFunction](\n new AbortError(undefined, {\n cause: signal.reason\n })\n )\n }\n if (signal.aborted) {\n onAbort()\n } else {\n addAbortListener = addAbortListener || require('../../ours/util').addAbortListener\n const disposable = addAbortListener(signal, onAbort)\n eos(stream, disposable[SymbolDispose])\n }\n return stream\n}\n","'use strict'\n\nconst { StringPrototypeSlice, SymbolIterator, TypedArrayPrototypeSet, Uint8Array } = require('../../ours/primordials')\nconst { Buffer } = require('buffer')\nconst { inspect } = require('../../ours/util')\nmodule.exports = class BufferList {\n constructor() {\n this.head = null\n this.tail = null\n this.length = 0\n }\n push(v) {\n const entry = {\n data: v,\n next: null\n }\n if (this.length > 0) this.tail.next = entry\n else this.head = entry\n this.tail = entry\n ++this.length\n }\n unshift(v) {\n const entry = {\n data: v,\n next: this.head\n }\n if (this.length === 0) this.tail = entry\n this.head = entry\n ++this.length\n }\n shift() {\n if (this.length === 0) return\n const ret = this.head.data\n if (this.length === 1) this.head = this.tail = null\n else this.head = this.head.next\n --this.length\n return ret\n }\n clear() {\n this.head = this.tail = null\n this.length = 0\n }\n join(s) {\n if (this.length === 0) return ''\n let p = this.head\n let ret = '' + p.data\n while ((p = p.next) !== null) ret += s + p.data\n return ret\n }\n concat(n) {\n if (this.length === 0) return Buffer.alloc(0)\n const ret = Buffer.allocUnsafe(n >>> 0)\n let p = this.head\n let i = 0\n while (p) {\n TypedArrayPrototypeSet(ret, p.data, i)\n i += p.data.length\n p = p.next\n }\n return ret\n }\n\n // Consumes a specified amount of bytes or characters from the buffered data.\n consume(n, hasStrings) {\n const data = this.head.data\n if (n < data.length) {\n // `slice` is the same for buffers and strings.\n const slice = data.slice(0, n)\n this.head.data = data.slice(n)\n return slice\n }\n if (n === data.length) {\n // First chunk is a perfect match.\n return this.shift()\n }\n // Result spans more than one buffer.\n return hasStrings ? this._getString(n) : this._getBuffer(n)\n }\n first() {\n return this.head.data\n }\n *[SymbolIterator]() {\n for (let p = this.head; p; p = p.next) {\n yield p.data\n }\n }\n\n // Consumes a specified amount of characters from the buffered data.\n _getString(n) {\n let ret = ''\n let p = this.head\n let c = 0\n do {\n const str = p.data\n if (n > str.length) {\n ret += str\n n -= str.length\n } else {\n if (n === str.length) {\n ret += str\n ++c\n if (p.next) this.head = p.next\n else this.head = this.tail = null\n } else {\n ret += StringPrototypeSlice(str, 0, n)\n this.head = p\n p.data = StringPrototypeSlice(str, n)\n }\n break\n }\n ++c\n } while ((p = p.next) !== null)\n this.length -= c\n return ret\n }\n\n // Consumes a specified amount of bytes from the buffered data.\n _getBuffer(n) {\n const ret = Buffer.allocUnsafe(n)\n const retLen = n\n let p = this.head\n let c = 0\n do {\n const buf = p.data\n if (n > buf.length) {\n TypedArrayPrototypeSet(ret, buf, retLen - n)\n n -= buf.length\n } else {\n if (n === buf.length) {\n TypedArrayPrototypeSet(ret, buf, retLen - n)\n ++c\n if (p.next) this.head = p.next\n else this.head = this.tail = null\n } else {\n TypedArrayPrototypeSet(ret, new Uint8Array(buf.buffer, buf.byteOffset, n), retLen - n)\n this.head = p\n p.data = buf.slice(n)\n }\n break\n }\n ++c\n } while ((p = p.next) !== null)\n this.length -= c\n return ret\n }\n\n // Make sure the linked list only shows the minimal necessary information.\n [Symbol.for('nodejs.util.inspect.custom')](_, options) {\n return inspect(this, {\n ...options,\n // Only inspect one level.\n depth: 0,\n // It should not recurse.\n customInspect: false\n })\n }\n}\n","'use strict'\n\nconst { pipeline } = require('./pipeline')\nconst Duplex = require('./duplex')\nconst { destroyer } = require('./destroy')\nconst {\n isNodeStream,\n isReadable,\n isWritable,\n isWebStream,\n isTransformStream,\n isWritableStream,\n isReadableStream\n} = require('./utils')\nconst {\n AbortError,\n codes: { ERR_INVALID_ARG_VALUE, ERR_MISSING_ARGS }\n} = require('../../ours/errors')\nconst eos = require('./end-of-stream')\nmodule.exports = function compose(...streams) {\n if (streams.length === 0) {\n throw new ERR_MISSING_ARGS('streams')\n }\n if (streams.length === 1) {\n return Duplex.from(streams[0])\n }\n const orgStreams = [...streams]\n if (typeof streams[0] === 'function') {\n streams[0] = Duplex.from(streams[0])\n }\n if (typeof streams[streams.length - 1] === 'function') {\n const idx = streams.length - 1\n streams[idx] = Duplex.from(streams[idx])\n }\n for (let n = 0; n < streams.length; ++n) {\n if (!isNodeStream(streams[n]) && !isWebStream(streams[n])) {\n // TODO(ronag): Add checks for non streams.\n continue\n }\n if (\n n < streams.length - 1 &&\n !(isReadable(streams[n]) || isReadableStream(streams[n]) || isTransformStream(streams[n]))\n ) {\n throw new ERR_INVALID_ARG_VALUE(`streams[${n}]`, orgStreams[n], 'must be readable')\n }\n if (n > 0 && !(isWritable(streams[n]) || isWritableStream(streams[n]) || isTransformStream(streams[n]))) {\n throw new ERR_INVALID_ARG_VALUE(`streams[${n}]`, orgStreams[n], 'must be writable')\n }\n }\n let ondrain\n let onfinish\n let onreadable\n let onclose\n let d\n function onfinished(err) {\n const cb = onclose\n onclose = null\n if (cb) {\n cb(err)\n } else if (err) {\n d.destroy(err)\n } else if (!readable && !writable) {\n d.destroy()\n }\n }\n const head = streams[0]\n const tail = pipeline(streams, onfinished)\n const writable = !!(isWritable(head) || isWritableStream(head) || isTransformStream(head))\n const readable = !!(isReadable(tail) || isReadableStream(tail) || isTransformStream(tail))\n\n // TODO(ronag): Avoid double buffering.\n // Implement Writable/Readable/Duplex traits.\n // See, https://github.com/nodejs/node/pull/33515.\n d = new Duplex({\n // TODO (ronag): highWaterMark?\n writableObjectMode: !!(head !== null && head !== undefined && head.writableObjectMode),\n readableObjectMode: !!(tail !== null && tail !== undefined && tail.readableObjectMode),\n writable,\n readable\n })\n if (writable) {\n if (isNodeStream(head)) {\n d._write = function (chunk, encoding, callback) {\n if (head.write(chunk, encoding)) {\n callback()\n } else {\n ondrain = callback\n }\n }\n d._final = function (callback) {\n head.end()\n onfinish = callback\n }\n head.on('drain', function () {\n if (ondrain) {\n const cb = ondrain\n ondrain = null\n cb()\n }\n })\n } else if (isWebStream(head)) {\n const writable = isTransformStream(head) ? head.writable : head\n const writer = writable.getWriter()\n d._write = async function (chunk, encoding, callback) {\n try {\n await writer.ready\n writer.write(chunk).catch(() => {})\n callback()\n } catch (err) {\n callback(err)\n }\n }\n d._final = async function (callback) {\n try {\n await writer.ready\n writer.close().catch(() => {})\n onfinish = callback\n } catch (err) {\n callback(err)\n }\n }\n }\n const toRead = isTransformStream(tail) ? tail.readable : tail\n eos(toRead, () => {\n if (onfinish) {\n const cb = onfinish\n onfinish = null\n cb()\n }\n })\n }\n if (readable) {\n if (isNodeStream(tail)) {\n tail.on('readable', function () {\n if (onreadable) {\n const cb = onreadable\n onreadable = null\n cb()\n }\n })\n tail.on('end', function () {\n d.push(null)\n })\n d._read = function () {\n while (true) {\n const buf = tail.read()\n if (buf === null) {\n onreadable = d._read\n return\n }\n if (!d.push(buf)) {\n return\n }\n }\n }\n } else if (isWebStream(tail)) {\n const readable = isTransformStream(tail) ? tail.readable : tail\n const reader = readable.getReader()\n d._read = async function () {\n while (true) {\n try {\n const { value, done } = await reader.read()\n if (!d.push(value)) {\n return\n }\n if (done) {\n d.push(null)\n return\n }\n } catch {\n return\n }\n }\n }\n }\n }\n d._destroy = function (err, callback) {\n if (!err && onclose !== null) {\n err = new AbortError()\n }\n onreadable = null\n ondrain = null\n onfinish = null\n if (onclose === null) {\n callback(err)\n } else {\n onclose = callback\n if (isNodeStream(tail)) {\n destroyer(tail, err)\n }\n }\n }\n return d\n}\n","'use strict'\n\n/* replacement start */\n\nconst process = require('process/')\n\n/* replacement end */\n\nconst {\n aggregateTwoErrors,\n codes: { ERR_MULTIPLE_CALLBACK },\n AbortError\n} = require('../../ours/errors')\nconst { Symbol } = require('../../ours/primordials')\nconst { kIsDestroyed, isDestroyed, isFinished, isServerRequest } = require('./utils')\nconst kDestroy = Symbol('kDestroy')\nconst kConstruct = Symbol('kConstruct')\nfunction checkError(err, w, r) {\n if (err) {\n // Avoid V8 leak, https://github.com/nodejs/node/pull/34103#issuecomment-652002364\n err.stack // eslint-disable-line no-unused-expressions\n\n if (w && !w.errored) {\n w.errored = err\n }\n if (r && !r.errored) {\n r.errored = err\n }\n }\n}\n\n// Backwards compat. cb() is undocumented and unused in core but\n// unfortunately might be used by modules.\nfunction destroy(err, cb) {\n const r = this._readableState\n const w = this._writableState\n // With duplex streams we use the writable side for state.\n const s = w || r\n if ((w !== null && w !== undefined && w.destroyed) || (r !== null && r !== undefined && r.destroyed)) {\n if (typeof cb === 'function') {\n cb()\n }\n return this\n }\n\n // We set destroyed to true before firing error callbacks in order\n // to make it re-entrance safe in case destroy() is called within callbacks\n checkError(err, w, r)\n if (w) {\n w.destroyed = true\n }\n if (r) {\n r.destroyed = true\n }\n\n // If still constructing then defer calling _destroy.\n if (!s.constructed) {\n this.once(kDestroy, function (er) {\n _destroy(this, aggregateTwoErrors(er, err), cb)\n })\n } else {\n _destroy(this, err, cb)\n }\n return this\n}\nfunction _destroy(self, err, cb) {\n let called = false\n function onDestroy(err) {\n if (called) {\n return\n }\n called = true\n const r = self._readableState\n const w = self._writableState\n checkError(err, w, r)\n if (w) {\n w.closed = true\n }\n if (r) {\n r.closed = true\n }\n if (typeof cb === 'function') {\n cb(err)\n }\n if (err) {\n process.nextTick(emitErrorCloseNT, self, err)\n } else {\n process.nextTick(emitCloseNT, self)\n }\n }\n try {\n self._destroy(err || null, onDestroy)\n } catch (err) {\n onDestroy(err)\n }\n}\nfunction emitErrorCloseNT(self, err) {\n emitErrorNT(self, err)\n emitCloseNT(self)\n}\nfunction emitCloseNT(self) {\n const r = self._readableState\n const w = self._writableState\n if (w) {\n w.closeEmitted = true\n }\n if (r) {\n r.closeEmitted = true\n }\n if ((w !== null && w !== undefined && w.emitClose) || (r !== null && r !== undefined && r.emitClose)) {\n self.emit('close')\n }\n}\nfunction emitErrorNT(self, err) {\n const r = self._readableState\n const w = self._writableState\n if ((w !== null && w !== undefined && w.errorEmitted) || (r !== null && r !== undefined && r.errorEmitted)) {\n return\n }\n if (w) {\n w.errorEmitted = true\n }\n if (r) {\n r.errorEmitted = true\n }\n self.emit('error', err)\n}\nfunction undestroy() {\n const r = this._readableState\n const w = this._writableState\n if (r) {\n r.constructed = true\n r.closed = false\n r.closeEmitted = false\n r.destroyed = false\n r.errored = null\n r.errorEmitted = false\n r.reading = false\n r.ended = r.readable === false\n r.endEmitted = r.readable === false\n }\n if (w) {\n w.constructed = true\n w.destroyed = false\n w.closed = false\n w.closeEmitted = false\n w.errored = null\n w.errorEmitted = false\n w.finalCalled = false\n w.prefinished = false\n w.ended = w.writable === false\n w.ending = w.writable === false\n w.finished = w.writable === false\n }\n}\nfunction errorOrDestroy(stream, err, sync) {\n // We have tests that rely on errors being emitted\n // in the same tick, so changing this is semver major.\n // For now when you opt-in to autoDestroy we allow\n // the error to be emitted nextTick. In a future\n // semver major update we should change the default to this.\n\n const r = stream._readableState\n const w = stream._writableState\n if ((w !== null && w !== undefined && w.destroyed) || (r !== null && r !== undefined && r.destroyed)) {\n return this\n }\n if ((r !== null && r !== undefined && r.autoDestroy) || (w !== null && w !== undefined && w.autoDestroy))\n stream.destroy(err)\n else if (err) {\n // Avoid V8 leak, https://github.com/nodejs/node/pull/34103#issuecomment-652002364\n err.stack // eslint-disable-line no-unused-expressions\n\n if (w && !w.errored) {\n w.errored = err\n }\n if (r && !r.errored) {\n r.errored = err\n }\n if (sync) {\n process.nextTick(emitErrorNT, stream, err)\n } else {\n emitErrorNT(stream, err)\n }\n }\n}\nfunction construct(stream, cb) {\n if (typeof stream._construct !== 'function') {\n return\n }\n const r = stream._readableState\n const w = stream._writableState\n if (r) {\n r.constructed = false\n }\n if (w) {\n w.constructed = false\n }\n stream.once(kConstruct, cb)\n if (stream.listenerCount(kConstruct) > 1) {\n // Duplex\n return\n }\n process.nextTick(constructNT, stream)\n}\nfunction constructNT(stream) {\n let called = false\n function onConstruct(err) {\n if (called) {\n errorOrDestroy(stream, err !== null && err !== undefined ? err : new ERR_MULTIPLE_CALLBACK())\n return\n }\n called = true\n const r = stream._readableState\n const w = stream._writableState\n const s = w || r\n if (r) {\n r.constructed = true\n }\n if (w) {\n w.constructed = true\n }\n if (s.destroyed) {\n stream.emit(kDestroy, err)\n } else if (err) {\n errorOrDestroy(stream, err, true)\n } else {\n process.nextTick(emitConstructNT, stream)\n }\n }\n try {\n stream._construct((err) => {\n process.nextTick(onConstruct, err)\n })\n } catch (err) {\n process.nextTick(onConstruct, err)\n }\n}\nfunction emitConstructNT(stream) {\n stream.emit(kConstruct)\n}\nfunction isRequest(stream) {\n return (stream === null || stream === undefined ? undefined : stream.setHeader) && typeof stream.abort === 'function'\n}\nfunction emitCloseLegacy(stream) {\n stream.emit('close')\n}\nfunction emitErrorCloseLegacy(stream, err) {\n stream.emit('error', err)\n process.nextTick(emitCloseLegacy, stream)\n}\n\n// Normalize destroy for legacy.\nfunction destroyer(stream, err) {\n if (!stream || isDestroyed(stream)) {\n return\n }\n if (!err && !isFinished(stream)) {\n err = new AbortError()\n }\n\n // TODO: Remove isRequest branches.\n if (isServerRequest(stream)) {\n stream.socket = null\n stream.destroy(err)\n } else if (isRequest(stream)) {\n stream.abort()\n } else if (isRequest(stream.req)) {\n stream.req.abort()\n } else if (typeof stream.destroy === 'function') {\n stream.destroy(err)\n } else if (typeof stream.close === 'function') {\n // TODO: Don't lose err?\n stream.close()\n } else if (err) {\n process.nextTick(emitErrorCloseLegacy, stream, err)\n } else {\n process.nextTick(emitCloseLegacy, stream)\n }\n if (!stream.destroyed) {\n stream[kIsDestroyed] = true\n }\n}\nmodule.exports = {\n construct,\n destroyer,\n destroy,\n undestroy,\n errorOrDestroy\n}\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n// a duplex stream is just a stream that is both readable and writable.\n// Since JS doesn't have multiple prototype inheritance, this class\n// prototypically inherits from Readable, and then parasitically from\n// Writable.\n\n'use strict'\n\nconst {\n ObjectDefineProperties,\n ObjectGetOwnPropertyDescriptor,\n ObjectKeys,\n ObjectSetPrototypeOf\n} = require('../../ours/primordials')\nmodule.exports = Duplex\nconst Readable = require('./readable')\nconst Writable = require('./writable')\nObjectSetPrototypeOf(Duplex.prototype, Readable.prototype)\nObjectSetPrototypeOf(Duplex, Readable)\n{\n const keys = ObjectKeys(Writable.prototype)\n // Allow the keys array to be GC'ed.\n for (let i = 0; i < keys.length; i++) {\n const method = keys[i]\n if (!Duplex.prototype[method]) Duplex.prototype[method] = Writable.prototype[method]\n }\n}\nfunction Duplex(options) {\n if (!(this instanceof Duplex)) return new Duplex(options)\n Readable.call(this, options)\n Writable.call(this, options)\n if (options) {\n this.allowHalfOpen = options.allowHalfOpen !== false\n if (options.readable === false) {\n this._readableState.readable = false\n this._readableState.ended = true\n this._readableState.endEmitted = true\n }\n if (options.writable === false) {\n this._writableState.writable = false\n this._writableState.ending = true\n this._writableState.ended = true\n this._writableState.finished = true\n }\n } else {\n this.allowHalfOpen = true\n }\n}\nObjectDefineProperties(Duplex.prototype, {\n writable: {\n __proto__: null,\n ...ObjectGetOwnPropertyDescriptor(Writable.prototype, 'writable')\n },\n writableHighWaterMark: {\n __proto__: null,\n ...ObjectGetOwnPropertyDescriptor(Writable.prototype, 'writableHighWaterMark')\n },\n writableObjectMode: {\n __proto__: null,\n ...ObjectGetOwnPropertyDescriptor(Writable.prototype, 'writableObjectMode')\n },\n writableBuffer: {\n __proto__: null,\n ...ObjectGetOwnPropertyDescriptor(Writable.prototype, 'writableBuffer')\n },\n writableLength: {\n __proto__: null,\n ...ObjectGetOwnPropertyDescriptor(Writable.prototype, 'writableLength')\n },\n writableFinished: {\n __proto__: null,\n ...ObjectGetOwnPropertyDescriptor(Writable.prototype, 'writableFinished')\n },\n writableCorked: {\n __proto__: null,\n ...ObjectGetOwnPropertyDescriptor(Writable.prototype, 'writableCorked')\n },\n writableEnded: {\n __proto__: null,\n ...ObjectGetOwnPropertyDescriptor(Writable.prototype, 'writableEnded')\n },\n writableNeedDrain: {\n __proto__: null,\n ...ObjectGetOwnPropertyDescriptor(Writable.prototype, 'writableNeedDrain')\n },\n destroyed: {\n __proto__: null,\n get() {\n if (this._readableState === undefined || this._writableState === undefined) {\n return false\n }\n return this._readableState.destroyed && this._writableState.destroyed\n },\n set(value) {\n // Backward compatibility, the user is explicitly\n // managing destroyed.\n if (this._readableState && this._writableState) {\n this._readableState.destroyed = value\n this._writableState.destroyed = value\n }\n }\n }\n})\nlet webStreamsAdapters\n\n// Lazy to avoid circular references\nfunction lazyWebStreams() {\n if (webStreamsAdapters === undefined) webStreamsAdapters = {}\n return webStreamsAdapters\n}\nDuplex.fromWeb = function (pair, options) {\n return lazyWebStreams().newStreamDuplexFromReadableWritablePair(pair, options)\n}\nDuplex.toWeb = function (duplex) {\n return lazyWebStreams().newReadableWritablePairFromDuplex(duplex)\n}\nlet duplexify\nDuplex.from = function (body) {\n if (!duplexify) {\n duplexify = require('./duplexify')\n }\n return duplexify(body, 'body')\n}\n","/* replacement start */\n\nconst process = require('process/')\n\n/* replacement end */\n\n;('use strict')\nconst bufferModule = require('buffer')\nconst {\n isReadable,\n isWritable,\n isIterable,\n isNodeStream,\n isReadableNodeStream,\n isWritableNodeStream,\n isDuplexNodeStream,\n isReadableStream,\n isWritableStream\n} = require('./utils')\nconst eos = require('./end-of-stream')\nconst {\n AbortError,\n codes: { ERR_INVALID_ARG_TYPE, ERR_INVALID_RETURN_VALUE }\n} = require('../../ours/errors')\nconst { destroyer } = require('./destroy')\nconst Duplex = require('./duplex')\nconst Readable = require('./readable')\nconst Writable = require('./writable')\nconst { createDeferredPromise } = require('../../ours/util')\nconst from = require('./from')\nconst Blob = globalThis.Blob || bufferModule.Blob\nconst isBlob =\n typeof Blob !== 'undefined'\n ? function isBlob(b) {\n return b instanceof Blob\n }\n : function isBlob(b) {\n return false\n }\nconst AbortController = globalThis.AbortController || require('abort-controller').AbortController\nconst { FunctionPrototypeCall } = require('../../ours/primordials')\n\n// This is needed for pre node 17.\nclass Duplexify extends Duplex {\n constructor(options) {\n super(options)\n\n // https://github.com/nodejs/node/pull/34385\n\n if ((options === null || options === undefined ? undefined : options.readable) === false) {\n this._readableState.readable = false\n this._readableState.ended = true\n this._readableState.endEmitted = true\n }\n if ((options === null || options === undefined ? undefined : options.writable) === false) {\n this._writableState.writable = false\n this._writableState.ending = true\n this._writableState.ended = true\n this._writableState.finished = true\n }\n }\n}\nmodule.exports = function duplexify(body, name) {\n if (isDuplexNodeStream(body)) {\n return body\n }\n if (isReadableNodeStream(body)) {\n return _duplexify({\n readable: body\n })\n }\n if (isWritableNodeStream(body)) {\n return _duplexify({\n writable: body\n })\n }\n if (isNodeStream(body)) {\n return _duplexify({\n writable: false,\n readable: false\n })\n }\n if (isReadableStream(body)) {\n return _duplexify({\n readable: Readable.fromWeb(body)\n })\n }\n if (isWritableStream(body)) {\n return _duplexify({\n writable: Writable.fromWeb(body)\n })\n }\n if (typeof body === 'function') {\n const { value, write, final, destroy } = fromAsyncGen(body)\n if (isIterable(value)) {\n return from(Duplexify, value, {\n // TODO (ronag): highWaterMark?\n objectMode: true,\n write,\n final,\n destroy\n })\n }\n const then = value === null || value === undefined ? undefined : value.then\n if (typeof then === 'function') {\n let d\n const promise = FunctionPrototypeCall(\n then,\n value,\n (val) => {\n if (val != null) {\n throw new ERR_INVALID_RETURN_VALUE('nully', 'body', val)\n }\n },\n (err) => {\n destroyer(d, err)\n }\n )\n return (d = new Duplexify({\n // TODO (ronag): highWaterMark?\n objectMode: true,\n readable: false,\n write,\n final(cb) {\n final(async () => {\n try {\n await promise\n process.nextTick(cb, null)\n } catch (err) {\n process.nextTick(cb, err)\n }\n })\n },\n destroy\n }))\n }\n throw new ERR_INVALID_RETURN_VALUE('Iterable, AsyncIterable or AsyncFunction', name, value)\n }\n if (isBlob(body)) {\n return duplexify(body.arrayBuffer())\n }\n if (isIterable(body)) {\n return from(Duplexify, body, {\n // TODO (ronag): highWaterMark?\n objectMode: true,\n writable: false\n })\n }\n if (\n isReadableStream(body === null || body === undefined ? undefined : body.readable) &&\n isWritableStream(body === null || body === undefined ? undefined : body.writable)\n ) {\n return Duplexify.fromWeb(body)\n }\n if (\n typeof (body === null || body === undefined ? undefined : body.writable) === 'object' ||\n typeof (body === null || body === undefined ? undefined : body.readable) === 'object'\n ) {\n const readable =\n body !== null && body !== undefined && body.readable\n ? isReadableNodeStream(body === null || body === undefined ? undefined : body.readable)\n ? body === null || body === undefined\n ? undefined\n : body.readable\n : duplexify(body.readable)\n : undefined\n const writable =\n body !== null && body !== undefined && body.writable\n ? isWritableNodeStream(body === null || body === undefined ? undefined : body.writable)\n ? body === null || body === undefined\n ? undefined\n : body.writable\n : duplexify(body.writable)\n : undefined\n return _duplexify({\n readable,\n writable\n })\n }\n const then = body === null || body === undefined ? undefined : body.then\n if (typeof then === 'function') {\n let d\n FunctionPrototypeCall(\n then,\n body,\n (val) => {\n if (val != null) {\n d.push(val)\n }\n d.push(null)\n },\n (err) => {\n destroyer(d, err)\n }\n )\n return (d = new Duplexify({\n objectMode: true,\n writable: false,\n read() {}\n }))\n }\n throw new ERR_INVALID_ARG_TYPE(\n name,\n [\n 'Blob',\n 'ReadableStream',\n 'WritableStream',\n 'Stream',\n 'Iterable',\n 'AsyncIterable',\n 'Function',\n '{ readable, writable } pair',\n 'Promise'\n ],\n body\n )\n}\nfunction fromAsyncGen(fn) {\n let { promise, resolve } = createDeferredPromise()\n const ac = new AbortController()\n const signal = ac.signal\n const value = fn(\n (async function* () {\n while (true) {\n const _promise = promise\n promise = null\n const { chunk, done, cb } = await _promise\n process.nextTick(cb)\n if (done) return\n if (signal.aborted)\n throw new AbortError(undefined, {\n cause: signal.reason\n })\n ;({ promise, resolve } = createDeferredPromise())\n yield chunk\n }\n })(),\n {\n signal\n }\n )\n return {\n value,\n write(chunk, encoding, cb) {\n const _resolve = resolve\n resolve = null\n _resolve({\n chunk,\n done: false,\n cb\n })\n },\n final(cb) {\n const _resolve = resolve\n resolve = null\n _resolve({\n done: true,\n cb\n })\n },\n destroy(err, cb) {\n ac.abort()\n cb(err)\n }\n }\n}\nfunction _duplexify(pair) {\n const r = pair.readable && typeof pair.readable.read !== 'function' ? Readable.wrap(pair.readable) : pair.readable\n const w = pair.writable\n let readable = !!isReadable(r)\n let writable = !!isWritable(w)\n let ondrain\n let onfinish\n let onreadable\n let onclose\n let d\n function onfinished(err) {\n const cb = onclose\n onclose = null\n if (cb) {\n cb(err)\n } else if (err) {\n d.destroy(err)\n }\n }\n\n // TODO(ronag): Avoid double buffering.\n // Implement Writable/Readable/Duplex traits.\n // See, https://github.com/nodejs/node/pull/33515.\n d = new Duplexify({\n // TODO (ronag): highWaterMark?\n readableObjectMode: !!(r !== null && r !== undefined && r.readableObjectMode),\n writableObjectMode: !!(w !== null && w !== undefined && w.writableObjectMode),\n readable,\n writable\n })\n if (writable) {\n eos(w, (err) => {\n writable = false\n if (err) {\n destroyer(r, err)\n }\n onfinished(err)\n })\n d._write = function (chunk, encoding, callback) {\n if (w.write(chunk, encoding)) {\n callback()\n } else {\n ondrain = callback\n }\n }\n d._final = function (callback) {\n w.end()\n onfinish = callback\n }\n w.on('drain', function () {\n if (ondrain) {\n const cb = ondrain\n ondrain = null\n cb()\n }\n })\n w.on('finish', function () {\n if (onfinish) {\n const cb = onfinish\n onfinish = null\n cb()\n }\n })\n }\n if (readable) {\n eos(r, (err) => {\n readable = false\n if (err) {\n destroyer(r, err)\n }\n onfinished(err)\n })\n r.on('readable', function () {\n if (onreadable) {\n const cb = onreadable\n onreadable = null\n cb()\n }\n })\n r.on('end', function () {\n d.push(null)\n })\n d._read = function () {\n while (true) {\n const buf = r.read()\n if (buf === null) {\n onreadable = d._read\n return\n }\n if (!d.push(buf)) {\n return\n }\n }\n }\n }\n d._destroy = function (err, callback) {\n if (!err && onclose !== null) {\n err = new AbortError()\n }\n onreadable = null\n ondrain = null\n onfinish = null\n if (onclose === null) {\n callback(err)\n } else {\n onclose = callback\n destroyer(w, err)\n destroyer(r, err)\n }\n }\n return d\n}\n","/* replacement start */\n\nconst process = require('process/')\n\n/* replacement end */\n// Ported from https://github.com/mafintosh/end-of-stream with\n// permission from the author, Mathias Buus (@mafintosh).\n\n;('use strict')\nconst { AbortError, codes } = require('../../ours/errors')\nconst { ERR_INVALID_ARG_TYPE, ERR_STREAM_PREMATURE_CLOSE } = codes\nconst { kEmptyObject, once } = require('../../ours/util')\nconst { validateAbortSignal, validateFunction, validateObject, validateBoolean } = require('../validators')\nconst { Promise, PromisePrototypeThen, SymbolDispose } = require('../../ours/primordials')\nconst {\n isClosed,\n isReadable,\n isReadableNodeStream,\n isReadableStream,\n isReadableFinished,\n isReadableErrored,\n isWritable,\n isWritableNodeStream,\n isWritableStream,\n isWritableFinished,\n isWritableErrored,\n isNodeStream,\n willEmitClose: _willEmitClose,\n kIsClosedPromise\n} = require('./utils')\nlet addAbortListener\nfunction isRequest(stream) {\n return stream.setHeader && typeof stream.abort === 'function'\n}\nconst nop = () => {}\nfunction eos(stream, options, callback) {\n var _options$readable, _options$writable\n if (arguments.length === 2) {\n callback = options\n options = kEmptyObject\n } else if (options == null) {\n options = kEmptyObject\n } else {\n validateObject(options, 'options')\n }\n validateFunction(callback, 'callback')\n validateAbortSignal(options.signal, 'options.signal')\n callback = once(callback)\n if (isReadableStream(stream) || isWritableStream(stream)) {\n return eosWeb(stream, options, callback)\n }\n if (!isNodeStream(stream)) {\n throw new ERR_INVALID_ARG_TYPE('stream', ['ReadableStream', 'WritableStream', 'Stream'], stream)\n }\n const readable =\n (_options$readable = options.readable) !== null && _options$readable !== undefined\n ? _options$readable\n : isReadableNodeStream(stream)\n const writable =\n (_options$writable = options.writable) !== null && _options$writable !== undefined\n ? _options$writable\n : isWritableNodeStream(stream)\n const wState = stream._writableState\n const rState = stream._readableState\n const onlegacyfinish = () => {\n if (!stream.writable) {\n onfinish()\n }\n }\n\n // TODO (ronag): Improve soft detection to include core modules and\n // common ecosystem modules that do properly emit 'close' but fail\n // this generic check.\n let willEmitClose =\n _willEmitClose(stream) && isReadableNodeStream(stream) === readable && isWritableNodeStream(stream) === writable\n let writableFinished = isWritableFinished(stream, false)\n const onfinish = () => {\n writableFinished = true\n // Stream should not be destroyed here. If it is that\n // means that user space is doing something differently and\n // we cannot trust willEmitClose.\n if (stream.destroyed) {\n willEmitClose = false\n }\n if (willEmitClose && (!stream.readable || readable)) {\n return\n }\n if (!readable || readableFinished) {\n callback.call(stream)\n }\n }\n let readableFinished = isReadableFinished(stream, false)\n const onend = () => {\n readableFinished = true\n // Stream should not be destroyed here. If it is that\n // means that user space is doing something differently and\n // we cannot trust willEmitClose.\n if (stream.destroyed) {\n willEmitClose = false\n }\n if (willEmitClose && (!stream.writable || writable)) {\n return\n }\n if (!writable || writableFinished) {\n callback.call(stream)\n }\n }\n const onerror = (err) => {\n callback.call(stream, err)\n }\n let closed = isClosed(stream)\n const onclose = () => {\n closed = true\n const errored = isWritableErrored(stream) || isReadableErrored(stream)\n if (errored && typeof errored !== 'boolean') {\n return callback.call(stream, errored)\n }\n if (readable && !readableFinished && isReadableNodeStream(stream, true)) {\n if (!isReadableFinished(stream, false)) return callback.call(stream, new ERR_STREAM_PREMATURE_CLOSE())\n }\n if (writable && !writableFinished) {\n if (!isWritableFinished(stream, false)) return callback.call(stream, new ERR_STREAM_PREMATURE_CLOSE())\n }\n callback.call(stream)\n }\n const onclosed = () => {\n closed = true\n const errored = isWritableErrored(stream) || isReadableErrored(stream)\n if (errored && typeof errored !== 'boolean') {\n return callback.call(stream, errored)\n }\n callback.call(stream)\n }\n const onrequest = () => {\n stream.req.on('finish', onfinish)\n }\n if (isRequest(stream)) {\n stream.on('complete', onfinish)\n if (!willEmitClose) {\n stream.on('abort', onclose)\n }\n if (stream.req) {\n onrequest()\n } else {\n stream.on('request', onrequest)\n }\n } else if (writable && !wState) {\n // legacy streams\n stream.on('end', onlegacyfinish)\n stream.on('close', onlegacyfinish)\n }\n\n // Not all streams will emit 'close' after 'aborted'.\n if (!willEmitClose && typeof stream.aborted === 'boolean') {\n stream.on('aborted', onclose)\n }\n stream.on('end', onend)\n stream.on('finish', onfinish)\n if (options.error !== false) {\n stream.on('error', onerror)\n }\n stream.on('close', onclose)\n if (closed) {\n process.nextTick(onclose)\n } else if (\n (wState !== null && wState !== undefined && wState.errorEmitted) ||\n (rState !== null && rState !== undefined && rState.errorEmitted)\n ) {\n if (!willEmitClose) {\n process.nextTick(onclosed)\n }\n } else if (\n !readable &&\n (!willEmitClose || isReadable(stream)) &&\n (writableFinished || isWritable(stream) === false)\n ) {\n process.nextTick(onclosed)\n } else if (\n !writable &&\n (!willEmitClose || isWritable(stream)) &&\n (readableFinished || isReadable(stream) === false)\n ) {\n process.nextTick(onclosed)\n } else if (rState && stream.req && stream.aborted) {\n process.nextTick(onclosed)\n }\n const cleanup = () => {\n callback = nop\n stream.removeListener('aborted', onclose)\n stream.removeListener('complete', onfinish)\n stream.removeListener('abort', onclose)\n stream.removeListener('request', onrequest)\n if (stream.req) stream.req.removeListener('finish', onfinish)\n stream.removeListener('end', onlegacyfinish)\n stream.removeListener('close', onlegacyfinish)\n stream.removeListener('finish', onfinish)\n stream.removeListener('end', onend)\n stream.removeListener('error', onerror)\n stream.removeListener('close', onclose)\n }\n if (options.signal && !closed) {\n const abort = () => {\n // Keep it because cleanup removes it.\n const endCallback = callback\n cleanup()\n endCallback.call(\n stream,\n new AbortError(undefined, {\n cause: options.signal.reason\n })\n )\n }\n if (options.signal.aborted) {\n process.nextTick(abort)\n } else {\n addAbortListener = addAbortListener || require('../../ours/util').addAbortListener\n const disposable = addAbortListener(options.signal, abort)\n const originalCallback = callback\n callback = once((...args) => {\n disposable[SymbolDispose]()\n originalCallback.apply(stream, args)\n })\n }\n }\n return cleanup\n}\nfunction eosWeb(stream, options, callback) {\n let isAborted = false\n let abort = nop\n if (options.signal) {\n abort = () => {\n isAborted = true\n callback.call(\n stream,\n new AbortError(undefined, {\n cause: options.signal.reason\n })\n )\n }\n if (options.signal.aborted) {\n process.nextTick(abort)\n } else {\n addAbortListener = addAbortListener || require('../../ours/util').addAbortListener\n const disposable = addAbortListener(options.signal, abort)\n const originalCallback = callback\n callback = once((...args) => {\n disposable[SymbolDispose]()\n originalCallback.apply(stream, args)\n })\n }\n }\n const resolverFn = (...args) => {\n if (!isAborted) {\n process.nextTick(() => callback.apply(stream, args))\n }\n }\n PromisePrototypeThen(stream[kIsClosedPromise].promise, resolverFn, resolverFn)\n return nop\n}\nfunction finished(stream, opts) {\n var _opts\n let autoCleanup = false\n if (opts === null) {\n opts = kEmptyObject\n }\n if ((_opts = opts) !== null && _opts !== undefined && _opts.cleanup) {\n validateBoolean(opts.cleanup, 'cleanup')\n autoCleanup = opts.cleanup\n }\n return new Promise((resolve, reject) => {\n const cleanup = eos(stream, opts, (err) => {\n if (autoCleanup) {\n cleanup()\n }\n if (err) {\n reject(err)\n } else {\n resolve()\n }\n })\n })\n}\nmodule.exports = eos\nmodule.exports.finished = finished\n","'use strict'\n\n/* replacement start */\n\nconst process = require('process/')\n\n/* replacement end */\n\nconst { PromisePrototypeThen, SymbolAsyncIterator, SymbolIterator } = require('../../ours/primordials')\nconst { Buffer } = require('buffer')\nconst { ERR_INVALID_ARG_TYPE, ERR_STREAM_NULL_VALUES } = require('../../ours/errors').codes\nfunction from(Readable, iterable, opts) {\n let iterator\n if (typeof iterable === 'string' || iterable instanceof Buffer) {\n return new Readable({\n objectMode: true,\n ...opts,\n read() {\n this.push(iterable)\n this.push(null)\n }\n })\n }\n let isAsync\n if (iterable && iterable[SymbolAsyncIterator]) {\n isAsync = true\n iterator = iterable[SymbolAsyncIterator]()\n } else if (iterable && iterable[SymbolIterator]) {\n isAsync = false\n iterator = iterable[SymbolIterator]()\n } else {\n throw new ERR_INVALID_ARG_TYPE('iterable', ['Iterable'], iterable)\n }\n const readable = new Readable({\n objectMode: true,\n highWaterMark: 1,\n // TODO(ronag): What options should be allowed?\n ...opts\n })\n\n // Flag to protect against _read\n // being called before last iteration completion.\n let reading = false\n readable._read = function () {\n if (!reading) {\n reading = true\n next()\n }\n }\n readable._destroy = function (error, cb) {\n PromisePrototypeThen(\n close(error),\n () => process.nextTick(cb, error),\n // nextTick is here in case cb throws\n (e) => process.nextTick(cb, e || error)\n )\n }\n async function close(error) {\n const hadError = error !== undefined && error !== null\n const hasThrow = typeof iterator.throw === 'function'\n if (hadError && hasThrow) {\n const { value, done } = await iterator.throw(error)\n await value\n if (done) {\n return\n }\n }\n if (typeof iterator.return === 'function') {\n const { value } = await iterator.return()\n await value\n }\n }\n async function next() {\n for (;;) {\n try {\n const { value, done } = isAsync ? await iterator.next() : iterator.next()\n if (done) {\n readable.push(null)\n } else {\n const res = value && typeof value.then === 'function' ? await value : value\n if (res === null) {\n reading = false\n throw new ERR_STREAM_NULL_VALUES()\n } else if (readable.push(res)) {\n continue\n } else {\n reading = false\n }\n }\n } catch (err) {\n readable.destroy(err)\n }\n break\n }\n }\n return readable\n}\nmodule.exports = from\n","'use strict'\n\nconst { ArrayIsArray, ObjectSetPrototypeOf } = require('../../ours/primordials')\nconst { EventEmitter: EE } = require('events')\nfunction Stream(opts) {\n EE.call(this, opts)\n}\nObjectSetPrototypeOf(Stream.prototype, EE.prototype)\nObjectSetPrototypeOf(Stream, EE)\nStream.prototype.pipe = function (dest, options) {\n const source = this\n function ondata(chunk) {\n if (dest.writable && dest.write(chunk) === false && source.pause) {\n source.pause()\n }\n }\n source.on('data', ondata)\n function ondrain() {\n if (source.readable && source.resume) {\n source.resume()\n }\n }\n dest.on('drain', ondrain)\n\n // If the 'end' option is not supplied, dest.end() will be called when\n // source gets the 'end' or 'close' events. Only dest.end() once.\n if (!dest._isStdio && (!options || options.end !== false)) {\n source.on('end', onend)\n source.on('close', onclose)\n }\n let didOnEnd = false\n function onend() {\n if (didOnEnd) return\n didOnEnd = true\n dest.end()\n }\n function onclose() {\n if (didOnEnd) return\n didOnEnd = true\n if (typeof dest.destroy === 'function') dest.destroy()\n }\n\n // Don't leave dangling pipes when there are errors.\n function onerror(er) {\n cleanup()\n if (EE.listenerCount(this, 'error') === 0) {\n this.emit('error', er)\n }\n }\n prependListener(source, 'error', onerror)\n prependListener(dest, 'error', onerror)\n\n // Remove all the event listeners that were added.\n function cleanup() {\n source.removeListener('data', ondata)\n dest.removeListener('drain', ondrain)\n source.removeListener('end', onend)\n source.removeListener('close', onclose)\n source.removeListener('error', onerror)\n dest.removeListener('error', onerror)\n source.removeListener('end', cleanup)\n source.removeListener('close', cleanup)\n dest.removeListener('close', cleanup)\n }\n source.on('end', cleanup)\n source.on('close', cleanup)\n dest.on('close', cleanup)\n dest.emit('pipe', source)\n\n // Allow for unix-like usage: A.pipe(B).pipe(C)\n return dest\n}\nfunction prependListener(emitter, event, fn) {\n // Sadly this is not cacheable as some libraries bundle their own\n // event emitter implementation with them.\n if (typeof emitter.prependListener === 'function') return emitter.prependListener(event, fn)\n\n // This is a hack to make sure that our error handler is attached before any\n // userland ones. NEVER DO THIS. This is here only because this code needs\n // to continue to work with older versions of Node.js that do not include\n // the prependListener() method. The goal is to eventually remove this hack.\n if (!emitter._events || !emitter._events[event]) emitter.on(event, fn)\n else if (ArrayIsArray(emitter._events[event])) emitter._events[event].unshift(fn)\n else emitter._events[event] = [fn, emitter._events[event]]\n}\nmodule.exports = {\n Stream,\n prependListener\n}\n","'use strict'\n\nconst AbortController = globalThis.AbortController || require('abort-controller').AbortController\nconst {\n codes: { ERR_INVALID_ARG_VALUE, ERR_INVALID_ARG_TYPE, ERR_MISSING_ARGS, ERR_OUT_OF_RANGE },\n AbortError\n} = require('../../ours/errors')\nconst { validateAbortSignal, validateInteger, validateObject } = require('../validators')\nconst kWeakHandler = require('../../ours/primordials').Symbol('kWeak')\nconst kResistStopPropagation = require('../../ours/primordials').Symbol('kResistStopPropagation')\nconst { finished } = require('./end-of-stream')\nconst staticCompose = require('./compose')\nconst { addAbortSignalNoValidate } = require('./add-abort-signal')\nconst { isWritable, isNodeStream } = require('./utils')\nconst { deprecate } = require('../../ours/util')\nconst {\n ArrayPrototypePush,\n Boolean,\n MathFloor,\n Number,\n NumberIsNaN,\n Promise,\n PromiseReject,\n PromiseResolve,\n PromisePrototypeThen,\n Symbol\n} = require('../../ours/primordials')\nconst kEmpty = Symbol('kEmpty')\nconst kEof = Symbol('kEof')\nfunction compose(stream, options) {\n if (options != null) {\n validateObject(options, 'options')\n }\n if ((options === null || options === undefined ? undefined : options.signal) != null) {\n validateAbortSignal(options.signal, 'options.signal')\n }\n if (isNodeStream(stream) && !isWritable(stream)) {\n throw new ERR_INVALID_ARG_VALUE('stream', stream, 'must be writable')\n }\n const composedStream = staticCompose(this, stream)\n if (options !== null && options !== undefined && options.signal) {\n // Not validating as we already validated before\n addAbortSignalNoValidate(options.signal, composedStream)\n }\n return composedStream\n}\nfunction map(fn, options) {\n if (typeof fn !== 'function') {\n throw new ERR_INVALID_ARG_TYPE('fn', ['Function', 'AsyncFunction'], fn)\n }\n if (options != null) {\n validateObject(options, 'options')\n }\n if ((options === null || options === undefined ? undefined : options.signal) != null) {\n validateAbortSignal(options.signal, 'options.signal')\n }\n let concurrency = 1\n if ((options === null || options === undefined ? undefined : options.concurrency) != null) {\n concurrency = MathFloor(options.concurrency)\n }\n let highWaterMark = concurrency - 1\n if ((options === null || options === undefined ? undefined : options.highWaterMark) != null) {\n highWaterMark = MathFloor(options.highWaterMark)\n }\n validateInteger(concurrency, 'options.concurrency', 1)\n validateInteger(highWaterMark, 'options.highWaterMark', 0)\n highWaterMark += concurrency\n return async function* map() {\n const signal = require('../../ours/util').AbortSignalAny(\n [options === null || options === undefined ? undefined : options.signal].filter(Boolean)\n )\n const stream = this\n const queue = []\n const signalOpt = {\n signal\n }\n let next\n let resume\n let done = false\n let cnt = 0\n function onCatch() {\n done = true\n afterItemProcessed()\n }\n function afterItemProcessed() {\n cnt -= 1\n maybeResume()\n }\n function maybeResume() {\n if (resume && !done && cnt < concurrency && queue.length < highWaterMark) {\n resume()\n resume = null\n }\n }\n async function pump() {\n try {\n for await (let val of stream) {\n if (done) {\n return\n }\n if (signal.aborted) {\n throw new AbortError()\n }\n try {\n val = fn(val, signalOpt)\n if (val === kEmpty) {\n continue\n }\n val = PromiseResolve(val)\n } catch (err) {\n val = PromiseReject(err)\n }\n cnt += 1\n PromisePrototypeThen(val, afterItemProcessed, onCatch)\n queue.push(val)\n if (next) {\n next()\n next = null\n }\n if (!done && (queue.length >= highWaterMark || cnt >= concurrency)) {\n await new Promise((resolve) => {\n resume = resolve\n })\n }\n }\n queue.push(kEof)\n } catch (err) {\n const val = PromiseReject(err)\n PromisePrototypeThen(val, afterItemProcessed, onCatch)\n queue.push(val)\n } finally {\n done = true\n if (next) {\n next()\n next = null\n }\n }\n }\n pump()\n try {\n while (true) {\n while (queue.length > 0) {\n const val = await queue[0]\n if (val === kEof) {\n return\n }\n if (signal.aborted) {\n throw new AbortError()\n }\n if (val !== kEmpty) {\n yield val\n }\n queue.shift()\n maybeResume()\n }\n await new Promise((resolve) => {\n next = resolve\n })\n }\n } finally {\n done = true\n if (resume) {\n resume()\n resume = null\n }\n }\n }.call(this)\n}\nfunction asIndexedPairs(options = undefined) {\n if (options != null) {\n validateObject(options, 'options')\n }\n if ((options === null || options === undefined ? undefined : options.signal) != null) {\n validateAbortSignal(options.signal, 'options.signal')\n }\n return async function* asIndexedPairs() {\n let index = 0\n for await (const val of this) {\n var _options$signal\n if (\n options !== null &&\n options !== undefined &&\n (_options$signal = options.signal) !== null &&\n _options$signal !== undefined &&\n _options$signal.aborted\n ) {\n throw new AbortError({\n cause: options.signal.reason\n })\n }\n yield [index++, val]\n }\n }.call(this)\n}\nasync function some(fn, options = undefined) {\n for await (const unused of filter.call(this, fn, options)) {\n return true\n }\n return false\n}\nasync function every(fn, options = undefined) {\n if (typeof fn !== 'function') {\n throw new ERR_INVALID_ARG_TYPE('fn', ['Function', 'AsyncFunction'], fn)\n }\n // https://en.wikipedia.org/wiki/De_Morgan%27s_laws\n return !(await some.call(\n this,\n async (...args) => {\n return !(await fn(...args))\n },\n options\n ))\n}\nasync function find(fn, options) {\n for await (const result of filter.call(this, fn, options)) {\n return result\n }\n return undefined\n}\nasync function forEach(fn, options) {\n if (typeof fn !== 'function') {\n throw new ERR_INVALID_ARG_TYPE('fn', ['Function', 'AsyncFunction'], fn)\n }\n async function forEachFn(value, options) {\n await fn(value, options)\n return kEmpty\n }\n // eslint-disable-next-line no-unused-vars\n for await (const unused of map.call(this, forEachFn, options));\n}\nfunction filter(fn, options) {\n if (typeof fn !== 'function') {\n throw new ERR_INVALID_ARG_TYPE('fn', ['Function', 'AsyncFunction'], fn)\n }\n async function filterFn(value, options) {\n if (await fn(value, options)) {\n return value\n }\n return kEmpty\n }\n return map.call(this, filterFn, options)\n}\n\n// Specific to provide better error to reduce since the argument is only\n// missing if the stream has no items in it - but the code is still appropriate\nclass ReduceAwareErrMissingArgs extends ERR_MISSING_ARGS {\n constructor() {\n super('reduce')\n this.message = 'Reduce of an empty stream requires an initial value'\n }\n}\nasync function reduce(reducer, initialValue, options) {\n var _options$signal2\n if (typeof reducer !== 'function') {\n throw new ERR_INVALID_ARG_TYPE('reducer', ['Function', 'AsyncFunction'], reducer)\n }\n if (options != null) {\n validateObject(options, 'options')\n }\n if ((options === null || options === undefined ? undefined : options.signal) != null) {\n validateAbortSignal(options.signal, 'options.signal')\n }\n let hasInitialValue = arguments.length > 1\n if (\n options !== null &&\n options !== undefined &&\n (_options$signal2 = options.signal) !== null &&\n _options$signal2 !== undefined &&\n _options$signal2.aborted\n ) {\n const err = new AbortError(undefined, {\n cause: options.signal.reason\n })\n this.once('error', () => {}) // The error is already propagated\n await finished(this.destroy(err))\n throw err\n }\n const ac = new AbortController()\n const signal = ac.signal\n if (options !== null && options !== undefined && options.signal) {\n const opts = {\n once: true,\n [kWeakHandler]: this,\n [kResistStopPropagation]: true\n }\n options.signal.addEventListener('abort', () => ac.abort(), opts)\n }\n let gotAnyItemFromStream = false\n try {\n for await (const value of this) {\n var _options$signal3\n gotAnyItemFromStream = true\n if (\n options !== null &&\n options !== undefined &&\n (_options$signal3 = options.signal) !== null &&\n _options$signal3 !== undefined &&\n _options$signal3.aborted\n ) {\n throw new AbortError()\n }\n if (!hasInitialValue) {\n initialValue = value\n hasInitialValue = true\n } else {\n initialValue = await reducer(initialValue, value, {\n signal\n })\n }\n }\n if (!gotAnyItemFromStream && !hasInitialValue) {\n throw new ReduceAwareErrMissingArgs()\n }\n } finally {\n ac.abort()\n }\n return initialValue\n}\nasync function toArray(options) {\n if (options != null) {\n validateObject(options, 'options')\n }\n if ((options === null || options === undefined ? undefined : options.signal) != null) {\n validateAbortSignal(options.signal, 'options.signal')\n }\n const result = []\n for await (const val of this) {\n var _options$signal4\n if (\n options !== null &&\n options !== undefined &&\n (_options$signal4 = options.signal) !== null &&\n _options$signal4 !== undefined &&\n _options$signal4.aborted\n ) {\n throw new AbortError(undefined, {\n cause: options.signal.reason\n })\n }\n ArrayPrototypePush(result, val)\n }\n return result\n}\nfunction flatMap(fn, options) {\n const values = map.call(this, fn, options)\n return async function* flatMap() {\n for await (const val of values) {\n yield* val\n }\n }.call(this)\n}\nfunction toIntegerOrInfinity(number) {\n // We coerce here to align with the spec\n // https://github.com/tc39/proposal-iterator-helpers/issues/169\n number = Number(number)\n if (NumberIsNaN(number)) {\n return 0\n }\n if (number < 0) {\n throw new ERR_OUT_OF_RANGE('number', '>= 0', number)\n }\n return number\n}\nfunction drop(number, options = undefined) {\n if (options != null) {\n validateObject(options, 'options')\n }\n if ((options === null || options === undefined ? undefined : options.signal) != null) {\n validateAbortSignal(options.signal, 'options.signal')\n }\n number = toIntegerOrInfinity(number)\n return async function* drop() {\n var _options$signal5\n if (\n options !== null &&\n options !== undefined &&\n (_options$signal5 = options.signal) !== null &&\n _options$signal5 !== undefined &&\n _options$signal5.aborted\n ) {\n throw new AbortError()\n }\n for await (const val of this) {\n var _options$signal6\n if (\n options !== null &&\n options !== undefined &&\n (_options$signal6 = options.signal) !== null &&\n _options$signal6 !== undefined &&\n _options$signal6.aborted\n ) {\n throw new AbortError()\n }\n if (number-- <= 0) {\n yield val\n }\n }\n }.call(this)\n}\nfunction take(number, options = undefined) {\n if (options != null) {\n validateObject(options, 'options')\n }\n if ((options === null || options === undefined ? undefined : options.signal) != null) {\n validateAbortSignal(options.signal, 'options.signal')\n }\n number = toIntegerOrInfinity(number)\n return async function* take() {\n var _options$signal7\n if (\n options !== null &&\n options !== undefined &&\n (_options$signal7 = options.signal) !== null &&\n _options$signal7 !== undefined &&\n _options$signal7.aborted\n ) {\n throw new AbortError()\n }\n for await (const val of this) {\n var _options$signal8\n if (\n options !== null &&\n options !== undefined &&\n (_options$signal8 = options.signal) !== null &&\n _options$signal8 !== undefined &&\n _options$signal8.aborted\n ) {\n throw new AbortError()\n }\n if (number-- > 0) {\n yield val\n }\n\n // Don't get another item from iterator in case we reached the end\n if (number <= 0) {\n return\n }\n }\n }.call(this)\n}\nmodule.exports.streamReturningOperators = {\n asIndexedPairs: deprecate(asIndexedPairs, 'readable.asIndexedPairs will be removed in a future version.'),\n drop,\n filter,\n flatMap,\n map,\n take,\n compose\n}\nmodule.exports.promiseReturningOperators = {\n every,\n forEach,\n reduce,\n toArray,\n some,\n find\n}\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n// a passthrough stream.\n// basically just the most minimal sort of Transform stream.\n// Every written chunk gets output as-is.\n\n'use strict'\n\nconst { ObjectSetPrototypeOf } = require('../../ours/primordials')\nmodule.exports = PassThrough\nconst Transform = require('./transform')\nObjectSetPrototypeOf(PassThrough.prototype, Transform.prototype)\nObjectSetPrototypeOf(PassThrough, Transform)\nfunction PassThrough(options) {\n if (!(this instanceof PassThrough)) return new PassThrough(options)\n Transform.call(this, options)\n}\nPassThrough.prototype._transform = function (chunk, encoding, cb) {\n cb(null, chunk)\n}\n","/* replacement start */\n\nconst process = require('process/')\n\n/* replacement end */\n// Ported from https://github.com/mafintosh/pump with\n// permission from the author, Mathias Buus (@mafintosh).\n\n;('use strict')\nconst { ArrayIsArray, Promise, SymbolAsyncIterator, SymbolDispose } = require('../../ours/primordials')\nconst eos = require('./end-of-stream')\nconst { once } = require('../../ours/util')\nconst destroyImpl = require('./destroy')\nconst Duplex = require('./duplex')\nconst {\n aggregateTwoErrors,\n codes: {\n ERR_INVALID_ARG_TYPE,\n ERR_INVALID_RETURN_VALUE,\n ERR_MISSING_ARGS,\n ERR_STREAM_DESTROYED,\n ERR_STREAM_PREMATURE_CLOSE\n },\n AbortError\n} = require('../../ours/errors')\nconst { validateFunction, validateAbortSignal } = require('../validators')\nconst {\n isIterable,\n isReadable,\n isReadableNodeStream,\n isNodeStream,\n isTransformStream,\n isWebStream,\n isReadableStream,\n isReadableFinished\n} = require('./utils')\nconst AbortController = globalThis.AbortController || require('abort-controller').AbortController\nlet PassThrough\nlet Readable\nlet addAbortListener\nfunction destroyer(stream, reading, writing) {\n let finished = false\n stream.on('close', () => {\n finished = true\n })\n const cleanup = eos(\n stream,\n {\n readable: reading,\n writable: writing\n },\n (err) => {\n finished = !err\n }\n )\n return {\n destroy: (err) => {\n if (finished) return\n finished = true\n destroyImpl.destroyer(stream, err || new ERR_STREAM_DESTROYED('pipe'))\n },\n cleanup\n }\n}\nfunction popCallback(streams) {\n // Streams should never be an empty array. It should always contain at least\n // a single stream. Therefore optimize for the average case instead of\n // checking for length === 0 as well.\n validateFunction(streams[streams.length - 1], 'streams[stream.length - 1]')\n return streams.pop()\n}\nfunction makeAsyncIterable(val) {\n if (isIterable(val)) {\n return val\n } else if (isReadableNodeStream(val)) {\n // Legacy streams are not Iterable.\n return fromReadable(val)\n }\n throw new ERR_INVALID_ARG_TYPE('val', ['Readable', 'Iterable', 'AsyncIterable'], val)\n}\nasync function* fromReadable(val) {\n if (!Readable) {\n Readable = require('./readable')\n }\n yield* Readable.prototype[SymbolAsyncIterator].call(val)\n}\nasync function pumpToNode(iterable, writable, finish, { end }) {\n let error\n let onresolve = null\n const resume = (err) => {\n if (err) {\n error = err\n }\n if (onresolve) {\n const callback = onresolve\n onresolve = null\n callback()\n }\n }\n const wait = () =>\n new Promise((resolve, reject) => {\n if (error) {\n reject(error)\n } else {\n onresolve = () => {\n if (error) {\n reject(error)\n } else {\n resolve()\n }\n }\n }\n })\n writable.on('drain', resume)\n const cleanup = eos(\n writable,\n {\n readable: false\n },\n resume\n )\n try {\n if (writable.writableNeedDrain) {\n await wait()\n }\n for await (const chunk of iterable) {\n if (!writable.write(chunk)) {\n await wait()\n }\n }\n if (end) {\n writable.end()\n await wait()\n }\n finish()\n } catch (err) {\n finish(error !== err ? aggregateTwoErrors(error, err) : err)\n } finally {\n cleanup()\n writable.off('drain', resume)\n }\n}\nasync function pumpToWeb(readable, writable, finish, { end }) {\n if (isTransformStream(writable)) {\n writable = writable.writable\n }\n // https://streams.spec.whatwg.org/#example-manual-write-with-backpressure\n const writer = writable.getWriter()\n try {\n for await (const chunk of readable) {\n await writer.ready\n writer.write(chunk).catch(() => {})\n }\n await writer.ready\n if (end) {\n await writer.close()\n }\n finish()\n } catch (err) {\n try {\n await writer.abort(err)\n finish(err)\n } catch (err) {\n finish(err)\n }\n }\n}\nfunction pipeline(...streams) {\n return pipelineImpl(streams, once(popCallback(streams)))\n}\nfunction pipelineImpl(streams, callback, opts) {\n if (streams.length === 1 && ArrayIsArray(streams[0])) {\n streams = streams[0]\n }\n if (streams.length < 2) {\n throw new ERR_MISSING_ARGS('streams')\n }\n const ac = new AbortController()\n const signal = ac.signal\n const outerSignal = opts === null || opts === undefined ? undefined : opts.signal\n\n // Need to cleanup event listeners if last stream is readable\n // https://github.com/nodejs/node/issues/35452\n const lastStreamCleanup = []\n validateAbortSignal(outerSignal, 'options.signal')\n function abort() {\n finishImpl(new AbortError())\n }\n addAbortListener = addAbortListener || require('../../ours/util').addAbortListener\n let disposable\n if (outerSignal) {\n disposable = addAbortListener(outerSignal, abort)\n }\n let error\n let value\n const destroys = []\n let finishCount = 0\n function finish(err) {\n finishImpl(err, --finishCount === 0)\n }\n function finishImpl(err, final) {\n var _disposable\n if (err && (!error || error.code === 'ERR_STREAM_PREMATURE_CLOSE')) {\n error = err\n }\n if (!error && !final) {\n return\n }\n while (destroys.length) {\n destroys.shift()(error)\n }\n ;(_disposable = disposable) === null || _disposable === undefined ? undefined : _disposable[SymbolDispose]()\n ac.abort()\n if (final) {\n if (!error) {\n lastStreamCleanup.forEach((fn) => fn())\n }\n process.nextTick(callback, error, value)\n }\n }\n let ret\n for (let i = 0; i < streams.length; i++) {\n const stream = streams[i]\n const reading = i < streams.length - 1\n const writing = i > 0\n const end = reading || (opts === null || opts === undefined ? undefined : opts.end) !== false\n const isLastStream = i === streams.length - 1\n if (isNodeStream(stream)) {\n if (end) {\n const { destroy, cleanup } = destroyer(stream, reading, writing)\n destroys.push(destroy)\n if (isReadable(stream) && isLastStream) {\n lastStreamCleanup.push(cleanup)\n }\n }\n\n // Catch stream errors that occur after pipe/pump has completed.\n function onError(err) {\n if (err && err.name !== 'AbortError' && err.code !== 'ERR_STREAM_PREMATURE_CLOSE') {\n finish(err)\n }\n }\n stream.on('error', onError)\n if (isReadable(stream) && isLastStream) {\n lastStreamCleanup.push(() => {\n stream.removeListener('error', onError)\n })\n }\n }\n if (i === 0) {\n if (typeof stream === 'function') {\n ret = stream({\n signal\n })\n if (!isIterable(ret)) {\n throw new ERR_INVALID_RETURN_VALUE('Iterable, AsyncIterable or Stream', 'source', ret)\n }\n } else if (isIterable(stream) || isReadableNodeStream(stream) || isTransformStream(stream)) {\n ret = stream\n } else {\n ret = Duplex.from(stream)\n }\n } else if (typeof stream === 'function') {\n if (isTransformStream(ret)) {\n var _ret\n ret = makeAsyncIterable((_ret = ret) === null || _ret === undefined ? undefined : _ret.readable)\n } else {\n ret = makeAsyncIterable(ret)\n }\n ret = stream(ret, {\n signal\n })\n if (reading) {\n if (!isIterable(ret, true)) {\n throw new ERR_INVALID_RETURN_VALUE('AsyncIterable', `transform[${i - 1}]`, ret)\n }\n } else {\n var _ret2\n if (!PassThrough) {\n PassThrough = require('./passthrough')\n }\n\n // If the last argument to pipeline is not a stream\n // we must create a proxy stream so that pipeline(...)\n // always returns a stream which can be further\n // composed through `.pipe(stream)`.\n\n const pt = new PassThrough({\n objectMode: true\n })\n\n // Handle Promises/A+ spec, `then` could be a getter that throws on\n // second use.\n const then = (_ret2 = ret) === null || _ret2 === undefined ? undefined : _ret2.then\n if (typeof then === 'function') {\n finishCount++\n then.call(\n ret,\n (val) => {\n value = val\n if (val != null) {\n pt.write(val)\n }\n if (end) {\n pt.end()\n }\n process.nextTick(finish)\n },\n (err) => {\n pt.destroy(err)\n process.nextTick(finish, err)\n }\n )\n } else if (isIterable(ret, true)) {\n finishCount++\n pumpToNode(ret, pt, finish, {\n end\n })\n } else if (isReadableStream(ret) || isTransformStream(ret)) {\n const toRead = ret.readable || ret\n finishCount++\n pumpToNode(toRead, pt, finish, {\n end\n })\n } else {\n throw new ERR_INVALID_RETURN_VALUE('AsyncIterable or Promise', 'destination', ret)\n }\n ret = pt\n const { destroy, cleanup } = destroyer(ret, false, true)\n destroys.push(destroy)\n if (isLastStream) {\n lastStreamCleanup.push(cleanup)\n }\n }\n } else if (isNodeStream(stream)) {\n if (isReadableNodeStream(ret)) {\n finishCount += 2\n const cleanup = pipe(ret, stream, finish, {\n end\n })\n if (isReadable(stream) && isLastStream) {\n lastStreamCleanup.push(cleanup)\n }\n } else if (isTransformStream(ret) || isReadableStream(ret)) {\n const toRead = ret.readable || ret\n finishCount++\n pumpToNode(toRead, stream, finish, {\n end\n })\n } else if (isIterable(ret)) {\n finishCount++\n pumpToNode(ret, stream, finish, {\n end\n })\n } else {\n throw new ERR_INVALID_ARG_TYPE(\n 'val',\n ['Readable', 'Iterable', 'AsyncIterable', 'ReadableStream', 'TransformStream'],\n ret\n )\n }\n ret = stream\n } else if (isWebStream(stream)) {\n if (isReadableNodeStream(ret)) {\n finishCount++\n pumpToWeb(makeAsyncIterable(ret), stream, finish, {\n end\n })\n } else if (isReadableStream(ret) || isIterable(ret)) {\n finishCount++\n pumpToWeb(ret, stream, finish, {\n end\n })\n } else if (isTransformStream(ret)) {\n finishCount++\n pumpToWeb(ret.readable, stream, finish, {\n end\n })\n } else {\n throw new ERR_INVALID_ARG_TYPE(\n 'val',\n ['Readable', 'Iterable', 'AsyncIterable', 'ReadableStream', 'TransformStream'],\n ret\n )\n }\n ret = stream\n } else {\n ret = Duplex.from(stream)\n }\n }\n if (\n (signal !== null && signal !== undefined && signal.aborted) ||\n (outerSignal !== null && outerSignal !== undefined && outerSignal.aborted)\n ) {\n process.nextTick(abort)\n }\n return ret\n}\nfunction pipe(src, dst, finish, { end }) {\n let ended = false\n dst.on('close', () => {\n if (!ended) {\n // Finish if the destination closes before the source has completed.\n finish(new ERR_STREAM_PREMATURE_CLOSE())\n }\n })\n src.pipe(dst, {\n end: false\n }) // If end is true we already will have a listener to end dst.\n\n if (end) {\n // Compat. Before node v10.12.0 stdio used to throw an error so\n // pipe() did/does not end() stdio destinations.\n // Now they allow it but \"secretly\" don't close the underlying fd.\n\n function endFn() {\n ended = true\n dst.end()\n }\n if (isReadableFinished(src)) {\n // End the destination if the source has already ended.\n process.nextTick(endFn)\n } else {\n src.once('end', endFn)\n }\n } else {\n finish()\n }\n eos(\n src,\n {\n readable: true,\n writable: false\n },\n (err) => {\n const rState = src._readableState\n if (\n err &&\n err.code === 'ERR_STREAM_PREMATURE_CLOSE' &&\n rState &&\n rState.ended &&\n !rState.errored &&\n !rState.errorEmitted\n ) {\n // Some readable streams will emit 'close' before 'end'. However, since\n // this is on the readable side 'end' should still be emitted if the\n // stream has been ended and no error emitted. This should be allowed in\n // favor of backwards compatibility. Since the stream is piped to a\n // destination this should not result in any observable difference.\n // We don't need to check if this is a writable premature close since\n // eos will only fail with premature close on the reading side for\n // duplex streams.\n src.once('end', finish).once('error', finish)\n } else {\n finish(err)\n }\n }\n )\n return eos(\n dst,\n {\n readable: false,\n writable: true\n },\n finish\n )\n}\nmodule.exports = {\n pipelineImpl,\n pipeline\n}\n","/* replacement start */\n\nconst process = require('process/')\n\n/* replacement end */\n// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n;('use strict')\nconst {\n ArrayPrototypeIndexOf,\n NumberIsInteger,\n NumberIsNaN,\n NumberParseInt,\n ObjectDefineProperties,\n ObjectKeys,\n ObjectSetPrototypeOf,\n Promise,\n SafeSet,\n SymbolAsyncDispose,\n SymbolAsyncIterator,\n Symbol\n} = require('../../ours/primordials')\nmodule.exports = Readable\nReadable.ReadableState = ReadableState\nconst { EventEmitter: EE } = require('events')\nconst { Stream, prependListener } = require('./legacy')\nconst { Buffer } = require('buffer')\nconst { addAbortSignal } = require('./add-abort-signal')\nconst eos = require('./end-of-stream')\nlet debug = require('../../ours/util').debuglog('stream', (fn) => {\n debug = fn\n})\nconst BufferList = require('./buffer_list')\nconst destroyImpl = require('./destroy')\nconst { getHighWaterMark, getDefaultHighWaterMark } = require('./state')\nconst {\n aggregateTwoErrors,\n codes: {\n ERR_INVALID_ARG_TYPE,\n ERR_METHOD_NOT_IMPLEMENTED,\n ERR_OUT_OF_RANGE,\n ERR_STREAM_PUSH_AFTER_EOF,\n ERR_STREAM_UNSHIFT_AFTER_END_EVENT\n },\n AbortError\n} = require('../../ours/errors')\nconst { validateObject } = require('../validators')\nconst kPaused = Symbol('kPaused')\nconst { StringDecoder } = require('string_decoder')\nconst from = require('./from')\nObjectSetPrototypeOf(Readable.prototype, Stream.prototype)\nObjectSetPrototypeOf(Readable, Stream)\nconst nop = () => {}\nconst { errorOrDestroy } = destroyImpl\nconst kObjectMode = 1 << 0\nconst kEnded = 1 << 1\nconst kEndEmitted = 1 << 2\nconst kReading = 1 << 3\nconst kConstructed = 1 << 4\nconst kSync = 1 << 5\nconst kNeedReadable = 1 << 6\nconst kEmittedReadable = 1 << 7\nconst kReadableListening = 1 << 8\nconst kResumeScheduled = 1 << 9\nconst kErrorEmitted = 1 << 10\nconst kEmitClose = 1 << 11\nconst kAutoDestroy = 1 << 12\nconst kDestroyed = 1 << 13\nconst kClosed = 1 << 14\nconst kCloseEmitted = 1 << 15\nconst kMultiAwaitDrain = 1 << 16\nconst kReadingMore = 1 << 17\nconst kDataEmitted = 1 << 18\n\n// TODO(benjamingr) it is likely slower to do it this way than with free functions\nfunction makeBitMapDescriptor(bit) {\n return {\n enumerable: false,\n get() {\n return (this.state & bit) !== 0\n },\n set(value) {\n if (value) this.state |= bit\n else this.state &= ~bit\n }\n }\n}\nObjectDefineProperties(ReadableState.prototype, {\n objectMode: makeBitMapDescriptor(kObjectMode),\n ended: makeBitMapDescriptor(kEnded),\n endEmitted: makeBitMapDescriptor(kEndEmitted),\n reading: makeBitMapDescriptor(kReading),\n // Stream is still being constructed and cannot be\n // destroyed until construction finished or failed.\n // Async construction is opt in, therefore we start as\n // constructed.\n constructed: makeBitMapDescriptor(kConstructed),\n // A flag to be able to tell if the event 'readable'/'data' is emitted\n // immediately, or on a later tick. We set this to true at first, because\n // any actions that shouldn't happen until \"later\" should generally also\n // not happen before the first read call.\n sync: makeBitMapDescriptor(kSync),\n // Whenever we return null, then we set a flag to say\n // that we're awaiting a 'readable' event emission.\n needReadable: makeBitMapDescriptor(kNeedReadable),\n emittedReadable: makeBitMapDescriptor(kEmittedReadable),\n readableListening: makeBitMapDescriptor(kReadableListening),\n resumeScheduled: makeBitMapDescriptor(kResumeScheduled),\n // True if the error was already emitted and should not be thrown again.\n errorEmitted: makeBitMapDescriptor(kErrorEmitted),\n emitClose: makeBitMapDescriptor(kEmitClose),\n autoDestroy: makeBitMapDescriptor(kAutoDestroy),\n // Has it been destroyed.\n destroyed: makeBitMapDescriptor(kDestroyed),\n // Indicates whether the stream has finished destroying.\n closed: makeBitMapDescriptor(kClosed),\n // True if close has been emitted or would have been emitted\n // depending on emitClose.\n closeEmitted: makeBitMapDescriptor(kCloseEmitted),\n multiAwaitDrain: makeBitMapDescriptor(kMultiAwaitDrain),\n // If true, a maybeReadMore has been scheduled.\n readingMore: makeBitMapDescriptor(kReadingMore),\n dataEmitted: makeBitMapDescriptor(kDataEmitted)\n})\nfunction ReadableState(options, stream, isDuplex) {\n // Duplex streams are both readable and writable, but share\n // the same options object.\n // However, some cases require setting options to different\n // values for the readable and the writable sides of the duplex stream.\n // These options can be provided separately as readableXXX and writableXXX.\n if (typeof isDuplex !== 'boolean') isDuplex = stream instanceof require('./duplex')\n\n // Bit map field to store ReadableState more effciently with 1 bit per field\n // instead of a V8 slot per field.\n this.state = kEmitClose | kAutoDestroy | kConstructed | kSync\n // Object stream flag. Used to make read(n) ignore n and to\n // make all the buffer merging and length checks go away.\n if (options && options.objectMode) this.state |= kObjectMode\n if (isDuplex && options && options.readableObjectMode) this.state |= kObjectMode\n\n // The point at which it stops calling _read() to fill the buffer\n // Note: 0 is a valid value, means \"don't call _read preemptively ever\"\n this.highWaterMark = options\n ? getHighWaterMark(this, options, 'readableHighWaterMark', isDuplex)\n : getDefaultHighWaterMark(false)\n\n // A linked list is used to store data chunks instead of an array because the\n // linked list can remove elements from the beginning faster than\n // array.shift().\n this.buffer = new BufferList()\n this.length = 0\n this.pipes = []\n this.flowing = null\n this[kPaused] = null\n\n // Should close be emitted on destroy. Defaults to true.\n if (options && options.emitClose === false) this.state &= ~kEmitClose\n\n // Should .destroy() be called after 'end' (and potentially 'finish').\n if (options && options.autoDestroy === false) this.state &= ~kAutoDestroy\n\n // Indicates whether the stream has errored. When true no further\n // _read calls, 'data' or 'readable' events should occur. This is needed\n // since when autoDestroy is disabled we need a way to tell whether the\n // stream has failed.\n this.errored = null\n\n // Crypto is kind of old and crusty. Historically, its default string\n // encoding is 'binary' so we have to make this configurable.\n // Everything else in the universe uses 'utf8', though.\n this.defaultEncoding = (options && options.defaultEncoding) || 'utf8'\n\n // Ref the piped dest which we need a drain event on it\n // type: null | Writable | Set.\n this.awaitDrainWriters = null\n this.decoder = null\n this.encoding = null\n if (options && options.encoding) {\n this.decoder = new StringDecoder(options.encoding)\n this.encoding = options.encoding\n }\n}\nfunction Readable(options) {\n if (!(this instanceof Readable)) return new Readable(options)\n\n // Checking for a Stream.Duplex instance is faster here instead of inside\n // the ReadableState constructor, at least with V8 6.5.\n const isDuplex = this instanceof require('./duplex')\n this._readableState = new ReadableState(options, this, isDuplex)\n if (options) {\n if (typeof options.read === 'function') this._read = options.read\n if (typeof options.destroy === 'function') this._destroy = options.destroy\n if (typeof options.construct === 'function') this._construct = options.construct\n if (options.signal && !isDuplex) addAbortSignal(options.signal, this)\n }\n Stream.call(this, options)\n destroyImpl.construct(this, () => {\n if (this._readableState.needReadable) {\n maybeReadMore(this, this._readableState)\n }\n })\n}\nReadable.prototype.destroy = destroyImpl.destroy\nReadable.prototype._undestroy = destroyImpl.undestroy\nReadable.prototype._destroy = function (err, cb) {\n cb(err)\n}\nReadable.prototype[EE.captureRejectionSymbol] = function (err) {\n this.destroy(err)\n}\nReadable.prototype[SymbolAsyncDispose] = function () {\n let error\n if (!this.destroyed) {\n error = this.readableEnded ? null : new AbortError()\n this.destroy(error)\n }\n return new Promise((resolve, reject) => eos(this, (err) => (err && err !== error ? reject(err) : resolve(null))))\n}\n\n// Manually shove something into the read() buffer.\n// This returns true if the highWaterMark has not been hit yet,\n// similar to how Writable.write() returns true if you should\n// write() some more.\nReadable.prototype.push = function (chunk, encoding) {\n return readableAddChunk(this, chunk, encoding, false)\n}\n\n// Unshift should *always* be something directly out of read().\nReadable.prototype.unshift = function (chunk, encoding) {\n return readableAddChunk(this, chunk, encoding, true)\n}\nfunction readableAddChunk(stream, chunk, encoding, addToFront) {\n debug('readableAddChunk', chunk)\n const state = stream._readableState\n let err\n if ((state.state & kObjectMode) === 0) {\n if (typeof chunk === 'string') {\n encoding = encoding || state.defaultEncoding\n if (state.encoding !== encoding) {\n if (addToFront && state.encoding) {\n // When unshifting, if state.encoding is set, we have to save\n // the string in the BufferList with the state encoding.\n chunk = Buffer.from(chunk, encoding).toString(state.encoding)\n } else {\n chunk = Buffer.from(chunk, encoding)\n encoding = ''\n }\n }\n } else if (chunk instanceof Buffer) {\n encoding = ''\n } else if (Stream._isUint8Array(chunk)) {\n chunk = Stream._uint8ArrayToBuffer(chunk)\n encoding = ''\n } else if (chunk != null) {\n err = new ERR_INVALID_ARG_TYPE('chunk', ['string', 'Buffer', 'Uint8Array'], chunk)\n }\n }\n if (err) {\n errorOrDestroy(stream, err)\n } else if (chunk === null) {\n state.state &= ~kReading\n onEofChunk(stream, state)\n } else if ((state.state & kObjectMode) !== 0 || (chunk && chunk.length > 0)) {\n if (addToFront) {\n if ((state.state & kEndEmitted) !== 0) errorOrDestroy(stream, new ERR_STREAM_UNSHIFT_AFTER_END_EVENT())\n else if (state.destroyed || state.errored) return false\n else addChunk(stream, state, chunk, true)\n } else if (state.ended) {\n errorOrDestroy(stream, new ERR_STREAM_PUSH_AFTER_EOF())\n } else if (state.destroyed || state.errored) {\n return false\n } else {\n state.state &= ~kReading\n if (state.decoder && !encoding) {\n chunk = state.decoder.write(chunk)\n if (state.objectMode || chunk.length !== 0) addChunk(stream, state, chunk, false)\n else maybeReadMore(stream, state)\n } else {\n addChunk(stream, state, chunk, false)\n }\n }\n } else if (!addToFront) {\n state.state &= ~kReading\n maybeReadMore(stream, state)\n }\n\n // We can push more data if we are below the highWaterMark.\n // Also, if we have no data yet, we can stand some more bytes.\n // This is to work around cases where hwm=0, such as the repl.\n return !state.ended && (state.length < state.highWaterMark || state.length === 0)\n}\nfunction addChunk(stream, state, chunk, addToFront) {\n if (state.flowing && state.length === 0 && !state.sync && stream.listenerCount('data') > 0) {\n // Use the guard to avoid creating `Set()` repeatedly\n // when we have multiple pipes.\n if ((state.state & kMultiAwaitDrain) !== 0) {\n state.awaitDrainWriters.clear()\n } else {\n state.awaitDrainWriters = null\n }\n state.dataEmitted = true\n stream.emit('data', chunk)\n } else {\n // Update the buffer info.\n state.length += state.objectMode ? 1 : chunk.length\n if (addToFront) state.buffer.unshift(chunk)\n else state.buffer.push(chunk)\n if ((state.state & kNeedReadable) !== 0) emitReadable(stream)\n }\n maybeReadMore(stream, state)\n}\nReadable.prototype.isPaused = function () {\n const state = this._readableState\n return state[kPaused] === true || state.flowing === false\n}\n\n// Backwards compatibility.\nReadable.prototype.setEncoding = function (enc) {\n const decoder = new StringDecoder(enc)\n this._readableState.decoder = decoder\n // If setEncoding(null), decoder.encoding equals utf8.\n this._readableState.encoding = this._readableState.decoder.encoding\n const buffer = this._readableState.buffer\n // Iterate over current buffer to convert already stored Buffers:\n let content = ''\n for (const data of buffer) {\n content += decoder.write(data)\n }\n buffer.clear()\n if (content !== '') buffer.push(content)\n this._readableState.length = content.length\n return this\n}\n\n// Don't raise the hwm > 1GB.\nconst MAX_HWM = 0x40000000\nfunction computeNewHighWaterMark(n) {\n if (n > MAX_HWM) {\n throw new ERR_OUT_OF_RANGE('size', '<= 1GiB', n)\n } else {\n // Get the next highest power of 2 to prevent increasing hwm excessively in\n // tiny amounts.\n n--\n n |= n >>> 1\n n |= n >>> 2\n n |= n >>> 4\n n |= n >>> 8\n n |= n >>> 16\n n++\n }\n return n\n}\n\n// This function is designed to be inlinable, so please take care when making\n// changes to the function body.\nfunction howMuchToRead(n, state) {\n if (n <= 0 || (state.length === 0 && state.ended)) return 0\n if ((state.state & kObjectMode) !== 0) return 1\n if (NumberIsNaN(n)) {\n // Only flow one buffer at a time.\n if (state.flowing && state.length) return state.buffer.first().length\n return state.length\n }\n if (n <= state.length) return n\n return state.ended ? state.length : 0\n}\n\n// You can override either this method, or the async _read(n) below.\nReadable.prototype.read = function (n) {\n debug('read', n)\n // Same as parseInt(undefined, 10), however V8 7.3 performance regressed\n // in this scenario, so we are doing it manually.\n if (n === undefined) {\n n = NaN\n } else if (!NumberIsInteger(n)) {\n n = NumberParseInt(n, 10)\n }\n const state = this._readableState\n const nOrig = n\n\n // If we're asking for more than the current hwm, then raise the hwm.\n if (n > state.highWaterMark) state.highWaterMark = computeNewHighWaterMark(n)\n if (n !== 0) state.state &= ~kEmittedReadable\n\n // If we're doing read(0) to trigger a readable event, but we\n // already have a bunch of data in the buffer, then just trigger\n // the 'readable' event and move on.\n if (\n n === 0 &&\n state.needReadable &&\n ((state.highWaterMark !== 0 ? state.length >= state.highWaterMark : state.length > 0) || state.ended)\n ) {\n debug('read: emitReadable', state.length, state.ended)\n if (state.length === 0 && state.ended) endReadable(this)\n else emitReadable(this)\n return null\n }\n n = howMuchToRead(n, state)\n\n // If we've ended, and we're now clear, then finish it up.\n if (n === 0 && state.ended) {\n if (state.length === 0) endReadable(this)\n return null\n }\n\n // All the actual chunk generation logic needs to be\n // *below* the call to _read. The reason is that in certain\n // synthetic stream cases, such as passthrough streams, _read\n // may be a completely synchronous operation which may change\n // the state of the read buffer, providing enough data when\n // before there was *not* enough.\n //\n // So, the steps are:\n // 1. Figure out what the state of things will be after we do\n // a read from the buffer.\n //\n // 2. If that resulting state will trigger a _read, then call _read.\n // Note that this may be asynchronous, or synchronous. Yes, it is\n // deeply ugly to write APIs this way, but that still doesn't mean\n // that the Readable class should behave improperly, as streams are\n // designed to be sync/async agnostic.\n // Take note if the _read call is sync or async (ie, if the read call\n // has returned yet), so that we know whether or not it's safe to emit\n // 'readable' etc.\n //\n // 3. Actually pull the requested chunks out of the buffer and return.\n\n // if we need a readable event, then we need to do some reading.\n let doRead = (state.state & kNeedReadable) !== 0\n debug('need readable', doRead)\n\n // If we currently have less than the highWaterMark, then also read some.\n if (state.length === 0 || state.length - n < state.highWaterMark) {\n doRead = true\n debug('length less than watermark', doRead)\n }\n\n // However, if we've ended, then there's no point, if we're already\n // reading, then it's unnecessary, if we're constructing we have to wait,\n // and if we're destroyed or errored, then it's not allowed,\n if (state.ended || state.reading || state.destroyed || state.errored || !state.constructed) {\n doRead = false\n debug('reading, ended or constructing', doRead)\n } else if (doRead) {\n debug('do read')\n state.state |= kReading | kSync\n // If the length is currently zero, then we *need* a readable event.\n if (state.length === 0) state.state |= kNeedReadable\n\n // Call internal read method\n try {\n this._read(state.highWaterMark)\n } catch (err) {\n errorOrDestroy(this, err)\n }\n state.state &= ~kSync\n\n // If _read pushed data synchronously, then `reading` will be false,\n // and we need to re-evaluate how much data we can return to the user.\n if (!state.reading) n = howMuchToRead(nOrig, state)\n }\n let ret\n if (n > 0) ret = fromList(n, state)\n else ret = null\n if (ret === null) {\n state.needReadable = state.length <= state.highWaterMark\n n = 0\n } else {\n state.length -= n\n if (state.multiAwaitDrain) {\n state.awaitDrainWriters.clear()\n } else {\n state.awaitDrainWriters = null\n }\n }\n if (state.length === 0) {\n // If we have nothing in the buffer, then we want to know\n // as soon as we *do* get something into the buffer.\n if (!state.ended) state.needReadable = true\n\n // If we tried to read() past the EOF, then emit end on the next tick.\n if (nOrig !== n && state.ended) endReadable(this)\n }\n if (ret !== null && !state.errorEmitted && !state.closeEmitted) {\n state.dataEmitted = true\n this.emit('data', ret)\n }\n return ret\n}\nfunction onEofChunk(stream, state) {\n debug('onEofChunk')\n if (state.ended) return\n if (state.decoder) {\n const chunk = state.decoder.end()\n if (chunk && chunk.length) {\n state.buffer.push(chunk)\n state.length += state.objectMode ? 1 : chunk.length\n }\n }\n state.ended = true\n if (state.sync) {\n // If we are sync, wait until next tick to emit the data.\n // Otherwise we risk emitting data in the flow()\n // the readable code triggers during a read() call.\n emitReadable(stream)\n } else {\n // Emit 'readable' now to make sure it gets picked up.\n state.needReadable = false\n state.emittedReadable = true\n // We have to emit readable now that we are EOF. Modules\n // in the ecosystem (e.g. dicer) rely on this event being sync.\n emitReadable_(stream)\n }\n}\n\n// Don't emit readable right away in sync mode, because this can trigger\n// another read() call => stack overflow. This way, it might trigger\n// a nextTick recursion warning, but that's not so bad.\nfunction emitReadable(stream) {\n const state = stream._readableState\n debug('emitReadable', state.needReadable, state.emittedReadable)\n state.needReadable = false\n if (!state.emittedReadable) {\n debug('emitReadable', state.flowing)\n state.emittedReadable = true\n process.nextTick(emitReadable_, stream)\n }\n}\nfunction emitReadable_(stream) {\n const state = stream._readableState\n debug('emitReadable_', state.destroyed, state.length, state.ended)\n if (!state.destroyed && !state.errored && (state.length || state.ended)) {\n stream.emit('readable')\n state.emittedReadable = false\n }\n\n // The stream needs another readable event if:\n // 1. It is not flowing, as the flow mechanism will take\n // care of it.\n // 2. It is not ended.\n // 3. It is below the highWaterMark, so we can schedule\n // another readable later.\n state.needReadable = !state.flowing && !state.ended && state.length <= state.highWaterMark\n flow(stream)\n}\n\n// At this point, the user has presumably seen the 'readable' event,\n// and called read() to consume some data. that may have triggered\n// in turn another _read(n) call, in which case reading = true if\n// it's in progress.\n// However, if we're not ended, or reading, and the length < hwm,\n// then go ahead and try to read some more preemptively.\nfunction maybeReadMore(stream, state) {\n if (!state.readingMore && state.constructed) {\n state.readingMore = true\n process.nextTick(maybeReadMore_, stream, state)\n }\n}\nfunction maybeReadMore_(stream, state) {\n // Attempt to read more data if we should.\n //\n // The conditions for reading more data are (one of):\n // - Not enough data buffered (state.length < state.highWaterMark). The loop\n // is responsible for filling the buffer with enough data if such data\n // is available. If highWaterMark is 0 and we are not in the flowing mode\n // we should _not_ attempt to buffer any extra data. We'll get more data\n // when the stream consumer calls read() instead.\n // - No data in the buffer, and the stream is in flowing mode. In this mode\n // the loop below is responsible for ensuring read() is called. Failing to\n // call read here would abort the flow and there's no other mechanism for\n // continuing the flow if the stream consumer has just subscribed to the\n // 'data' event.\n //\n // In addition to the above conditions to keep reading data, the following\n // conditions prevent the data from being read:\n // - The stream has ended (state.ended).\n // - There is already a pending 'read' operation (state.reading). This is a\n // case where the stream has called the implementation defined _read()\n // method, but they are processing the call asynchronously and have _not_\n // called push() with new data. In this case we skip performing more\n // read()s. The execution ends in this method again after the _read() ends\n // up calling push() with more data.\n while (\n !state.reading &&\n !state.ended &&\n (state.length < state.highWaterMark || (state.flowing && state.length === 0))\n ) {\n const len = state.length\n debug('maybeReadMore read 0')\n stream.read(0)\n if (len === state.length)\n // Didn't get any data, stop spinning.\n break\n }\n state.readingMore = false\n}\n\n// Abstract method. to be overridden in specific implementation classes.\n// call cb(er, data) where data is <= n in length.\n// for virtual (non-string, non-buffer) streams, \"length\" is somewhat\n// arbitrary, and perhaps not very meaningful.\nReadable.prototype._read = function (n) {\n throw new ERR_METHOD_NOT_IMPLEMENTED('_read()')\n}\nReadable.prototype.pipe = function (dest, pipeOpts) {\n const src = this\n const state = this._readableState\n if (state.pipes.length === 1) {\n if (!state.multiAwaitDrain) {\n state.multiAwaitDrain = true\n state.awaitDrainWriters = new SafeSet(state.awaitDrainWriters ? [state.awaitDrainWriters] : [])\n }\n }\n state.pipes.push(dest)\n debug('pipe count=%d opts=%j', state.pipes.length, pipeOpts)\n const doEnd = (!pipeOpts || pipeOpts.end !== false) && dest !== process.stdout && dest !== process.stderr\n const endFn = doEnd ? onend : unpipe\n if (state.endEmitted) process.nextTick(endFn)\n else src.once('end', endFn)\n dest.on('unpipe', onunpipe)\n function onunpipe(readable, unpipeInfo) {\n debug('onunpipe')\n if (readable === src) {\n if (unpipeInfo && unpipeInfo.hasUnpiped === false) {\n unpipeInfo.hasUnpiped = true\n cleanup()\n }\n }\n }\n function onend() {\n debug('onend')\n dest.end()\n }\n let ondrain\n let cleanedUp = false\n function cleanup() {\n debug('cleanup')\n // Cleanup event handlers once the pipe is broken.\n dest.removeListener('close', onclose)\n dest.removeListener('finish', onfinish)\n if (ondrain) {\n dest.removeListener('drain', ondrain)\n }\n dest.removeListener('error', onerror)\n dest.removeListener('unpipe', onunpipe)\n src.removeListener('end', onend)\n src.removeListener('end', unpipe)\n src.removeListener('data', ondata)\n cleanedUp = true\n\n // If the reader is waiting for a drain event from this\n // specific writer, then it would cause it to never start\n // flowing again.\n // So, if this is awaiting a drain, then we just call it now.\n // If we don't know, then assume that we are waiting for one.\n if (ondrain && state.awaitDrainWriters && (!dest._writableState || dest._writableState.needDrain)) ondrain()\n }\n function pause() {\n // If the user unpiped during `dest.write()`, it is possible\n // to get stuck in a permanently paused state if that write\n // also returned false.\n // => Check whether `dest` is still a piping destination.\n if (!cleanedUp) {\n if (state.pipes.length === 1 && state.pipes[0] === dest) {\n debug('false write response, pause', 0)\n state.awaitDrainWriters = dest\n state.multiAwaitDrain = false\n } else if (state.pipes.length > 1 && state.pipes.includes(dest)) {\n debug('false write response, pause', state.awaitDrainWriters.size)\n state.awaitDrainWriters.add(dest)\n }\n src.pause()\n }\n if (!ondrain) {\n // When the dest drains, it reduces the awaitDrain counter\n // on the source. This would be more elegant with a .once()\n // handler in flow(), but adding and removing repeatedly is\n // too slow.\n ondrain = pipeOnDrain(src, dest)\n dest.on('drain', ondrain)\n }\n }\n src.on('data', ondata)\n function ondata(chunk) {\n debug('ondata')\n const ret = dest.write(chunk)\n debug('dest.write', ret)\n if (ret === false) {\n pause()\n }\n }\n\n // If the dest has an error, then stop piping into it.\n // However, don't suppress the throwing behavior for this.\n function onerror(er) {\n debug('onerror', er)\n unpipe()\n dest.removeListener('error', onerror)\n if (dest.listenerCount('error') === 0) {\n const s = dest._writableState || dest._readableState\n if (s && !s.errorEmitted) {\n // User incorrectly emitted 'error' directly on the stream.\n errorOrDestroy(dest, er)\n } else {\n dest.emit('error', er)\n }\n }\n }\n\n // Make sure our error handler is attached before userland ones.\n prependListener(dest, 'error', onerror)\n\n // Both close and finish should trigger unpipe, but only once.\n function onclose() {\n dest.removeListener('finish', onfinish)\n unpipe()\n }\n dest.once('close', onclose)\n function onfinish() {\n debug('onfinish')\n dest.removeListener('close', onclose)\n unpipe()\n }\n dest.once('finish', onfinish)\n function unpipe() {\n debug('unpipe')\n src.unpipe(dest)\n }\n\n // Tell the dest that it's being piped to.\n dest.emit('pipe', src)\n\n // Start the flow if it hasn't been started already.\n\n if (dest.writableNeedDrain === true) {\n pause()\n } else if (!state.flowing) {\n debug('pipe resume')\n src.resume()\n }\n return dest\n}\nfunction pipeOnDrain(src, dest) {\n return function pipeOnDrainFunctionResult() {\n const state = src._readableState\n\n // `ondrain` will call directly,\n // `this` maybe not a reference to dest,\n // so we use the real dest here.\n if (state.awaitDrainWriters === dest) {\n debug('pipeOnDrain', 1)\n state.awaitDrainWriters = null\n } else if (state.multiAwaitDrain) {\n debug('pipeOnDrain', state.awaitDrainWriters.size)\n state.awaitDrainWriters.delete(dest)\n }\n if ((!state.awaitDrainWriters || state.awaitDrainWriters.size === 0) && src.listenerCount('data')) {\n src.resume()\n }\n }\n}\nReadable.prototype.unpipe = function (dest) {\n const state = this._readableState\n const unpipeInfo = {\n hasUnpiped: false\n }\n\n // If we're not piping anywhere, then do nothing.\n if (state.pipes.length === 0) return this\n if (!dest) {\n // remove all.\n const dests = state.pipes\n state.pipes = []\n this.pause()\n for (let i = 0; i < dests.length; i++)\n dests[i].emit('unpipe', this, {\n hasUnpiped: false\n })\n return this\n }\n\n // Try to find the right one.\n const index = ArrayPrototypeIndexOf(state.pipes, dest)\n if (index === -1) return this\n state.pipes.splice(index, 1)\n if (state.pipes.length === 0) this.pause()\n dest.emit('unpipe', this, unpipeInfo)\n return this\n}\n\n// Set up data events if they are asked for\n// Ensure readable listeners eventually get something.\nReadable.prototype.on = function (ev, fn) {\n const res = Stream.prototype.on.call(this, ev, fn)\n const state = this._readableState\n if (ev === 'data') {\n // Update readableListening so that resume() may be a no-op\n // a few lines down. This is needed to support once('readable').\n state.readableListening = this.listenerCount('readable') > 0\n\n // Try start flowing on next tick if stream isn't explicitly paused.\n if (state.flowing !== false) this.resume()\n } else if (ev === 'readable') {\n if (!state.endEmitted && !state.readableListening) {\n state.readableListening = state.needReadable = true\n state.flowing = false\n state.emittedReadable = false\n debug('on readable', state.length, state.reading)\n if (state.length) {\n emitReadable(this)\n } else if (!state.reading) {\n process.nextTick(nReadingNextTick, this)\n }\n }\n }\n return res\n}\nReadable.prototype.addListener = Readable.prototype.on\nReadable.prototype.removeListener = function (ev, fn) {\n const res = Stream.prototype.removeListener.call(this, ev, fn)\n if (ev === 'readable') {\n // We need to check if there is someone still listening to\n // readable and reset the state. However this needs to happen\n // after readable has been emitted but before I/O (nextTick) to\n // support once('readable', fn) cycles. This means that calling\n // resume within the same tick will have no\n // effect.\n process.nextTick(updateReadableListening, this)\n }\n return res\n}\nReadable.prototype.off = Readable.prototype.removeListener\nReadable.prototype.removeAllListeners = function (ev) {\n const res = Stream.prototype.removeAllListeners.apply(this, arguments)\n if (ev === 'readable' || ev === undefined) {\n // We need to check if there is someone still listening to\n // readable and reset the state. However this needs to happen\n // after readable has been emitted but before I/O (nextTick) to\n // support once('readable', fn) cycles. This means that calling\n // resume within the same tick will have no\n // effect.\n process.nextTick(updateReadableListening, this)\n }\n return res\n}\nfunction updateReadableListening(self) {\n const state = self._readableState\n state.readableListening = self.listenerCount('readable') > 0\n if (state.resumeScheduled && state[kPaused] === false) {\n // Flowing needs to be set to true now, otherwise\n // the upcoming resume will not flow.\n state.flowing = true\n\n // Crude way to check if we should resume.\n } else if (self.listenerCount('data') > 0) {\n self.resume()\n } else if (!state.readableListening) {\n state.flowing = null\n }\n}\nfunction nReadingNextTick(self) {\n debug('readable nexttick read 0')\n self.read(0)\n}\n\n// pause() and resume() are remnants of the legacy readable stream API\n// If the user uses them, then switch into old mode.\nReadable.prototype.resume = function () {\n const state = this._readableState\n if (!state.flowing) {\n debug('resume')\n // We flow only if there is no one listening\n // for readable, but we still have to call\n // resume().\n state.flowing = !state.readableListening\n resume(this, state)\n }\n state[kPaused] = false\n return this\n}\nfunction resume(stream, state) {\n if (!state.resumeScheduled) {\n state.resumeScheduled = true\n process.nextTick(resume_, stream, state)\n }\n}\nfunction resume_(stream, state) {\n debug('resume', state.reading)\n if (!state.reading) {\n stream.read(0)\n }\n state.resumeScheduled = false\n stream.emit('resume')\n flow(stream)\n if (state.flowing && !state.reading) stream.read(0)\n}\nReadable.prototype.pause = function () {\n debug('call pause flowing=%j', this._readableState.flowing)\n if (this._readableState.flowing !== false) {\n debug('pause')\n this._readableState.flowing = false\n this.emit('pause')\n }\n this._readableState[kPaused] = true\n return this\n}\nfunction flow(stream) {\n const state = stream._readableState\n debug('flow', state.flowing)\n while (state.flowing && stream.read() !== null);\n}\n\n// Wrap an old-style stream as the async data source.\n// This is *not* part of the readable stream interface.\n// It is an ugly unfortunate mess of history.\nReadable.prototype.wrap = function (stream) {\n let paused = false\n\n // TODO (ronag): Should this.destroy(err) emit\n // 'error' on the wrapped stream? Would require\n // a static factory method, e.g. Readable.wrap(stream).\n\n stream.on('data', (chunk) => {\n if (!this.push(chunk) && stream.pause) {\n paused = true\n stream.pause()\n }\n })\n stream.on('end', () => {\n this.push(null)\n })\n stream.on('error', (err) => {\n errorOrDestroy(this, err)\n })\n stream.on('close', () => {\n this.destroy()\n })\n stream.on('destroy', () => {\n this.destroy()\n })\n this._read = () => {\n if (paused && stream.resume) {\n paused = false\n stream.resume()\n }\n }\n\n // Proxy all the other methods. Important when wrapping filters and duplexes.\n const streamKeys = ObjectKeys(stream)\n for (let j = 1; j < streamKeys.length; j++) {\n const i = streamKeys[j]\n if (this[i] === undefined && typeof stream[i] === 'function') {\n this[i] = stream[i].bind(stream)\n }\n }\n return this\n}\nReadable.prototype[SymbolAsyncIterator] = function () {\n return streamToAsyncIterator(this)\n}\nReadable.prototype.iterator = function (options) {\n if (options !== undefined) {\n validateObject(options, 'options')\n }\n return streamToAsyncIterator(this, options)\n}\nfunction streamToAsyncIterator(stream, options) {\n if (typeof stream.read !== 'function') {\n stream = Readable.wrap(stream, {\n objectMode: true\n })\n }\n const iter = createAsyncIterator(stream, options)\n iter.stream = stream\n return iter\n}\nasync function* createAsyncIterator(stream, options) {\n let callback = nop\n function next(resolve) {\n if (this === stream) {\n callback()\n callback = nop\n } else {\n callback = resolve\n }\n }\n stream.on('readable', next)\n let error\n const cleanup = eos(\n stream,\n {\n writable: false\n },\n (err) => {\n error = err ? aggregateTwoErrors(error, err) : null\n callback()\n callback = nop\n }\n )\n try {\n while (true) {\n const chunk = stream.destroyed ? null : stream.read()\n if (chunk !== null) {\n yield chunk\n } else if (error) {\n throw error\n } else if (error === null) {\n return\n } else {\n await new Promise(next)\n }\n }\n } catch (err) {\n error = aggregateTwoErrors(error, err)\n throw error\n } finally {\n if (\n (error || (options === null || options === undefined ? undefined : options.destroyOnReturn) !== false) &&\n (error === undefined || stream._readableState.autoDestroy)\n ) {\n destroyImpl.destroyer(stream, null)\n } else {\n stream.off('readable', next)\n cleanup()\n }\n }\n}\n\n// Making it explicit these properties are not enumerable\n// because otherwise some prototype manipulation in\n// userland will fail.\nObjectDefineProperties(Readable.prototype, {\n readable: {\n __proto__: null,\n get() {\n const r = this._readableState\n // r.readable === false means that this is part of a Duplex stream\n // where the readable side was disabled upon construction.\n // Compat. The user might manually disable readable side through\n // deprecated setter.\n return !!r && r.readable !== false && !r.destroyed && !r.errorEmitted && !r.endEmitted\n },\n set(val) {\n // Backwards compat.\n if (this._readableState) {\n this._readableState.readable = !!val\n }\n }\n },\n readableDidRead: {\n __proto__: null,\n enumerable: false,\n get: function () {\n return this._readableState.dataEmitted\n }\n },\n readableAborted: {\n __proto__: null,\n enumerable: false,\n get: function () {\n return !!(\n this._readableState.readable !== false &&\n (this._readableState.destroyed || this._readableState.errored) &&\n !this._readableState.endEmitted\n )\n }\n },\n readableHighWaterMark: {\n __proto__: null,\n enumerable: false,\n get: function () {\n return this._readableState.highWaterMark\n }\n },\n readableBuffer: {\n __proto__: null,\n enumerable: false,\n get: function () {\n return this._readableState && this._readableState.buffer\n }\n },\n readableFlowing: {\n __proto__: null,\n enumerable: false,\n get: function () {\n return this._readableState.flowing\n },\n set: function (state) {\n if (this._readableState) {\n this._readableState.flowing = state\n }\n }\n },\n readableLength: {\n __proto__: null,\n enumerable: false,\n get() {\n return this._readableState.length\n }\n },\n readableObjectMode: {\n __proto__: null,\n enumerable: false,\n get() {\n return this._readableState ? this._readableState.objectMode : false\n }\n },\n readableEncoding: {\n __proto__: null,\n enumerable: false,\n get() {\n return this._readableState ? this._readableState.encoding : null\n }\n },\n errored: {\n __proto__: null,\n enumerable: false,\n get() {\n return this._readableState ? this._readableState.errored : null\n }\n },\n closed: {\n __proto__: null,\n get() {\n return this._readableState ? this._readableState.closed : false\n }\n },\n destroyed: {\n __proto__: null,\n enumerable: false,\n get() {\n return this._readableState ? this._readableState.destroyed : false\n },\n set(value) {\n // We ignore the value if the stream\n // has not been initialized yet.\n if (!this._readableState) {\n return\n }\n\n // Backward compatibility, the user is explicitly\n // managing destroyed.\n this._readableState.destroyed = value\n }\n },\n readableEnded: {\n __proto__: null,\n enumerable: false,\n get() {\n return this._readableState ? this._readableState.endEmitted : false\n }\n }\n})\nObjectDefineProperties(ReadableState.prototype, {\n // Legacy getter for `pipesCount`.\n pipesCount: {\n __proto__: null,\n get() {\n return this.pipes.length\n }\n },\n // Legacy property for `paused`.\n paused: {\n __proto__: null,\n get() {\n return this[kPaused] !== false\n },\n set(value) {\n this[kPaused] = !!value\n }\n }\n})\n\n// Exposed for testing purposes only.\nReadable._fromList = fromList\n\n// Pluck off n bytes from an array of buffers.\n// Length is the combined lengths of all the buffers in the list.\n// This function is designed to be inlinable, so please take care when making\n// changes to the function body.\nfunction fromList(n, state) {\n // nothing buffered.\n if (state.length === 0) return null\n let ret\n if (state.objectMode) ret = state.buffer.shift()\n else if (!n || n >= state.length) {\n // Read it all, truncate the list.\n if (state.decoder) ret = state.buffer.join('')\n else if (state.buffer.length === 1) ret = state.buffer.first()\n else ret = state.buffer.concat(state.length)\n state.buffer.clear()\n } else {\n // read part of list.\n ret = state.buffer.consume(n, state.decoder)\n }\n return ret\n}\nfunction endReadable(stream) {\n const state = stream._readableState\n debug('endReadable', state.endEmitted)\n if (!state.endEmitted) {\n state.ended = true\n process.nextTick(endReadableNT, state, stream)\n }\n}\nfunction endReadableNT(state, stream) {\n debug('endReadableNT', state.endEmitted, state.length)\n\n // Check that we didn't get one last unshift.\n if (!state.errored && !state.closeEmitted && !state.endEmitted && state.length === 0) {\n state.endEmitted = true\n stream.emit('end')\n if (stream.writable && stream.allowHalfOpen === false) {\n process.nextTick(endWritableNT, stream)\n } else if (state.autoDestroy) {\n // In case of duplex streams we need a way to detect\n // if the writable side is ready for autoDestroy as well.\n const wState = stream._writableState\n const autoDestroy =\n !wState ||\n (wState.autoDestroy &&\n // We don't expect the writable to ever 'finish'\n // if writable is explicitly set to false.\n (wState.finished || wState.writable === false))\n if (autoDestroy) {\n stream.destroy()\n }\n }\n }\n}\nfunction endWritableNT(stream) {\n const writable = stream.writable && !stream.writableEnded && !stream.destroyed\n if (writable) {\n stream.end()\n }\n}\nReadable.from = function (iterable, opts) {\n return from(Readable, iterable, opts)\n}\nlet webStreamsAdapters\n\n// Lazy to avoid circular references\nfunction lazyWebStreams() {\n if (webStreamsAdapters === undefined) webStreamsAdapters = {}\n return webStreamsAdapters\n}\nReadable.fromWeb = function (readableStream, options) {\n return lazyWebStreams().newStreamReadableFromReadableStream(readableStream, options)\n}\nReadable.toWeb = function (streamReadable, options) {\n return lazyWebStreams().newReadableStreamFromStreamReadable(streamReadable, options)\n}\nReadable.wrap = function (src, options) {\n var _ref, _src$readableObjectMo\n return new Readable({\n objectMode:\n (_ref =\n (_src$readableObjectMo = src.readableObjectMode) !== null && _src$readableObjectMo !== undefined\n ? _src$readableObjectMo\n : src.objectMode) !== null && _ref !== undefined\n ? _ref\n : true,\n ...options,\n destroy(err, callback) {\n destroyImpl.destroyer(src, err)\n callback(err)\n }\n }).wrap(src)\n}\n","'use strict'\n\nconst { MathFloor, NumberIsInteger } = require('../../ours/primordials')\nconst { validateInteger } = require('../validators')\nconst { ERR_INVALID_ARG_VALUE } = require('../../ours/errors').codes\nlet defaultHighWaterMarkBytes = 16 * 1024\nlet defaultHighWaterMarkObjectMode = 16\nfunction highWaterMarkFrom(options, isDuplex, duplexKey) {\n return options.highWaterMark != null ? options.highWaterMark : isDuplex ? options[duplexKey] : null\n}\nfunction getDefaultHighWaterMark(objectMode) {\n return objectMode ? defaultHighWaterMarkObjectMode : defaultHighWaterMarkBytes\n}\nfunction setDefaultHighWaterMark(objectMode, value) {\n validateInteger(value, 'value', 0)\n if (objectMode) {\n defaultHighWaterMarkObjectMode = value\n } else {\n defaultHighWaterMarkBytes = value\n }\n}\nfunction getHighWaterMark(state, options, duplexKey, isDuplex) {\n const hwm = highWaterMarkFrom(options, isDuplex, duplexKey)\n if (hwm != null) {\n if (!NumberIsInteger(hwm) || hwm < 0) {\n const name = isDuplex ? `options.${duplexKey}` : 'options.highWaterMark'\n throw new ERR_INVALID_ARG_VALUE(name, hwm)\n }\n return MathFloor(hwm)\n }\n\n // Default value\n return getDefaultHighWaterMark(state.objectMode)\n}\nmodule.exports = {\n getHighWaterMark,\n getDefaultHighWaterMark,\n setDefaultHighWaterMark\n}\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n// a transform stream is a readable/writable stream where you do\n// something with the data. Sometimes it's called a \"filter\",\n// but that's not a great name for it, since that implies a thing where\n// some bits pass through, and others are simply ignored. (That would\n// be a valid example of a transform, of course.)\n//\n// While the output is causally related to the input, it's not a\n// necessarily symmetric or synchronous transformation. For example,\n// a zlib stream might take multiple plain-text writes(), and then\n// emit a single compressed chunk some time in the future.\n//\n// Here's how this works:\n//\n// The Transform stream has all the aspects of the readable and writable\n// stream classes. When you write(chunk), that calls _write(chunk,cb)\n// internally, and returns false if there's a lot of pending writes\n// buffered up. When you call read(), that calls _read(n) until\n// there's enough pending readable data buffered up.\n//\n// In a transform stream, the written data is placed in a buffer. When\n// _read(n) is called, it transforms the queued up data, calling the\n// buffered _write cb's as it consumes chunks. If consuming a single\n// written chunk would result in multiple output chunks, then the first\n// outputted bit calls the readcb, and subsequent chunks just go into\n// the read buffer, and will cause it to emit 'readable' if necessary.\n//\n// This way, back-pressure is actually determined by the reading side,\n// since _read has to be called to start processing a new chunk. However,\n// a pathological inflate type of transform can cause excessive buffering\n// here. For example, imagine a stream where every byte of input is\n// interpreted as an integer from 0-255, and then results in that many\n// bytes of output. Writing the 4 bytes {ff,ff,ff,ff} would result in\n// 1kb of data being output. In this case, you could write a very small\n// amount of input, and end up with a very large amount of output. In\n// such a pathological inflating mechanism, there'd be no way to tell\n// the system to stop doing the transform. A single 4MB write could\n// cause the system to run out of memory.\n//\n// However, even in such a pathological case, only a single written chunk\n// would be consumed, and then the rest would wait (un-transformed) until\n// the results of the previous transformed chunk were consumed.\n\n'use strict'\n\nconst { ObjectSetPrototypeOf, Symbol } = require('../../ours/primordials')\nmodule.exports = Transform\nconst { ERR_METHOD_NOT_IMPLEMENTED } = require('../../ours/errors').codes\nconst Duplex = require('./duplex')\nconst { getHighWaterMark } = require('./state')\nObjectSetPrototypeOf(Transform.prototype, Duplex.prototype)\nObjectSetPrototypeOf(Transform, Duplex)\nconst kCallback = Symbol('kCallback')\nfunction Transform(options) {\n if (!(this instanceof Transform)) return new Transform(options)\n\n // TODO (ronag): This should preferably always be\n // applied but would be semver-major. Or even better;\n // make Transform a Readable with the Writable interface.\n const readableHighWaterMark = options ? getHighWaterMark(this, options, 'readableHighWaterMark', true) : null\n if (readableHighWaterMark === 0) {\n // A Duplex will buffer both on the writable and readable side while\n // a Transform just wants to buffer hwm number of elements. To avoid\n // buffering twice we disable buffering on the writable side.\n options = {\n ...options,\n highWaterMark: null,\n readableHighWaterMark,\n // TODO (ronag): 0 is not optimal since we have\n // a \"bug\" where we check needDrain before calling _write and not after.\n // Refs: https://github.com/nodejs/node/pull/32887\n // Refs: https://github.com/nodejs/node/pull/35941\n writableHighWaterMark: options.writableHighWaterMark || 0\n }\n }\n Duplex.call(this, options)\n\n // We have implemented the _read method, and done the other things\n // that Readable wants before the first _read call, so unset the\n // sync guard flag.\n this._readableState.sync = false\n this[kCallback] = null\n if (options) {\n if (typeof options.transform === 'function') this._transform = options.transform\n if (typeof options.flush === 'function') this._flush = options.flush\n }\n\n // When the writable side finishes, then flush out anything remaining.\n // Backwards compat. Some Transform streams incorrectly implement _final\n // instead of or in addition to _flush. By using 'prefinish' instead of\n // implementing _final we continue supporting this unfortunate use case.\n this.on('prefinish', prefinish)\n}\nfunction final(cb) {\n if (typeof this._flush === 'function' && !this.destroyed) {\n this._flush((er, data) => {\n if (er) {\n if (cb) {\n cb(er)\n } else {\n this.destroy(er)\n }\n return\n }\n if (data != null) {\n this.push(data)\n }\n this.push(null)\n if (cb) {\n cb()\n }\n })\n } else {\n this.push(null)\n if (cb) {\n cb()\n }\n }\n}\nfunction prefinish() {\n if (this._final !== final) {\n final.call(this)\n }\n}\nTransform.prototype._final = final\nTransform.prototype._transform = function (chunk, encoding, callback) {\n throw new ERR_METHOD_NOT_IMPLEMENTED('_transform()')\n}\nTransform.prototype._write = function (chunk, encoding, callback) {\n const rState = this._readableState\n const wState = this._writableState\n const length = rState.length\n this._transform(chunk, encoding, (err, val) => {\n if (err) {\n callback(err)\n return\n }\n if (val != null) {\n this.push(val)\n }\n if (\n wState.ended ||\n // Backwards compat.\n length === rState.length ||\n // Backwards compat.\n rState.length < rState.highWaterMark\n ) {\n callback()\n } else {\n this[kCallback] = callback\n }\n })\n}\nTransform.prototype._read = function () {\n if (this[kCallback]) {\n const callback = this[kCallback]\n this[kCallback] = null\n callback()\n }\n}\n","'use strict'\n\nconst { SymbolAsyncIterator, SymbolIterator, SymbolFor } = require('../../ours/primordials')\n\n// We need to use SymbolFor to make these globally available\n// for interopt with readable-stream, i.e. readable-stream\n// and node core needs to be able to read/write private state\n// from each other for proper interoperability.\nconst kIsDestroyed = SymbolFor('nodejs.stream.destroyed')\nconst kIsErrored = SymbolFor('nodejs.stream.errored')\nconst kIsReadable = SymbolFor('nodejs.stream.readable')\nconst kIsWritable = SymbolFor('nodejs.stream.writable')\nconst kIsDisturbed = SymbolFor('nodejs.stream.disturbed')\nconst kIsClosedPromise = SymbolFor('nodejs.webstream.isClosedPromise')\nconst kControllerErrorFunction = SymbolFor('nodejs.webstream.controllerErrorFunction')\nfunction isReadableNodeStream(obj, strict = false) {\n var _obj$_readableState\n return !!(\n (\n obj &&\n typeof obj.pipe === 'function' &&\n typeof obj.on === 'function' &&\n (!strict || (typeof obj.pause === 'function' && typeof obj.resume === 'function')) &&\n (!obj._writableState ||\n ((_obj$_readableState = obj._readableState) === null || _obj$_readableState === undefined\n ? undefined\n : _obj$_readableState.readable) !== false) &&\n // Duplex\n (!obj._writableState || obj._readableState)\n ) // Writable has .pipe.\n )\n}\n\nfunction isWritableNodeStream(obj) {\n var _obj$_writableState\n return !!(\n (\n obj &&\n typeof obj.write === 'function' &&\n typeof obj.on === 'function' &&\n (!obj._readableState ||\n ((_obj$_writableState = obj._writableState) === null || _obj$_writableState === undefined\n ? undefined\n : _obj$_writableState.writable) !== false)\n ) // Duplex\n )\n}\n\nfunction isDuplexNodeStream(obj) {\n return !!(\n obj &&\n typeof obj.pipe === 'function' &&\n obj._readableState &&\n typeof obj.on === 'function' &&\n typeof obj.write === 'function'\n )\n}\nfunction isNodeStream(obj) {\n return (\n obj &&\n (obj._readableState ||\n obj._writableState ||\n (typeof obj.write === 'function' && typeof obj.on === 'function') ||\n (typeof obj.pipe === 'function' && typeof obj.on === 'function'))\n )\n}\nfunction isReadableStream(obj) {\n return !!(\n obj &&\n !isNodeStream(obj) &&\n typeof obj.pipeThrough === 'function' &&\n typeof obj.getReader === 'function' &&\n typeof obj.cancel === 'function'\n )\n}\nfunction isWritableStream(obj) {\n return !!(obj && !isNodeStream(obj) && typeof obj.getWriter === 'function' && typeof obj.abort === 'function')\n}\nfunction isTransformStream(obj) {\n return !!(obj && !isNodeStream(obj) && typeof obj.readable === 'object' && typeof obj.writable === 'object')\n}\nfunction isWebStream(obj) {\n return isReadableStream(obj) || isWritableStream(obj) || isTransformStream(obj)\n}\nfunction isIterable(obj, isAsync) {\n if (obj == null) return false\n if (isAsync === true) return typeof obj[SymbolAsyncIterator] === 'function'\n if (isAsync === false) return typeof obj[SymbolIterator] === 'function'\n return typeof obj[SymbolAsyncIterator] === 'function' || typeof obj[SymbolIterator] === 'function'\n}\nfunction isDestroyed(stream) {\n if (!isNodeStream(stream)) return null\n const wState = stream._writableState\n const rState = stream._readableState\n const state = wState || rState\n return !!(stream.destroyed || stream[kIsDestroyed] || (state !== null && state !== undefined && state.destroyed))\n}\n\n// Have been end():d.\nfunction isWritableEnded(stream) {\n if (!isWritableNodeStream(stream)) return null\n if (stream.writableEnded === true) return true\n const wState = stream._writableState\n if (wState !== null && wState !== undefined && wState.errored) return false\n if (typeof (wState === null || wState === undefined ? undefined : wState.ended) !== 'boolean') return null\n return wState.ended\n}\n\n// Have emitted 'finish'.\nfunction isWritableFinished(stream, strict) {\n if (!isWritableNodeStream(stream)) return null\n if (stream.writableFinished === true) return true\n const wState = stream._writableState\n if (wState !== null && wState !== undefined && wState.errored) return false\n if (typeof (wState === null || wState === undefined ? undefined : wState.finished) !== 'boolean') return null\n return !!(wState.finished || (strict === false && wState.ended === true && wState.length === 0))\n}\n\n// Have been push(null):d.\nfunction isReadableEnded(stream) {\n if (!isReadableNodeStream(stream)) return null\n if (stream.readableEnded === true) return true\n const rState = stream._readableState\n if (!rState || rState.errored) return false\n if (typeof (rState === null || rState === undefined ? undefined : rState.ended) !== 'boolean') return null\n return rState.ended\n}\n\n// Have emitted 'end'.\nfunction isReadableFinished(stream, strict) {\n if (!isReadableNodeStream(stream)) return null\n const rState = stream._readableState\n if (rState !== null && rState !== undefined && rState.errored) return false\n if (typeof (rState === null || rState === undefined ? undefined : rState.endEmitted) !== 'boolean') return null\n return !!(rState.endEmitted || (strict === false && rState.ended === true && rState.length === 0))\n}\nfunction isReadable(stream) {\n if (stream && stream[kIsReadable] != null) return stream[kIsReadable]\n if (typeof (stream === null || stream === undefined ? undefined : stream.readable) !== 'boolean') return null\n if (isDestroyed(stream)) return false\n return isReadableNodeStream(stream) && stream.readable && !isReadableFinished(stream)\n}\nfunction isWritable(stream) {\n if (stream && stream[kIsWritable] != null) return stream[kIsWritable]\n if (typeof (stream === null || stream === undefined ? undefined : stream.writable) !== 'boolean') return null\n if (isDestroyed(stream)) return false\n return isWritableNodeStream(stream) && stream.writable && !isWritableEnded(stream)\n}\nfunction isFinished(stream, opts) {\n if (!isNodeStream(stream)) {\n return null\n }\n if (isDestroyed(stream)) {\n return true\n }\n if ((opts === null || opts === undefined ? undefined : opts.readable) !== false && isReadable(stream)) {\n return false\n }\n if ((opts === null || opts === undefined ? undefined : opts.writable) !== false && isWritable(stream)) {\n return false\n }\n return true\n}\nfunction isWritableErrored(stream) {\n var _stream$_writableStat, _stream$_writableStat2\n if (!isNodeStream(stream)) {\n return null\n }\n if (stream.writableErrored) {\n return stream.writableErrored\n }\n return (_stream$_writableStat =\n (_stream$_writableStat2 = stream._writableState) === null || _stream$_writableStat2 === undefined\n ? undefined\n : _stream$_writableStat2.errored) !== null && _stream$_writableStat !== undefined\n ? _stream$_writableStat\n : null\n}\nfunction isReadableErrored(stream) {\n var _stream$_readableStat, _stream$_readableStat2\n if (!isNodeStream(stream)) {\n return null\n }\n if (stream.readableErrored) {\n return stream.readableErrored\n }\n return (_stream$_readableStat =\n (_stream$_readableStat2 = stream._readableState) === null || _stream$_readableStat2 === undefined\n ? undefined\n : _stream$_readableStat2.errored) !== null && _stream$_readableStat !== undefined\n ? _stream$_readableStat\n : null\n}\nfunction isClosed(stream) {\n if (!isNodeStream(stream)) {\n return null\n }\n if (typeof stream.closed === 'boolean') {\n return stream.closed\n }\n const wState = stream._writableState\n const rState = stream._readableState\n if (\n typeof (wState === null || wState === undefined ? undefined : wState.closed) === 'boolean' ||\n typeof (rState === null || rState === undefined ? undefined : rState.closed) === 'boolean'\n ) {\n return (\n (wState === null || wState === undefined ? undefined : wState.closed) ||\n (rState === null || rState === undefined ? undefined : rState.closed)\n )\n }\n if (typeof stream._closed === 'boolean' && isOutgoingMessage(stream)) {\n return stream._closed\n }\n return null\n}\nfunction isOutgoingMessage(stream) {\n return (\n typeof stream._closed === 'boolean' &&\n typeof stream._defaultKeepAlive === 'boolean' &&\n typeof stream._removedConnection === 'boolean' &&\n typeof stream._removedContLen === 'boolean'\n )\n}\nfunction isServerResponse(stream) {\n return typeof stream._sent100 === 'boolean' && isOutgoingMessage(stream)\n}\nfunction isServerRequest(stream) {\n var _stream$req\n return (\n typeof stream._consuming === 'boolean' &&\n typeof stream._dumped === 'boolean' &&\n ((_stream$req = stream.req) === null || _stream$req === undefined ? undefined : _stream$req.upgradeOrConnect) ===\n undefined\n )\n}\nfunction willEmitClose(stream) {\n if (!isNodeStream(stream)) return null\n const wState = stream._writableState\n const rState = stream._readableState\n const state = wState || rState\n return (\n (!state && isServerResponse(stream)) || !!(state && state.autoDestroy && state.emitClose && state.closed === false)\n )\n}\nfunction isDisturbed(stream) {\n var _stream$kIsDisturbed\n return !!(\n stream &&\n ((_stream$kIsDisturbed = stream[kIsDisturbed]) !== null && _stream$kIsDisturbed !== undefined\n ? _stream$kIsDisturbed\n : stream.readableDidRead || stream.readableAborted)\n )\n}\nfunction isErrored(stream) {\n var _ref,\n _ref2,\n _ref3,\n _ref4,\n _ref5,\n _stream$kIsErrored,\n _stream$_readableStat3,\n _stream$_writableStat3,\n _stream$_readableStat4,\n _stream$_writableStat4\n return !!(\n stream &&\n ((_ref =\n (_ref2 =\n (_ref3 =\n (_ref4 =\n (_ref5 =\n (_stream$kIsErrored = stream[kIsErrored]) !== null && _stream$kIsErrored !== undefined\n ? _stream$kIsErrored\n : stream.readableErrored) !== null && _ref5 !== undefined\n ? _ref5\n : stream.writableErrored) !== null && _ref4 !== undefined\n ? _ref4\n : (_stream$_readableStat3 = stream._readableState) === null || _stream$_readableStat3 === undefined\n ? undefined\n : _stream$_readableStat3.errorEmitted) !== null && _ref3 !== undefined\n ? _ref3\n : (_stream$_writableStat3 = stream._writableState) === null || _stream$_writableStat3 === undefined\n ? undefined\n : _stream$_writableStat3.errorEmitted) !== null && _ref2 !== undefined\n ? _ref2\n : (_stream$_readableStat4 = stream._readableState) === null || _stream$_readableStat4 === undefined\n ? undefined\n : _stream$_readableStat4.errored) !== null && _ref !== undefined\n ? _ref\n : (_stream$_writableStat4 = stream._writableState) === null || _stream$_writableStat4 === undefined\n ? undefined\n : _stream$_writableStat4.errored)\n )\n}\nmodule.exports = {\n isDestroyed,\n kIsDestroyed,\n isDisturbed,\n kIsDisturbed,\n isErrored,\n kIsErrored,\n isReadable,\n kIsReadable,\n kIsClosedPromise,\n kControllerErrorFunction,\n kIsWritable,\n isClosed,\n isDuplexNodeStream,\n isFinished,\n isIterable,\n isReadableNodeStream,\n isReadableStream,\n isReadableEnded,\n isReadableFinished,\n isReadableErrored,\n isNodeStream,\n isWebStream,\n isWritable,\n isWritableNodeStream,\n isWritableStream,\n isWritableEnded,\n isWritableFinished,\n isWritableErrored,\n isServerRequest,\n isServerResponse,\n willEmitClose,\n isTransformStream\n}\n","/* replacement start */\n\nconst process = require('process/')\n\n/* replacement end */\n// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n// A bit simpler than readable streams.\n// Implement an async ._write(chunk, encoding, cb), and it'll handle all\n// the drain event emission and buffering.\n\n;('use strict')\nconst {\n ArrayPrototypeSlice,\n Error,\n FunctionPrototypeSymbolHasInstance,\n ObjectDefineProperty,\n ObjectDefineProperties,\n ObjectSetPrototypeOf,\n StringPrototypeToLowerCase,\n Symbol,\n SymbolHasInstance\n} = require('../../ours/primordials')\nmodule.exports = Writable\nWritable.WritableState = WritableState\nconst { EventEmitter: EE } = require('events')\nconst Stream = require('./legacy').Stream\nconst { Buffer } = require('buffer')\nconst destroyImpl = require('./destroy')\nconst { addAbortSignal } = require('./add-abort-signal')\nconst { getHighWaterMark, getDefaultHighWaterMark } = require('./state')\nconst {\n ERR_INVALID_ARG_TYPE,\n ERR_METHOD_NOT_IMPLEMENTED,\n ERR_MULTIPLE_CALLBACK,\n ERR_STREAM_CANNOT_PIPE,\n ERR_STREAM_DESTROYED,\n ERR_STREAM_ALREADY_FINISHED,\n ERR_STREAM_NULL_VALUES,\n ERR_STREAM_WRITE_AFTER_END,\n ERR_UNKNOWN_ENCODING\n} = require('../../ours/errors').codes\nconst { errorOrDestroy } = destroyImpl\nObjectSetPrototypeOf(Writable.prototype, Stream.prototype)\nObjectSetPrototypeOf(Writable, Stream)\nfunction nop() {}\nconst kOnFinished = Symbol('kOnFinished')\nfunction WritableState(options, stream, isDuplex) {\n // Duplex streams are both readable and writable, but share\n // the same options object.\n // However, some cases require setting options to different\n // values for the readable and the writable sides of the duplex stream,\n // e.g. options.readableObjectMode vs. options.writableObjectMode, etc.\n if (typeof isDuplex !== 'boolean') isDuplex = stream instanceof require('./duplex')\n\n // Object stream flag to indicate whether or not this stream\n // contains buffers or objects.\n this.objectMode = !!(options && options.objectMode)\n if (isDuplex) this.objectMode = this.objectMode || !!(options && options.writableObjectMode)\n\n // The point at which write() starts returning false\n // Note: 0 is a valid value, means that we always return false if\n // the entire buffer is not flushed immediately on write().\n this.highWaterMark = options\n ? getHighWaterMark(this, options, 'writableHighWaterMark', isDuplex)\n : getDefaultHighWaterMark(false)\n\n // if _final has been called.\n this.finalCalled = false\n\n // drain event flag.\n this.needDrain = false\n // At the start of calling end()\n this.ending = false\n // When end() has been called, and returned.\n this.ended = false\n // When 'finish' is emitted.\n this.finished = false\n\n // Has it been destroyed\n this.destroyed = false\n\n // Should we decode strings into buffers before passing to _write?\n // this is here so that some node-core streams can optimize string\n // handling at a lower level.\n const noDecode = !!(options && options.decodeStrings === false)\n this.decodeStrings = !noDecode\n\n // Crypto is kind of old and crusty. Historically, its default string\n // encoding is 'binary' so we have to make this configurable.\n // Everything else in the universe uses 'utf8', though.\n this.defaultEncoding = (options && options.defaultEncoding) || 'utf8'\n\n // Not an actual buffer we keep track of, but a measurement\n // of how much we're waiting to get pushed to some underlying\n // socket or file.\n this.length = 0\n\n // A flag to see when we're in the middle of a write.\n this.writing = false\n\n // When true all writes will be buffered until .uncork() call.\n this.corked = 0\n\n // A flag to be able to tell if the onwrite cb is called immediately,\n // or on a later tick. We set this to true at first, because any\n // actions that shouldn't happen until \"later\" should generally also\n // not happen before the first write call.\n this.sync = true\n\n // A flag to know if we're processing previously buffered items, which\n // may call the _write() callback in the same tick, so that we don't\n // end up in an overlapped onwrite situation.\n this.bufferProcessing = false\n\n // The callback that's passed to _write(chunk, cb).\n this.onwrite = onwrite.bind(undefined, stream)\n\n // The callback that the user supplies to write(chunk, encoding, cb).\n this.writecb = null\n\n // The amount that is being written when _write is called.\n this.writelen = 0\n\n // Storage for data passed to the afterWrite() callback in case of\n // synchronous _write() completion.\n this.afterWriteTickInfo = null\n resetBuffer(this)\n\n // Number of pending user-supplied write callbacks\n // this must be 0 before 'finish' can be emitted.\n this.pendingcb = 0\n\n // Stream is still being constructed and cannot be\n // destroyed until construction finished or failed.\n // Async construction is opt in, therefore we start as\n // constructed.\n this.constructed = true\n\n // Emit prefinish if the only thing we're waiting for is _write cbs\n // This is relevant for synchronous Transform streams.\n this.prefinished = false\n\n // True if the error was already emitted and should not be thrown again.\n this.errorEmitted = false\n\n // Should close be emitted on destroy. Defaults to true.\n this.emitClose = !options || options.emitClose !== false\n\n // Should .destroy() be called after 'finish' (and potentially 'end').\n this.autoDestroy = !options || options.autoDestroy !== false\n\n // Indicates whether the stream has errored. When true all write() calls\n // should return false. This is needed since when autoDestroy\n // is disabled we need a way to tell whether the stream has failed.\n this.errored = null\n\n // Indicates whether the stream has finished destroying.\n this.closed = false\n\n // True if close has been emitted or would have been emitted\n // depending on emitClose.\n this.closeEmitted = false\n this[kOnFinished] = []\n}\nfunction resetBuffer(state) {\n state.buffered = []\n state.bufferedIndex = 0\n state.allBuffers = true\n state.allNoop = true\n}\nWritableState.prototype.getBuffer = function getBuffer() {\n return ArrayPrototypeSlice(this.buffered, this.bufferedIndex)\n}\nObjectDefineProperty(WritableState.prototype, 'bufferedRequestCount', {\n __proto__: null,\n get() {\n return this.buffered.length - this.bufferedIndex\n }\n})\nfunction Writable(options) {\n // Writable ctor is applied to Duplexes, too.\n // `realHasInstance` is necessary because using plain `instanceof`\n // would return false, as no `_writableState` property is attached.\n\n // Trying to use the custom `instanceof` for Writable here will also break the\n // Node.js LazyTransform implementation, which has a non-trivial getter for\n // `_writableState` that would lead to infinite recursion.\n\n // Checking for a Stream.Duplex instance is faster here instead of inside\n // the WritableState constructor, at least with V8 6.5.\n const isDuplex = this instanceof require('./duplex')\n if (!isDuplex && !FunctionPrototypeSymbolHasInstance(Writable, this)) return new Writable(options)\n this._writableState = new WritableState(options, this, isDuplex)\n if (options) {\n if (typeof options.write === 'function') this._write = options.write\n if (typeof options.writev === 'function') this._writev = options.writev\n if (typeof options.destroy === 'function') this._destroy = options.destroy\n if (typeof options.final === 'function') this._final = options.final\n if (typeof options.construct === 'function') this._construct = options.construct\n if (options.signal) addAbortSignal(options.signal, this)\n }\n Stream.call(this, options)\n destroyImpl.construct(this, () => {\n const state = this._writableState\n if (!state.writing) {\n clearBuffer(this, state)\n }\n finishMaybe(this, state)\n })\n}\nObjectDefineProperty(Writable, SymbolHasInstance, {\n __proto__: null,\n value: function (object) {\n if (FunctionPrototypeSymbolHasInstance(this, object)) return true\n if (this !== Writable) return false\n return object && object._writableState instanceof WritableState\n }\n})\n\n// Otherwise people can pipe Writable streams, which is just wrong.\nWritable.prototype.pipe = function () {\n errorOrDestroy(this, new ERR_STREAM_CANNOT_PIPE())\n}\nfunction _write(stream, chunk, encoding, cb) {\n const state = stream._writableState\n if (typeof encoding === 'function') {\n cb = encoding\n encoding = state.defaultEncoding\n } else {\n if (!encoding) encoding = state.defaultEncoding\n else if (encoding !== 'buffer' && !Buffer.isEncoding(encoding)) throw new ERR_UNKNOWN_ENCODING(encoding)\n if (typeof cb !== 'function') cb = nop\n }\n if (chunk === null) {\n throw new ERR_STREAM_NULL_VALUES()\n } else if (!state.objectMode) {\n if (typeof chunk === 'string') {\n if (state.decodeStrings !== false) {\n chunk = Buffer.from(chunk, encoding)\n encoding = 'buffer'\n }\n } else if (chunk instanceof Buffer) {\n encoding = 'buffer'\n } else if (Stream._isUint8Array(chunk)) {\n chunk = Stream._uint8ArrayToBuffer(chunk)\n encoding = 'buffer'\n } else {\n throw new ERR_INVALID_ARG_TYPE('chunk', ['string', 'Buffer', 'Uint8Array'], chunk)\n }\n }\n let err\n if (state.ending) {\n err = new ERR_STREAM_WRITE_AFTER_END()\n } else if (state.destroyed) {\n err = new ERR_STREAM_DESTROYED('write')\n }\n if (err) {\n process.nextTick(cb, err)\n errorOrDestroy(stream, err, true)\n return err\n }\n state.pendingcb++\n return writeOrBuffer(stream, state, chunk, encoding, cb)\n}\nWritable.prototype.write = function (chunk, encoding, cb) {\n return _write(this, chunk, encoding, cb) === true\n}\nWritable.prototype.cork = function () {\n this._writableState.corked++\n}\nWritable.prototype.uncork = function () {\n const state = this._writableState\n if (state.corked) {\n state.corked--\n if (!state.writing) clearBuffer(this, state)\n }\n}\nWritable.prototype.setDefaultEncoding = function setDefaultEncoding(encoding) {\n // node::ParseEncoding() requires lower case.\n if (typeof encoding === 'string') encoding = StringPrototypeToLowerCase(encoding)\n if (!Buffer.isEncoding(encoding)) throw new ERR_UNKNOWN_ENCODING(encoding)\n this._writableState.defaultEncoding = encoding\n return this\n}\n\n// If we're already writing something, then just put this\n// in the queue, and wait our turn. Otherwise, call _write\n// If we return false, then we need a drain event, so set that flag.\nfunction writeOrBuffer(stream, state, chunk, encoding, callback) {\n const len = state.objectMode ? 1 : chunk.length\n state.length += len\n\n // stream._write resets state.length\n const ret = state.length < state.highWaterMark\n // We must ensure that previous needDrain will not be reset to false.\n if (!ret) state.needDrain = true\n if (state.writing || state.corked || state.errored || !state.constructed) {\n state.buffered.push({\n chunk,\n encoding,\n callback\n })\n if (state.allBuffers && encoding !== 'buffer') {\n state.allBuffers = false\n }\n if (state.allNoop && callback !== nop) {\n state.allNoop = false\n }\n } else {\n state.writelen = len\n state.writecb = callback\n state.writing = true\n state.sync = true\n stream._write(chunk, encoding, state.onwrite)\n state.sync = false\n }\n\n // Return false if errored or destroyed in order to break\n // any synchronous while(stream.write(data)) loops.\n return ret && !state.errored && !state.destroyed\n}\nfunction doWrite(stream, state, writev, len, chunk, encoding, cb) {\n state.writelen = len\n state.writecb = cb\n state.writing = true\n state.sync = true\n if (state.destroyed) state.onwrite(new ERR_STREAM_DESTROYED('write'))\n else if (writev) stream._writev(chunk, state.onwrite)\n else stream._write(chunk, encoding, state.onwrite)\n state.sync = false\n}\nfunction onwriteError(stream, state, er, cb) {\n --state.pendingcb\n cb(er)\n // Ensure callbacks are invoked even when autoDestroy is\n // not enabled. Passing `er` here doesn't make sense since\n // it's related to one specific write, not to the buffered\n // writes.\n errorBuffer(state)\n // This can emit error, but error must always follow cb.\n errorOrDestroy(stream, er)\n}\nfunction onwrite(stream, er) {\n const state = stream._writableState\n const sync = state.sync\n const cb = state.writecb\n if (typeof cb !== 'function') {\n errorOrDestroy(stream, new ERR_MULTIPLE_CALLBACK())\n return\n }\n state.writing = false\n state.writecb = null\n state.length -= state.writelen\n state.writelen = 0\n if (er) {\n // Avoid V8 leak, https://github.com/nodejs/node/pull/34103#issuecomment-652002364\n er.stack // eslint-disable-line no-unused-expressions\n\n if (!state.errored) {\n state.errored = er\n }\n\n // In case of duplex streams we need to notify the readable side of the\n // error.\n if (stream._readableState && !stream._readableState.errored) {\n stream._readableState.errored = er\n }\n if (sync) {\n process.nextTick(onwriteError, stream, state, er, cb)\n } else {\n onwriteError(stream, state, er, cb)\n }\n } else {\n if (state.buffered.length > state.bufferedIndex) {\n clearBuffer(stream, state)\n }\n if (sync) {\n // It is a common case that the callback passed to .write() is always\n // the same. In that case, we do not schedule a new nextTick(), but\n // rather just increase a counter, to improve performance and avoid\n // memory allocations.\n if (state.afterWriteTickInfo !== null && state.afterWriteTickInfo.cb === cb) {\n state.afterWriteTickInfo.count++\n } else {\n state.afterWriteTickInfo = {\n count: 1,\n cb,\n stream,\n state\n }\n process.nextTick(afterWriteTick, state.afterWriteTickInfo)\n }\n } else {\n afterWrite(stream, state, 1, cb)\n }\n }\n}\nfunction afterWriteTick({ stream, state, count, cb }) {\n state.afterWriteTickInfo = null\n return afterWrite(stream, state, count, cb)\n}\nfunction afterWrite(stream, state, count, cb) {\n const needDrain = !state.ending && !stream.destroyed && state.length === 0 && state.needDrain\n if (needDrain) {\n state.needDrain = false\n stream.emit('drain')\n }\n while (count-- > 0) {\n state.pendingcb--\n cb()\n }\n if (state.destroyed) {\n errorBuffer(state)\n }\n finishMaybe(stream, state)\n}\n\n// If there's something in the buffer waiting, then invoke callbacks.\nfunction errorBuffer(state) {\n if (state.writing) {\n return\n }\n for (let n = state.bufferedIndex; n < state.buffered.length; ++n) {\n var _state$errored\n const { chunk, callback } = state.buffered[n]\n const len = state.objectMode ? 1 : chunk.length\n state.length -= len\n callback(\n (_state$errored = state.errored) !== null && _state$errored !== undefined\n ? _state$errored\n : new ERR_STREAM_DESTROYED('write')\n )\n }\n const onfinishCallbacks = state[kOnFinished].splice(0)\n for (let i = 0; i < onfinishCallbacks.length; i++) {\n var _state$errored2\n onfinishCallbacks[i](\n (_state$errored2 = state.errored) !== null && _state$errored2 !== undefined\n ? _state$errored2\n : new ERR_STREAM_DESTROYED('end')\n )\n }\n resetBuffer(state)\n}\n\n// If there's something in the buffer waiting, then process it.\nfunction clearBuffer(stream, state) {\n if (state.corked || state.bufferProcessing || state.destroyed || !state.constructed) {\n return\n }\n const { buffered, bufferedIndex, objectMode } = state\n const bufferedLength = buffered.length - bufferedIndex\n if (!bufferedLength) {\n return\n }\n let i = bufferedIndex\n state.bufferProcessing = true\n if (bufferedLength > 1 && stream._writev) {\n state.pendingcb -= bufferedLength - 1\n const callback = state.allNoop\n ? nop\n : (err) => {\n for (let n = i; n < buffered.length; ++n) {\n buffered[n].callback(err)\n }\n }\n // Make a copy of `buffered` if it's going to be used by `callback` above,\n // since `doWrite` will mutate the array.\n const chunks = state.allNoop && i === 0 ? buffered : ArrayPrototypeSlice(buffered, i)\n chunks.allBuffers = state.allBuffers\n doWrite(stream, state, true, state.length, chunks, '', callback)\n resetBuffer(state)\n } else {\n do {\n const { chunk, encoding, callback } = buffered[i]\n buffered[i++] = null\n const len = objectMode ? 1 : chunk.length\n doWrite(stream, state, false, len, chunk, encoding, callback)\n } while (i < buffered.length && !state.writing)\n if (i === buffered.length) {\n resetBuffer(state)\n } else if (i > 256) {\n buffered.splice(0, i)\n state.bufferedIndex = 0\n } else {\n state.bufferedIndex = i\n }\n }\n state.bufferProcessing = false\n}\nWritable.prototype._write = function (chunk, encoding, cb) {\n if (this._writev) {\n this._writev(\n [\n {\n chunk,\n encoding\n }\n ],\n cb\n )\n } else {\n throw new ERR_METHOD_NOT_IMPLEMENTED('_write()')\n }\n}\nWritable.prototype._writev = null\nWritable.prototype.end = function (chunk, encoding, cb) {\n const state = this._writableState\n if (typeof chunk === 'function') {\n cb = chunk\n chunk = null\n encoding = null\n } else if (typeof encoding === 'function') {\n cb = encoding\n encoding = null\n }\n let err\n if (chunk !== null && chunk !== undefined) {\n const ret = _write(this, chunk, encoding)\n if (ret instanceof Error) {\n err = ret\n }\n }\n\n // .end() fully uncorks.\n if (state.corked) {\n state.corked = 1\n this.uncork()\n }\n if (err) {\n // Do nothing...\n } else if (!state.errored && !state.ending) {\n // This is forgiving in terms of unnecessary calls to end() and can hide\n // logic errors. However, usually such errors are harmless and causing a\n // hard error can be disproportionately destructive. It is not always\n // trivial for the user to determine whether end() needs to be called\n // or not.\n\n state.ending = true\n finishMaybe(this, state, true)\n state.ended = true\n } else if (state.finished) {\n err = new ERR_STREAM_ALREADY_FINISHED('end')\n } else if (state.destroyed) {\n err = new ERR_STREAM_DESTROYED('end')\n }\n if (typeof cb === 'function') {\n if (err || state.finished) {\n process.nextTick(cb, err)\n } else {\n state[kOnFinished].push(cb)\n }\n }\n return this\n}\nfunction needFinish(state) {\n return (\n state.ending &&\n !state.destroyed &&\n state.constructed &&\n state.length === 0 &&\n !state.errored &&\n state.buffered.length === 0 &&\n !state.finished &&\n !state.writing &&\n !state.errorEmitted &&\n !state.closeEmitted\n )\n}\nfunction callFinal(stream, state) {\n let called = false\n function onFinish(err) {\n if (called) {\n errorOrDestroy(stream, err !== null && err !== undefined ? err : ERR_MULTIPLE_CALLBACK())\n return\n }\n called = true\n state.pendingcb--\n if (err) {\n const onfinishCallbacks = state[kOnFinished].splice(0)\n for (let i = 0; i < onfinishCallbacks.length; i++) {\n onfinishCallbacks[i](err)\n }\n errorOrDestroy(stream, err, state.sync)\n } else if (needFinish(state)) {\n state.prefinished = true\n stream.emit('prefinish')\n // Backwards compat. Don't check state.sync here.\n // Some streams assume 'finish' will be emitted\n // asynchronously relative to _final callback.\n state.pendingcb++\n process.nextTick(finish, stream, state)\n }\n }\n state.sync = true\n state.pendingcb++\n try {\n stream._final(onFinish)\n } catch (err) {\n onFinish(err)\n }\n state.sync = false\n}\nfunction prefinish(stream, state) {\n if (!state.prefinished && !state.finalCalled) {\n if (typeof stream._final === 'function' && !state.destroyed) {\n state.finalCalled = true\n callFinal(stream, state)\n } else {\n state.prefinished = true\n stream.emit('prefinish')\n }\n }\n}\nfunction finishMaybe(stream, state, sync) {\n if (needFinish(state)) {\n prefinish(stream, state)\n if (state.pendingcb === 0) {\n if (sync) {\n state.pendingcb++\n process.nextTick(\n (stream, state) => {\n if (needFinish(state)) {\n finish(stream, state)\n } else {\n state.pendingcb--\n }\n },\n stream,\n state\n )\n } else if (needFinish(state)) {\n state.pendingcb++\n finish(stream, state)\n }\n }\n }\n}\nfunction finish(stream, state) {\n state.pendingcb--\n state.finished = true\n const onfinishCallbacks = state[kOnFinished].splice(0)\n for (let i = 0; i < onfinishCallbacks.length; i++) {\n onfinishCallbacks[i]()\n }\n stream.emit('finish')\n if (state.autoDestroy) {\n // In case of duplex streams we need a way to detect\n // if the readable side is ready for autoDestroy as well.\n const rState = stream._readableState\n const autoDestroy =\n !rState ||\n (rState.autoDestroy &&\n // We don't expect the readable to ever 'end'\n // if readable is explicitly set to false.\n (rState.endEmitted || rState.readable === false))\n if (autoDestroy) {\n stream.destroy()\n }\n }\n}\nObjectDefineProperties(Writable.prototype, {\n closed: {\n __proto__: null,\n get() {\n return this._writableState ? this._writableState.closed : false\n }\n },\n destroyed: {\n __proto__: null,\n get() {\n return this._writableState ? this._writableState.destroyed : false\n },\n set(value) {\n // Backward compatibility, the user is explicitly managing destroyed.\n if (this._writableState) {\n this._writableState.destroyed = value\n }\n }\n },\n writable: {\n __proto__: null,\n get() {\n const w = this._writableState\n // w.writable === false means that this is part of a Duplex stream\n // where the writable side was disabled upon construction.\n // Compat. The user might manually disable writable side through\n // deprecated setter.\n return !!w && w.writable !== false && !w.destroyed && !w.errored && !w.ending && !w.ended\n },\n set(val) {\n // Backwards compatible.\n if (this._writableState) {\n this._writableState.writable = !!val\n }\n }\n },\n writableFinished: {\n __proto__: null,\n get() {\n return this._writableState ? this._writableState.finished : false\n }\n },\n writableObjectMode: {\n __proto__: null,\n get() {\n return this._writableState ? this._writableState.objectMode : false\n }\n },\n writableBuffer: {\n __proto__: null,\n get() {\n return this._writableState && this._writableState.getBuffer()\n }\n },\n writableEnded: {\n __proto__: null,\n get() {\n return this._writableState ? this._writableState.ending : false\n }\n },\n writableNeedDrain: {\n __proto__: null,\n get() {\n const wState = this._writableState\n if (!wState) return false\n return !wState.destroyed && !wState.ending && wState.needDrain\n }\n },\n writableHighWaterMark: {\n __proto__: null,\n get() {\n return this._writableState && this._writableState.highWaterMark\n }\n },\n writableCorked: {\n __proto__: null,\n get() {\n return this._writableState ? this._writableState.corked : 0\n }\n },\n writableLength: {\n __proto__: null,\n get() {\n return this._writableState && this._writableState.length\n }\n },\n errored: {\n __proto__: null,\n enumerable: false,\n get() {\n return this._writableState ? this._writableState.errored : null\n }\n },\n writableAborted: {\n __proto__: null,\n enumerable: false,\n get: function () {\n return !!(\n this._writableState.writable !== false &&\n (this._writableState.destroyed || this._writableState.errored) &&\n !this._writableState.finished\n )\n }\n }\n})\nconst destroy = destroyImpl.destroy\nWritable.prototype.destroy = function (err, cb) {\n const state = this._writableState\n\n // Invoke pending callbacks.\n if (!state.destroyed && (state.bufferedIndex < state.buffered.length || state[kOnFinished].length)) {\n process.nextTick(errorBuffer, state)\n }\n destroy.call(this, err, cb)\n return this\n}\nWritable.prototype._undestroy = destroyImpl.undestroy\nWritable.prototype._destroy = function (err, cb) {\n cb(err)\n}\nWritable.prototype[EE.captureRejectionSymbol] = function (err) {\n this.destroy(err)\n}\nlet webStreamsAdapters\n\n// Lazy to avoid circular references\nfunction lazyWebStreams() {\n if (webStreamsAdapters === undefined) webStreamsAdapters = {}\n return webStreamsAdapters\n}\nWritable.fromWeb = function (writableStream, options) {\n return lazyWebStreams().newStreamWritableFromWritableStream(writableStream, options)\n}\nWritable.toWeb = function (streamWritable) {\n return lazyWebStreams().newWritableStreamFromStreamWritable(streamWritable)\n}\n","/* eslint jsdoc/require-jsdoc: \"error\" */\n\n'use strict'\n\nconst {\n ArrayIsArray,\n ArrayPrototypeIncludes,\n ArrayPrototypeJoin,\n ArrayPrototypeMap,\n NumberIsInteger,\n NumberIsNaN,\n NumberMAX_SAFE_INTEGER,\n NumberMIN_SAFE_INTEGER,\n NumberParseInt,\n ObjectPrototypeHasOwnProperty,\n RegExpPrototypeExec,\n String,\n StringPrototypeToUpperCase,\n StringPrototypeTrim\n} = require('../ours/primordials')\nconst {\n hideStackFrames,\n codes: { ERR_SOCKET_BAD_PORT, ERR_INVALID_ARG_TYPE, ERR_INVALID_ARG_VALUE, ERR_OUT_OF_RANGE, ERR_UNKNOWN_SIGNAL }\n} = require('../ours/errors')\nconst { normalizeEncoding } = require('../ours/util')\nconst { isAsyncFunction, isArrayBufferView } = require('../ours/util').types\nconst signals = {}\n\n/**\n * @param {*} value\n * @returns {boolean}\n */\nfunction isInt32(value) {\n return value === (value | 0)\n}\n\n/**\n * @param {*} value\n * @returns {boolean}\n */\nfunction isUint32(value) {\n return value === value >>> 0\n}\nconst octalReg = /^[0-7]+$/\nconst modeDesc = 'must be a 32-bit unsigned integer or an octal string'\n\n/**\n * Parse and validate values that will be converted into mode_t (the S_*\n * constants). Only valid numbers and octal strings are allowed. They could be\n * converted to 32-bit unsigned integers or non-negative signed integers in the\n * C++ land, but any value higher than 0o777 will result in platform-specific\n * behaviors.\n * @param {*} value Values to be validated\n * @param {string} name Name of the argument\n * @param {number} [def] If specified, will be returned for invalid values\n * @returns {number}\n */\nfunction parseFileMode(value, name, def) {\n if (typeof value === 'undefined') {\n value = def\n }\n if (typeof value === 'string') {\n if (RegExpPrototypeExec(octalReg, value) === null) {\n throw new ERR_INVALID_ARG_VALUE(name, value, modeDesc)\n }\n value = NumberParseInt(value, 8)\n }\n validateUint32(value, name)\n return value\n}\n\n/**\n * @callback validateInteger\n * @param {*} value\n * @param {string} name\n * @param {number} [min]\n * @param {number} [max]\n * @returns {asserts value is number}\n */\n\n/** @type {validateInteger} */\nconst validateInteger = hideStackFrames((value, name, min = NumberMIN_SAFE_INTEGER, max = NumberMAX_SAFE_INTEGER) => {\n if (typeof value !== 'number') throw new ERR_INVALID_ARG_TYPE(name, 'number', value)\n if (!NumberIsInteger(value)) throw new ERR_OUT_OF_RANGE(name, 'an integer', value)\n if (value < min || value > max) throw new ERR_OUT_OF_RANGE(name, `>= ${min} && <= ${max}`, value)\n})\n\n/**\n * @callback validateInt32\n * @param {*} value\n * @param {string} name\n * @param {number} [min]\n * @param {number} [max]\n * @returns {asserts value is number}\n */\n\n/** @type {validateInt32} */\nconst validateInt32 = hideStackFrames((value, name, min = -2147483648, max = 2147483647) => {\n // The defaults for min and max correspond to the limits of 32-bit integers.\n if (typeof value !== 'number') {\n throw new ERR_INVALID_ARG_TYPE(name, 'number', value)\n }\n if (!NumberIsInteger(value)) {\n throw new ERR_OUT_OF_RANGE(name, 'an integer', value)\n }\n if (value < min || value > max) {\n throw new ERR_OUT_OF_RANGE(name, `>= ${min} && <= ${max}`, value)\n }\n})\n\n/**\n * @callback validateUint32\n * @param {*} value\n * @param {string} name\n * @param {number|boolean} [positive=false]\n * @returns {asserts value is number}\n */\n\n/** @type {validateUint32} */\nconst validateUint32 = hideStackFrames((value, name, positive = false) => {\n if (typeof value !== 'number') {\n throw new ERR_INVALID_ARG_TYPE(name, 'number', value)\n }\n if (!NumberIsInteger(value)) {\n throw new ERR_OUT_OF_RANGE(name, 'an integer', value)\n }\n const min = positive ? 1 : 0\n // 2 ** 32 === 4294967296\n const max = 4294967295\n if (value < min || value > max) {\n throw new ERR_OUT_OF_RANGE(name, `>= ${min} && <= ${max}`, value)\n }\n})\n\n/**\n * @callback validateString\n * @param {*} value\n * @param {string} name\n * @returns {asserts value is string}\n */\n\n/** @type {validateString} */\nfunction validateString(value, name) {\n if (typeof value !== 'string') throw new ERR_INVALID_ARG_TYPE(name, 'string', value)\n}\n\n/**\n * @callback validateNumber\n * @param {*} value\n * @param {string} name\n * @param {number} [min]\n * @param {number} [max]\n * @returns {asserts value is number}\n */\n\n/** @type {validateNumber} */\nfunction validateNumber(value, name, min = undefined, max) {\n if (typeof value !== 'number') throw new ERR_INVALID_ARG_TYPE(name, 'number', value)\n if (\n (min != null && value < min) ||\n (max != null && value > max) ||\n ((min != null || max != null) && NumberIsNaN(value))\n ) {\n throw new ERR_OUT_OF_RANGE(\n name,\n `${min != null ? `>= ${min}` : ''}${min != null && max != null ? ' && ' : ''}${max != null ? `<= ${max}` : ''}`,\n value\n )\n }\n}\n\n/**\n * @callback validateOneOf\n * @template T\n * @param {T} value\n * @param {string} name\n * @param {T[]} oneOf\n */\n\n/** @type {validateOneOf} */\nconst validateOneOf = hideStackFrames((value, name, oneOf) => {\n if (!ArrayPrototypeIncludes(oneOf, value)) {\n const allowed = ArrayPrototypeJoin(\n ArrayPrototypeMap(oneOf, (v) => (typeof v === 'string' ? `'${v}'` : String(v))),\n ', '\n )\n const reason = 'must be one of: ' + allowed\n throw new ERR_INVALID_ARG_VALUE(name, value, reason)\n }\n})\n\n/**\n * @callback validateBoolean\n * @param {*} value\n * @param {string} name\n * @returns {asserts value is boolean}\n */\n\n/** @type {validateBoolean} */\nfunction validateBoolean(value, name) {\n if (typeof value !== 'boolean') throw new ERR_INVALID_ARG_TYPE(name, 'boolean', value)\n}\n\n/**\n * @param {any} options\n * @param {string} key\n * @param {boolean} defaultValue\n * @returns {boolean}\n */\nfunction getOwnPropertyValueOrDefault(options, key, defaultValue) {\n return options == null || !ObjectPrototypeHasOwnProperty(options, key) ? defaultValue : options[key]\n}\n\n/**\n * @callback validateObject\n * @param {*} value\n * @param {string} name\n * @param {{\n * allowArray?: boolean,\n * allowFunction?: boolean,\n * nullable?: boolean\n * }} [options]\n */\n\n/** @type {validateObject} */\nconst validateObject = hideStackFrames((value, name, options = null) => {\n const allowArray = getOwnPropertyValueOrDefault(options, 'allowArray', false)\n const allowFunction = getOwnPropertyValueOrDefault(options, 'allowFunction', false)\n const nullable = getOwnPropertyValueOrDefault(options, 'nullable', false)\n if (\n (!nullable && value === null) ||\n (!allowArray && ArrayIsArray(value)) ||\n (typeof value !== 'object' && (!allowFunction || typeof value !== 'function'))\n ) {\n throw new ERR_INVALID_ARG_TYPE(name, 'Object', value)\n }\n})\n\n/**\n * @callback validateDictionary - We are using the Web IDL Standard definition\n * of \"dictionary\" here, which means any value\n * whose Type is either Undefined, Null, or\n * Object (which includes functions).\n * @param {*} value\n * @param {string} name\n * @see https://webidl.spec.whatwg.org/#es-dictionary\n * @see https://tc39.es/ecma262/#table-typeof-operator-results\n */\n\n/** @type {validateDictionary} */\nconst validateDictionary = hideStackFrames((value, name) => {\n if (value != null && typeof value !== 'object' && typeof value !== 'function') {\n throw new ERR_INVALID_ARG_TYPE(name, 'a dictionary', value)\n }\n})\n\n/**\n * @callback validateArray\n * @param {*} value\n * @param {string} name\n * @param {number} [minLength]\n * @returns {asserts value is any[]}\n */\n\n/** @type {validateArray} */\nconst validateArray = hideStackFrames((value, name, minLength = 0) => {\n if (!ArrayIsArray(value)) {\n throw new ERR_INVALID_ARG_TYPE(name, 'Array', value)\n }\n if (value.length < minLength) {\n const reason = `must be longer than ${minLength}`\n throw new ERR_INVALID_ARG_VALUE(name, value, reason)\n }\n})\n\n/**\n * @callback validateStringArray\n * @param {*} value\n * @param {string} name\n * @returns {asserts value is string[]}\n */\n\n/** @type {validateStringArray} */\nfunction validateStringArray(value, name) {\n validateArray(value, name)\n for (let i = 0; i < value.length; i++) {\n validateString(value[i], `${name}[${i}]`)\n }\n}\n\n/**\n * @callback validateBooleanArray\n * @param {*} value\n * @param {string} name\n * @returns {asserts value is boolean[]}\n */\n\n/** @type {validateBooleanArray} */\nfunction validateBooleanArray(value, name) {\n validateArray(value, name)\n for (let i = 0; i < value.length; i++) {\n validateBoolean(value[i], `${name}[${i}]`)\n }\n}\n\n/**\n * @callback validateAbortSignalArray\n * @param {*} value\n * @param {string} name\n * @returns {asserts value is AbortSignal[]}\n */\n\n/** @type {validateAbortSignalArray} */\nfunction validateAbortSignalArray(value, name) {\n validateArray(value, name)\n for (let i = 0; i < value.length; i++) {\n const signal = value[i]\n const indexedName = `${name}[${i}]`\n if (signal == null) {\n throw new ERR_INVALID_ARG_TYPE(indexedName, 'AbortSignal', signal)\n }\n validateAbortSignal(signal, indexedName)\n }\n}\n\n/**\n * @param {*} signal\n * @param {string} [name='signal']\n * @returns {asserts signal is keyof signals}\n */\nfunction validateSignalName(signal, name = 'signal') {\n validateString(signal, name)\n if (signals[signal] === undefined) {\n if (signals[StringPrototypeToUpperCase(signal)] !== undefined) {\n throw new ERR_UNKNOWN_SIGNAL(signal + ' (signals must use all capital letters)')\n }\n throw new ERR_UNKNOWN_SIGNAL(signal)\n }\n}\n\n/**\n * @callback validateBuffer\n * @param {*} buffer\n * @param {string} [name='buffer']\n * @returns {asserts buffer is ArrayBufferView}\n */\n\n/** @type {validateBuffer} */\nconst validateBuffer = hideStackFrames((buffer, name = 'buffer') => {\n if (!isArrayBufferView(buffer)) {\n throw new ERR_INVALID_ARG_TYPE(name, ['Buffer', 'TypedArray', 'DataView'], buffer)\n }\n})\n\n/**\n * @param {string} data\n * @param {string} encoding\n */\nfunction validateEncoding(data, encoding) {\n const normalizedEncoding = normalizeEncoding(encoding)\n const length = data.length\n if (normalizedEncoding === 'hex' && length % 2 !== 0) {\n throw new ERR_INVALID_ARG_VALUE('encoding', encoding, `is invalid for data of length ${length}`)\n }\n}\n\n/**\n * Check that the port number is not NaN when coerced to a number,\n * is an integer and that it falls within the legal range of port numbers.\n * @param {*} port\n * @param {string} [name='Port']\n * @param {boolean} [allowZero=true]\n * @returns {number}\n */\nfunction validatePort(port, name = 'Port', allowZero = true) {\n if (\n (typeof port !== 'number' && typeof port !== 'string') ||\n (typeof port === 'string' && StringPrototypeTrim(port).length === 0) ||\n +port !== +port >>> 0 ||\n port > 0xffff ||\n (port === 0 && !allowZero)\n ) {\n throw new ERR_SOCKET_BAD_PORT(name, port, allowZero)\n }\n return port | 0\n}\n\n/**\n * @callback validateAbortSignal\n * @param {*} signal\n * @param {string} name\n */\n\n/** @type {validateAbortSignal} */\nconst validateAbortSignal = hideStackFrames((signal, name) => {\n if (signal !== undefined && (signal === null || typeof signal !== 'object' || !('aborted' in signal))) {\n throw new ERR_INVALID_ARG_TYPE(name, 'AbortSignal', signal)\n }\n})\n\n/**\n * @callback validateFunction\n * @param {*} value\n * @param {string} name\n * @returns {asserts value is Function}\n */\n\n/** @type {validateFunction} */\nconst validateFunction = hideStackFrames((value, name) => {\n if (typeof value !== 'function') throw new ERR_INVALID_ARG_TYPE(name, 'Function', value)\n})\n\n/**\n * @callback validatePlainFunction\n * @param {*} value\n * @param {string} name\n * @returns {asserts value is Function}\n */\n\n/** @type {validatePlainFunction} */\nconst validatePlainFunction = hideStackFrames((value, name) => {\n if (typeof value !== 'function' || isAsyncFunction(value)) throw new ERR_INVALID_ARG_TYPE(name, 'Function', value)\n})\n\n/**\n * @callback validateUndefined\n * @param {*} value\n * @param {string} name\n * @returns {asserts value is undefined}\n */\n\n/** @type {validateUndefined} */\nconst validateUndefined = hideStackFrames((value, name) => {\n if (value !== undefined) throw new ERR_INVALID_ARG_TYPE(name, 'undefined', value)\n})\n\n/**\n * @template T\n * @param {T} value\n * @param {string} name\n * @param {T[]} union\n */\nfunction validateUnion(value, name, union) {\n if (!ArrayPrototypeIncludes(union, value)) {\n throw new ERR_INVALID_ARG_TYPE(name, `('${ArrayPrototypeJoin(union, '|')}')`, value)\n }\n}\n\n/*\n The rules for the Link header field are described here:\n https://www.rfc-editor.org/rfc/rfc8288.html#section-3\n\n This regex validates any string surrounded by angle brackets\n (not necessarily a valid URI reference) followed by zero or more\n link-params separated by semicolons.\n*/\nconst linkValueRegExp = /^(?:<[^>]*>)(?:\\s*;\\s*[^;\"\\s]+(?:=(\")?[^;\"\\s]*\\1)?)*$/\n\n/**\n * @param {any} value\n * @param {string} name\n */\nfunction validateLinkHeaderFormat(value, name) {\n if (typeof value === 'undefined' || !RegExpPrototypeExec(linkValueRegExp, value)) {\n throw new ERR_INVALID_ARG_VALUE(\n name,\n value,\n 'must be an array or string of format \"; rel=preload; as=style\"'\n )\n }\n}\n\n/**\n * @param {any} hints\n * @return {string}\n */\nfunction validateLinkHeaderValue(hints) {\n if (typeof hints === 'string') {\n validateLinkHeaderFormat(hints, 'hints')\n return hints\n } else if (ArrayIsArray(hints)) {\n const hintsLength = hints.length\n let result = ''\n if (hintsLength === 0) {\n return result\n }\n for (let i = 0; i < hintsLength; i++) {\n const link = hints[i]\n validateLinkHeaderFormat(link, 'hints')\n result += link\n if (i !== hintsLength - 1) {\n result += ', '\n }\n }\n return result\n }\n throw new ERR_INVALID_ARG_VALUE(\n 'hints',\n hints,\n 'must be an array or string of format \"; rel=preload; as=style\"'\n )\n}\nmodule.exports = {\n isInt32,\n isUint32,\n parseFileMode,\n validateArray,\n validateStringArray,\n validateBooleanArray,\n validateAbortSignalArray,\n validateBoolean,\n validateBuffer,\n validateDictionary,\n validateEncoding,\n validateFunction,\n validateInt32,\n validateInteger,\n validateNumber,\n validateObject,\n validateOneOf,\n validatePlainFunction,\n validatePort,\n validateSignalName,\n validateString,\n validateUint32,\n validateUndefined,\n validateUnion,\n validateAbortSignal,\n validateLinkHeaderValue\n}\n","'use strict'\n\nconst CustomStream = require('../stream')\nconst promises = require('../stream/promises')\nconst originalDestroy = CustomStream.Readable.destroy\nmodule.exports = CustomStream.Readable\n\n// Explicit export naming is needed for ESM\nmodule.exports._uint8ArrayToBuffer = CustomStream._uint8ArrayToBuffer\nmodule.exports._isUint8Array = CustomStream._isUint8Array\nmodule.exports.isDisturbed = CustomStream.isDisturbed\nmodule.exports.isErrored = CustomStream.isErrored\nmodule.exports.isReadable = CustomStream.isReadable\nmodule.exports.Readable = CustomStream.Readable\nmodule.exports.Writable = CustomStream.Writable\nmodule.exports.Duplex = CustomStream.Duplex\nmodule.exports.Transform = CustomStream.Transform\nmodule.exports.PassThrough = CustomStream.PassThrough\nmodule.exports.addAbortSignal = CustomStream.addAbortSignal\nmodule.exports.finished = CustomStream.finished\nmodule.exports.destroy = CustomStream.destroy\nmodule.exports.destroy = originalDestroy\nmodule.exports.pipeline = CustomStream.pipeline\nmodule.exports.compose = CustomStream.compose\nObject.defineProperty(CustomStream, 'promises', {\n configurable: true,\n enumerable: true,\n get() {\n return promises\n }\n})\nmodule.exports.Stream = CustomStream.Stream\n\n// Allow default importing\nmodule.exports.default = module.exports\n","'use strict'\n\nconst { format, inspect, AggregateError: CustomAggregateError } = require('./util')\n\n/*\n This file is a reduced and adapted version of the main lib/internal/errors.js file defined at\n\n https://github.com/nodejs/node/blob/master/lib/internal/errors.js\n\n Don't try to replace with the original file and keep it up to date (starting from E(...) definitions)\n with the upstream file.\n*/\n\nconst AggregateError = globalThis.AggregateError || CustomAggregateError\nconst kIsNodeError = Symbol('kIsNodeError')\nconst kTypes = [\n 'string',\n 'function',\n 'number',\n 'object',\n // Accept 'Function' and 'Object' as alternative to the lower cased version.\n 'Function',\n 'Object',\n 'boolean',\n 'bigint',\n 'symbol'\n]\nconst classRegExp = /^([A-Z][a-z0-9]*)+$/\nconst nodeInternalPrefix = '__node_internal_'\nconst codes = {}\nfunction assert(value, message) {\n if (!value) {\n throw new codes.ERR_INTERNAL_ASSERTION(message)\n }\n}\n\n// Only use this for integers! Decimal numbers do not work with this function.\nfunction addNumericalSeparator(val) {\n let res = ''\n let i = val.length\n const start = val[0] === '-' ? 1 : 0\n for (; i >= start + 4; i -= 3) {\n res = `_${val.slice(i - 3, i)}${res}`\n }\n return `${val.slice(0, i)}${res}`\n}\nfunction getMessage(key, msg, args) {\n if (typeof msg === 'function') {\n assert(\n msg.length <= args.length,\n // Default options do not count.\n `Code: ${key}; The provided arguments length (${args.length}) does not match the required ones (${msg.length}).`\n )\n return msg(...args)\n }\n const expectedLength = (msg.match(/%[dfijoOs]/g) || []).length\n assert(\n expectedLength === args.length,\n `Code: ${key}; The provided arguments length (${args.length}) does not match the required ones (${expectedLength}).`\n )\n if (args.length === 0) {\n return msg\n }\n return format(msg, ...args)\n}\nfunction E(code, message, Base) {\n if (!Base) {\n Base = Error\n }\n class NodeError extends Base {\n constructor(...args) {\n super(getMessage(code, message, args))\n }\n toString() {\n return `${this.name} [${code}]: ${this.message}`\n }\n }\n Object.defineProperties(NodeError.prototype, {\n name: {\n value: Base.name,\n writable: true,\n enumerable: false,\n configurable: true\n },\n toString: {\n value() {\n return `${this.name} [${code}]: ${this.message}`\n },\n writable: true,\n enumerable: false,\n configurable: true\n }\n })\n NodeError.prototype.code = code\n NodeError.prototype[kIsNodeError] = true\n codes[code] = NodeError\n}\nfunction hideStackFrames(fn) {\n // We rename the functions that will be hidden to cut off the stacktrace\n // at the outermost one\n const hidden = nodeInternalPrefix + fn.name\n Object.defineProperty(fn, 'name', {\n value: hidden\n })\n return fn\n}\nfunction aggregateTwoErrors(innerError, outerError) {\n if (innerError && outerError && innerError !== outerError) {\n if (Array.isArray(outerError.errors)) {\n // If `outerError` is already an `AggregateError`.\n outerError.errors.push(innerError)\n return outerError\n }\n const err = new AggregateError([outerError, innerError], outerError.message)\n err.code = outerError.code\n return err\n }\n return innerError || outerError\n}\nclass AbortError extends Error {\n constructor(message = 'The operation was aborted', options = undefined) {\n if (options !== undefined && typeof options !== 'object') {\n throw new codes.ERR_INVALID_ARG_TYPE('options', 'Object', options)\n }\n super(message, options)\n this.code = 'ABORT_ERR'\n this.name = 'AbortError'\n }\n}\nE('ERR_ASSERTION', '%s', Error)\nE(\n 'ERR_INVALID_ARG_TYPE',\n (name, expected, actual) => {\n assert(typeof name === 'string', \"'name' must be a string\")\n if (!Array.isArray(expected)) {\n expected = [expected]\n }\n let msg = 'The '\n if (name.endsWith(' argument')) {\n // For cases like 'first argument'\n msg += `${name} `\n } else {\n msg += `\"${name}\" ${name.includes('.') ? 'property' : 'argument'} `\n }\n msg += 'must be '\n const types = []\n const instances = []\n const other = []\n for (const value of expected) {\n assert(typeof value === 'string', 'All expected entries have to be of type string')\n if (kTypes.includes(value)) {\n types.push(value.toLowerCase())\n } else if (classRegExp.test(value)) {\n instances.push(value)\n } else {\n assert(value !== 'object', 'The value \"object\" should be written as \"Object\"')\n other.push(value)\n }\n }\n\n // Special handle `object` in case other instances are allowed to outline\n // the differences between each other.\n if (instances.length > 0) {\n const pos = types.indexOf('object')\n if (pos !== -1) {\n types.splice(types, pos, 1)\n instances.push('Object')\n }\n }\n if (types.length > 0) {\n switch (types.length) {\n case 1:\n msg += `of type ${types[0]}`\n break\n case 2:\n msg += `one of type ${types[0]} or ${types[1]}`\n break\n default: {\n const last = types.pop()\n msg += `one of type ${types.join(', ')}, or ${last}`\n }\n }\n if (instances.length > 0 || other.length > 0) {\n msg += ' or '\n }\n }\n if (instances.length > 0) {\n switch (instances.length) {\n case 1:\n msg += `an instance of ${instances[0]}`\n break\n case 2:\n msg += `an instance of ${instances[0]} or ${instances[1]}`\n break\n default: {\n const last = instances.pop()\n msg += `an instance of ${instances.join(', ')}, or ${last}`\n }\n }\n if (other.length > 0) {\n msg += ' or '\n }\n }\n switch (other.length) {\n case 0:\n break\n case 1:\n if (other[0].toLowerCase() !== other[0]) {\n msg += 'an '\n }\n msg += `${other[0]}`\n break\n case 2:\n msg += `one of ${other[0]} or ${other[1]}`\n break\n default: {\n const last = other.pop()\n msg += `one of ${other.join(', ')}, or ${last}`\n }\n }\n if (actual == null) {\n msg += `. Received ${actual}`\n } else if (typeof actual === 'function' && actual.name) {\n msg += `. Received function ${actual.name}`\n } else if (typeof actual === 'object') {\n var _actual$constructor\n if (\n (_actual$constructor = actual.constructor) !== null &&\n _actual$constructor !== undefined &&\n _actual$constructor.name\n ) {\n msg += `. Received an instance of ${actual.constructor.name}`\n } else {\n const inspected = inspect(actual, {\n depth: -1\n })\n msg += `. Received ${inspected}`\n }\n } else {\n let inspected = inspect(actual, {\n colors: false\n })\n if (inspected.length > 25) {\n inspected = `${inspected.slice(0, 25)}...`\n }\n msg += `. Received type ${typeof actual} (${inspected})`\n }\n return msg\n },\n TypeError\n)\nE(\n 'ERR_INVALID_ARG_VALUE',\n (name, value, reason = 'is invalid') => {\n let inspected = inspect(value)\n if (inspected.length > 128) {\n inspected = inspected.slice(0, 128) + '...'\n }\n const type = name.includes('.') ? 'property' : 'argument'\n return `The ${type} '${name}' ${reason}. Received ${inspected}`\n },\n TypeError\n)\nE(\n 'ERR_INVALID_RETURN_VALUE',\n (input, name, value) => {\n var _value$constructor\n const type =\n value !== null &&\n value !== undefined &&\n (_value$constructor = value.constructor) !== null &&\n _value$constructor !== undefined &&\n _value$constructor.name\n ? `instance of ${value.constructor.name}`\n : `type ${typeof value}`\n return `Expected ${input} to be returned from the \"${name}\"` + ` function but got ${type}.`\n },\n TypeError\n)\nE(\n 'ERR_MISSING_ARGS',\n (...args) => {\n assert(args.length > 0, 'At least one arg needs to be specified')\n let msg\n const len = args.length\n args = (Array.isArray(args) ? args : [args]).map((a) => `\"${a}\"`).join(' or ')\n switch (len) {\n case 1:\n msg += `The ${args[0]} argument`\n break\n case 2:\n msg += `The ${args[0]} and ${args[1]} arguments`\n break\n default:\n {\n const last = args.pop()\n msg += `The ${args.join(', ')}, and ${last} arguments`\n }\n break\n }\n return `${msg} must be specified`\n },\n TypeError\n)\nE(\n 'ERR_OUT_OF_RANGE',\n (str, range, input) => {\n assert(range, 'Missing \"range\" argument')\n let received\n if (Number.isInteger(input) && Math.abs(input) > 2 ** 32) {\n received = addNumericalSeparator(String(input))\n } else if (typeof input === 'bigint') {\n received = String(input)\n if (input > 2n ** 32n || input < -(2n ** 32n)) {\n received = addNumericalSeparator(received)\n }\n received += 'n'\n } else {\n received = inspect(input)\n }\n return `The value of \"${str}\" is out of range. It must be ${range}. Received ${received}`\n },\n RangeError\n)\nE('ERR_MULTIPLE_CALLBACK', 'Callback called multiple times', Error)\nE('ERR_METHOD_NOT_IMPLEMENTED', 'The %s method is not implemented', Error)\nE('ERR_STREAM_ALREADY_FINISHED', 'Cannot call %s after a stream was finished', Error)\nE('ERR_STREAM_CANNOT_PIPE', 'Cannot pipe, not readable', Error)\nE('ERR_STREAM_DESTROYED', 'Cannot call %s after a stream was destroyed', Error)\nE('ERR_STREAM_NULL_VALUES', 'May not write null values to stream', TypeError)\nE('ERR_STREAM_PREMATURE_CLOSE', 'Premature close', Error)\nE('ERR_STREAM_PUSH_AFTER_EOF', 'stream.push() after EOF', Error)\nE('ERR_STREAM_UNSHIFT_AFTER_END_EVENT', 'stream.unshift() after end event', Error)\nE('ERR_STREAM_WRITE_AFTER_END', 'write after end', Error)\nE('ERR_UNKNOWN_ENCODING', 'Unknown encoding: %s', TypeError)\nmodule.exports = {\n AbortError,\n aggregateTwoErrors: hideStackFrames(aggregateTwoErrors),\n hideStackFrames,\n codes\n}\n","'use strict'\n\n/*\n This file is a reduced and adapted version of the main lib/internal/per_context/primordials.js file defined at\n\n https://github.com/nodejs/node/blob/master/lib/internal/per_context/primordials.js\n\n Don't try to replace with the original file and keep it up to date with the upstream file.\n*/\nmodule.exports = {\n ArrayIsArray(self) {\n return Array.isArray(self)\n },\n ArrayPrototypeIncludes(self, el) {\n return self.includes(el)\n },\n ArrayPrototypeIndexOf(self, el) {\n return self.indexOf(el)\n },\n ArrayPrototypeJoin(self, sep) {\n return self.join(sep)\n },\n ArrayPrototypeMap(self, fn) {\n return self.map(fn)\n },\n ArrayPrototypePop(self, el) {\n return self.pop(el)\n },\n ArrayPrototypePush(self, el) {\n return self.push(el)\n },\n ArrayPrototypeSlice(self, start, end) {\n return self.slice(start, end)\n },\n Error,\n FunctionPrototypeCall(fn, thisArgs, ...args) {\n return fn.call(thisArgs, ...args)\n },\n FunctionPrototypeSymbolHasInstance(self, instance) {\n return Function.prototype[Symbol.hasInstance].call(self, instance)\n },\n MathFloor: Math.floor,\n Number,\n NumberIsInteger: Number.isInteger,\n NumberIsNaN: Number.isNaN,\n NumberMAX_SAFE_INTEGER: Number.MAX_SAFE_INTEGER,\n NumberMIN_SAFE_INTEGER: Number.MIN_SAFE_INTEGER,\n NumberParseInt: Number.parseInt,\n ObjectDefineProperties(self, props) {\n return Object.defineProperties(self, props)\n },\n ObjectDefineProperty(self, name, prop) {\n return Object.defineProperty(self, name, prop)\n },\n ObjectGetOwnPropertyDescriptor(self, name) {\n return Object.getOwnPropertyDescriptor(self, name)\n },\n ObjectKeys(obj) {\n return Object.keys(obj)\n },\n ObjectSetPrototypeOf(target, proto) {\n return Object.setPrototypeOf(target, proto)\n },\n Promise,\n PromisePrototypeCatch(self, fn) {\n return self.catch(fn)\n },\n PromisePrototypeThen(self, thenFn, catchFn) {\n return self.then(thenFn, catchFn)\n },\n PromiseReject(err) {\n return Promise.reject(err)\n },\n PromiseResolve(val) {\n return Promise.resolve(val)\n },\n ReflectApply: Reflect.apply,\n RegExpPrototypeTest(self, value) {\n return self.test(value)\n },\n SafeSet: Set,\n String,\n StringPrototypeSlice(self, start, end) {\n return self.slice(start, end)\n },\n StringPrototypeToLowerCase(self) {\n return self.toLowerCase()\n },\n StringPrototypeToUpperCase(self) {\n return self.toUpperCase()\n },\n StringPrototypeTrim(self) {\n return self.trim()\n },\n Symbol,\n SymbolFor: Symbol.for,\n SymbolAsyncIterator: Symbol.asyncIterator,\n SymbolHasInstance: Symbol.hasInstance,\n SymbolIterator: Symbol.iterator,\n SymbolDispose: Symbol.dispose || Symbol('Symbol.dispose'),\n SymbolAsyncDispose: Symbol.asyncDispose || Symbol('Symbol.asyncDispose'),\n TypedArrayPrototypeSet(self, buf, len) {\n return self.set(buf, len)\n },\n Boolean: Boolean,\n Uint8Array\n}\n","'use strict'\n\nconst bufferModule = require('buffer')\nconst { kResistStopPropagation, SymbolDispose } = require('./primordials')\nconst AbortSignal = globalThis.AbortSignal || require('abort-controller').AbortSignal\nconst AbortController = globalThis.AbortController || require('abort-controller').AbortController\nconst AsyncFunction = Object.getPrototypeOf(async function () {}).constructor\nconst Blob = globalThis.Blob || bufferModule.Blob\n/* eslint-disable indent */\nconst isBlob =\n typeof Blob !== 'undefined'\n ? function isBlob(b) {\n // eslint-disable-next-line indent\n return b instanceof Blob\n }\n : function isBlob(b) {\n return false\n }\n/* eslint-enable indent */\n\nconst validateAbortSignal = (signal, name) => {\n if (signal !== undefined && (signal === null || typeof signal !== 'object' || !('aborted' in signal))) {\n throw new ERR_INVALID_ARG_TYPE(name, 'AbortSignal', signal)\n }\n}\nconst validateFunction = (value, name) => {\n if (typeof value !== 'function') throw new ERR_INVALID_ARG_TYPE(name, 'Function', value)\n}\n\n// This is a simplified version of AggregateError\nclass AggregateError extends Error {\n constructor(errors) {\n if (!Array.isArray(errors)) {\n throw new TypeError(`Expected input to be an Array, got ${typeof errors}`)\n }\n let message = ''\n for (let i = 0; i < errors.length; i++) {\n message += ` ${errors[i].stack}\\n`\n }\n super(message)\n this.name = 'AggregateError'\n this.errors = errors\n }\n}\nmodule.exports = {\n AggregateError,\n kEmptyObject: Object.freeze({}),\n once(callback) {\n let called = false\n return function (...args) {\n if (called) {\n return\n }\n called = true\n callback.apply(this, args)\n }\n },\n createDeferredPromise: function () {\n let resolve\n let reject\n\n // eslint-disable-next-line promise/param-names\n const promise = new Promise((res, rej) => {\n resolve = res\n reject = rej\n })\n return {\n promise,\n resolve,\n reject\n }\n },\n promisify(fn) {\n return new Promise((resolve, reject) => {\n fn((err, ...args) => {\n if (err) {\n return reject(err)\n }\n return resolve(...args)\n })\n })\n },\n debuglog() {\n return function () {}\n },\n format(format, ...args) {\n // Simplified version of https://nodejs.org/api/util.html#utilformatformat-args\n return format.replace(/%([sdifj])/g, function (...[_unused, type]) {\n const replacement = args.shift()\n if (type === 'f') {\n return replacement.toFixed(6)\n } else if (type === 'j') {\n return JSON.stringify(replacement)\n } else if (type === 's' && typeof replacement === 'object') {\n const ctor = replacement.constructor !== Object ? replacement.constructor.name : ''\n return `${ctor} {}`.trim()\n } else {\n return replacement.toString()\n }\n })\n },\n inspect(value) {\n // Vastly simplified version of https://nodejs.org/api/util.html#utilinspectobject-options\n switch (typeof value) {\n case 'string':\n if (value.includes(\"'\")) {\n if (!value.includes('\"')) {\n return `\"${value}\"`\n } else if (!value.includes('`') && !value.includes('${')) {\n return `\\`${value}\\``\n }\n }\n return `'${value}'`\n case 'number':\n if (isNaN(value)) {\n return 'NaN'\n } else if (Object.is(value, -0)) {\n return String(value)\n }\n return value\n case 'bigint':\n return `${String(value)}n`\n case 'boolean':\n case 'undefined':\n return String(value)\n case 'object':\n return '{}'\n }\n },\n types: {\n isAsyncFunction(fn) {\n return fn instanceof AsyncFunction\n },\n isArrayBufferView(arr) {\n return ArrayBuffer.isView(arr)\n }\n },\n isBlob,\n deprecate(fn, message) {\n return fn\n },\n addAbortListener:\n require('events').addAbortListener ||\n function addAbortListener(signal, listener) {\n if (signal === undefined) {\n throw new ERR_INVALID_ARG_TYPE('signal', 'AbortSignal', signal)\n }\n validateAbortSignal(signal, 'signal')\n validateFunction(listener, 'listener')\n let removeEventListener\n if (signal.aborted) {\n queueMicrotask(() => listener())\n } else {\n signal.addEventListener('abort', listener, {\n __proto__: null,\n once: true,\n [kResistStopPropagation]: true\n })\n removeEventListener = () => {\n signal.removeEventListener('abort', listener)\n }\n }\n return {\n __proto__: null,\n [SymbolDispose]() {\n var _removeEventListener\n ;(_removeEventListener = removeEventListener) === null || _removeEventListener === undefined\n ? undefined\n : _removeEventListener()\n }\n }\n },\n AbortSignalAny:\n AbortSignal.any ||\n function AbortSignalAny(signals) {\n // Fast path if there is only one signal.\n if (signals.length === 1) {\n return signals[0]\n }\n const ac = new AbortController()\n const abort = () => ac.abort()\n signals.forEach((signal) => {\n validateAbortSignal(signal, 'signals')\n signal.addEventListener('abort', abort, {\n once: true\n })\n })\n ac.signal.addEventListener(\n 'abort',\n () => {\n signals.forEach((signal) => signal.removeEventListener('abort', abort))\n },\n {\n once: true\n }\n )\n return ac.signal\n }\n}\nmodule.exports.promisify.custom = Symbol.for('nodejs.util.promisify.custom')\n","/* replacement start */\n\nconst { Buffer } = require('buffer')\n\n/* replacement end */\n// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n;('use strict')\nconst { ObjectDefineProperty, ObjectKeys, ReflectApply } = require('./ours/primordials')\nconst {\n promisify: { custom: customPromisify }\n} = require('./ours/util')\nconst { streamReturningOperators, promiseReturningOperators } = require('./internal/streams/operators')\nconst {\n codes: { ERR_ILLEGAL_CONSTRUCTOR }\n} = require('./ours/errors')\nconst compose = require('./internal/streams/compose')\nconst { setDefaultHighWaterMark, getDefaultHighWaterMark } = require('./internal/streams/state')\nconst { pipeline } = require('./internal/streams/pipeline')\nconst { destroyer } = require('./internal/streams/destroy')\nconst eos = require('./internal/streams/end-of-stream')\nconst internalBuffer = {}\nconst promises = require('./stream/promises')\nconst utils = require('./internal/streams/utils')\nconst Stream = (module.exports = require('./internal/streams/legacy').Stream)\nStream.isDestroyed = utils.isDestroyed\nStream.isDisturbed = utils.isDisturbed\nStream.isErrored = utils.isErrored\nStream.isReadable = utils.isReadable\nStream.isWritable = utils.isWritable\nStream.Readable = require('./internal/streams/readable')\nfor (const key of ObjectKeys(streamReturningOperators)) {\n const op = streamReturningOperators[key]\n function fn(...args) {\n if (new.target) {\n throw ERR_ILLEGAL_CONSTRUCTOR()\n }\n return Stream.Readable.from(ReflectApply(op, this, args))\n }\n ObjectDefineProperty(fn, 'name', {\n __proto__: null,\n value: op.name\n })\n ObjectDefineProperty(fn, 'length', {\n __proto__: null,\n value: op.length\n })\n ObjectDefineProperty(Stream.Readable.prototype, key, {\n __proto__: null,\n value: fn,\n enumerable: false,\n configurable: true,\n writable: true\n })\n}\nfor (const key of ObjectKeys(promiseReturningOperators)) {\n const op = promiseReturningOperators[key]\n function fn(...args) {\n if (new.target) {\n throw ERR_ILLEGAL_CONSTRUCTOR()\n }\n return ReflectApply(op, this, args)\n }\n ObjectDefineProperty(fn, 'name', {\n __proto__: null,\n value: op.name\n })\n ObjectDefineProperty(fn, 'length', {\n __proto__: null,\n value: op.length\n })\n ObjectDefineProperty(Stream.Readable.prototype, key, {\n __proto__: null,\n value: fn,\n enumerable: false,\n configurable: true,\n writable: true\n })\n}\nStream.Writable = require('./internal/streams/writable')\nStream.Duplex = require('./internal/streams/duplex')\nStream.Transform = require('./internal/streams/transform')\nStream.PassThrough = require('./internal/streams/passthrough')\nStream.pipeline = pipeline\nconst { addAbortSignal } = require('./internal/streams/add-abort-signal')\nStream.addAbortSignal = addAbortSignal\nStream.finished = eos\nStream.destroy = destroyer\nStream.compose = compose\nStream.setDefaultHighWaterMark = setDefaultHighWaterMark\nStream.getDefaultHighWaterMark = getDefaultHighWaterMark\nObjectDefineProperty(Stream, 'promises', {\n __proto__: null,\n configurable: true,\n enumerable: true,\n get() {\n return promises\n }\n})\nObjectDefineProperty(pipeline, customPromisify, {\n __proto__: null,\n enumerable: true,\n get() {\n return promises.pipeline\n }\n})\nObjectDefineProperty(eos, customPromisify, {\n __proto__: null,\n enumerable: true,\n get() {\n return promises.finished\n }\n})\n\n// Backwards-compat with node 0.4.x\nStream.Stream = Stream\nStream._isUint8Array = function isUint8Array(value) {\n return value instanceof Uint8Array\n}\nStream._uint8ArrayToBuffer = function _uint8ArrayToBuffer(chunk) {\n return Buffer.from(chunk.buffer, chunk.byteOffset, chunk.byteLength)\n}\n","'use strict'\n\nconst { ArrayPrototypePop, Promise } = require('../ours/primordials')\nconst { isIterable, isNodeStream, isWebStream } = require('../internal/streams/utils')\nconst { pipelineImpl: pl } = require('../internal/streams/pipeline')\nconst { finished } = require('../internal/streams/end-of-stream')\nrequire('../../lib/stream.js')\nfunction pipeline(...streams) {\n return new Promise((resolve, reject) => {\n let signal\n let end\n const lastArg = streams[streams.length - 1]\n if (\n lastArg &&\n typeof lastArg === 'object' &&\n !isNodeStream(lastArg) &&\n !isIterable(lastArg) &&\n !isWebStream(lastArg)\n ) {\n const options = ArrayPrototypePop(streams)\n signal = options.signal\n end = options.end\n }\n pl(\n streams,\n (err, value) => {\n if (err) {\n reject(err)\n } else {\n resolve(value)\n }\n },\n {\n signal,\n end\n }\n )\n })\n}\nmodule.exports = {\n finished,\n pipeline\n}\n","/* jshint esversion: 6 */\n/* jslint node: true */\n'use strict';\n\nmodule.exports = function serialize (object) {\n if (object === null || typeof object !== 'object' || object.toJSON != null) {\n return JSON.stringify(object);\n }\n\n if (Array.isArray(object)) {\n return '[' + object.reduce((t, cv, ci) => {\n const comma = ci === 0 ? '' : ',';\n const value = cv === undefined || typeof cv === 'symbol' ? null : cv;\n return t + comma + serialize(value);\n }, '') + ']';\n }\n\n return '{' + Object.keys(object).sort().reduce((t, cv, ci) => {\n if (object[cv] === undefined ||\n typeof object[cv] === 'symbol') {\n return t;\n }\n const comma = t.length === 0 ? '' : ',';\n return t + comma + serialize(cv) + ':' + serialize(object[cv]);\n }, '') + '}';\n};\n","/*\n * Copyright (c) 2019 Digital Bazaar, Inc. All rights reserved.\n */\n'use strict';\n\nconst {\n isArray: _isArray,\n isObject: _isObject,\n isString: _isString,\n} = require('./types');\nconst {\n asArray: _asArray\n} = require('./util');\nconst {prependBase} = require('./url');\nconst JsonLdError = require('./JsonLdError');\nconst ResolvedContext = require('./ResolvedContext');\n\nconst MAX_CONTEXT_URLS = 10;\n\nmodule.exports = class ContextResolver {\n /**\n * Creates a ContextResolver.\n *\n * @param sharedCache a shared LRU cache with `get` and `set` APIs.\n */\n constructor({sharedCache}) {\n this.perOpCache = new Map();\n this.sharedCache = sharedCache;\n }\n\n async resolve({\n activeCtx, context, documentLoader, base, cycles = new Set()\n }) {\n // process `@context`\n if(context && _isObject(context) && context['@context']) {\n context = context['@context'];\n }\n\n // context is one or more contexts\n context = _asArray(context);\n\n // resolve each context in the array\n const allResolved = [];\n for(const ctx of context) {\n if(_isString(ctx)) {\n // see if `ctx` has been resolved before...\n let resolved = this._get(ctx);\n if(!resolved) {\n // not resolved yet, resolve\n resolved = await this._resolveRemoteContext(\n {activeCtx, url: ctx, documentLoader, base, cycles});\n }\n\n // add to output and continue\n if(_isArray(resolved)) {\n allResolved.push(...resolved);\n } else {\n allResolved.push(resolved);\n }\n continue;\n }\n if(ctx === null) {\n // handle `null` context, nothing to cache\n allResolved.push(new ResolvedContext({document: null}));\n continue;\n }\n if(!_isObject(ctx)) {\n _throwInvalidLocalContext(context);\n }\n // context is an object, get/create `ResolvedContext` for it\n const key = JSON.stringify(ctx);\n let resolved = this._get(key);\n if(!resolved) {\n // create a new static `ResolvedContext` and cache it\n resolved = new ResolvedContext({document: ctx});\n this._cacheResolvedContext({key, resolved, tag: 'static'});\n }\n allResolved.push(resolved);\n }\n\n return allResolved;\n }\n\n _get(key) {\n // get key from per operation cache; no `tag` is used with this cache so\n // any retrieved context will always be the same during a single operation\n let resolved = this.perOpCache.get(key);\n if(!resolved) {\n // see if the shared cache has a `static` entry for this URL\n const tagMap = this.sharedCache.get(key);\n if(tagMap) {\n resolved = tagMap.get('static');\n if(resolved) {\n this.perOpCache.set(key, resolved);\n }\n }\n }\n return resolved;\n }\n\n _cacheResolvedContext({key, resolved, tag}) {\n this.perOpCache.set(key, resolved);\n if(tag !== undefined) {\n let tagMap = this.sharedCache.get(key);\n if(!tagMap) {\n tagMap = new Map();\n this.sharedCache.set(key, tagMap);\n }\n tagMap.set(tag, resolved);\n }\n return resolved;\n }\n\n async _resolveRemoteContext({activeCtx, url, documentLoader, base, cycles}) {\n // resolve relative URL and fetch context\n url = prependBase(base, url);\n const {context, remoteDoc} = await this._fetchContext(\n {activeCtx, url, documentLoader, cycles});\n\n // update base according to remote document and resolve any relative URLs\n base = remoteDoc.documentUrl || url;\n _resolveContextUrls({context, base});\n\n // resolve, cache, and return context\n const resolved = await this.resolve(\n {activeCtx, context, documentLoader, base, cycles});\n this._cacheResolvedContext({key: url, resolved, tag: remoteDoc.tag});\n return resolved;\n }\n\n async _fetchContext({activeCtx, url, documentLoader, cycles}) {\n // check for max context URLs fetched during a resolve operation\n if(cycles.size > MAX_CONTEXT_URLS) {\n throw new JsonLdError(\n 'Maximum number of @context URLs exceeded.',\n 'jsonld.ContextUrlError',\n {\n code: activeCtx.processingMode === 'json-ld-1.0' ?\n 'loading remote context failed' :\n 'context overflow',\n max: MAX_CONTEXT_URLS\n });\n }\n\n // check for context URL cycle\n // shortcut to avoid extra work that would eventually hit the max above\n if(cycles.has(url)) {\n throw new JsonLdError(\n 'Cyclical @context URLs detected.',\n 'jsonld.ContextUrlError',\n {\n code: activeCtx.processingMode === 'json-ld-1.0' ?\n 'recursive context inclusion' :\n 'context overflow',\n url\n });\n }\n\n // track cycles\n cycles.add(url);\n\n let context;\n let remoteDoc;\n\n try {\n remoteDoc = await documentLoader(url);\n context = remoteDoc.document || null;\n // parse string context as JSON\n if(_isString(context)) {\n context = JSON.parse(context);\n }\n } catch(e) {\n throw new JsonLdError(\n 'Dereferencing a URL did not result in a valid JSON-LD object. ' +\n 'Possible causes are an inaccessible URL perhaps due to ' +\n 'a same-origin policy (ensure the server uses CORS if you are ' +\n 'using client-side JavaScript), too many redirects, a ' +\n 'non-JSON response, or more than one HTTP Link Header was ' +\n 'provided for a remote context.',\n 'jsonld.InvalidUrl',\n {code: 'loading remote context failed', url, cause: e});\n }\n\n // ensure ctx is an object\n if(!_isObject(context)) {\n throw new JsonLdError(\n 'Dereferencing a URL did not result in a JSON object. The ' +\n 'response was valid JSON, but it was not a JSON object.',\n 'jsonld.InvalidUrl', {code: 'invalid remote context', url});\n }\n\n // use empty context if no @context key is present\n if(!('@context' in context)) {\n context = {'@context': {}};\n } else {\n context = {'@context': context['@context']};\n }\n\n // append @context URL to context if given\n if(remoteDoc.contextUrl) {\n if(!_isArray(context['@context'])) {\n context['@context'] = [context['@context']];\n }\n context['@context'].push(remoteDoc.contextUrl);\n }\n\n return {context, remoteDoc};\n }\n};\n\nfunction _throwInvalidLocalContext(ctx) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; @context must be an object.',\n 'jsonld.SyntaxError', {\n code: 'invalid local context', context: ctx\n });\n}\n\n/**\n * Resolve all relative `@context` URLs in the given context by inline\n * replacing them with absolute URLs.\n *\n * @param context the context.\n * @param base the base IRI to use to resolve relative IRIs.\n */\nfunction _resolveContextUrls({context, base}) {\n if(!context) {\n return;\n }\n\n const ctx = context['@context'];\n\n if(_isString(ctx)) {\n context['@context'] = prependBase(base, ctx);\n return;\n }\n\n if(_isArray(ctx)) {\n for(let i = 0; i < ctx.length; ++i) {\n const element = ctx[i];\n if(_isString(element)) {\n ctx[i] = prependBase(base, element);\n continue;\n }\n if(_isObject(element)) {\n _resolveContextUrls({context: {'@context': element}, base});\n }\n }\n return;\n }\n\n if(!_isObject(ctx)) {\n // no @context URLs can be found in non-object\n return;\n }\n\n // ctx is an object, resolve any context URLs in terms\n for(const term in ctx) {\n _resolveContextUrls({context: ctx[term], base});\n }\n}\n","/*\n * Copyright (c) 2017 Digital Bazaar, Inc. All rights reserved.\n */\n'use strict';\n\nmodule.exports = class JsonLdError extends Error {\n /**\n * Creates a JSON-LD Error.\n *\n * @param msg the error message.\n * @param type the error type.\n * @param details the error details.\n */\n constructor(\n message = 'An unspecified JSON-LD error occurred.',\n name = 'jsonld.Error',\n details = {}) {\n super(message);\n this.name = name;\n this.message = message;\n this.details = details;\n }\n};\n","/*\n * Copyright (c) 2017 Digital Bazaar, Inc. All rights reserved.\n */\n'use strict';\n\nmodule.exports = jsonld => {\n class JsonLdProcessor {\n toString() {\n return '[object JsonLdProcessor]';\n }\n }\n Object.defineProperty(JsonLdProcessor, 'prototype', {\n writable: false,\n enumerable: false\n });\n Object.defineProperty(JsonLdProcessor.prototype, 'constructor', {\n writable: true,\n enumerable: false,\n configurable: true,\n value: JsonLdProcessor\n });\n\n // The Web IDL test harness will check the number of parameters defined in\n // the functions below. The number of parameters must exactly match the\n // required (non-optional) parameters of the JsonLdProcessor interface as\n // defined here:\n // https://www.w3.org/TR/json-ld-api/#the-jsonldprocessor-interface\n\n JsonLdProcessor.compact = function(input, ctx) {\n if(arguments.length < 2) {\n return Promise.reject(\n new TypeError('Could not compact, too few arguments.'));\n }\n return jsonld.compact(input, ctx);\n };\n JsonLdProcessor.expand = function(input) {\n if(arguments.length < 1) {\n return Promise.reject(\n new TypeError('Could not expand, too few arguments.'));\n }\n return jsonld.expand(input);\n };\n JsonLdProcessor.flatten = function(input) {\n if(arguments.length < 1) {\n return Promise.reject(\n new TypeError('Could not flatten, too few arguments.'));\n }\n return jsonld.flatten(input);\n };\n\n return JsonLdProcessor;\n};\n","/*\n * Copyright (c) 2017 Digital Bazaar, Inc. All rights reserved.\n */\n'use strict';\n\n// TODO: move `NQuads` to its own package\nmodule.exports = require('rdf-canonize').NQuads;\n","/*\n * Copyright (c) 2017-2019 Digital Bazaar, Inc. All rights reserved.\n */\n'use strict';\n\nmodule.exports = class RequestQueue {\n /**\n * Creates a simple queue for requesting documents.\n */\n constructor() {\n this._requests = {};\n }\n\n wrapLoader(loader) {\n const self = this;\n self._loader = loader;\n return function(/* url */) {\n return self.add.apply(self, arguments);\n };\n }\n\n async add(url) {\n let promise = this._requests[url];\n if(promise) {\n // URL already queued, wait for it to load\n return Promise.resolve(promise);\n }\n\n // queue URL and load it\n promise = this._requests[url] = this._loader(url);\n\n try {\n return await promise;\n } finally {\n delete this._requests[url];\n }\n }\n};\n","/*\n * Copyright (c) 2019 Digital Bazaar, Inc. All rights reserved.\n */\n'use strict';\n\nconst LRU = require('lru-cache');\n\nconst MAX_ACTIVE_CONTEXTS = 10;\n\nmodule.exports = class ResolvedContext {\n /**\n * Creates a ResolvedContext.\n *\n * @param document the context document.\n */\n constructor({document}) {\n this.document = document;\n // TODO: enable customization of processed context cache\n // TODO: limit based on size of processed contexts vs. number of them\n this.cache = new LRU({max: MAX_ACTIVE_CONTEXTS});\n }\n\n getProcessed(activeCtx) {\n return this.cache.get(activeCtx);\n }\n\n setProcessed(activeCtx, processedCtx) {\n this.cache.set(activeCtx, processedCtx);\n }\n};\n","/*\n * Copyright (c) 2017 Digital Bazaar, Inc. All rights reserved.\n */\n'use strict';\n\nconst JsonLdError = require('./JsonLdError');\n\nconst {\n isArray: _isArray,\n isObject: _isObject,\n isString: _isString,\n isUndefined: _isUndefined\n} = require('./types');\n\nconst {\n isList: _isList,\n isValue: _isValue,\n isGraph: _isGraph,\n isSimpleGraph: _isSimpleGraph,\n isSubjectReference: _isSubjectReference\n} = require('./graphTypes');\n\nconst {\n expandIri: _expandIri,\n getContextValue: _getContextValue,\n isKeyword: _isKeyword,\n process: _processContext,\n processingMode: _processingMode\n} = require('./context');\n\nconst {\n removeBase: _removeBase,\n prependBase: _prependBase\n} = require('./url');\n\nconst {\n REGEX_KEYWORD,\n addValue: _addValue,\n asArray: _asArray,\n compareShortestLeast: _compareShortestLeast\n} = require('./util');\n\nconst api = {};\nmodule.exports = api;\n\n/**\n * Recursively compacts an element using the given active context. All values\n * must be in expanded form before this method is called.\n *\n * @param activeCtx the active context to use.\n * @param activeProperty the compacted property associated with the element\n * to compact, null for none.\n * @param element the element to compact.\n * @param options the compaction options.\n *\n * @return a promise that resolves to the compacted value.\n */\napi.compact = async ({\n activeCtx,\n activeProperty = null,\n element,\n options = {}\n}) => {\n // recursively compact array\n if(_isArray(element)) {\n let rval = [];\n for(let i = 0; i < element.length; ++i) {\n const compacted = await api.compact({\n activeCtx,\n activeProperty,\n element: element[i],\n options\n });\n if(compacted === null) {\n // FIXME: need event?\n continue;\n }\n rval.push(compacted);\n }\n if(options.compactArrays && rval.length === 1) {\n // use single element if no container is specified\n const container = _getContextValue(\n activeCtx, activeProperty, '@container') || [];\n if(container.length === 0) {\n rval = rval[0];\n }\n }\n return rval;\n }\n\n // use any scoped context on activeProperty\n const ctx = _getContextValue(activeCtx, activeProperty, '@context');\n if(!_isUndefined(ctx)) {\n activeCtx = await _processContext({\n activeCtx,\n localCtx: ctx,\n propagate: true,\n overrideProtected: true,\n options\n });\n }\n\n // recursively compact object\n if(_isObject(element)) {\n if(options.link && '@id' in element &&\n options.link.hasOwnProperty(element['@id'])) {\n // check for a linked element to reuse\n const linked = options.link[element['@id']];\n for(let i = 0; i < linked.length; ++i) {\n if(linked[i].expanded === element) {\n return linked[i].compacted;\n }\n }\n }\n\n // do value compaction on @values and subject references\n if(_isValue(element) || _isSubjectReference(element)) {\n const rval =\n api.compactValue({activeCtx, activeProperty, value: element, options});\n if(options.link && _isSubjectReference(element)) {\n // store linked element\n if(!(options.link.hasOwnProperty(element['@id']))) {\n options.link[element['@id']] = [];\n }\n options.link[element['@id']].push({expanded: element, compacted: rval});\n }\n return rval;\n }\n\n // if expanded property is @list and we're contained within a list\n // container, recursively compact this item to an array\n if(_isList(element)) {\n const container = _getContextValue(\n activeCtx, activeProperty, '@container') || [];\n if(container.includes('@list')) {\n return api.compact({\n activeCtx,\n activeProperty,\n element: element['@list'],\n options\n });\n }\n }\n\n // FIXME: avoid misuse of active property as an expanded property?\n const insideReverse = (activeProperty === '@reverse');\n\n const rval = {};\n\n // original context before applying property-scoped and local contexts\n const inputCtx = activeCtx;\n\n // revert to previous context, if there is one,\n // and element is not a value object or a node reference\n if(!_isValue(element) && !_isSubjectReference(element)) {\n activeCtx = activeCtx.revertToPreviousContext();\n }\n\n // apply property-scoped context after reverting term-scoped context\n const propertyScopedCtx =\n _getContextValue(inputCtx, activeProperty, '@context');\n if(!_isUndefined(propertyScopedCtx)) {\n activeCtx = await _processContext({\n activeCtx,\n localCtx: propertyScopedCtx,\n propagate: true,\n overrideProtected: true,\n options\n });\n }\n\n if(options.link && '@id' in element) {\n // store linked element\n if(!options.link.hasOwnProperty(element['@id'])) {\n options.link[element['@id']] = [];\n }\n options.link[element['@id']].push({expanded: element, compacted: rval});\n }\n\n // apply any context defined on an alias of @type\n // if key is @type and any compacted value is a term having a local\n // context, overlay that context\n let types = element['@type'] || [];\n if(types.length > 1) {\n types = Array.from(types).sort();\n }\n // find all type-scoped contexts based on current context, prior to\n // updating it\n const typeContext = activeCtx;\n for(const type of types) {\n const compactedType = api.compactIri(\n {activeCtx: typeContext, iri: type, relativeTo: {vocab: true}});\n\n // Use any type-scoped context defined on this value\n const ctx = _getContextValue(inputCtx, compactedType, '@context');\n if(!_isUndefined(ctx)) {\n activeCtx = await _processContext({\n activeCtx,\n localCtx: ctx,\n options,\n propagate: false\n });\n }\n }\n\n // process element keys in order\n const keys = Object.keys(element).sort();\n for(const expandedProperty of keys) {\n const expandedValue = element[expandedProperty];\n\n // compact @id\n if(expandedProperty === '@id') {\n let compactedValue = _asArray(expandedValue).map(\n expandedIri => api.compactIri({\n activeCtx,\n iri: expandedIri,\n relativeTo: {vocab: false},\n base: options.base\n }));\n if(compactedValue.length === 1) {\n compactedValue = compactedValue[0];\n }\n\n // use keyword alias and add value\n const alias = api.compactIri(\n {activeCtx, iri: '@id', relativeTo: {vocab: true}});\n\n rval[alias] = compactedValue;\n continue;\n }\n\n // compact @type(s)\n if(expandedProperty === '@type') {\n // resolve type values against previous context\n let compactedValue = _asArray(expandedValue).map(\n expandedIri => api.compactIri({\n activeCtx: inputCtx,\n iri: expandedIri,\n relativeTo: {vocab: true}\n }));\n if(compactedValue.length === 1) {\n compactedValue = compactedValue[0];\n }\n\n // use keyword alias and add value\n const alias = api.compactIri(\n {activeCtx, iri: '@type', relativeTo: {vocab: true}});\n const container = _getContextValue(\n activeCtx, alias, '@container') || [];\n\n // treat as array for @type if @container includes @set\n const typeAsSet =\n container.includes('@set') &&\n _processingMode(activeCtx, 1.1);\n const isArray =\n typeAsSet || (_isArray(compactedValue) && expandedValue.length === 0);\n _addValue(rval, alias, compactedValue, {propertyIsArray: isArray});\n continue;\n }\n\n // handle @reverse\n if(expandedProperty === '@reverse') {\n // recursively compact expanded value\n const compactedValue = await api.compact({\n activeCtx,\n activeProperty: '@reverse',\n element: expandedValue,\n options\n });\n\n // handle double-reversed properties\n for(const compactedProperty in compactedValue) {\n if(activeCtx.mappings.has(compactedProperty) &&\n activeCtx.mappings.get(compactedProperty).reverse) {\n const value = compactedValue[compactedProperty];\n const container = _getContextValue(\n activeCtx, compactedProperty, '@container') || [];\n const useArray = (\n container.includes('@set') || !options.compactArrays);\n _addValue(\n rval, compactedProperty, value, {propertyIsArray: useArray});\n delete compactedValue[compactedProperty];\n }\n }\n\n if(Object.keys(compactedValue).length > 0) {\n // use keyword alias and add value\n const alias = api.compactIri({\n activeCtx,\n iri: expandedProperty,\n relativeTo: {vocab: true}\n });\n _addValue(rval, alias, compactedValue);\n }\n\n continue;\n }\n\n if(expandedProperty === '@preserve') {\n // compact using activeProperty\n const compactedValue = await api.compact({\n activeCtx,\n activeProperty,\n element: expandedValue,\n options\n });\n\n if(!(_isArray(compactedValue) && compactedValue.length === 0)) {\n _addValue(rval, expandedProperty, compactedValue);\n }\n continue;\n }\n\n // handle @index property\n if(expandedProperty === '@index') {\n // drop @index if inside an @index container\n const container = _getContextValue(\n activeCtx, activeProperty, '@container') || [];\n if(container.includes('@index')) {\n continue;\n }\n\n // use keyword alias and add value\n const alias = api.compactIri({\n activeCtx,\n iri: expandedProperty,\n relativeTo: {vocab: true}\n });\n _addValue(rval, alias, expandedValue);\n continue;\n }\n\n // skip array processing for keywords that aren't\n // @graph, @list, or @included\n if(expandedProperty !== '@graph' && expandedProperty !== '@list' &&\n expandedProperty !== '@included' &&\n _isKeyword(expandedProperty)) {\n // use keyword alias and add value as is\n const alias = api.compactIri({\n activeCtx,\n iri: expandedProperty,\n relativeTo: {vocab: true}\n });\n _addValue(rval, alias, expandedValue);\n continue;\n }\n\n // Note: expanded value must be an array due to expansion algorithm.\n if(!_isArray(expandedValue)) {\n throw new JsonLdError(\n 'JSON-LD expansion error; expanded value must be an array.',\n 'jsonld.SyntaxError');\n }\n\n // preserve empty arrays\n if(expandedValue.length === 0) {\n const itemActiveProperty = api.compactIri({\n activeCtx,\n iri: expandedProperty,\n value: expandedValue,\n relativeTo: {vocab: true},\n reverse: insideReverse\n });\n const nestProperty = activeCtx.mappings.has(itemActiveProperty) ?\n activeCtx.mappings.get(itemActiveProperty)['@nest'] : null;\n let nestResult = rval;\n if(nestProperty) {\n _checkNestProperty(activeCtx, nestProperty, options);\n if(!_isObject(rval[nestProperty])) {\n rval[nestProperty] = {};\n }\n nestResult = rval[nestProperty];\n }\n _addValue(\n nestResult, itemActiveProperty, expandedValue, {\n propertyIsArray: true\n });\n }\n\n // recusively process array values\n for(const expandedItem of expandedValue) {\n // compact property and get container type\n const itemActiveProperty = api.compactIri({\n activeCtx,\n iri: expandedProperty,\n value: expandedItem,\n relativeTo: {vocab: true},\n reverse: insideReverse\n });\n\n // if itemActiveProperty is a @nest property, add values to nestResult,\n // otherwise rval\n const nestProperty = activeCtx.mappings.has(itemActiveProperty) ?\n activeCtx.mappings.get(itemActiveProperty)['@nest'] : null;\n let nestResult = rval;\n if(nestProperty) {\n _checkNestProperty(activeCtx, nestProperty, options);\n if(!_isObject(rval[nestProperty])) {\n rval[nestProperty] = {};\n }\n nestResult = rval[nestProperty];\n }\n\n const container = _getContextValue(\n activeCtx, itemActiveProperty, '@container') || [];\n\n // get simple @graph or @list value if appropriate\n const isGraph = _isGraph(expandedItem);\n const isList = _isList(expandedItem);\n let inner;\n if(isList) {\n inner = expandedItem['@list'];\n } else if(isGraph) {\n inner = expandedItem['@graph'];\n }\n\n // recursively compact expanded item\n let compactedItem = await api.compact({\n activeCtx,\n activeProperty: itemActiveProperty,\n element: (isList || isGraph) ? inner : expandedItem,\n options\n });\n\n // handle @list\n if(isList) {\n // ensure @list value is an array\n if(!_isArray(compactedItem)) {\n compactedItem = [compactedItem];\n }\n\n if(!container.includes('@list')) {\n // wrap using @list alias\n compactedItem = {\n [api.compactIri({\n activeCtx,\n iri: '@list',\n relativeTo: {vocab: true}\n })]: compactedItem\n };\n\n // include @index from expanded @list, if any\n if('@index' in expandedItem) {\n compactedItem[api.compactIri({\n activeCtx,\n iri: '@index',\n relativeTo: {vocab: true}\n })] = expandedItem['@index'];\n }\n } else {\n _addValue(nestResult, itemActiveProperty, compactedItem, {\n valueIsArray: true,\n allowDuplicate: true\n });\n continue;\n }\n }\n\n // Graph object compaction cases\n if(isGraph) {\n if(container.includes('@graph') && (container.includes('@id') ||\n container.includes('@index') && _isSimpleGraph(expandedItem))) {\n // get or create the map object\n let mapObject;\n if(nestResult.hasOwnProperty(itemActiveProperty)) {\n mapObject = nestResult[itemActiveProperty];\n } else {\n nestResult[itemActiveProperty] = mapObject = {};\n }\n\n // index on @id or @index or alias of @none\n const key = (container.includes('@id') ?\n expandedItem['@id'] : expandedItem['@index']) ||\n api.compactIri({activeCtx, iri: '@none',\n relativeTo: {vocab: true}});\n // add compactedItem to map, using value of `@id` or a new blank\n // node identifier\n\n _addValue(\n mapObject, key, compactedItem, {\n propertyIsArray:\n (!options.compactArrays || container.includes('@set'))\n });\n } else if(container.includes('@graph') &&\n _isSimpleGraph(expandedItem)) {\n // container includes @graph but not @id or @index and value is a\n // simple graph object add compact value\n // if compactedItem contains multiple values, it is wrapped in\n // `@included`\n if(_isArray(compactedItem) && compactedItem.length > 1) {\n compactedItem = {'@included': compactedItem};\n }\n _addValue(\n nestResult, itemActiveProperty, compactedItem, {\n propertyIsArray:\n (!options.compactArrays || container.includes('@set'))\n });\n } else {\n // wrap using @graph alias, remove array if only one item and\n // compactArrays not set\n if(_isArray(compactedItem) && compactedItem.length === 1 &&\n options.compactArrays) {\n compactedItem = compactedItem[0];\n }\n compactedItem = {\n [api.compactIri({\n activeCtx,\n iri: '@graph',\n relativeTo: {vocab: true}\n })]: compactedItem\n };\n\n // include @id from expanded graph, if any\n if('@id' in expandedItem) {\n compactedItem[api.compactIri({\n activeCtx,\n iri: '@id',\n relativeTo: {vocab: true}\n })] = expandedItem['@id'];\n }\n\n // include @index from expanded graph, if any\n if('@index' in expandedItem) {\n compactedItem[api.compactIri({\n activeCtx,\n iri: '@index',\n relativeTo: {vocab: true}\n })] = expandedItem['@index'];\n }\n _addValue(\n nestResult, itemActiveProperty, compactedItem, {\n propertyIsArray:\n (!options.compactArrays || container.includes('@set'))\n });\n }\n } else if(container.includes('@language') ||\n container.includes('@index') || container.includes('@id') ||\n container.includes('@type')) {\n // handle language and index maps\n // get or create the map object\n let mapObject;\n if(nestResult.hasOwnProperty(itemActiveProperty)) {\n mapObject = nestResult[itemActiveProperty];\n } else {\n nestResult[itemActiveProperty] = mapObject = {};\n }\n\n let key;\n if(container.includes('@language')) {\n // if container is a language map, simplify compacted value to\n // a simple string\n if(_isValue(compactedItem)) {\n compactedItem = compactedItem['@value'];\n }\n key = expandedItem['@language'];\n } else if(container.includes('@index')) {\n const indexKey = _getContextValue(\n activeCtx, itemActiveProperty, '@index') || '@index';\n const containerKey = api.compactIri(\n {activeCtx, iri: indexKey, relativeTo: {vocab: true}});\n if(indexKey === '@index') {\n key = expandedItem['@index'];\n delete compactedItem[containerKey];\n } else {\n let others;\n [key, ...others] = _asArray(compactedItem[indexKey] || []);\n if(!_isString(key)) {\n // Will use @none if it isn't a string.\n key = null;\n } else {\n switch(others.length) {\n case 0:\n delete compactedItem[indexKey];\n break;\n case 1:\n compactedItem[indexKey] = others[0];\n break;\n default:\n compactedItem[indexKey] = others;\n break;\n }\n }\n }\n } else if(container.includes('@id')) {\n const idKey = api.compactIri({activeCtx, iri: '@id',\n relativeTo: {vocab: true}});\n key = compactedItem[idKey];\n delete compactedItem[idKey];\n } else if(container.includes('@type')) {\n const typeKey = api.compactIri({\n activeCtx,\n iri: '@type',\n relativeTo: {vocab: true}\n });\n let types;\n [key, ...types] = _asArray(compactedItem[typeKey] || []);\n switch(types.length) {\n case 0:\n delete compactedItem[typeKey];\n break;\n case 1:\n compactedItem[typeKey] = types[0];\n break;\n default:\n compactedItem[typeKey] = types;\n break;\n }\n\n // If compactedItem contains a single entry\n // whose key maps to @id, recompact without @type\n if(Object.keys(compactedItem).length === 1 &&\n '@id' in expandedItem) {\n compactedItem = await api.compact({\n activeCtx,\n activeProperty: itemActiveProperty,\n element: {'@id': expandedItem['@id']},\n options\n });\n }\n }\n\n // if compacting this value which has no key, index on @none\n if(!key) {\n key = api.compactIri({activeCtx, iri: '@none',\n relativeTo: {vocab: true}});\n }\n // add compact value to map object using key from expanded value\n // based on the container type\n _addValue(\n mapObject, key, compactedItem, {\n propertyIsArray: container.includes('@set')\n });\n } else {\n // use an array if: compactArrays flag is false,\n // @container is @set or @list , value is an empty\n // array, or key is @graph\n const isArray = (!options.compactArrays ||\n container.includes('@set') || container.includes('@list') ||\n (_isArray(compactedItem) && compactedItem.length === 0) ||\n expandedProperty === '@list' || expandedProperty === '@graph');\n\n // add compact value\n _addValue(\n nestResult, itemActiveProperty, compactedItem,\n {propertyIsArray: isArray});\n }\n }\n }\n\n return rval;\n }\n\n // only primitives remain which are already compact\n return element;\n};\n\n/**\n * Compacts an IRI or keyword into a term or prefix if it can be. If the\n * IRI has an associated value it may be passed.\n *\n * @param activeCtx the active context to use.\n * @param iri the IRI to compact.\n * @param value the value to check or null.\n * @param relativeTo options for how to compact IRIs:\n * vocab: true to split after @vocab, false not to.\n * @param reverse true if a reverse property is being compacted, false if not.\n * @param base the absolute URL to use for compacting document-relative IRIs.\n *\n * @return the compacted term, prefix, keyword alias, or the original IRI.\n */\napi.compactIri = ({\n activeCtx,\n iri,\n value = null,\n relativeTo = {vocab: false},\n reverse = false,\n base = null\n}) => {\n // can't compact null\n if(iri === null) {\n return iri;\n }\n\n // if context is from a property term scoped context composed with a\n // type-scoped context, then use the previous context instead\n if(activeCtx.isPropertyTermScoped && activeCtx.previousContext) {\n activeCtx = activeCtx.previousContext;\n }\n\n const inverseCtx = activeCtx.getInverse();\n\n // if term is a keyword, it may be compacted to a simple alias\n if(_isKeyword(iri) &&\n iri in inverseCtx &&\n '@none' in inverseCtx[iri] &&\n '@type' in inverseCtx[iri]['@none'] &&\n '@none' in inverseCtx[iri]['@none']['@type']) {\n return inverseCtx[iri]['@none']['@type']['@none'];\n }\n\n // use inverse context to pick a term if iri is relative to vocab\n if(relativeTo.vocab && iri in inverseCtx) {\n const defaultLanguage = activeCtx['@language'] || '@none';\n\n // prefer @index if available in value\n const containers = [];\n if(_isObject(value) && '@index' in value && !('@graph' in value)) {\n containers.push('@index', '@index@set');\n }\n\n // if value is a preserve object, use its value\n if(_isObject(value) && '@preserve' in value) {\n value = value['@preserve'][0];\n }\n\n // prefer most specific container including @graph, prefering @set\n // variations\n if(_isGraph(value)) {\n // favor indexmap if the graph is indexed\n if('@index' in value) {\n containers.push(\n '@graph@index', '@graph@index@set', '@index', '@index@set');\n }\n // favor idmap if the graph is has an @id\n if('@id' in value) {\n containers.push(\n '@graph@id', '@graph@id@set');\n }\n containers.push('@graph', '@graph@set', '@set');\n // allow indexmap if the graph is not indexed\n if(!('@index' in value)) {\n containers.push(\n '@graph@index', '@graph@index@set', '@index', '@index@set');\n }\n // allow idmap if the graph does not have an @id\n if(!('@id' in value)) {\n containers.push('@graph@id', '@graph@id@set');\n }\n } else if(_isObject(value) && !_isValue(value)) {\n containers.push('@id', '@id@set', '@type', '@set@type');\n }\n\n // defaults for term selection based on type/language\n let typeOrLanguage = '@language';\n let typeOrLanguageValue = '@null';\n\n if(reverse) {\n typeOrLanguage = '@type';\n typeOrLanguageValue = '@reverse';\n containers.push('@set');\n } else if(_isList(value)) {\n // choose the most specific term that works for all elements in @list\n // only select @list containers if @index is NOT in value\n if(!('@index' in value)) {\n containers.push('@list');\n }\n const list = value['@list'];\n if(list.length === 0) {\n // any empty list can be matched against any term that uses the\n // @list container regardless of @type or @language\n typeOrLanguage = '@any';\n typeOrLanguageValue = '@none';\n } else {\n let commonLanguage = (list.length === 0) ? defaultLanguage : null;\n let commonType = null;\n for(let i = 0; i < list.length; ++i) {\n const item = list[i];\n let itemLanguage = '@none';\n let itemType = '@none';\n if(_isValue(item)) {\n if('@direction' in item) {\n const lang = (item['@language'] || '').toLowerCase();\n const dir = item['@direction'];\n itemLanguage = `${lang}_${dir}`;\n } else if('@language' in item) {\n itemLanguage = item['@language'].toLowerCase();\n } else if('@type' in item) {\n itemType = item['@type'];\n } else {\n // plain literal\n itemLanguage = '@null';\n }\n } else {\n itemType = '@id';\n }\n if(commonLanguage === null) {\n commonLanguage = itemLanguage;\n } else if(itemLanguage !== commonLanguage && _isValue(item)) {\n commonLanguage = '@none';\n }\n if(commonType === null) {\n commonType = itemType;\n } else if(itemType !== commonType) {\n commonType = '@none';\n }\n // there are different languages and types in the list, so choose\n // the most generic term, no need to keep iterating the list\n if(commonLanguage === '@none' && commonType === '@none') {\n break;\n }\n }\n commonLanguage = commonLanguage || '@none';\n commonType = commonType || '@none';\n if(commonType !== '@none') {\n typeOrLanguage = '@type';\n typeOrLanguageValue = commonType;\n } else {\n typeOrLanguageValue = commonLanguage;\n }\n }\n } else {\n if(_isValue(value)) {\n if('@language' in value && !('@index' in value)) {\n containers.push('@language', '@language@set');\n typeOrLanguageValue = value['@language'];\n const dir = value['@direction'];\n if(dir) {\n typeOrLanguageValue = `${typeOrLanguageValue}_${dir}`;\n }\n } else if('@direction' in value && !('@index' in value)) {\n typeOrLanguageValue = `_${value['@direction']}`;\n } else if('@type' in value) {\n typeOrLanguage = '@type';\n typeOrLanguageValue = value['@type'];\n }\n } else {\n typeOrLanguage = '@type';\n typeOrLanguageValue = '@id';\n }\n containers.push('@set');\n }\n\n // do term selection\n containers.push('@none');\n\n // an index map can be used to index values using @none, so add as a low\n // priority\n if(_isObject(value) && !('@index' in value)) {\n // allow indexing even if no @index present\n containers.push('@index', '@index@set');\n }\n\n // values without type or language can use @language map\n if(_isValue(value) && Object.keys(value).length === 1) {\n // allow indexing even if no @index present\n containers.push('@language', '@language@set');\n }\n\n const term = _selectTerm(\n activeCtx, iri, value, containers, typeOrLanguage, typeOrLanguageValue);\n if(term !== null) {\n return term;\n }\n }\n\n // no term match, use @vocab if available\n if(relativeTo.vocab) {\n if('@vocab' in activeCtx) {\n // determine if vocab is a prefix of the iri\n const vocab = activeCtx['@vocab'];\n if(iri.indexOf(vocab) === 0 && iri !== vocab) {\n // use suffix as relative iri if it is not a term in the active context\n const suffix = iri.substr(vocab.length);\n if(!activeCtx.mappings.has(suffix)) {\n return suffix;\n }\n }\n }\n }\n\n // no term or @vocab match, check for possible CURIEs\n let choice = null;\n // TODO: make FastCurieMap a class with a method to do this lookup\n const partialMatches = [];\n let iriMap = activeCtx.fastCurieMap;\n // check for partial matches of against `iri`, which means look until\n // iri.length - 1, not full length\n const maxPartialLength = iri.length - 1;\n for(let i = 0; i < maxPartialLength && iri[i] in iriMap; ++i) {\n iriMap = iriMap[iri[i]];\n if('' in iriMap) {\n partialMatches.push(iriMap[''][0]);\n }\n }\n // check partial matches in reverse order to prefer longest ones first\n for(let i = partialMatches.length - 1; i >= 0; --i) {\n const entry = partialMatches[i];\n const terms = entry.terms;\n for(const term of terms) {\n // a CURIE is usable if:\n // 1. it has no mapping, OR\n // 2. value is null, which means we're not compacting an @value, AND\n // the mapping matches the IRI\n const curie = term + ':' + iri.substr(entry.iri.length);\n const isUsableCurie = (activeCtx.mappings.get(term)._prefix &&\n (!activeCtx.mappings.has(curie) ||\n (value === null && activeCtx.mappings.get(curie)['@id'] === iri)));\n\n // select curie if it is shorter or the same length but lexicographically\n // less than the current choice\n if(isUsableCurie && (choice === null ||\n _compareShortestLeast(curie, choice) < 0)) {\n choice = curie;\n }\n }\n }\n\n // return chosen curie\n if(choice !== null) {\n return choice;\n }\n\n // If iri could be confused with a compact IRI using a term in this context,\n // signal an error\n for(const [term, td] of activeCtx.mappings) {\n if(td && td._prefix && iri.startsWith(term + ':')) {\n throw new JsonLdError(\n `Absolute IRI \"${iri}\" confused with prefix \"${term}\".`,\n 'jsonld.SyntaxError',\n {code: 'IRI confused with prefix', context: activeCtx});\n }\n }\n\n // compact IRI relative to base\n if(!relativeTo.vocab) {\n if('@base' in activeCtx) {\n if(!activeCtx['@base']) {\n // The None case preserves rval as potentially relative\n return iri;\n } else {\n const _iri = _removeBase(_prependBase(base, activeCtx['@base']), iri);\n return REGEX_KEYWORD.test(_iri) ? `./${_iri}` : _iri;\n }\n } else {\n return _removeBase(base, iri);\n }\n }\n\n // return IRI as is\n return iri;\n};\n\n/**\n * Performs value compaction on an object with '@value' or '@id' as the only\n * property.\n *\n * @param activeCtx the active context.\n * @param activeProperty the active property that points to the value.\n * @param value the value to compact.\n * @param {Object} [options] - processing options.\n *\n * @return the compaction result.\n */\napi.compactValue = ({activeCtx, activeProperty, value, options}) => {\n // value is a @value\n if(_isValue(value)) {\n // get context rules\n const type = _getContextValue(activeCtx, activeProperty, '@type');\n const language = _getContextValue(activeCtx, activeProperty, '@language');\n const direction = _getContextValue(activeCtx, activeProperty, '@direction');\n const container =\n _getContextValue(activeCtx, activeProperty, '@container') || [];\n\n // whether or not the value has an @index that must be preserved\n const preserveIndex = '@index' in value && !container.includes('@index');\n\n // if there's no @index to preserve ...\n if(!preserveIndex && type !== '@none') {\n // matching @type or @language specified in context, compact value\n if(value['@type'] === type) {\n return value['@value'];\n }\n if('@language' in value && value['@language'] === language &&\n '@direction' in value && value['@direction'] === direction) {\n return value['@value'];\n }\n if('@language' in value && value['@language'] === language) {\n return value['@value'];\n }\n if('@direction' in value && value['@direction'] === direction) {\n return value['@value'];\n }\n }\n\n // return just the value of @value if all are true:\n // 1. @value is the only key or @index isn't being preserved\n // 2. there is no default language or @value is not a string or\n // the key has a mapping with a null @language\n const keyCount = Object.keys(value).length;\n const isValueOnlyKey = (keyCount === 1 ||\n (keyCount === 2 && '@index' in value && !preserveIndex));\n const hasDefaultLanguage = ('@language' in activeCtx);\n const isValueString = _isString(value['@value']);\n const hasNullMapping = (activeCtx.mappings.has(activeProperty) &&\n activeCtx.mappings.get(activeProperty)['@language'] === null);\n if(isValueOnlyKey &&\n type !== '@none' &&\n (!hasDefaultLanguage || !isValueString || hasNullMapping)) {\n return value['@value'];\n }\n\n const rval = {};\n\n // preserve @index\n if(preserveIndex) {\n rval[api.compactIri({\n activeCtx,\n iri: '@index',\n relativeTo: {vocab: true}\n })] = value['@index'];\n }\n\n if('@type' in value) {\n // compact @type IRI\n rval[api.compactIri({\n activeCtx,\n iri: '@type',\n relativeTo: {vocab: true}\n })] = api.compactIri(\n {activeCtx, iri: value['@type'], relativeTo: {vocab: true}});\n } else if('@language' in value) {\n // alias @language\n rval[api.compactIri({\n activeCtx,\n iri: '@language',\n relativeTo: {vocab: true}\n })] = value['@language'];\n }\n\n if('@direction' in value) {\n // alias @direction\n rval[api.compactIri({\n activeCtx,\n iri: '@direction',\n relativeTo: {vocab: true}\n })] = value['@direction'];\n }\n\n // alias @value\n rval[api.compactIri({\n activeCtx,\n iri: '@value',\n relativeTo: {vocab: true}\n })] = value['@value'];\n\n return rval;\n }\n\n // value is a subject reference\n const expandedProperty = _expandIri(activeCtx, activeProperty, {vocab: true},\n options);\n const type = _getContextValue(activeCtx, activeProperty, '@type');\n const compacted = api.compactIri({\n activeCtx,\n iri: value['@id'],\n relativeTo: {vocab: type === '@vocab'},\n base: options.base});\n\n // compact to scalar\n if(type === '@id' || type === '@vocab' || expandedProperty === '@graph') {\n return compacted;\n }\n\n return {\n [api.compactIri({\n activeCtx,\n iri: '@id',\n relativeTo: {vocab: true}\n })]: compacted\n };\n};\n\n/**\n * Picks the preferred compaction term from the given inverse context entry.\n *\n * @param activeCtx the active context.\n * @param iri the IRI to pick the term for.\n * @param value the value to pick the term for.\n * @param containers the preferred containers.\n * @param typeOrLanguage either '@type' or '@language'.\n * @param typeOrLanguageValue the preferred value for '@type' or '@language'.\n *\n * @return the preferred term.\n */\nfunction _selectTerm(\n activeCtx, iri, value, containers, typeOrLanguage, typeOrLanguageValue) {\n if(typeOrLanguageValue === null) {\n typeOrLanguageValue = '@null';\n }\n\n // preferences for the value of @type or @language\n const prefs = [];\n\n // determine prefs for @id based on whether or not value compacts to a term\n if((typeOrLanguageValue === '@id' || typeOrLanguageValue === '@reverse') &&\n _isObject(value) && '@id' in value) {\n // prefer @reverse first\n if(typeOrLanguageValue === '@reverse') {\n prefs.push('@reverse');\n }\n // try to compact value to a term\n const term = api.compactIri(\n {activeCtx, iri: value['@id'], relativeTo: {vocab: true}});\n if(activeCtx.mappings.has(term) &&\n activeCtx.mappings.get(term) &&\n activeCtx.mappings.get(term)['@id'] === value['@id']) {\n // prefer @vocab\n prefs.push.apply(prefs, ['@vocab', '@id']);\n } else {\n // prefer @id\n prefs.push.apply(prefs, ['@id', '@vocab']);\n }\n } else {\n prefs.push(typeOrLanguageValue);\n\n // consider direction only\n const langDir = prefs.find(el => el.includes('_'));\n if(langDir) {\n // consider _dir portion\n prefs.push(langDir.replace(/^[^_]+_/, '_'));\n }\n }\n prefs.push('@none');\n\n const containerMap = activeCtx.inverse[iri];\n for(const container of containers) {\n // if container not available in the map, continue\n if(!(container in containerMap)) {\n continue;\n }\n\n const typeOrLanguageValueMap = containerMap[container][typeOrLanguage];\n for(const pref of prefs) {\n // if type/language option not available in the map, continue\n if(!(pref in typeOrLanguageValueMap)) {\n continue;\n }\n\n // select term\n return typeOrLanguageValueMap[pref];\n }\n }\n\n return null;\n}\n\n/**\n * The value of `@nest` in the term definition must either be `@nest`, or a term\n * which resolves to `@nest`.\n *\n * @param activeCtx the active context.\n * @param nestProperty a term in the active context or `@nest`.\n * @param {Object} [options] - processing options.\n */\nfunction _checkNestProperty(activeCtx, nestProperty, options) {\n if(_expandIri(activeCtx, nestProperty, {vocab: true}, options) !== '@nest') {\n throw new JsonLdError(\n 'JSON-LD compact error; nested property must have an @nest value ' +\n 'resolving to @nest.',\n 'jsonld.SyntaxError', {code: 'invalid @nest value'});\n }\n}\n","/*\n * Copyright (c) 2017 Digital Bazaar, Inc. All rights reserved.\n */\n'use strict';\n\nconst RDF = 'http://www.w3.org/1999/02/22-rdf-syntax-ns#';\nconst XSD = 'http://www.w3.org/2001/XMLSchema#';\n\nmodule.exports = {\n // TODO: Deprecated and will be removed later. Use LINK_HEADER_CONTEXT.\n LINK_HEADER_REL: 'http://www.w3.org/ns/json-ld#context',\n\n LINK_HEADER_CONTEXT: 'http://www.w3.org/ns/json-ld#context',\n\n RDF,\n RDF_LIST: RDF + 'List',\n RDF_FIRST: RDF + 'first',\n RDF_REST: RDF + 'rest',\n RDF_NIL: RDF + 'nil',\n RDF_TYPE: RDF + 'type',\n RDF_PLAIN_LITERAL: RDF + 'PlainLiteral',\n RDF_XML_LITERAL: RDF + 'XMLLiteral',\n RDF_JSON_LITERAL: RDF + 'JSON',\n RDF_OBJECT: RDF + 'object',\n RDF_LANGSTRING: RDF + 'langString',\n\n XSD,\n XSD_BOOLEAN: XSD + 'boolean',\n XSD_DOUBLE: XSD + 'double',\n XSD_INTEGER: XSD + 'integer',\n XSD_STRING: XSD + 'string',\n};\n","/*\n * Copyright (c) 2017-2019 Digital Bazaar, Inc. All rights reserved.\n */\n'use strict';\n\nconst util = require('./util');\nconst JsonLdError = require('./JsonLdError');\n\nconst {\n isArray: _isArray,\n isObject: _isObject,\n isString: _isString,\n isUndefined: _isUndefined\n} = require('./types');\n\nconst {\n isAbsolute: _isAbsoluteIri,\n isRelative: _isRelativeIri,\n prependBase\n} = require('./url');\n\nconst {\n handleEvent: _handleEvent\n} = require('./events');\n\nconst {\n REGEX_BCP47,\n REGEX_KEYWORD,\n asArray: _asArray,\n compareShortestLeast: _compareShortestLeast\n} = require('./util');\n\nconst INITIAL_CONTEXT_CACHE = new Map();\nconst INITIAL_CONTEXT_CACHE_MAX_SIZE = 10000;\n\nconst api = {};\nmodule.exports = api;\n\n/**\n * Processes a local context and returns a new active context.\n *\n * @param activeCtx the current active context.\n * @param localCtx the local context to process.\n * @param options the context processing options.\n * @param propagate `true` if `false`, retains any previously defined term,\n * which can be rolled back when the descending into a new node object.\n * @param overrideProtected `false` allows protected terms to be modified.\n *\n * @return a Promise that resolves to the new active context.\n */\napi.process = async ({\n activeCtx, localCtx, options,\n propagate = true,\n overrideProtected = false,\n cycles = new Set()\n}) => {\n // normalize local context to an array of @context objects\n if(_isObject(localCtx) && '@context' in localCtx &&\n _isArray(localCtx['@context'])) {\n localCtx = localCtx['@context'];\n }\n const ctxs = _asArray(localCtx);\n\n // no contexts in array, return current active context w/o changes\n if(ctxs.length === 0) {\n return activeCtx;\n }\n\n // event handler for capturing events to replay when using a cached context\n const events = [];\n const eventCaptureHandler = [\n ({event, next}) => {\n events.push(event);\n next();\n }\n ];\n // chain to original handler\n if(options.eventHandler) {\n eventCaptureHandler.push(options.eventHandler);\n }\n // store original options to use when replaying events\n const originalOptions = options;\n // shallow clone options with event capture handler\n options = {...options, eventHandler: eventCaptureHandler};\n\n // resolve contexts\n const resolved = await options.contextResolver.resolve({\n activeCtx,\n context: localCtx,\n documentLoader: options.documentLoader,\n base: options.base\n });\n\n // override propagate if first resolved context has `@propagate`\n if(_isObject(resolved[0].document) &&\n typeof resolved[0].document['@propagate'] === 'boolean') {\n // retrieve early, error checking done later\n propagate = resolved[0].document['@propagate'];\n }\n\n // process each context in order, update active context\n // on each iteration to ensure proper caching\n let rval = activeCtx;\n\n // track the previous context\n // if not propagating, make sure rval has a previous context\n if(!propagate && !rval.previousContext) {\n // clone `rval` context before updating\n rval = rval.clone();\n rval.previousContext = activeCtx;\n }\n\n for(const resolvedContext of resolved) {\n let {document: ctx} = resolvedContext;\n\n // update active context to one computed from last iteration\n activeCtx = rval;\n\n // reset to initial context\n if(ctx === null) {\n // We can't nullify if there are protected terms and we're\n // not allowing overrides (e.g. processing a property term scoped context)\n if(!overrideProtected && Object.keys(activeCtx.protected).length !== 0) {\n throw new JsonLdError(\n 'Tried to nullify a context with protected terms outside of ' +\n 'a term definition.',\n 'jsonld.SyntaxError',\n {code: 'invalid context nullification'});\n }\n rval = activeCtx = api.getInitialContext(options).clone();\n continue;\n }\n\n // get processed context from cache if available\n const processed = resolvedContext.getProcessed(activeCtx);\n if(processed) {\n if(originalOptions.eventHandler) {\n // replay events with original non-capturing options\n for(const event of processed.events) {\n _handleEvent({event, options: originalOptions});\n }\n }\n\n rval = activeCtx = processed.context;\n continue;\n }\n\n // dereference @context key if present\n if(_isObject(ctx) && '@context' in ctx) {\n ctx = ctx['@context'];\n }\n\n // context must be an object by now, all URLs retrieved before this call\n if(!_isObject(ctx)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; @context must be an object.',\n 'jsonld.SyntaxError', {code: 'invalid local context', context: ctx});\n }\n\n // TODO: there is likely a `previousContext` cloning optimization that\n // could be applied here (no need to copy it under certain conditions)\n\n // clone context before updating it\n rval = rval.clone();\n\n // define context mappings for keys in local context\n const defined = new Map();\n\n // handle @version\n if('@version' in ctx) {\n if(ctx['@version'] !== 1.1) {\n throw new JsonLdError(\n 'Unsupported JSON-LD version: ' + ctx['@version'],\n 'jsonld.UnsupportedVersion',\n {code: 'invalid @version value', context: ctx});\n }\n if(activeCtx.processingMode &&\n activeCtx.processingMode === 'json-ld-1.0') {\n throw new JsonLdError(\n '@version: ' + ctx['@version'] + ' not compatible with ' +\n activeCtx.processingMode,\n 'jsonld.ProcessingModeConflict',\n {code: 'processing mode conflict', context: ctx});\n }\n rval.processingMode = 'json-ld-1.1';\n rval['@version'] = ctx['@version'];\n defined.set('@version', true);\n }\n\n // if not set explicitly, set processingMode to \"json-ld-1.1\"\n rval.processingMode =\n rval.processingMode || activeCtx.processingMode;\n\n // handle @base\n if('@base' in ctx) {\n let base = ctx['@base'];\n\n if(base === null || _isAbsoluteIri(base)) {\n // no action\n } else if(_isRelativeIri(base)) {\n base = prependBase(rval['@base'], base);\n } else {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; the value of \"@base\" in a ' +\n '@context must be an absolute IRI, a relative IRI, or null.',\n 'jsonld.SyntaxError', {code: 'invalid base IRI', context: ctx});\n }\n\n rval['@base'] = base;\n defined.set('@base', true);\n }\n\n // handle @vocab\n if('@vocab' in ctx) {\n const value = ctx['@vocab'];\n if(value === null) {\n delete rval['@vocab'];\n } else if(!_isString(value)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; the value of \"@vocab\" in a ' +\n '@context must be a string or null.',\n 'jsonld.SyntaxError', {code: 'invalid vocab mapping', context: ctx});\n } else if(!_isAbsoluteIri(value) && api.processingMode(rval, 1.0)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; the value of \"@vocab\" in a ' +\n '@context must be an absolute IRI.',\n 'jsonld.SyntaxError', {code: 'invalid vocab mapping', context: ctx});\n } else {\n const vocab = _expandIri(rval, value, {vocab: true, base: true},\n undefined, undefined, options);\n if(!_isAbsoluteIri(vocab)) {\n if(options.eventHandler) {\n _handleEvent({\n event: {\n type: ['JsonLdEvent'],\n code: 'relative @vocab reference',\n level: 'warning',\n message: 'Relative @vocab reference found.',\n details: {\n vocab\n }\n },\n options\n });\n }\n }\n rval['@vocab'] = vocab;\n }\n defined.set('@vocab', true);\n }\n\n // handle @language\n if('@language' in ctx) {\n const value = ctx['@language'];\n if(value === null) {\n delete rval['@language'];\n } else if(!_isString(value)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; the value of \"@language\" in a ' +\n '@context must be a string or null.',\n 'jsonld.SyntaxError',\n {code: 'invalid default language', context: ctx});\n } else {\n if(!value.match(REGEX_BCP47)) {\n if(options.eventHandler) {\n _handleEvent({\n event: {\n type: ['JsonLdEvent'],\n code: 'invalid @language value',\n level: 'warning',\n message: '@language value must be valid BCP47.',\n details: {\n language: value\n }\n },\n options\n });\n }\n }\n rval['@language'] = value.toLowerCase();\n }\n defined.set('@language', true);\n }\n\n // handle @direction\n if('@direction' in ctx) {\n const value = ctx['@direction'];\n if(activeCtx.processingMode === 'json-ld-1.0') {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; @direction not compatible with ' +\n activeCtx.processingMode,\n 'jsonld.SyntaxError',\n {code: 'invalid context member', context: ctx});\n }\n if(value === null) {\n delete rval['@direction'];\n } else if(value !== 'ltr' && value !== 'rtl') {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; the value of \"@direction\" in a ' +\n '@context must be null, \"ltr\", or \"rtl\".',\n 'jsonld.SyntaxError',\n {code: 'invalid base direction', context: ctx});\n } else {\n rval['@direction'] = value;\n }\n defined.set('@direction', true);\n }\n\n // handle @propagate\n // note: we've already extracted it, here we just do error checking\n if('@propagate' in ctx) {\n const value = ctx['@propagate'];\n if(activeCtx.processingMode === 'json-ld-1.0') {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; @propagate not compatible with ' +\n activeCtx.processingMode,\n 'jsonld.SyntaxError',\n {code: 'invalid context entry', context: ctx});\n }\n if(typeof value !== 'boolean') {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; @propagate value must be a boolean.',\n 'jsonld.SyntaxError',\n {code: 'invalid @propagate value', context: localCtx});\n }\n defined.set('@propagate', true);\n }\n\n // handle @import\n if('@import' in ctx) {\n const value = ctx['@import'];\n if(activeCtx.processingMode === 'json-ld-1.0') {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; @import not compatible with ' +\n activeCtx.processingMode,\n 'jsonld.SyntaxError',\n {code: 'invalid context entry', context: ctx});\n }\n if(!_isString(value)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; @import must be a string.',\n 'jsonld.SyntaxError',\n {code: 'invalid @import value', context: localCtx});\n }\n\n // resolve contexts\n const resolvedImport = await options.contextResolver.resolve({\n activeCtx,\n context: value,\n documentLoader: options.documentLoader,\n base: options.base\n });\n if(resolvedImport.length !== 1) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; @import must reference a single context.',\n 'jsonld.SyntaxError',\n {code: 'invalid remote context', context: localCtx});\n }\n const processedImport = resolvedImport[0].getProcessed(activeCtx);\n if(processedImport) {\n // Note: if the same context were used in this active context\n // as a reference context, then processed_input might not\n // be a dict.\n ctx = processedImport;\n } else {\n const importCtx = resolvedImport[0].document;\n if('@import' in importCtx) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax: ' +\n 'imported context must not include @import.',\n 'jsonld.SyntaxError',\n {code: 'invalid context entry', context: localCtx});\n }\n\n // merge ctx into importCtx and replace rval with the result\n for(const key in importCtx) {\n if(!ctx.hasOwnProperty(key)) {\n ctx[key] = importCtx[key];\n }\n }\n\n // Note: this could potenially conflict if the import\n // were used in the same active context as a referenced\n // context and an import. In this case, we\n // could override the cached result, but seems unlikely.\n resolvedImport[0].setProcessed(activeCtx, ctx);\n }\n\n defined.set('@import', true);\n }\n\n // handle @protected; determine whether this sub-context is declaring\n // all its terms to be \"protected\" (exceptions can be made on a\n // per-definition basis)\n defined.set('@protected', ctx['@protected'] || false);\n\n // process all other keys\n for(const key in ctx) {\n api.createTermDefinition({\n activeCtx: rval,\n localCtx: ctx,\n term: key,\n defined,\n options,\n overrideProtected\n });\n\n if(_isObject(ctx[key]) && '@context' in ctx[key]) {\n const keyCtx = ctx[key]['@context'];\n let process = true;\n if(_isString(keyCtx)) {\n const url = prependBase(options.base, keyCtx);\n // track processed contexts to avoid scoped context recursion\n if(cycles.has(url)) {\n process = false;\n } else {\n cycles.add(url);\n }\n }\n // parse context to validate\n if(process) {\n try {\n await api.process({\n activeCtx: rval.clone(),\n localCtx: ctx[key]['@context'],\n overrideProtected: true,\n options,\n cycles\n });\n } catch(e) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; invalid scoped context.',\n 'jsonld.SyntaxError',\n {\n code: 'invalid scoped context',\n context: ctx[key]['@context'],\n term: key\n });\n }\n }\n }\n }\n\n // cache processed result\n resolvedContext.setProcessed(activeCtx, {\n context: rval,\n events\n });\n }\n\n return rval;\n};\n\n/**\n * Creates a term definition during context processing.\n *\n * @param activeCtx the current active context.\n * @param localCtx the local context being processed.\n * @param term the term in the local context to define the mapping for.\n * @param defined a map of defining/defined keys to detect cycles and prevent\n * double definitions.\n * @param {Object} [options] - creation options.\n * @param overrideProtected `false` allows protected terms to be modified.\n */\napi.createTermDefinition = ({\n activeCtx,\n localCtx,\n term,\n defined,\n options,\n overrideProtected = false,\n}) => {\n if(defined.has(term)) {\n // term already defined\n if(defined.get(term)) {\n return;\n }\n // cycle detected\n throw new JsonLdError(\n 'Cyclical context definition detected.',\n 'jsonld.CyclicalContext',\n {code: 'cyclic IRI mapping', context: localCtx, term});\n }\n\n // now defining term\n defined.set(term, false);\n\n // get context term value\n let value;\n if(localCtx.hasOwnProperty(term)) {\n value = localCtx[term];\n }\n\n if(term === '@type' &&\n _isObject(value) &&\n (value['@container'] || '@set') === '@set' &&\n api.processingMode(activeCtx, 1.1)) {\n\n const validKeys = ['@container', '@id', '@protected'];\n const keys = Object.keys(value);\n if(keys.length === 0 || keys.some(k => !validKeys.includes(k))) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; keywords cannot be overridden.',\n 'jsonld.SyntaxError',\n {code: 'keyword redefinition', context: localCtx, term});\n }\n } else if(api.isKeyword(term)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; keywords cannot be overridden.',\n 'jsonld.SyntaxError',\n {code: 'keyword redefinition', context: localCtx, term});\n } else if(term.match(REGEX_KEYWORD)) {\n if(options.eventHandler) {\n _handleEvent({\n event: {\n type: ['JsonLdEvent'],\n code: 'reserved term',\n level: 'warning',\n message:\n 'Terms beginning with \"@\" are ' +\n 'reserved for future use and dropped.',\n details: {\n term\n }\n },\n options\n });\n }\n return;\n } else if(term === '') {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; a term cannot be an empty string.',\n 'jsonld.SyntaxError',\n {code: 'invalid term definition', context: localCtx});\n }\n\n // keep reference to previous mapping for potential `@protected` check\n const previousMapping = activeCtx.mappings.get(term);\n\n // remove old mapping\n if(activeCtx.mappings.has(term)) {\n activeCtx.mappings.delete(term);\n }\n\n // convert short-hand value to object w/@id\n let simpleTerm = false;\n if(_isString(value) || value === null) {\n simpleTerm = true;\n value = {'@id': value};\n }\n\n if(!_isObject(value)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; @context term values must be ' +\n 'strings or objects.',\n 'jsonld.SyntaxError',\n {code: 'invalid term definition', context: localCtx});\n }\n\n // create new mapping\n const mapping = {};\n activeCtx.mappings.set(term, mapping);\n mapping.reverse = false;\n\n // make sure term definition only has expected keywords\n const validKeys = ['@container', '@id', '@language', '@reverse', '@type'];\n\n // JSON-LD 1.1 support\n if(api.processingMode(activeCtx, 1.1)) {\n validKeys.push(\n '@context', '@direction', '@index', '@nest', '@prefix', '@protected');\n }\n\n for(const kw in value) {\n if(!validKeys.includes(kw)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; a term definition must not contain ' + kw,\n 'jsonld.SyntaxError',\n {code: 'invalid term definition', context: localCtx});\n }\n }\n\n // always compute whether term has a colon as an optimization for\n // _compactIri\n const colon = term.indexOf(':');\n mapping._termHasColon = (colon > 0);\n\n if('@reverse' in value) {\n if('@id' in value) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; a @reverse term definition must not ' +\n 'contain @id.', 'jsonld.SyntaxError',\n {code: 'invalid reverse property', context: localCtx});\n }\n if('@nest' in value) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; a @reverse term definition must not ' +\n 'contain @nest.', 'jsonld.SyntaxError',\n {code: 'invalid reverse property', context: localCtx});\n }\n const reverse = value['@reverse'];\n if(!_isString(reverse)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; a @context @reverse value must be a string.',\n 'jsonld.SyntaxError', {code: 'invalid IRI mapping', context: localCtx});\n }\n\n if(reverse.match(REGEX_KEYWORD)) {\n if(options.eventHandler) {\n _handleEvent({\n event: {\n type: ['JsonLdEvent'],\n code: 'reserved @reverse value',\n level: 'warning',\n message:\n '@reverse values beginning with \"@\" are ' +\n 'reserved for future use and dropped.',\n details: {\n reverse\n }\n },\n options\n });\n }\n if(previousMapping) {\n activeCtx.mappings.set(term, previousMapping);\n } else {\n activeCtx.mappings.delete(term);\n }\n return;\n }\n\n // expand and add @id mapping\n const id = _expandIri(\n activeCtx, reverse, {vocab: true, base: false}, localCtx, defined,\n options);\n if(!_isAbsoluteIri(id)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; a @context @reverse value must be an ' +\n 'absolute IRI or a blank node identifier.',\n 'jsonld.SyntaxError', {code: 'invalid IRI mapping', context: localCtx});\n }\n\n mapping['@id'] = id;\n mapping.reverse = true;\n } else if('@id' in value) {\n let id = value['@id'];\n if(id && !_isString(id)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; a @context @id value must be an array ' +\n 'of strings or a string.',\n 'jsonld.SyntaxError', {code: 'invalid IRI mapping', context: localCtx});\n }\n if(id === null) {\n // reserve a null term, which may be protected\n mapping['@id'] = null;\n } else if(!api.isKeyword(id) && id.match(REGEX_KEYWORD)) {\n if(options.eventHandler) {\n _handleEvent({\n event: {\n type: ['JsonLdEvent'],\n code: 'reserved @id value',\n level: 'warning',\n message:\n '@id values beginning with \"@\" are ' +\n 'reserved for future use and dropped.',\n details: {\n id\n }\n },\n options\n });\n }\n if(previousMapping) {\n activeCtx.mappings.set(term, previousMapping);\n } else {\n activeCtx.mappings.delete(term);\n }\n return;\n } else if(id !== term) {\n // expand and add @id mapping\n id = _expandIri(\n activeCtx, id, {vocab: true, base: false}, localCtx, defined, options);\n if(!_isAbsoluteIri(id) && !api.isKeyword(id)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; a @context @id value must be an ' +\n 'absolute IRI, a blank node identifier, or a keyword.',\n 'jsonld.SyntaxError',\n {code: 'invalid IRI mapping', context: localCtx});\n }\n\n // if term has the form of an IRI it must map the same\n if(term.match(/(?::[^:])|\\//)) {\n const termDefined = new Map(defined).set(term, true);\n const termIri = _expandIri(\n activeCtx, term, {vocab: true, base: false},\n localCtx, termDefined, options);\n if(termIri !== id) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; term in form of IRI must ' +\n 'expand to definition.',\n 'jsonld.SyntaxError',\n {code: 'invalid IRI mapping', context: localCtx});\n }\n }\n\n mapping['@id'] = id;\n // indicate if this term may be used as a compact IRI prefix\n mapping._prefix = (simpleTerm &&\n !mapping._termHasColon &&\n id.match(/[:\\/\\?#\\[\\]@]$/) !== null);\n }\n }\n\n if(!('@id' in mapping)) {\n // see if the term has a prefix\n if(mapping._termHasColon) {\n const prefix = term.substr(0, colon);\n if(localCtx.hasOwnProperty(prefix)) {\n // define parent prefix\n api.createTermDefinition({\n activeCtx, localCtx, term: prefix, defined, options\n });\n }\n\n if(activeCtx.mappings.has(prefix)) {\n // set @id based on prefix parent\n const suffix = term.substr(colon + 1);\n mapping['@id'] = activeCtx.mappings.get(prefix)['@id'] + suffix;\n } else {\n // term is an absolute IRI\n mapping['@id'] = term;\n }\n } else if(term === '@type') {\n // Special case, were we've previously determined that container is @set\n mapping['@id'] = term;\n } else {\n // non-IRIs *must* define @ids if @vocab is not available\n if(!('@vocab' in activeCtx)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; @context terms must define an @id.',\n 'jsonld.SyntaxError',\n {code: 'invalid IRI mapping', context: localCtx, term});\n }\n // prepend vocab to term\n mapping['@id'] = activeCtx['@vocab'] + term;\n }\n }\n\n // Handle term protection\n if(value['@protected'] === true ||\n (defined.get('@protected') === true && value['@protected'] !== false)) {\n activeCtx.protected[term] = true;\n mapping.protected = true;\n }\n\n // IRI mapping now defined\n defined.set(term, true);\n\n if('@type' in value) {\n let type = value['@type'];\n if(!_isString(type)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; an @context @type value must be a string.',\n 'jsonld.SyntaxError',\n {code: 'invalid type mapping', context: localCtx});\n }\n\n if((type === '@json' || type === '@none')) {\n if(api.processingMode(activeCtx, 1.0)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; an @context @type value must not be ' +\n `\"${type}\" in JSON-LD 1.0 mode.`,\n 'jsonld.SyntaxError',\n {code: 'invalid type mapping', context: localCtx});\n }\n } else if(type !== '@id' && type !== '@vocab') {\n // expand @type to full IRI\n type = _expandIri(\n activeCtx, type, {vocab: true, base: false}, localCtx, defined,\n options);\n if(!_isAbsoluteIri(type)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; an @context @type value must be an ' +\n 'absolute IRI.',\n 'jsonld.SyntaxError',\n {code: 'invalid type mapping', context: localCtx});\n }\n if(type.indexOf('_:') === 0) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; an @context @type value must be an IRI, ' +\n 'not a blank node identifier.',\n 'jsonld.SyntaxError',\n {code: 'invalid type mapping', context: localCtx});\n }\n }\n\n // add @type to mapping\n mapping['@type'] = type;\n }\n\n if('@container' in value) {\n // normalize container to an array form\n const container = _isString(value['@container']) ?\n [value['@container']] : (value['@container'] || []);\n const validContainers = ['@list', '@set', '@index', '@language'];\n let isValid = true;\n const hasSet = container.includes('@set');\n\n // JSON-LD 1.1 support\n if(api.processingMode(activeCtx, 1.1)) {\n validContainers.push('@graph', '@id', '@type');\n\n // check container length\n if(container.includes('@list')) {\n if(container.length !== 1) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; @context @container with @list must ' +\n 'have no other values',\n 'jsonld.SyntaxError',\n {code: 'invalid container mapping', context: localCtx});\n }\n } else if(container.includes('@graph')) {\n if(container.some(key =>\n key !== '@graph' && key !== '@id' && key !== '@index' &&\n key !== '@set')) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; @context @container with @graph must ' +\n 'have no other values other than @id, @index, and @set',\n 'jsonld.SyntaxError',\n {code: 'invalid container mapping', context: localCtx});\n }\n } else {\n // otherwise, container may also include @set\n isValid &= container.length <= (hasSet ? 2 : 1);\n }\n\n if(container.includes('@type')) {\n // If mapping does not have an @type,\n // set it to @id\n mapping['@type'] = mapping['@type'] || '@id';\n\n // type mapping must be either @id or @vocab\n if(!['@id', '@vocab'].includes(mapping['@type'])) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; container: @type requires @type to be ' +\n '@id or @vocab.',\n 'jsonld.SyntaxError',\n {code: 'invalid type mapping', context: localCtx});\n }\n }\n } else {\n // in JSON-LD 1.0, container must not be an array (it must be a string,\n // which is one of the validContainers)\n isValid &= !_isArray(value['@container']);\n\n // check container length\n isValid &= container.length <= 1;\n }\n\n // check against valid containers\n isValid &= container.every(c => validContainers.includes(c));\n\n // @set not allowed with @list\n isValid &= !(hasSet && container.includes('@list'));\n\n if(!isValid) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; @context @container value must be ' +\n 'one of the following: ' + validContainers.join(', '),\n 'jsonld.SyntaxError',\n {code: 'invalid container mapping', context: localCtx});\n }\n\n if(mapping.reverse &&\n !container.every(c => ['@index', '@set'].includes(c))) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; @context @container value for a @reverse ' +\n 'type definition must be @index or @set.', 'jsonld.SyntaxError',\n {code: 'invalid reverse property', context: localCtx});\n }\n\n // add @container to mapping\n mapping['@container'] = container;\n }\n\n // property indexing\n if('@index' in value) {\n if(!('@container' in value) || !mapping['@container'].includes('@index')) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; @index without @index in @container: ' +\n `\"${value['@index']}\" on term \"${term}\".`, 'jsonld.SyntaxError',\n {code: 'invalid term definition', context: localCtx});\n }\n if(!_isString(value['@index']) || value['@index'].indexOf('@') === 0) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; @index must expand to an IRI: ' +\n `\"${value['@index']}\" on term \"${term}\".`, 'jsonld.SyntaxError',\n {code: 'invalid term definition', context: localCtx});\n }\n mapping['@index'] = value['@index'];\n }\n\n // scoped contexts\n if('@context' in value) {\n mapping['@context'] = value['@context'];\n }\n\n if('@language' in value && !('@type' in value)) {\n let language = value['@language'];\n if(language !== null && !_isString(language)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; @context @language value must be ' +\n 'a string or null.', 'jsonld.SyntaxError',\n {code: 'invalid language mapping', context: localCtx});\n }\n\n // add @language to mapping\n if(language !== null) {\n language = language.toLowerCase();\n }\n mapping['@language'] = language;\n }\n\n // term may be used as a prefix\n if('@prefix' in value) {\n if(term.match(/:|\\//)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; @context @prefix used on a compact IRI term',\n 'jsonld.SyntaxError',\n {code: 'invalid term definition', context: localCtx});\n }\n if(api.isKeyword(mapping['@id'])) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; keywords may not be used as prefixes',\n 'jsonld.SyntaxError',\n {code: 'invalid term definition', context: localCtx});\n }\n if(typeof value['@prefix'] === 'boolean') {\n mapping._prefix = value['@prefix'] === true;\n } else {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; @context value for @prefix must be boolean',\n 'jsonld.SyntaxError',\n {code: 'invalid @prefix value', context: localCtx});\n }\n }\n\n if('@direction' in value) {\n const direction = value['@direction'];\n if(direction !== null && direction !== 'ltr' && direction !== 'rtl') {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; @direction value must be ' +\n 'null, \"ltr\", or \"rtl\".',\n 'jsonld.SyntaxError',\n {code: 'invalid base direction', context: localCtx});\n }\n mapping['@direction'] = direction;\n }\n\n if('@nest' in value) {\n const nest = value['@nest'];\n if(!_isString(nest) || (nest !== '@nest' && nest.indexOf('@') === 0)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; @context @nest value must be ' +\n 'a string which is not a keyword other than @nest.',\n 'jsonld.SyntaxError',\n {code: 'invalid @nest value', context: localCtx});\n }\n mapping['@nest'] = nest;\n }\n\n // disallow aliasing @context and @preserve\n const id = mapping['@id'];\n if(id === '@context' || id === '@preserve') {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; @context and @preserve cannot be aliased.',\n 'jsonld.SyntaxError', {code: 'invalid keyword alias', context: localCtx});\n }\n\n // Check for overriding protected terms\n if(previousMapping && previousMapping.protected && !overrideProtected) {\n // force new term to continue to be protected and see if the mappings would\n // be equal\n activeCtx.protected[term] = true;\n mapping.protected = true;\n if(!_deepCompare(previousMapping, mapping)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; tried to redefine a protected term.',\n 'jsonld.SyntaxError',\n {code: 'protected term redefinition', context: localCtx, term});\n }\n }\n};\n\n/**\n * Expands a string to a full IRI. The string may be a term, a prefix, a\n * relative IRI, or an absolute IRI. The associated absolute IRI will be\n * returned.\n *\n * @param activeCtx the current active context.\n * @param value the string to expand.\n * @param relativeTo options for how to resolve relative IRIs:\n * base: true to resolve against the base IRI, false not to.\n * vocab: true to concatenate after @vocab, false not to.\n * @param {Object} [options] - processing options.\n *\n * @return the expanded value.\n */\napi.expandIri = (activeCtx, value, relativeTo, options) => {\n return _expandIri(activeCtx, value, relativeTo, undefined, undefined,\n options);\n};\n\n/**\n * Expands a string to a full IRI. The string may be a term, a prefix, a\n * relative IRI, or an absolute IRI. The associated absolute IRI will be\n * returned.\n *\n * @param activeCtx the current active context.\n * @param value the string to expand.\n * @param relativeTo options for how to resolve relative IRIs:\n * base: true to resolve against the base IRI, false not to.\n * vocab: true to concatenate after @vocab, false not to.\n * @param localCtx the local context being processed (only given if called\n * during context processing).\n * @param defined a map for tracking cycles in context definitions (only given\n * if called during context processing).\n * @param {Object} [options] - processing options.\n *\n * @return the expanded value.\n */\nfunction _expandIri(activeCtx, value, relativeTo, localCtx, defined, options) {\n // already expanded\n if(value === null || !_isString(value) || api.isKeyword(value)) {\n return value;\n }\n\n // ignore non-keyword things that look like a keyword\n if(value.match(REGEX_KEYWORD)) {\n return null;\n }\n\n // define term dependency if not defined\n if(localCtx && localCtx.hasOwnProperty(value) &&\n defined.get(value) !== true) {\n api.createTermDefinition({\n activeCtx, localCtx, term: value, defined, options\n });\n }\n\n relativeTo = relativeTo || {};\n if(relativeTo.vocab) {\n const mapping = activeCtx.mappings.get(value);\n\n // value is explicitly ignored with a null mapping\n if(mapping === null) {\n return null;\n }\n\n if(_isObject(mapping) && '@id' in mapping) {\n // value is a term\n return mapping['@id'];\n }\n }\n\n // split value into prefix:suffix\n const colon = value.indexOf(':');\n if(colon > 0) {\n const prefix = value.substr(0, colon);\n const suffix = value.substr(colon + 1);\n\n // do not expand blank nodes (prefix of '_') or already-absolute\n // IRIs (suffix of '//')\n if(prefix === '_' || suffix.indexOf('//') === 0) {\n return value;\n }\n\n // prefix dependency not defined, define it\n if(localCtx && localCtx.hasOwnProperty(prefix)) {\n api.createTermDefinition({\n activeCtx, localCtx, term: prefix, defined, options\n });\n }\n\n // use mapping if prefix is defined\n const mapping = activeCtx.mappings.get(prefix);\n if(mapping && mapping._prefix) {\n return mapping['@id'] + suffix;\n }\n\n // already absolute IRI\n if(_isAbsoluteIri(value)) {\n return value;\n }\n }\n\n // A flag that captures whether the iri being expanded is\n // the value for an @type\n //let typeExpansion = false;\n\n //if(options !== undefined && options.typeExpansion !== undefined) {\n // typeExpansion = options.typeExpansion;\n //}\n\n if(relativeTo.vocab && '@vocab' in activeCtx) {\n // prepend vocab\n const prependedResult = activeCtx['@vocab'] + value;\n // FIXME: needed? may be better as debug event.\n /*\n if(options && options.eventHandler) {\n _handleEvent({\n event: {\n type: ['JsonLdEvent'],\n code: 'prepending @vocab during expansion',\n level: 'info',\n message: 'Prepending @vocab during expansion.',\n details: {\n type: '@vocab',\n vocab: activeCtx['@vocab'],\n value,\n result: prependedResult,\n typeExpansion\n }\n },\n options\n });\n }\n */\n // the null case preserves value as potentially relative\n value = prependedResult;\n } else if(relativeTo.base) {\n // prepend base\n let prependedResult;\n let base;\n if('@base' in activeCtx) {\n if(activeCtx['@base']) {\n base = prependBase(options.base, activeCtx['@base']);\n prependedResult = prependBase(base, value);\n } else {\n base = activeCtx['@base'];\n prependedResult = value;\n }\n } else {\n base = options.base;\n prependedResult = prependBase(options.base, value);\n }\n // FIXME: needed? may be better as debug event.\n /*\n if(options && options.eventHandler) {\n _handleEvent({\n event: {\n type: ['JsonLdEvent'],\n code: 'prepending @base during expansion',\n level: 'info',\n message: 'Prepending @base during expansion.',\n details: {\n type: '@base',\n base,\n value,\n result: prependedResult,\n typeExpansion\n }\n },\n options\n });\n }\n */\n // the null case preserves value as potentially relative\n value = prependedResult;\n }\n\n // FIXME: duplicate? needed? maybe just enable in a verbose debug mode\n /*\n if(!_isAbsoluteIri(value) && options && options.eventHandler) {\n // emit event indicating a relative IRI was found, which can result in it\n // being dropped when converting to other RDF representations\n _handleEvent({\n event: {\n type: ['JsonLdEvent'],\n code: 'relative IRI after expansion',\n // FIXME: what level?\n level: 'warning',\n message: 'Relative IRI after expansion.',\n details: {\n relativeIri: value,\n typeExpansion\n }\n },\n options\n });\n // NOTE: relative reference events emitted at calling sites as needed\n }\n */\n\n return value;\n}\n\n/**\n * Gets the initial context.\n *\n * @param options the options to use:\n * [base] the document base IRI.\n *\n * @return the initial context.\n */\napi.getInitialContext = options => {\n const key = JSON.stringify({processingMode: options.processingMode});\n const cached = INITIAL_CONTEXT_CACHE.get(key);\n if(cached) {\n return cached;\n }\n\n const initialContext = {\n processingMode: options.processingMode,\n mappings: new Map(),\n inverse: null,\n getInverse: _createInverseContext,\n clone: _cloneActiveContext,\n revertToPreviousContext: _revertToPreviousContext,\n protected: {}\n };\n // TODO: consider using LRU cache instead\n if(INITIAL_CONTEXT_CACHE.size === INITIAL_CONTEXT_CACHE_MAX_SIZE) {\n // clear whole cache -- assumes scenario where the cache fills means\n // the cache isn't being used very efficiently anyway\n INITIAL_CONTEXT_CACHE.clear();\n }\n INITIAL_CONTEXT_CACHE.set(key, initialContext);\n return initialContext;\n\n /**\n * Generates an inverse context for use in the compaction algorithm, if\n * not already generated for the given active context.\n *\n * @return the inverse context.\n */\n function _createInverseContext() {\n const activeCtx = this;\n\n // lazily create inverse\n if(activeCtx.inverse) {\n return activeCtx.inverse;\n }\n const inverse = activeCtx.inverse = {};\n\n // variables for building fast CURIE map\n const fastCurieMap = activeCtx.fastCurieMap = {};\n const irisToTerms = {};\n\n // handle default language\n const defaultLanguage = (activeCtx['@language'] || '@none').toLowerCase();\n\n // handle default direction\n const defaultDirection = activeCtx['@direction'];\n\n // create term selections for each mapping in the context, ordered by\n // shortest and then lexicographically least\n const mappings = activeCtx.mappings;\n const terms = [...mappings.keys()].sort(_compareShortestLeast);\n for(const term of terms) {\n const mapping = mappings.get(term);\n if(mapping === null) {\n continue;\n }\n\n let container = mapping['@container'] || '@none';\n container = [].concat(container).sort().join('');\n\n if(mapping['@id'] === null) {\n continue;\n }\n // iterate over every IRI in the mapping\n const ids = _asArray(mapping['@id']);\n for(const iri of ids) {\n let entry = inverse[iri];\n const isKeyword = api.isKeyword(iri);\n\n if(!entry) {\n // initialize entry\n inverse[iri] = entry = {};\n\n if(!isKeyword && !mapping._termHasColon) {\n // init IRI to term map and fast CURIE prefixes\n irisToTerms[iri] = [term];\n const fastCurieEntry = {iri, terms: irisToTerms[iri]};\n if(iri[0] in fastCurieMap) {\n fastCurieMap[iri[0]].push(fastCurieEntry);\n } else {\n fastCurieMap[iri[0]] = [fastCurieEntry];\n }\n }\n } else if(!isKeyword && !mapping._termHasColon) {\n // add IRI to term match\n irisToTerms[iri].push(term);\n }\n\n // add new entry\n if(!entry[container]) {\n entry[container] = {\n '@language': {},\n '@type': {},\n '@any': {}\n };\n }\n entry = entry[container];\n _addPreferredTerm(term, entry['@any'], '@none');\n\n if(mapping.reverse) {\n // term is preferred for values using @reverse\n _addPreferredTerm(term, entry['@type'], '@reverse');\n } else if(mapping['@type'] === '@none') {\n _addPreferredTerm(term, entry['@any'], '@none');\n _addPreferredTerm(term, entry['@language'], '@none');\n _addPreferredTerm(term, entry['@type'], '@none');\n } else if('@type' in mapping) {\n // term is preferred for values using specific type\n _addPreferredTerm(term, entry['@type'], mapping['@type']);\n } else if('@language' in mapping && '@direction' in mapping) {\n // term is preferred for values using specific language and direction\n const language = mapping['@language'];\n const direction = mapping['@direction'];\n if(language && direction) {\n _addPreferredTerm(term, entry['@language'],\n `${language}_${direction}`.toLowerCase());\n } else if(language) {\n _addPreferredTerm(term, entry['@language'], language.toLowerCase());\n } else if(direction) {\n _addPreferredTerm(term, entry['@language'], `_${direction}`);\n } else {\n _addPreferredTerm(term, entry['@language'], '@null');\n }\n } else if('@language' in mapping) {\n _addPreferredTerm(term, entry['@language'],\n (mapping['@language'] || '@null').toLowerCase());\n } else if('@direction' in mapping) {\n if(mapping['@direction']) {\n _addPreferredTerm(term, entry['@language'],\n `_${mapping['@direction']}`);\n } else {\n _addPreferredTerm(term, entry['@language'], '@none');\n }\n } else if(defaultDirection) {\n _addPreferredTerm(term, entry['@language'], `_${defaultDirection}`);\n _addPreferredTerm(term, entry['@language'], '@none');\n _addPreferredTerm(term, entry['@type'], '@none');\n } else {\n // add entries for no type and no language\n _addPreferredTerm(term, entry['@language'], defaultLanguage);\n _addPreferredTerm(term, entry['@language'], '@none');\n _addPreferredTerm(term, entry['@type'], '@none');\n }\n }\n }\n\n // build fast CURIE map\n for(const key in fastCurieMap) {\n _buildIriMap(fastCurieMap, key, 1);\n }\n\n return inverse;\n }\n\n /**\n * Runs a recursive algorithm to build a lookup map for quickly finding\n * potential CURIEs.\n *\n * @param iriMap the map to build.\n * @param key the current key in the map to work on.\n * @param idx the index into the IRI to compare.\n */\n function _buildIriMap(iriMap, key, idx) {\n const entries = iriMap[key];\n const next = iriMap[key] = {};\n\n let iri;\n let letter;\n for(const entry of entries) {\n iri = entry.iri;\n if(idx >= iri.length) {\n letter = '';\n } else {\n letter = iri[idx];\n }\n if(letter in next) {\n next[letter].push(entry);\n } else {\n next[letter] = [entry];\n }\n }\n\n for(const key in next) {\n if(key === '') {\n continue;\n }\n _buildIriMap(next, key, idx + 1);\n }\n }\n\n /**\n * Adds the term for the given entry if not already added.\n *\n * @param term the term to add.\n * @param entry the inverse context typeOrLanguage entry to add to.\n * @param typeOrLanguageValue the key in the entry to add to.\n */\n function _addPreferredTerm(term, entry, typeOrLanguageValue) {\n if(!entry.hasOwnProperty(typeOrLanguageValue)) {\n entry[typeOrLanguageValue] = term;\n }\n }\n\n /**\n * Clones an active context, creating a child active context.\n *\n * @return a clone (child) of the active context.\n */\n function _cloneActiveContext() {\n const child = {};\n child.mappings = util.clone(this.mappings);\n child.clone = this.clone;\n child.inverse = null;\n child.getInverse = this.getInverse;\n child.protected = util.clone(this.protected);\n if(this.previousContext) {\n child.previousContext = this.previousContext.clone();\n }\n child.revertToPreviousContext = this.revertToPreviousContext;\n if('@base' in this) {\n child['@base'] = this['@base'];\n }\n if('@language' in this) {\n child['@language'] = this['@language'];\n }\n if('@vocab' in this) {\n child['@vocab'] = this['@vocab'];\n }\n return child;\n }\n\n /**\n * Reverts any type-scoped context in this active context to the previous\n * context.\n */\n function _revertToPreviousContext() {\n if(!this.previousContext) {\n return this;\n }\n return this.previousContext.clone();\n }\n};\n\n/**\n * Gets the value for the given active context key and type, null if none is\n * set or undefined if none is set and type is '@context'.\n *\n * @param ctx the active context.\n * @param key the context key.\n * @param [type] the type of value to get (eg: '@id', '@type'), if not\n * specified gets the entire entry for a key, null if not found.\n *\n * @return the value, null, or undefined.\n */\napi.getContextValue = (ctx, key, type) => {\n // invalid key\n if(key === null) {\n if(type === '@context') {\n return undefined;\n }\n return null;\n }\n\n // get specific entry information\n if(ctx.mappings.has(key)) {\n const entry = ctx.mappings.get(key);\n\n if(_isUndefined(type)) {\n // return whole entry\n return entry;\n }\n if(entry.hasOwnProperty(type)) {\n // return entry value for type\n return entry[type];\n }\n }\n\n // get default language\n if(type === '@language' && type in ctx) {\n return ctx[type];\n }\n\n // get default direction\n if(type === '@direction' && type in ctx) {\n return ctx[type];\n }\n\n if(type === '@context') {\n return undefined;\n }\n return null;\n};\n\n/**\n * Processing Mode check.\n *\n * @param activeCtx the current active context.\n * @param version the string or numeric version to check.\n *\n * @return boolean.\n */\napi.processingMode = (activeCtx, version) => {\n if(version.toString() >= '1.1') {\n return !activeCtx.processingMode ||\n activeCtx.processingMode >= 'json-ld-' + version.toString();\n } else {\n return activeCtx.processingMode === 'json-ld-1.0';\n }\n};\n\n/**\n * Returns whether or not the given value is a keyword.\n *\n * @param v the value to check.\n *\n * @return true if the value is a keyword, false if not.\n */\napi.isKeyword = v => {\n if(!_isString(v) || v[0] !== '@') {\n return false;\n }\n switch(v) {\n case '@base':\n case '@container':\n case '@context':\n case '@default':\n case '@direction':\n case '@embed':\n case '@explicit':\n case '@graph':\n case '@id':\n case '@included':\n case '@index':\n case '@json':\n case '@language':\n case '@list':\n case '@nest':\n case '@none':\n case '@omitDefault':\n case '@prefix':\n case '@preserve':\n case '@protected':\n case '@requireAll':\n case '@reverse':\n case '@set':\n case '@type':\n case '@value':\n case '@version':\n case '@vocab':\n return true;\n }\n return false;\n};\n\nfunction _deepCompare(x1, x2) {\n // compare `null` or primitive types directly\n if((!(x1 && typeof x1 === 'object')) ||\n (!(x2 && typeof x2 === 'object'))) {\n return x1 === x2;\n }\n // x1 and x2 are objects (also potentially arrays)\n const x1Array = Array.isArray(x1);\n if(x1Array !== Array.isArray(x2)) {\n return false;\n }\n if(x1Array) {\n if(x1.length !== x2.length) {\n return false;\n }\n for(let i = 0; i < x1.length; ++i) {\n if(!_deepCompare(x1[i], x2[i])) {\n return false;\n }\n }\n return true;\n }\n // x1 and x2 are non-array objects\n const k1s = Object.keys(x1);\n const k2s = Object.keys(x2);\n if(k1s.length !== k2s.length) {\n return false;\n }\n for(const k1 in x1) {\n let v1 = x1[k1];\n let v2 = x2[k1];\n // special case: `@container` can be in any order\n if(k1 === '@container') {\n if(Array.isArray(v1) && Array.isArray(v2)) {\n v1 = v1.slice().sort();\n v2 = v2.slice().sort();\n }\n }\n if(!_deepCompare(v1, v2)) {\n return false;\n }\n }\n return true;\n}\n","/*\n * Copyright (c) 2017 Digital Bazaar, Inc. All rights reserved.\n */\n'use strict';\n\nconst {parseLinkHeader, buildHeaders} = require('../util');\nconst {LINK_HEADER_CONTEXT} = require('../constants');\nconst JsonLdError = require('../JsonLdError');\nconst RequestQueue = require('../RequestQueue');\nconst {prependBase} = require('../url');\n\nconst REGEX_LINK_HEADER = /(^|(\\r\\n))link:/i;\n\n/**\n * Creates a built-in XMLHttpRequest document loader.\n *\n * @param options the options to use:\n * secure: require all URLs to use HTTPS.\n * headers: an object (map) of headers which will be passed as request\n * headers for the requested document. Accept is not allowed.\n * [xhr]: the XMLHttpRequest API to use.\n *\n * @return the XMLHttpRequest document loader.\n */\nmodule.exports = ({\n secure,\n headers = {},\n xhr\n} = {headers: {}}) => {\n headers = buildHeaders(headers);\n const queue = new RequestQueue();\n return queue.wrapLoader(loader);\n\n async function loader(url) {\n if(url.indexOf('http:') !== 0 && url.indexOf('https:') !== 0) {\n throw new JsonLdError(\n 'URL could not be dereferenced; only \"http\" and \"https\" URLs are ' +\n 'supported.',\n 'jsonld.InvalidUrl', {code: 'loading document failed', url});\n }\n if(secure && url.indexOf('https') !== 0) {\n throw new JsonLdError(\n 'URL could not be dereferenced; secure mode is enabled and ' +\n 'the URL\\'s scheme is not \"https\".',\n 'jsonld.InvalidUrl', {code: 'loading document failed', url});\n }\n\n let req;\n try {\n req = await _get(xhr, url, headers);\n } catch(e) {\n throw new JsonLdError(\n 'URL could not be dereferenced, an error occurred.',\n 'jsonld.LoadDocumentError',\n {code: 'loading document failed', url, cause: e});\n }\n\n if(req.status >= 400) {\n throw new JsonLdError(\n 'URL could not be dereferenced: ' + req.statusText,\n 'jsonld.LoadDocumentError', {\n code: 'loading document failed',\n url,\n httpStatusCode: req.status\n });\n }\n\n let doc = {contextUrl: null, documentUrl: url, document: req.response};\n let alternate = null;\n\n // handle Link Header (avoid unsafe header warning by existence testing)\n const contentType = req.getResponseHeader('Content-Type');\n let linkHeader;\n if(REGEX_LINK_HEADER.test(req.getAllResponseHeaders())) {\n linkHeader = req.getResponseHeader('Link');\n }\n if(linkHeader && contentType !== 'application/ld+json') {\n // only 1 related link header permitted\n const linkHeaders = parseLinkHeader(linkHeader);\n const linkedContext = linkHeaders[LINK_HEADER_CONTEXT];\n if(Array.isArray(linkedContext)) {\n throw new JsonLdError(\n 'URL could not be dereferenced, it has more than one ' +\n 'associated HTTP Link Header.',\n 'jsonld.InvalidUrl',\n {code: 'multiple context link headers', url});\n }\n if(linkedContext) {\n doc.contextUrl = linkedContext.target;\n }\n\n // \"alternate\" link header is a redirect\n alternate = linkHeaders.alternate;\n if(alternate &&\n alternate.type == 'application/ld+json' &&\n !(contentType || '').match(/^application\\/(\\w*\\+)?json$/)) {\n doc = await loader(prependBase(url, alternate.target));\n }\n }\n\n return doc;\n }\n};\n\nfunction _get(xhr, url, headers) {\n xhr = xhr || XMLHttpRequest;\n const req = new xhr();\n return new Promise((resolve, reject) => {\n req.onload = () => resolve(req);\n req.onerror = err => reject(err);\n req.open('GET', url, true);\n for(const k in headers) {\n req.setRequestHeader(k, headers[k]);\n }\n req.send();\n });\n}\n","/*\n * Copyright (c) 2020 Digital Bazaar, Inc. All rights reserved.\n */\n'use strict';\n\nconst JsonLdError = require('./JsonLdError');\n\nconst {\n isArray: _isArray\n} = require('./types');\n\nconst {\n asArray: _asArray\n} = require('./util');\n\nconst api = {};\nmodule.exports = api;\n\n// default handler, store as null or an array\n// exposed to allow fast external pre-handleEvent() checks\napi.defaultEventHandler = null;\n\n/**\n * Setup event handler.\n *\n * Return an array event handler constructed from an optional safe mode\n * handler, an optional options event handler, and an optional default handler.\n *\n * @param {object} options - processing options\n * {function|object|array} [eventHandler] - an event handler.\n *\n * @return an array event handler.\n */\napi.setupEventHandler = ({options = {}}) => {\n // build in priority order\n const eventHandler = [].concat(\n options.safe ? api.safeEventHandler : [],\n options.eventHandler ? _asArray(options.eventHandler) : [],\n api.defaultEventHandler ? api.defaultEventHandler : []\n );\n // null if no handlers\n return eventHandler.length === 0 ? null : eventHandler;\n};\n\n/**\n * Handle an event.\n *\n * Top level APIs have a common 'eventHandler' option. This option can be a\n * function, array of functions, object mapping event.code to functions (with a\n * default to call next()), or any combination of such handlers. Handlers will\n * be called with an object with an 'event' entry and a 'next' function. Custom\n * handlers should process the event as appropriate. The 'next()' function\n * should be called to let the next handler process the event.\n *\n * NOTE: Only call this function if options.eventHandler is set and is an\n * array of hanlers. This is an optimization. Callers are expected to check\n * for an event handler before constructing events and calling this function.\n *\n * @param {object} event - event structure:\n * {string} code - event code\n * {string} level - severity level, one of: ['warning']\n * {string} message - human readable message\n * {object} details - event specific details\n * @param {object} options - processing options\n * {array} eventHandler - an event handler array.\n */\napi.handleEvent = ({\n event,\n options\n}) => {\n _handle({event, handlers: options.eventHandler});\n};\n\nfunction _handle({event, handlers}) {\n let doNext = true;\n for(let i = 0; doNext && i < handlers.length; ++i) {\n doNext = false;\n const handler = handlers[i];\n if(_isArray(handler)) {\n doNext = _handle({event, handlers: handler});\n } else if(typeof handler === 'function') {\n handler({event, next: () => {\n doNext = true;\n }});\n } else if(typeof handler === 'object') {\n if(event.code in handler) {\n handler[event.code]({event, next: () => {\n doNext = true;\n }});\n } else {\n doNext = true;\n }\n } else {\n throw new JsonLdError(\n 'Invalid event handler.',\n 'jsonld.InvalidEventHandler',\n {event});\n }\n }\n return doNext;\n}\n\nconst _notSafeEventCodes = new Set([\n 'empty object',\n 'free-floating scalar',\n 'invalid @language value',\n 'invalid property',\n // NOTE: spec edge case\n 'null @id value',\n 'null @value value',\n 'object with only @id',\n 'object with only @language',\n 'object with only @list',\n 'object with only @value',\n 'relative @id reference',\n 'relative @type reference',\n 'relative @vocab reference',\n 'reserved @id value',\n 'reserved @reverse value',\n 'reserved term',\n // toRDF\n 'blank node predicate',\n 'relative graph reference',\n 'relative object reference',\n 'relative predicate reference',\n 'relative subject reference',\n // toRDF / fromRDF\n 'rdfDirection not set'\n]);\n\n// safe handler that rejects unsafe warning conditions\napi.safeEventHandler = function safeEventHandler({event, next}) {\n // fail on all unsafe warnings\n if(event.level === 'warning' && _notSafeEventCodes.has(event.code)) {\n throw new JsonLdError(\n 'Safe mode validation error.',\n 'jsonld.ValidationError',\n {event}\n );\n }\n next();\n};\n\n// logs all events and continues\napi.logEventHandler = function logEventHandler({event, next}) {\n console.log(`EVENT: ${event.message}`, {event});\n next();\n};\n\n// log 'warning' level events\napi.logWarningEventHandler = function logWarningEventHandler({event, next}) {\n if(event.level === 'warning') {\n console.warn(`WARNING: ${event.message}`, {event});\n }\n next();\n};\n\n// fallback to throw errors for any unhandled events\napi.unhandledEventHandler = function unhandledEventHandler({event}) {\n throw new JsonLdError(\n 'No handler for event.',\n 'jsonld.UnhandledEvent',\n {event}\n );\n};\n\n/**\n * Set default event handler.\n *\n * By default, all event are unhandled. It is recommended to pass in an\n * eventHandler into each call. However, this call allows using a default\n * eventHandler when one is not otherwise provided.\n *\n * @param {object} options - default handler options:\n * {function|object|array} eventHandler - a default event handler.\n * falsey to unset.\n */\napi.setDefaultEventHandler = function({eventHandler} = {}) {\n api.defaultEventHandler = eventHandler ? _asArray(eventHandler) : null;\n};\n","/*\n * Copyright (c) 2017 Digital Bazaar, Inc. All rights reserved.\n */\n'use strict';\n\nconst JsonLdError = require('./JsonLdError');\n\nconst {\n isArray: _isArray,\n isObject: _isObject,\n isEmptyObject: _isEmptyObject,\n isString: _isString,\n isUndefined: _isUndefined\n} = require('./types');\n\nconst {\n isList: _isList,\n isValue: _isValue,\n isGraph: _isGraph,\n isSubject: _isSubject\n} = require('./graphTypes');\n\nconst {\n expandIri: _expandIri,\n getContextValue: _getContextValue,\n isKeyword: _isKeyword,\n process: _processContext,\n processingMode: _processingMode\n} = require('./context');\n\nconst {\n isAbsolute: _isAbsoluteIri\n} = require('./url');\n\nconst {\n REGEX_BCP47,\n REGEX_KEYWORD,\n addValue: _addValue,\n asArray: _asArray,\n getValues: _getValues,\n validateTypeValue: _validateTypeValue\n} = require('./util');\n\nconst {\n handleEvent: _handleEvent\n} = require('./events');\n\nconst api = {};\nmodule.exports = api;\n\n/**\n * Recursively expands an element using the given context. Any context in\n * the element will be removed. All context URLs must have been retrieved\n * before calling this method.\n *\n * @param activeCtx the context to use.\n * @param activeProperty the property for the element, null for none.\n * @param element the element to expand.\n * @param options the expansion options.\n * @param insideList true if the element is a list, false if not.\n * @param insideIndex true if the element is inside an index container,\n * false if not.\n * @param typeScopedContext an optional type-scoped active context for\n * expanding values of nodes that were expressed according to\n * a type-scoped context.\n *\n * @return a Promise that resolves to the expanded value.\n */\napi.expand = async ({\n activeCtx,\n activeProperty = null,\n element,\n options = {},\n insideList = false,\n insideIndex = false,\n typeScopedContext = null\n}) => {\n // nothing to expand\n if(element === null || element === undefined) {\n return null;\n }\n\n // disable framing if activeProperty is @default\n if(activeProperty === '@default') {\n options = Object.assign({}, options, {isFrame: false});\n }\n\n if(!_isArray(element) && !_isObject(element)) {\n // drop free-floating scalars that are not in lists\n if(!insideList && (activeProperty === null ||\n _expandIri(activeCtx, activeProperty, {vocab: true},\n options) === '@graph')) {\n // FIXME\n if(options.eventHandler) {\n _handleEvent({\n event: {\n type: ['JsonLdEvent'],\n code: 'free-floating scalar',\n level: 'warning',\n message: 'Dropping free-floating scalar not in a list.',\n details: {\n value: element\n //activeProperty\n //insideList\n }\n },\n options\n });\n }\n return null;\n }\n\n // expand element according to value expansion rules\n return _expandValue({activeCtx, activeProperty, value: element, options});\n }\n\n // recursively expand array\n if(_isArray(element)) {\n let rval = [];\n const container = _getContextValue(\n activeCtx, activeProperty, '@container') || [];\n insideList = insideList || container.includes('@list');\n for(let i = 0; i < element.length; ++i) {\n // expand element\n let e = await api.expand({\n activeCtx,\n activeProperty,\n element: element[i],\n options,\n insideIndex,\n typeScopedContext\n });\n if(insideList && _isArray(e)) {\n e = {'@list': e};\n }\n\n if(e === null) {\n // FIXME: add debug event?\n //unmappedValue: element[i],\n //activeProperty,\n //parent: element,\n //index: i,\n //expandedParent: rval,\n //insideList\n\n // NOTE: no-value events emitted at calling sites as needed\n continue;\n }\n\n if(_isArray(e)) {\n rval = rval.concat(e);\n } else {\n rval.push(e);\n }\n }\n return rval;\n }\n\n // recursively expand object:\n\n // first, expand the active property\n const expandedActiveProperty = _expandIri(\n activeCtx, activeProperty, {vocab: true}, options);\n\n // Get any property-scoped context for activeProperty\n const propertyScopedCtx =\n _getContextValue(activeCtx, activeProperty, '@context');\n\n // second, determine if any type-scoped context should be reverted; it\n // should only be reverted when the following are all true:\n // 1. `element` is not a value or subject reference\n // 2. `insideIndex` is false\n typeScopedContext = typeScopedContext ||\n (activeCtx.previousContext ? activeCtx : null);\n let keys = Object.keys(element).sort();\n let mustRevert = !insideIndex;\n if(mustRevert && typeScopedContext && keys.length <= 2 &&\n !keys.includes('@context')) {\n for(const key of keys) {\n const expandedProperty = _expandIri(\n typeScopedContext, key, {vocab: true}, options);\n if(expandedProperty === '@value') {\n // value found, ensure type-scoped context is used to expand it\n mustRevert = false;\n activeCtx = typeScopedContext;\n break;\n }\n if(expandedProperty === '@id' && keys.length === 1) {\n // subject reference found, do not revert\n mustRevert = false;\n break;\n }\n }\n }\n\n if(mustRevert) {\n // revert type scoped context\n activeCtx = activeCtx.revertToPreviousContext();\n }\n\n // apply property-scoped context after reverting term-scoped context\n if(!_isUndefined(propertyScopedCtx)) {\n activeCtx = await _processContext({\n activeCtx,\n localCtx: propertyScopedCtx,\n propagate: true,\n overrideProtected: true,\n options\n });\n }\n\n // if element has a context, process it\n if('@context' in element) {\n activeCtx = await _processContext(\n {activeCtx, localCtx: element['@context'], options});\n }\n\n // set the type-scoped context to the context on input, for use later\n typeScopedContext = activeCtx;\n\n // Remember the first key found expanding to @type\n let typeKey = null;\n\n // look for scoped contexts on `@type`\n for(const key of keys) {\n const expandedProperty = _expandIri(activeCtx, key, {vocab: true}, options);\n if(expandedProperty === '@type') {\n // set scoped contexts from @type\n // avoid sorting if possible\n typeKey = typeKey || key;\n const value = element[key];\n const types =\n Array.isArray(value) ?\n (value.length > 1 ? value.slice().sort() : value) : [value];\n for(const type of types) {\n const ctx = _getContextValue(typeScopedContext, type, '@context');\n if(!_isUndefined(ctx)) {\n activeCtx = await _processContext({\n activeCtx,\n localCtx: ctx,\n options,\n propagate: false\n });\n }\n }\n }\n }\n\n // process each key and value in element, ignoring @nest content\n let rval = {};\n await _expandObject({\n activeCtx,\n activeProperty,\n expandedActiveProperty,\n element,\n expandedParent: rval,\n options,\n insideList,\n typeKey,\n typeScopedContext\n });\n\n // get property count on expanded output\n keys = Object.keys(rval);\n let count = keys.length;\n\n if('@value' in rval) {\n // @value must only have @language or @type\n if('@type' in rval && ('@language' in rval || '@direction' in rval)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; an element containing \"@value\" may not ' +\n 'contain both \"@type\" and either \"@language\" or \"@direction\".',\n 'jsonld.SyntaxError', {code: 'invalid value object', element: rval});\n }\n let validCount = count - 1;\n if('@type' in rval) {\n validCount -= 1;\n }\n if('@index' in rval) {\n validCount -= 1;\n }\n if('@language' in rval) {\n validCount -= 1;\n }\n if('@direction' in rval) {\n validCount -= 1;\n }\n if(validCount !== 0) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; an element containing \"@value\" may only ' +\n 'have an \"@index\" property and either \"@type\" ' +\n 'or either or both \"@language\" or \"@direction\".',\n 'jsonld.SyntaxError', {code: 'invalid value object', element: rval});\n }\n const values = rval['@value'] === null ? [] : _asArray(rval['@value']);\n const types = _getValues(rval, '@type');\n\n // drop null @values\n if(_processingMode(activeCtx, 1.1) && types.includes('@json') &&\n types.length === 1) {\n // Any value of @value is okay if @type: @json\n } else if(values.length === 0) {\n // FIXME\n if(options.eventHandler) {\n _handleEvent({\n event: {\n type: ['JsonLdEvent'],\n code: 'null @value value',\n level: 'warning',\n message: 'Dropping null @value value.',\n details: {\n value: rval\n }\n },\n options\n });\n }\n rval = null;\n } else if(!values.every(v => (_isString(v) || _isEmptyObject(v))) &&\n '@language' in rval) {\n // if @language is present, @value must be a string\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; only strings may be language-tagged.',\n 'jsonld.SyntaxError',\n {code: 'invalid language-tagged value', element: rval});\n } else if(!types.every(t =>\n (_isAbsoluteIri(t) && !(_isString(t) && t.indexOf('_:') === 0) ||\n _isEmptyObject(t)))) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; an element containing \"@value\" and \"@type\" ' +\n 'must have an absolute IRI for the value of \"@type\".',\n 'jsonld.SyntaxError', {code: 'invalid typed value', element: rval});\n }\n } else if('@type' in rval && !_isArray(rval['@type'])) {\n // convert @type to an array\n rval['@type'] = [rval['@type']];\n } else if('@set' in rval || '@list' in rval) {\n // handle @set and @list\n if(count > 1 && !(count === 2 && '@index' in rval)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; if an element has the property \"@set\" ' +\n 'or \"@list\", then it can have at most one other property that is ' +\n '\"@index\".', 'jsonld.SyntaxError',\n {code: 'invalid set or list object', element: rval});\n }\n // optimize away @set\n if('@set' in rval) {\n rval = rval['@set'];\n keys = Object.keys(rval);\n count = keys.length;\n }\n } else if(count === 1 && '@language' in rval) {\n // drop objects with only @language\n // FIXME\n if(options.eventHandler) {\n _handleEvent({\n event: {\n type: ['JsonLdEvent'],\n code: 'object with only @language',\n level: 'warning',\n message: 'Dropping object with only @language.',\n details: {\n value: rval\n }\n },\n options\n });\n }\n rval = null;\n }\n\n // drop certain top-level objects that do not occur in lists\n if(_isObject(rval) &&\n !options.keepFreeFloatingNodes && !insideList &&\n (activeProperty === null ||\n expandedActiveProperty === '@graph' ||\n (_getContextValue(activeCtx, activeProperty, '@container') || [])\n .includes('@graph')\n )) {\n // drop empty object, top-level @value/@list, or object with only @id\n rval = _dropUnsafeObject({value: rval, count, options});\n }\n\n return rval;\n};\n\n/**\n * Drop empty object, top-level @value/@list, or object with only @id\n *\n * @param value Value to check.\n * @param count Number of properties in object.\n * @param options The expansion options.\n *\n * @return null if dropped, value otherwise.\n */\nfunction _dropUnsafeObject({\n value,\n count,\n options\n}) {\n if(count === 0 || '@value' in value || '@list' in value ||\n (count === 1 && '@id' in value)) {\n // FIXME\n if(options.eventHandler) {\n // FIXME: one event or diff event for empty, @v/@l, {@id}?\n let code;\n let message;\n if(count === 0) {\n code = 'empty object';\n message = 'Dropping empty object.';\n } else if('@value' in value) {\n code = 'object with only @value';\n message = 'Dropping object with only @value.';\n } else if('@list' in value) {\n code = 'object with only @list';\n message = 'Dropping object with only @list.';\n } else if(count === 1 && '@id' in value) {\n code = 'object with only @id';\n message = 'Dropping object with only @id.';\n }\n _handleEvent({\n event: {\n type: ['JsonLdEvent'],\n code,\n level: 'warning',\n message,\n details: {\n value\n }\n },\n options\n });\n }\n return null;\n }\n return value;\n}\n\n/**\n * Expand each key and value of element adding to result\n *\n * @param activeCtx the context to use.\n * @param activeProperty the property for the element.\n * @param expandedActiveProperty the expansion of activeProperty\n * @param element the element to expand.\n * @param expandedParent the expanded result into which to add values.\n * @param options the expansion options.\n * @param insideList true if the element is a list, false if not.\n * @param typeKey first key found expanding to @type.\n * @param typeScopedContext the context before reverting.\n */\nasync function _expandObject({\n activeCtx,\n activeProperty,\n expandedActiveProperty,\n element,\n expandedParent,\n options = {},\n insideList,\n typeKey,\n typeScopedContext\n}) {\n const keys = Object.keys(element).sort();\n const nests = [];\n let unexpandedValue;\n\n // Figure out if this is the type for a JSON literal\n const isJsonType = element[typeKey] &&\n _expandIri(activeCtx,\n (_isArray(element[typeKey]) ? element[typeKey][0] : element[typeKey]),\n {vocab: true}, {\n ...options,\n typeExpansion: true\n }) === '@json';\n\n for(const key of keys) {\n let value = element[key];\n let expandedValue;\n\n // skip @context\n if(key === '@context') {\n continue;\n }\n\n // expand property\n const expandedProperty = _expandIri(activeCtx, key, {vocab: true}, options);\n\n // drop non-absolute IRI keys that aren't keywords\n if(expandedProperty === null ||\n !(_isAbsoluteIri(expandedProperty) || _isKeyword(expandedProperty))) {\n if(options.eventHandler) {\n _handleEvent({\n event: {\n type: ['JsonLdEvent'],\n code: 'invalid property',\n level: 'warning',\n message: 'Dropping property that did not expand into an ' +\n 'absolute IRI or keyword.',\n details: {\n property: key,\n expandedProperty\n }\n },\n options\n });\n }\n continue;\n }\n\n if(_isKeyword(expandedProperty)) {\n if(expandedActiveProperty === '@reverse') {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; a keyword cannot be used as a @reverse ' +\n 'property.', 'jsonld.SyntaxError',\n {code: 'invalid reverse property map', value});\n }\n if(expandedProperty in expandedParent &&\n expandedProperty !== '@included' &&\n expandedProperty !== '@type') {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; colliding keywords detected.',\n 'jsonld.SyntaxError',\n {code: 'colliding keywords', keyword: expandedProperty});\n }\n }\n\n // syntax error if @id is not a string\n if(expandedProperty === '@id') {\n if(!_isString(value)) {\n if(!options.isFrame) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; \"@id\" value must a string.',\n 'jsonld.SyntaxError', {code: 'invalid @id value', value});\n }\n if(_isObject(value)) {\n // empty object is a wildcard\n if(!_isEmptyObject(value)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; \"@id\" value an empty object or array ' +\n 'of strings, if framing',\n 'jsonld.SyntaxError', {code: 'invalid @id value', value});\n }\n } else if(_isArray(value)) {\n if(!value.every(v => _isString(v))) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; \"@id\" value an empty object or array ' +\n 'of strings, if framing',\n 'jsonld.SyntaxError', {code: 'invalid @id value', value});\n }\n } else {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; \"@id\" value an empty object or array ' +\n 'of strings, if framing',\n 'jsonld.SyntaxError', {code: 'invalid @id value', value});\n }\n }\n\n _addValue(\n expandedParent, '@id',\n _asArray(value).map(v => {\n if(_isString(v)) {\n const ve = _expandIri(activeCtx, v, {base: true}, options);\n if(options.eventHandler) {\n if(ve === null) {\n // NOTE: spec edge case\n // See https://github.com/w3c/json-ld-api/issues/480\n if(v === null) {\n _handleEvent({\n event: {\n type: ['JsonLdEvent'],\n code: 'null @id value',\n level: 'warning',\n message: 'Null @id found.',\n details: {\n id: v\n }\n },\n options\n });\n } else {\n // matched KEYWORD regex\n _handleEvent({\n event: {\n type: ['JsonLdEvent'],\n code: 'reserved @id value',\n level: 'warning',\n message: 'Reserved @id found.',\n details: {\n id: v\n }\n },\n options\n });\n }\n } else if(!_isAbsoluteIri(ve)) {\n _handleEvent({\n event: {\n type: ['JsonLdEvent'],\n code: 'relative @id reference',\n level: 'warning',\n message: 'Relative @id reference found.',\n details: {\n id: v,\n expandedId: ve\n }\n },\n options\n });\n }\n }\n return ve;\n }\n return v;\n }),\n {propertyIsArray: options.isFrame});\n continue;\n }\n\n if(expandedProperty === '@type') {\n // if framing, can be a default object, but need to expand\n // key to determine that\n if(_isObject(value)) {\n value = Object.fromEntries(Object.entries(value).map(([k, v]) => [\n _expandIri(typeScopedContext, k, {vocab: true}),\n _asArray(v).map(vv =>\n _expandIri(typeScopedContext, vv, {base: true, vocab: true},\n {...options, typeExpansion: true})\n )\n ]));\n }\n _validateTypeValue(value, options.isFrame);\n _addValue(\n expandedParent, '@type',\n _asArray(value).map(v => {\n if(_isString(v)) {\n const ve = _expandIri(typeScopedContext, v,\n {base: true, vocab: true},\n {...options, typeExpansion: true});\n if(ve !== '@json' && !_isAbsoluteIri(ve)) {\n if(options.eventHandler) {\n _handleEvent({\n event: {\n type: ['JsonLdEvent'],\n code: 'relative @type reference',\n level: 'warning',\n message: 'Relative @type reference found.',\n details: {\n type: v\n }\n },\n options\n });\n }\n }\n return ve;\n }\n return v;\n }),\n {propertyIsArray: !!options.isFrame});\n continue;\n }\n\n // Included blocks are treated as an array of separate object nodes sharing\n // the same referencing active_property.\n // For 1.0, it is skipped as are other unknown keywords\n if(expandedProperty === '@included' && _processingMode(activeCtx, 1.1)) {\n const includedResult = _asArray(await api.expand({\n activeCtx,\n activeProperty,\n element: value,\n options\n }));\n\n // Expanded values must be node objects\n if(!includedResult.every(v => _isSubject(v))) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; ' +\n 'values of @included must expand to node objects.',\n 'jsonld.SyntaxError', {code: 'invalid @included value', value});\n }\n\n _addValue(\n expandedParent, '@included', includedResult, {propertyIsArray: true});\n continue;\n }\n\n // @graph must be an array or an object\n if(expandedProperty === '@graph' &&\n !(_isObject(value) || _isArray(value))) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; \"@graph\" value must not be an ' +\n 'object or an array.',\n 'jsonld.SyntaxError', {code: 'invalid @graph value', value});\n }\n\n if(expandedProperty === '@value') {\n // capture value for later\n // \"colliding keywords\" check prevents this from being set twice\n unexpandedValue = value;\n if(isJsonType && _processingMode(activeCtx, 1.1)) {\n // no coercion to array, and retain all values\n expandedParent['@value'] = value;\n } else {\n _addValue(\n expandedParent, '@value', value, {propertyIsArray: options.isFrame});\n }\n continue;\n }\n\n // @language must be a string\n // it should match BCP47\n if(expandedProperty === '@language') {\n if(value === null) {\n // drop null @language values, they expand as if they didn't exist\n continue;\n }\n if(!_isString(value) && !options.isFrame) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; \"@language\" value must be a string.',\n 'jsonld.SyntaxError',\n {code: 'invalid language-tagged string', value});\n }\n // ensure language value is lowercase\n value = _asArray(value).map(v => _isString(v) ? v.toLowerCase() : v);\n\n // ensure language tag matches BCP47\n for(const language of value) {\n if(_isString(language) && !language.match(REGEX_BCP47)) {\n if(options.eventHandler) {\n _handleEvent({\n event: {\n type: ['JsonLdEvent'],\n code: 'invalid @language value',\n level: 'warning',\n message: '@language value must be valid BCP47.',\n details: {\n language\n }\n },\n options\n });\n }\n }\n }\n\n _addValue(\n expandedParent, '@language', value, {propertyIsArray: options.isFrame});\n continue;\n }\n\n // @direction must be \"ltr\" or \"rtl\"\n if(expandedProperty === '@direction') {\n if(!_isString(value) && !options.isFrame) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; \"@direction\" value must be a string.',\n 'jsonld.SyntaxError',\n {code: 'invalid base direction', value});\n }\n\n value = _asArray(value);\n\n // ensure direction is \"ltr\" or \"rtl\"\n for(const dir of value) {\n if(_isString(dir) && dir !== 'ltr' && dir !== 'rtl') {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; \"@direction\" must be \"ltr\" or \"rtl\".',\n 'jsonld.SyntaxError',\n {code: 'invalid base direction', value});\n }\n }\n\n _addValue(\n expandedParent, '@direction', value,\n {propertyIsArray: options.isFrame});\n continue;\n }\n\n // @index must be a string\n if(expandedProperty === '@index') {\n if(!_isString(value)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; \"@index\" value must be a string.',\n 'jsonld.SyntaxError',\n {code: 'invalid @index value', value});\n }\n _addValue(expandedParent, '@index', value);\n continue;\n }\n\n // @reverse must be an object\n if(expandedProperty === '@reverse') {\n if(!_isObject(value)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; \"@reverse\" value must be an object.',\n 'jsonld.SyntaxError', {code: 'invalid @reverse value', value});\n }\n\n expandedValue = await api.expand({\n activeCtx,\n activeProperty: '@reverse',\n element: value,\n options\n });\n // properties double-reversed\n if('@reverse' in expandedValue) {\n for(const property in expandedValue['@reverse']) {\n _addValue(\n expandedParent, property, expandedValue['@reverse'][property],\n {propertyIsArray: true});\n }\n }\n\n // FIXME: can this be merged with code below to simplify?\n // merge in all reversed properties\n let reverseMap = expandedParent['@reverse'] || null;\n for(const property in expandedValue) {\n if(property === '@reverse') {\n continue;\n }\n if(reverseMap === null) {\n reverseMap = expandedParent['@reverse'] = {};\n }\n _addValue(reverseMap, property, [], {propertyIsArray: true});\n const items = expandedValue[property];\n for(let ii = 0; ii < items.length; ++ii) {\n const item = items[ii];\n if(_isValue(item) || _isList(item)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; \"@reverse\" value must not be a ' +\n '@value or an @list.', 'jsonld.SyntaxError',\n {code: 'invalid reverse property value', value: expandedValue});\n }\n _addValue(reverseMap, property, item, {propertyIsArray: true});\n }\n }\n\n continue;\n }\n\n // nested keys\n if(expandedProperty === '@nest') {\n nests.push(key);\n continue;\n }\n\n // use potential scoped context for key\n let termCtx = activeCtx;\n const ctx = _getContextValue(activeCtx, key, '@context');\n if(!_isUndefined(ctx)) {\n termCtx = await _processContext({\n activeCtx,\n localCtx: ctx,\n propagate: true,\n overrideProtected: true,\n options\n });\n }\n\n const container = _getContextValue(activeCtx, key, '@container') || [];\n\n if(container.includes('@language') && _isObject(value)) {\n const direction = _getContextValue(termCtx, key, '@direction');\n // handle language map container (skip if value is not an object)\n expandedValue = _expandLanguageMap(termCtx, value, direction, options);\n } else if(container.includes('@index') && _isObject(value)) {\n // handle index container (skip if value is not an object)\n const asGraph = container.includes('@graph');\n const indexKey = _getContextValue(termCtx, key, '@index') || '@index';\n const propertyIndex = indexKey !== '@index' &&\n _expandIri(activeCtx, indexKey, {vocab: true}, options);\n\n expandedValue = await _expandIndexMap({\n activeCtx: termCtx,\n options,\n activeProperty: key,\n value,\n asGraph,\n indexKey,\n propertyIndex\n });\n } else if(container.includes('@id') && _isObject(value)) {\n // handle id container (skip if value is not an object)\n const asGraph = container.includes('@graph');\n expandedValue = await _expandIndexMap({\n activeCtx: termCtx,\n options,\n activeProperty: key,\n value,\n asGraph,\n indexKey: '@id'\n });\n } else if(container.includes('@type') && _isObject(value)) {\n // handle type container (skip if value is not an object)\n expandedValue = await _expandIndexMap({\n // since container is `@type`, revert type scoped context when expanding\n activeCtx: termCtx.revertToPreviousContext(),\n options,\n activeProperty: key,\n value,\n asGraph: false,\n indexKey: '@type'\n });\n } else {\n // recurse into @list or @set\n const isList = expandedProperty === '@list';\n if(isList || expandedProperty === '@set') {\n let nextActiveProperty = activeProperty;\n if(isList && expandedActiveProperty === '@graph') {\n nextActiveProperty = null;\n }\n expandedValue = await api.expand({\n activeCtx: termCtx,\n activeProperty: nextActiveProperty,\n element: value,\n options,\n insideList: isList\n });\n } else if(\n _getContextValue(activeCtx, key, '@type') === '@json') {\n expandedValue = {\n '@type': '@json',\n '@value': value\n };\n } else {\n // recursively expand value with key as new active property\n expandedValue = await api.expand({\n activeCtx: termCtx,\n activeProperty: key,\n element: value,\n options,\n insideList: false\n });\n }\n }\n\n // drop null values if property is not @value\n if(expandedValue === null && expandedProperty !== '@value') {\n // FIXME: event?\n //unmappedValue: value,\n //expandedProperty,\n //key,\n continue;\n }\n\n // convert expanded value to @list if container specifies it\n if(expandedProperty !== '@list' && !_isList(expandedValue) &&\n container.includes('@list')) {\n // ensure expanded value in @list is an array\n expandedValue = {'@list': _asArray(expandedValue)};\n }\n\n // convert expanded value to @graph if container specifies it\n // and value is not, itself, a graph\n // index cases handled above\n if(container.includes('@graph') &&\n !container.some(key => key === '@id' || key === '@index')) {\n // ensure expanded values are in an array\n expandedValue = _asArray(expandedValue);\n if(!options.isFrame) {\n // drop items if needed\n expandedValue = expandedValue.filter(v => {\n const count = Object.keys(v).length;\n return _dropUnsafeObject({value: v, count, options}) !== null;\n });\n }\n if(expandedValue.length === 0) {\n // all items dropped, skip adding and continue\n continue;\n }\n // convert to graph\n expandedValue = expandedValue.map(v => ({'@graph': _asArray(v)}));\n }\n\n // FIXME: can this be merged with code above to simplify?\n // merge in reverse properties\n if(termCtx.mappings.has(key) && termCtx.mappings.get(key).reverse) {\n const reverseMap =\n expandedParent['@reverse'] = expandedParent['@reverse'] || {};\n expandedValue = _asArray(expandedValue);\n for(let ii = 0; ii < expandedValue.length; ++ii) {\n const item = expandedValue[ii];\n if(_isValue(item) || _isList(item)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; \"@reverse\" value must not be a ' +\n '@value or an @list.', 'jsonld.SyntaxError',\n {code: 'invalid reverse property value', value: expandedValue});\n }\n _addValue(reverseMap, expandedProperty, item, {propertyIsArray: true});\n }\n continue;\n }\n\n // add value for property\n // special keywords handled above\n _addValue(expandedParent, expandedProperty, expandedValue, {\n propertyIsArray: true\n });\n }\n\n // @value must not be an object or an array (unless framing) or if @type is\n // @json\n if('@value' in expandedParent) {\n if(expandedParent['@type'] === '@json' && _processingMode(activeCtx, 1.1)) {\n // allow any value, to be verified when the object is fully expanded and\n // the @type is @json.\n } else if((_isObject(unexpandedValue) || _isArray(unexpandedValue)) &&\n !options.isFrame) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; \"@value\" value must not be an ' +\n 'object or an array.',\n 'jsonld.SyntaxError',\n {code: 'invalid value object value', value: unexpandedValue});\n }\n }\n\n // expand each nested key\n for(const key of nests) {\n const nestedValues = _isArray(element[key]) ? element[key] : [element[key]];\n for(const nv of nestedValues) {\n if(!_isObject(nv) || Object.keys(nv).some(k =>\n _expandIri(activeCtx, k, {vocab: true}, options) === '@value')) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; nested value must be a node object.',\n 'jsonld.SyntaxError',\n {code: 'invalid @nest value', value: nv});\n }\n await _expandObject({\n activeCtx,\n activeProperty,\n expandedActiveProperty,\n element: nv,\n expandedParent,\n options,\n insideList,\n typeScopedContext,\n typeKey\n });\n }\n }\n}\n\n/**\n * Expands the given value by using the coercion and keyword rules in the\n * given context.\n *\n * @param activeCtx the active context to use.\n * @param activeProperty the active property the value is associated with.\n * @param value the value to expand.\n * @param {Object} [options] - processing options.\n *\n * @return the expanded value.\n */\nfunction _expandValue({activeCtx, activeProperty, value, options}) {\n // nothing to expand\n if(value === null || value === undefined) {\n return null;\n }\n\n // special-case expand @id and @type (skips '@id' expansion)\n const expandedProperty = _expandIri(\n activeCtx, activeProperty, {vocab: true}, options);\n if(expandedProperty === '@id') {\n return _expandIri(activeCtx, value, {base: true}, options);\n } else if(expandedProperty === '@type') {\n return _expandIri(activeCtx, value, {vocab: true, base: true},\n {...options, typeExpansion: true});\n }\n\n // get type definition from context\n const type = _getContextValue(activeCtx, activeProperty, '@type');\n\n // do @id expansion (automatic for @graph)\n if((type === '@id' || expandedProperty === '@graph') && _isString(value)) {\n const expandedValue = _expandIri(activeCtx, value, {base: true}, options);\n // NOTE: handle spec edge case and avoid invalid {\"@id\": null}\n if(expandedValue === null && value.match(REGEX_KEYWORD)) {\n if(options.eventHandler) {\n _handleEvent({\n event: {\n type: ['JsonLdEvent'],\n code: 'reserved @id value',\n level: 'warning',\n message: 'Reserved @id found.',\n details: {\n id: activeProperty\n }\n },\n options\n });\n }\n }\n return {'@id': expandedValue};\n }\n // do @id expansion w/vocab\n if(type === '@vocab' && _isString(value)) {\n return {\n '@id': _expandIri(activeCtx, value, {vocab: true, base: true}, options)\n };\n }\n\n // do not expand keyword values\n if(_isKeyword(expandedProperty)) {\n return value;\n }\n\n const rval = {};\n\n if(type && !['@id', '@vocab', '@none'].includes(type)) {\n // other type\n rval['@type'] = type;\n } else if(_isString(value)) {\n // check for language tagging for strings\n const language = _getContextValue(activeCtx, activeProperty, '@language');\n if(language !== null) {\n rval['@language'] = language;\n }\n const direction = _getContextValue(activeCtx, activeProperty, '@direction');\n if(direction !== null) {\n rval['@direction'] = direction;\n }\n }\n // do conversion of values that aren't basic JSON types to strings\n if(!['boolean', 'number', 'string'].includes(typeof value)) {\n value = value.toString();\n }\n rval['@value'] = value;\n\n return rval;\n}\n\n/**\n * Expands a language map.\n *\n * @param activeCtx the active context to use.\n * @param languageMap the language map to expand.\n * @param direction the direction to apply to values.\n * @param {Object} [options] - processing options.\n *\n * @return the expanded language map.\n */\nfunction _expandLanguageMap(activeCtx, languageMap, direction, options) {\n const rval = [];\n const keys = Object.keys(languageMap).sort();\n for(const key of keys) {\n const expandedKey = _expandIri(activeCtx, key, {vocab: true}, options);\n let val = languageMap[key];\n if(!_isArray(val)) {\n val = [val];\n }\n for(const item of val) {\n if(item === null) {\n // null values are allowed (8.5) but ignored (3.1)\n continue;\n }\n if(!_isString(item)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; language map values must be strings.',\n 'jsonld.SyntaxError',\n {code: 'invalid language map value', languageMap});\n }\n const val = {'@value': item};\n if(expandedKey !== '@none') {\n if(!key.match(REGEX_BCP47)) {\n if(options.eventHandler) {\n _handleEvent({\n event: {\n type: ['JsonLdEvent'],\n code: 'invalid @language value',\n level: 'warning',\n message: '@language value must be valid BCP47.',\n details: {\n language: key\n }\n },\n options\n });\n }\n }\n val['@language'] = key.toLowerCase();\n }\n if(direction) {\n val['@direction'] = direction;\n }\n rval.push(val);\n }\n }\n return rval;\n}\n\nasync function _expandIndexMap({\n activeCtx, options, activeProperty, value, asGraph, indexKey, propertyIndex\n}) {\n const rval = [];\n const keys = Object.keys(value).sort();\n const isTypeIndex = indexKey === '@type';\n for(let key of keys) {\n // if indexKey is @type, there may be a context defined for it\n if(isTypeIndex) {\n const ctx = _getContextValue(activeCtx, key, '@context');\n if(!_isUndefined(ctx)) {\n activeCtx = await _processContext({\n activeCtx,\n localCtx: ctx,\n propagate: false,\n options\n });\n }\n }\n\n let val = value[key];\n if(!_isArray(val)) {\n val = [val];\n }\n\n val = await api.expand({\n activeCtx,\n activeProperty,\n element: val,\n options,\n insideList: false,\n insideIndex: true\n });\n\n // expand for @type, but also for @none\n let expandedKey;\n if(propertyIndex) {\n if(key === '@none') {\n expandedKey = '@none';\n } else {\n expandedKey = _expandValue(\n {activeCtx, activeProperty: indexKey, value: key, options});\n }\n } else {\n expandedKey = _expandIri(activeCtx, key, {vocab: true}, options);\n }\n\n if(indexKey === '@id') {\n // expand document relative\n key = _expandIri(activeCtx, key, {base: true}, options);\n } else if(isTypeIndex) {\n key = expandedKey;\n }\n\n for(let item of val) {\n // If this is also a @graph container, turn items into graphs\n if(asGraph && !_isGraph(item)) {\n item = {'@graph': [item]};\n }\n if(indexKey === '@type') {\n if(expandedKey === '@none') {\n // ignore @none\n } else if(item['@type']) {\n item['@type'] = [key].concat(item['@type']);\n } else {\n item['@type'] = [key];\n }\n } else if(_isValue(item) &&\n !['@language', '@type', '@index'].includes(indexKey)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; Attempt to add illegal key to value ' +\n `object: \"${indexKey}\".`,\n 'jsonld.SyntaxError',\n {code: 'invalid value object', value: item});\n } else if(propertyIndex) {\n // index is a property to be expanded, and values interpreted for that\n // property\n if(expandedKey !== '@none') {\n // expand key as a value\n _addValue(item, propertyIndex, expandedKey, {\n propertyIsArray: true,\n prependValue: true\n });\n }\n } else if(expandedKey !== '@none' && !(indexKey in item)) {\n item[indexKey] = key;\n }\n rval.push(item);\n }\n }\n return rval;\n}\n","/*\n * Copyright (c) 2017 Digital Bazaar, Inc. All rights reserved.\n */\n'use strict';\n\nconst {\n isSubjectReference: _isSubjectReference\n} = require('./graphTypes');\n\nconst {\n createMergedNodeMap: _createMergedNodeMap\n} = require('./nodeMap');\n\nconst api = {};\nmodule.exports = api;\n\n/**\n * Performs JSON-LD flattening.\n *\n * @param input the expanded JSON-LD to flatten.\n *\n * @return the flattened output.\n */\napi.flatten = input => {\n const defaultGraph = _createMergedNodeMap(input);\n\n // produce flattened output\n const flattened = [];\n const keys = Object.keys(defaultGraph).sort();\n for(let ki = 0; ki < keys.length; ++ki) {\n const node = defaultGraph[keys[ki]];\n // only add full subjects to top-level\n if(!_isSubjectReference(node)) {\n flattened.push(node);\n }\n }\n return flattened;\n};\n","/*\n * Copyright (c) 2017 Digital Bazaar, Inc. All rights reserved.\n */\n'use strict';\n\nconst {isKeyword} = require('./context');\nconst graphTypes = require('./graphTypes');\nconst types = require('./types');\nconst util = require('./util');\nconst url = require('./url');\nconst JsonLdError = require('./JsonLdError');\nconst {\n createNodeMap: _createNodeMap,\n mergeNodeMapGraphs: _mergeNodeMapGraphs\n} = require('./nodeMap');\n\nconst api = {};\nmodule.exports = api;\n\n/**\n * Performs JSON-LD `merged` framing.\n *\n * @param input the expanded JSON-LD to frame.\n * @param frame the expanded JSON-LD frame to use.\n * @param options the framing options.\n *\n * @return the framed output.\n */\napi.frameMergedOrDefault = (input, frame, options) => {\n // create framing state\n const state = {\n options,\n embedded: false,\n graph: '@default',\n graphMap: {'@default': {}},\n subjectStack: [],\n link: {},\n bnodeMap: {}\n };\n\n // produce a map of all graphs and name each bnode\n // FIXME: currently uses subjects from @merged graph only\n const issuer = new util.IdentifierIssuer('_:b');\n _createNodeMap(input, state.graphMap, '@default', issuer);\n if(options.merged) {\n state.graphMap['@merged'] = _mergeNodeMapGraphs(state.graphMap);\n state.graph = '@merged';\n }\n state.subjects = state.graphMap[state.graph];\n\n // frame the subjects\n const framed = [];\n api.frame(state, Object.keys(state.subjects).sort(), frame, framed);\n\n // If pruning blank nodes, find those to prune\n if(options.pruneBlankNodeIdentifiers) {\n // remove all blank nodes appearing only once, done in compaction\n options.bnodesToClear =\n Object.keys(state.bnodeMap).filter(id => state.bnodeMap[id].length === 1);\n }\n\n // remove @preserve from results\n options.link = {};\n return _cleanupPreserve(framed, options);\n};\n\n/**\n * Frames subjects according to the given frame.\n *\n * @param state the current framing state.\n * @param subjects the subjects to filter.\n * @param frame the frame.\n * @param parent the parent subject or top-level array.\n * @param property the parent property, initialized to null.\n */\napi.frame = (state, subjects, frame, parent, property = null) => {\n // validate the frame\n _validateFrame(frame);\n frame = frame[0];\n\n // get flags for current frame\n const options = state.options;\n const flags = {\n embed: _getFrameFlag(frame, options, 'embed'),\n explicit: _getFrameFlag(frame, options, 'explicit'),\n requireAll: _getFrameFlag(frame, options, 'requireAll')\n };\n\n // get link for current graph\n if(!state.link.hasOwnProperty(state.graph)) {\n state.link[state.graph] = {};\n }\n const link = state.link[state.graph];\n\n // filter out subjects that match the frame\n const matches = _filterSubjects(state, subjects, frame, flags);\n\n // add matches to output\n const ids = Object.keys(matches).sort();\n for(const id of ids) {\n const subject = matches[id];\n\n /* Note: In order to treat each top-level match as a compartmentalized\n result, clear the unique embedded subjects map when the property is null,\n which only occurs at the top-level. */\n if(property === null) {\n state.uniqueEmbeds = {[state.graph]: {}};\n } else {\n state.uniqueEmbeds[state.graph] = state.uniqueEmbeds[state.graph] || {};\n }\n\n if(flags.embed === '@link' && id in link) {\n // TODO: may want to also match an existing linked subject against\n // the current frame ... so different frames could produce different\n // subjects that are only shared in-memory when the frames are the same\n\n // add existing linked subject\n _addFrameOutput(parent, property, link[id]);\n continue;\n }\n\n // start output for subject\n const output = {'@id': id};\n if(id.indexOf('_:') === 0) {\n util.addValue(state.bnodeMap, id, output, {propertyIsArray: true});\n }\n link[id] = output;\n\n // validate @embed\n if((flags.embed === '@first' || flags.embed === '@last') && state.is11) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; invalid value of @embed.',\n 'jsonld.SyntaxError', {code: 'invalid @embed value', frame});\n }\n\n if(!state.embedded && state.uniqueEmbeds[state.graph].hasOwnProperty(id)) {\n // skip adding this node object to the top level, as it was\n // already included in another node object\n continue;\n }\n\n // if embed is @never or if a circular reference would be created by an\n // embed, the subject cannot be embedded, just add the reference;\n // note that a circular reference won't occur when the embed flag is\n // `@link` as the above check will short-circuit before reaching this point\n if(state.embedded &&\n (flags.embed === '@never' ||\n _createsCircularReference(subject, state.graph, state.subjectStack))) {\n _addFrameOutput(parent, property, output);\n continue;\n }\n\n // if only the first (or once) should be embedded\n if(state.embedded &&\n (flags.embed == '@first' || flags.embed == '@once') &&\n state.uniqueEmbeds[state.graph].hasOwnProperty(id)) {\n _addFrameOutput(parent, property, output);\n continue;\n }\n\n // if only the last match should be embedded\n if(flags.embed === '@last') {\n // remove any existing embed\n if(id in state.uniqueEmbeds[state.graph]) {\n _removeEmbed(state, id);\n }\n }\n\n state.uniqueEmbeds[state.graph][id] = {parent, property};\n\n // push matching subject onto stack to enable circular embed checks\n state.subjectStack.push({subject, graph: state.graph});\n\n // subject is also the name of a graph\n if(id in state.graphMap) {\n let recurse = false;\n let subframe = null;\n if(!('@graph' in frame)) {\n recurse = state.graph !== '@merged';\n subframe = {};\n } else {\n subframe = frame['@graph'][0];\n recurse = !(id === '@merged' || id === '@default');\n if(!types.isObject(subframe)) {\n subframe = {};\n }\n }\n\n if(recurse) {\n // recurse into graph\n api.frame(\n {...state, graph: id, embedded: false},\n Object.keys(state.graphMap[id]).sort(), [subframe], output, '@graph');\n }\n }\n\n // if frame has @included, recurse over its sub-frame\n if('@included' in frame) {\n api.frame(\n {...state, embedded: false},\n subjects, frame['@included'], output, '@included');\n }\n\n // iterate over subject properties\n for(const prop of Object.keys(subject).sort()) {\n // copy keywords to output\n if(isKeyword(prop)) {\n output[prop] = util.clone(subject[prop]);\n\n if(prop === '@type') {\n // count bnode values of @type\n for(const type of subject['@type']) {\n if(type.indexOf('_:') === 0) {\n util.addValue(\n state.bnodeMap, type, output, {propertyIsArray: true});\n }\n }\n }\n continue;\n }\n\n // explicit is on and property isn't in the frame, skip processing\n if(flags.explicit && !(prop in frame)) {\n continue;\n }\n\n // add objects\n for(const o of subject[prop]) {\n const subframe = (prop in frame ?\n frame[prop] : _createImplicitFrame(flags));\n\n // recurse into list\n if(graphTypes.isList(o)) {\n const subframe =\n (frame[prop] && frame[prop][0] && frame[prop][0]['@list']) ?\n frame[prop][0]['@list'] :\n _createImplicitFrame(flags);\n\n // add empty list\n const list = {'@list': []};\n _addFrameOutput(output, prop, list);\n\n // add list objects\n const src = o['@list'];\n for(const oo of src) {\n if(graphTypes.isSubjectReference(oo)) {\n // recurse into subject reference\n api.frame(\n {...state, embedded: true},\n [oo['@id']], subframe, list, '@list');\n } else {\n // include other values automatically\n _addFrameOutput(list, '@list', util.clone(oo));\n }\n }\n } else if(graphTypes.isSubjectReference(o)) {\n // recurse into subject reference\n api.frame(\n {...state, embedded: true},\n [o['@id']], subframe, output, prop);\n } else if(_valueMatch(subframe[0], o)) {\n // include other values, if they match\n _addFrameOutput(output, prop, util.clone(o));\n }\n }\n }\n\n // handle defaults\n for(const prop of Object.keys(frame).sort()) {\n // skip keywords\n if(prop === '@type') {\n if(!types.isObject(frame[prop][0]) ||\n !('@default' in frame[prop][0])) {\n continue;\n }\n // allow through default types\n } else if(isKeyword(prop)) {\n continue;\n }\n\n // if omit default is off, then include default values for properties\n // that appear in the next frame but are not in the matching subject\n const next = frame[prop][0] || {};\n const omitDefaultOn = _getFrameFlag(next, options, 'omitDefault');\n if(!omitDefaultOn && !(prop in output)) {\n let preserve = '@null';\n if('@default' in next) {\n preserve = util.clone(next['@default']);\n }\n if(!types.isArray(preserve)) {\n preserve = [preserve];\n }\n output[prop] = [{'@preserve': preserve}];\n }\n }\n\n // if embed reverse values by finding nodes having this subject as a value\n // of the associated property\n for(const reverseProp of Object.keys(frame['@reverse'] || {}).sort()) {\n const subframe = frame['@reverse'][reverseProp];\n for(const subject of Object.keys(state.subjects)) {\n const nodeValues =\n util.getValues(state.subjects[subject], reverseProp);\n if(nodeValues.some(v => v['@id'] === id)) {\n // node has property referencing this subject, recurse\n output['@reverse'] = output['@reverse'] || {};\n util.addValue(\n output['@reverse'], reverseProp, [], {propertyIsArray: true});\n api.frame(\n {...state, embedded: true},\n [subject], subframe, output['@reverse'][reverseProp],\n property);\n }\n }\n }\n\n // add output to parent\n _addFrameOutput(parent, property, output);\n\n // pop matching subject from circular ref-checking stack\n state.subjectStack.pop();\n }\n};\n\n/**\n * Replace `@null` with `null`, removing it from arrays.\n *\n * @param input the framed, compacted output.\n * @param options the framing options used.\n *\n * @return the resulting output.\n */\napi.cleanupNull = (input, options) => {\n // recurse through arrays\n if(types.isArray(input)) {\n const noNulls = input.map(v => api.cleanupNull(v, options));\n return noNulls.filter(v => v); // removes nulls from array\n }\n\n if(input === '@null') {\n return null;\n }\n\n if(types.isObject(input)) {\n // handle in-memory linked nodes\n if('@id' in input) {\n const id = input['@id'];\n if(options.link.hasOwnProperty(id)) {\n const idx = options.link[id].indexOf(input);\n if(idx !== -1) {\n // already visited\n return options.link[id][idx];\n }\n // prevent circular visitation\n options.link[id].push(input);\n } else {\n // prevent circular visitation\n options.link[id] = [input];\n }\n }\n\n for(const key in input) {\n input[key] = api.cleanupNull(input[key], options);\n }\n }\n return input;\n};\n\n/**\n * Creates an implicit frame when recursing through subject matches. If\n * a frame doesn't have an explicit frame for a particular property, then\n * a wildcard child frame will be created that uses the same flags that the\n * parent frame used.\n *\n * @param flags the current framing flags.\n *\n * @return the implicit frame.\n */\nfunction _createImplicitFrame(flags) {\n const frame = {};\n for(const key in flags) {\n if(flags[key] !== undefined) {\n frame['@' + key] = [flags[key]];\n }\n }\n return [frame];\n}\n\n/**\n * Checks the current subject stack to see if embedding the given subject\n * would cause a circular reference.\n *\n * @param subjectToEmbed the subject to embed.\n * @param graph the graph the subject to embed is in.\n * @param subjectStack the current stack of subjects.\n *\n * @return true if a circular reference would be created, false if not.\n */\nfunction _createsCircularReference(subjectToEmbed, graph, subjectStack) {\n for(let i = subjectStack.length - 1; i >= 0; --i) {\n const subject = subjectStack[i];\n if(subject.graph === graph &&\n subject.subject['@id'] === subjectToEmbed['@id']) {\n return true;\n }\n }\n return false;\n}\n\n/**\n * Gets the frame flag value for the given flag name.\n *\n * @param frame the frame.\n * @param options the framing options.\n * @param name the flag name.\n *\n * @return the flag value.\n */\nfunction _getFrameFlag(frame, options, name) {\n const flag = '@' + name;\n let rval = (flag in frame ? frame[flag][0] : options[name]);\n if(name === 'embed') {\n // default is \"@last\"\n // backwards-compatibility support for \"embed\" maps:\n // true => \"@last\"\n // false => \"@never\"\n if(rval === true) {\n rval = '@once';\n } else if(rval === false) {\n rval = '@never';\n } else if(rval !== '@always' && rval !== '@never' && rval !== '@link' &&\n rval !== '@first' && rval !== '@last' && rval !== '@once') {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; invalid value of @embed.',\n 'jsonld.SyntaxError', {code: 'invalid @embed value', frame});\n }\n }\n return rval;\n}\n\n/**\n * Validates a JSON-LD frame, throwing an exception if the frame is invalid.\n *\n * @param frame the frame to validate.\n */\nfunction _validateFrame(frame) {\n if(!types.isArray(frame) || frame.length !== 1 || !types.isObject(frame[0])) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; a JSON-LD frame must be a single object.',\n 'jsonld.SyntaxError', {frame});\n }\n\n if('@id' in frame[0]) {\n for(const id of util.asArray(frame[0]['@id'])) {\n // @id must be wildcard or an IRI\n if(!(types.isObject(id) || url.isAbsolute(id)) ||\n (types.isString(id) && id.indexOf('_:') === 0)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; invalid @id in frame.',\n 'jsonld.SyntaxError', {code: 'invalid frame', frame});\n }\n }\n }\n\n if('@type' in frame[0]) {\n for(const type of util.asArray(frame[0]['@type'])) {\n // @type must be wildcard, IRI, or @json\n if(!(types.isObject(type) || url.isAbsolute(type) ||\n (type === '@json')) ||\n (types.isString(type) && type.indexOf('_:') === 0)) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; invalid @type in frame.',\n 'jsonld.SyntaxError', {code: 'invalid frame', frame});\n }\n }\n }\n}\n\n/**\n * Returns a map of all of the subjects that match a parsed frame.\n *\n * @param state the current framing state.\n * @param subjects the set of subjects to filter.\n * @param frame the parsed frame.\n * @param flags the frame flags.\n *\n * @return all of the matched subjects.\n */\nfunction _filterSubjects(state, subjects, frame, flags) {\n // filter subjects in @id order\n const rval = {};\n for(const id of subjects) {\n const subject = state.graphMap[state.graph][id];\n if(_filterSubject(state, subject, frame, flags)) {\n rval[id] = subject;\n }\n }\n return rval;\n}\n\n/**\n * Returns true if the given subject matches the given frame.\n *\n * Matches either based on explicit type inclusion where the node has any\n * type listed in the frame. If the frame has empty types defined matches\n * nodes not having a @type. If the frame has a type of {} defined matches\n * nodes having any type defined.\n *\n * Otherwise, does duck typing, where the node must have all of the\n * properties defined in the frame.\n *\n * @param state the current framing state.\n * @param subject the subject to check.\n * @param frame the frame to check.\n * @param flags the frame flags.\n *\n * @return true if the subject matches, false if not.\n */\nfunction _filterSubject(state, subject, frame, flags) {\n // check ducktype\n let wildcard = true;\n let matchesSome = false;\n\n for(const key in frame) {\n let matchThis = false;\n const nodeValues = util.getValues(subject, key);\n const isEmpty = util.getValues(frame, key).length === 0;\n\n if(key === '@id') {\n // match on no @id or any matching @id, including wildcard\n if(types.isEmptyObject(frame['@id'][0] || {})) {\n matchThis = true;\n } else if(frame['@id'].length >= 0) {\n matchThis = frame['@id'].includes(nodeValues[0]);\n }\n if(!flags.requireAll) {\n return matchThis;\n }\n } else if(key === '@type') {\n // check @type (object value means 'any' type,\n // fall through to ducktyping)\n wildcard = false;\n if(isEmpty) {\n if(nodeValues.length > 0) {\n // don't match on no @type\n return false;\n }\n matchThis = true;\n } else if(frame['@type'].length === 1 &&\n types.isEmptyObject(frame['@type'][0])) {\n // match on wildcard @type if there is a type\n matchThis = nodeValues.length > 0;\n } else {\n // match on a specific @type\n for(const type of frame['@type']) {\n if(types.isObject(type) && '@default' in type) {\n // match on default object\n matchThis = true;\n } else {\n matchThis = matchThis || nodeValues.some(tt => tt === type);\n }\n }\n }\n if(!flags.requireAll) {\n return matchThis;\n }\n } else if(isKeyword(key)) {\n continue;\n } else {\n // Force a copy of this frame entry so it can be manipulated\n const thisFrame = util.getValues(frame, key)[0];\n let hasDefault = false;\n if(thisFrame) {\n _validateFrame([thisFrame]);\n hasDefault = '@default' in thisFrame;\n }\n\n // no longer a wildcard pattern if frame has any non-keyword properties\n wildcard = false;\n\n // skip, but allow match if node has no value for property, and frame has\n // a default value\n if(nodeValues.length === 0 && hasDefault) {\n continue;\n }\n\n // if frame value is empty, don't match if subject has any value\n if(nodeValues.length > 0 && isEmpty) {\n return false;\n }\n\n if(thisFrame === undefined) {\n // node does not match if values is not empty and the value of property\n // in frame is match none.\n if(nodeValues.length > 0) {\n return false;\n }\n matchThis = true;\n } else {\n if(graphTypes.isList(thisFrame)) {\n const listValue = thisFrame['@list'][0];\n if(graphTypes.isList(nodeValues[0])) {\n const nodeListValues = nodeValues[0]['@list'];\n\n if(graphTypes.isValue(listValue)) {\n // match on any matching value\n matchThis = nodeListValues.some(lv => _valueMatch(listValue, lv));\n } else if(graphTypes.isSubject(listValue) ||\n graphTypes.isSubjectReference(listValue)) {\n matchThis = nodeListValues.some(lv => _nodeMatch(\n state, listValue, lv, flags));\n }\n }\n } else if(graphTypes.isValue(thisFrame)) {\n matchThis = nodeValues.some(nv => _valueMatch(thisFrame, nv));\n } else if(graphTypes.isSubjectReference(thisFrame)) {\n matchThis =\n nodeValues.some(nv => _nodeMatch(state, thisFrame, nv, flags));\n } else if(types.isObject(thisFrame)) {\n matchThis = nodeValues.length > 0;\n } else {\n matchThis = false;\n }\n }\n }\n\n // all non-defaulted values must match if requireAll is set\n if(!matchThis && flags.requireAll) {\n return false;\n }\n\n matchesSome = matchesSome || matchThis;\n }\n\n // return true if wildcard or subject matches some properties\n return wildcard || matchesSome;\n}\n\n/**\n * Removes an existing embed.\n *\n * @param state the current framing state.\n * @param id the @id of the embed to remove.\n */\nfunction _removeEmbed(state, id) {\n // get existing embed\n const embeds = state.uniqueEmbeds[state.graph];\n const embed = embeds[id];\n const parent = embed.parent;\n const property = embed.property;\n\n // create reference to replace embed\n const subject = {'@id': id};\n\n // remove existing embed\n if(types.isArray(parent)) {\n // replace subject with reference\n for(let i = 0; i < parent.length; ++i) {\n if(util.compareValues(parent[i], subject)) {\n parent[i] = subject;\n break;\n }\n }\n } else {\n // replace subject with reference\n const useArray = types.isArray(parent[property]);\n util.removeValue(parent, property, subject, {propertyIsArray: useArray});\n util.addValue(parent, property, subject, {propertyIsArray: useArray});\n }\n\n // recursively remove dependent dangling embeds\n const removeDependents = id => {\n // get embed keys as a separate array to enable deleting keys in map\n const ids = Object.keys(embeds);\n for(const next of ids) {\n if(next in embeds && types.isObject(embeds[next].parent) &&\n embeds[next].parent['@id'] === id) {\n delete embeds[next];\n removeDependents(next);\n }\n }\n };\n removeDependents(id);\n}\n\n/**\n * Removes the @preserve keywords from expanded result of framing.\n *\n * @param input the framed, framed output.\n * @param options the framing options used.\n *\n * @return the resulting output.\n */\nfunction _cleanupPreserve(input, options) {\n // recurse through arrays\n if(types.isArray(input)) {\n return input.map(value => _cleanupPreserve(value, options));\n }\n\n if(types.isObject(input)) {\n // remove @preserve\n if('@preserve' in input) {\n return input['@preserve'][0];\n }\n\n // skip @values\n if(graphTypes.isValue(input)) {\n return input;\n }\n\n // recurse through @lists\n if(graphTypes.isList(input)) {\n input['@list'] = _cleanupPreserve(input['@list'], options);\n return input;\n }\n\n // handle in-memory linked nodes\n if('@id' in input) {\n const id = input['@id'];\n if(options.link.hasOwnProperty(id)) {\n const idx = options.link[id].indexOf(input);\n if(idx !== -1) {\n // already visited\n return options.link[id][idx];\n }\n // prevent circular visitation\n options.link[id].push(input);\n } else {\n // prevent circular visitation\n options.link[id] = [input];\n }\n }\n\n // recurse through properties\n for(const prop in input) {\n // potentially remove the id, if it is an unreference bnode\n if(prop === '@id' && options.bnodesToClear.includes(input[prop])) {\n delete input['@id'];\n continue;\n }\n\n input[prop] = _cleanupPreserve(input[prop], options);\n }\n }\n return input;\n}\n\n/**\n * Adds framing output to the given parent.\n *\n * @param parent the parent to add to.\n * @param property the parent property.\n * @param output the output to add.\n */\nfunction _addFrameOutput(parent, property, output) {\n if(types.isObject(parent)) {\n util.addValue(parent, property, output, {propertyIsArray: true});\n } else {\n parent.push(output);\n }\n}\n\n/**\n * Node matches if it is a node, and matches the pattern as a frame.\n *\n * @param state the current framing state.\n * @param pattern used to match value\n * @param value to check\n * @param flags the frame flags.\n */\nfunction _nodeMatch(state, pattern, value, flags) {\n if(!('@id' in value)) {\n return false;\n }\n const nodeObject = state.subjects[value['@id']];\n return nodeObject && _filterSubject(state, nodeObject, pattern, flags);\n}\n\n/**\n * Value matches if it is a value and matches the value pattern\n *\n * * `pattern` is empty\n * * @values are the same, or `pattern[@value]` is a wildcard, and\n * * @types are the same or `value[@type]` is not null\n * and `pattern[@type]` is `{}`, or `value[@type]` is null\n * and `pattern[@type]` is null or `[]`, and\n * * @languages are the same or `value[@language]` is not null\n * and `pattern[@language]` is `{}`, or `value[@language]` is null\n * and `pattern[@language]` is null or `[]`.\n *\n * @param pattern used to match value\n * @param value to check\n */\nfunction _valueMatch(pattern, value) {\n const v1 = value['@value'];\n const t1 = value['@type'];\n const l1 = value['@language'];\n const v2 = pattern['@value'] ?\n (types.isArray(pattern['@value']) ?\n pattern['@value'] : [pattern['@value']]) :\n [];\n const t2 = pattern['@type'] ?\n (types.isArray(pattern['@type']) ?\n pattern['@type'] : [pattern['@type']]) :\n [];\n const l2 = pattern['@language'] ?\n (types.isArray(pattern['@language']) ?\n pattern['@language'] : [pattern['@language']]) :\n [];\n\n if(v2.length === 0 && t2.length === 0 && l2.length === 0) {\n return true;\n }\n if(!(v2.includes(v1) || types.isEmptyObject(v2[0]))) {\n return false;\n }\n if(!(!t1 && t2.length === 0 || t2.includes(t1) || t1 &&\n types.isEmptyObject(t2[0]))) {\n return false;\n }\n if(!(!l1 && l2.length === 0 || l2.includes(l1) || l1 &&\n types.isEmptyObject(l2[0]))) {\n return false;\n }\n return true;\n}\n","/*\n * Copyright (c) 2017-2023 Digital Bazaar, Inc. All rights reserved.\n */\n'use strict';\n\nconst JsonLdError = require('./JsonLdError');\nconst graphTypes = require('./graphTypes');\nconst types = require('./types');\n\nconst {\n REGEX_BCP47,\n addValue: _addValue\n} = require('./util');\n\nconst {\n handleEvent: _handleEvent\n} = require('./events');\n\n// constants\nconst {\n // RDF,\n RDF_LIST,\n RDF_FIRST,\n RDF_REST,\n RDF_NIL,\n RDF_TYPE,\n // RDF_PLAIN_LITERAL,\n // RDF_XML_LITERAL,\n RDF_JSON_LITERAL,\n // RDF_OBJECT,\n // RDF_LANGSTRING,\n\n // XSD,\n XSD_BOOLEAN,\n XSD_DOUBLE,\n XSD_INTEGER,\n XSD_STRING,\n} = require('./constants');\n\nconst api = {};\nmodule.exports = api;\n\n/**\n * Converts an RDF dataset to JSON-LD.\n *\n * @param dataset the RDF dataset.\n * @param options the RDF serialization options.\n *\n * @return a Promise that resolves to the JSON-LD output.\n */\napi.fromRDF = async (\n dataset,\n options\n) => {\n const {\n useRdfType = false,\n useNativeTypes = false,\n rdfDirection = null\n } = options;\n // FIXME: use Maps?\n const defaultGraph = {};\n const graphMap = {'@default': defaultGraph};\n const referencedOnce = {};\n if(rdfDirection) {\n if(rdfDirection === 'compound-literal') {\n throw new JsonLdError(\n 'Unsupported rdfDirection value.',\n 'jsonld.InvalidRdfDirection',\n {value: rdfDirection});\n } else if(rdfDirection !== 'i18n-datatype') {\n throw new JsonLdError(\n 'Unknown rdfDirection value.',\n 'jsonld.InvalidRdfDirection',\n {value: rdfDirection});\n }\n }\n\n for(const quad of dataset) {\n // TODO: change 'name' to 'graph'\n const name = (quad.graph.termType === 'DefaultGraph') ?\n '@default' : quad.graph.value;\n if(!(name in graphMap)) {\n graphMap[name] = {};\n }\n if(name !== '@default' && !(name in defaultGraph)) {\n defaultGraph[name] = {'@id': name};\n }\n\n const nodeMap = graphMap[name];\n\n // get subject, predicate, object\n const s = quad.subject.value;\n const p = quad.predicate.value;\n const o = quad.object;\n\n if(!(s in nodeMap)) {\n nodeMap[s] = {'@id': s};\n }\n const node = nodeMap[s];\n\n const objectIsNode = o.termType.endsWith('Node');\n if(objectIsNode && !(o.value in nodeMap)) {\n nodeMap[o.value] = {'@id': o.value};\n }\n\n if(p === RDF_TYPE && !useRdfType && objectIsNode) {\n _addValue(node, '@type', o.value, {propertyIsArray: true});\n continue;\n }\n\n const value = _RDFToObject(o, useNativeTypes, rdfDirection, options);\n _addValue(node, p, value, {propertyIsArray: true});\n\n // object may be an RDF list/partial list node but we can't know easily\n // until all triples are read\n if(objectIsNode) {\n if(o.value === RDF_NIL) {\n // track rdf:nil uniquely per graph\n const object = nodeMap[o.value];\n if(!('usages' in object)) {\n object.usages = [];\n }\n object.usages.push({\n node,\n property: p,\n value\n });\n } else if(o.value in referencedOnce) {\n // object referenced more than once\n referencedOnce[o.value] = false;\n } else {\n // keep track of single reference\n referencedOnce[o.value] = {\n node,\n property: p,\n value\n };\n }\n }\n }\n\n /*\n for(let name in dataset) {\n const graph = dataset[name];\n if(!(name in graphMap)) {\n graphMap[name] = {};\n }\n if(name !== '@default' && !(name in defaultGraph)) {\n defaultGraph[name] = {'@id': name};\n }\n const nodeMap = graphMap[name];\n for(let ti = 0; ti < graph.length; ++ti) {\n const triple = graph[ti];\n\n // get subject, predicate, object\n const s = triple.subject.value;\n const p = triple.predicate.value;\n const o = triple.object;\n\n if(!(s in nodeMap)) {\n nodeMap[s] = {'@id': s};\n }\n const node = nodeMap[s];\n\n const objectIsId = (o.type === 'IRI' || o.type === 'blank node');\n if(objectIsId && !(o.value in nodeMap)) {\n nodeMap[o.value] = {'@id': o.value};\n }\n\n if(p === RDF_TYPE && !useRdfType && objectIsId) {\n _addValue(node, '@type', o.value, {propertyIsArray: true});\n continue;\n }\n\n const value = _RDFToObject(o, useNativeTypes);\n _addValue(node, p, value, {propertyIsArray: true});\n\n // object may be an RDF list/partial list node but we can't know easily\n // until all triples are read\n if(objectIsId) {\n if(o.value === RDF_NIL) {\n // track rdf:nil uniquely per graph\n const object = nodeMap[o.value];\n if(!('usages' in object)) {\n object.usages = [];\n }\n object.usages.push({\n node: node,\n property: p,\n value: value\n });\n } else if(o.value in referencedOnce) {\n // object referenced more than once\n referencedOnce[o.value] = false;\n } else {\n // keep track of single reference\n referencedOnce[o.value] = {\n node: node,\n property: p,\n value: value\n };\n }\n }\n }\n }*/\n\n // convert linked lists to @list arrays\n for(const name in graphMap) {\n const graphObject = graphMap[name];\n\n // no @lists to be converted, continue\n if(!(RDF_NIL in graphObject)) {\n continue;\n }\n\n // iterate backwards through each RDF list\n const nil = graphObject[RDF_NIL];\n if(!nil.usages) {\n continue;\n }\n for(let usage of nil.usages) {\n let node = usage.node;\n let property = usage.property;\n let head = usage.value;\n const list = [];\n const listNodes = [];\n\n // ensure node is a well-formed list node; it must:\n // 1. Be referenced only once.\n // 2. Have an array for rdf:first that has 1 item.\n // 3. Have an array for rdf:rest that has 1 item.\n // 4. Have no keys other than: @id, rdf:first, rdf:rest, and,\n // optionally, @type where the value is rdf:List.\n let nodeKeyCount = Object.keys(node).length;\n while(property === RDF_REST &&\n types.isObject(referencedOnce[node['@id']]) &&\n types.isArray(node[RDF_FIRST]) && node[RDF_FIRST].length === 1 &&\n types.isArray(node[RDF_REST]) && node[RDF_REST].length === 1 &&\n (nodeKeyCount === 3 ||\n (nodeKeyCount === 4 && types.isArray(node['@type']) &&\n node['@type'].length === 1 && node['@type'][0] === RDF_LIST))) {\n list.push(node[RDF_FIRST][0]);\n listNodes.push(node['@id']);\n\n // get next node, moving backwards through list\n usage = referencedOnce[node['@id']];\n node = usage.node;\n property = usage.property;\n head = usage.value;\n nodeKeyCount = Object.keys(node).length;\n\n // if node is not a blank node, then list head found\n if(!graphTypes.isBlankNode(node)) {\n break;\n }\n }\n\n // transform list into @list object\n delete head['@id'];\n head['@list'] = list.reverse();\n for(const listNode of listNodes) {\n delete graphObject[listNode];\n }\n }\n\n delete nil.usages;\n }\n\n const result = [];\n const subjects = Object.keys(defaultGraph).sort();\n for(const subject of subjects) {\n const node = defaultGraph[subject];\n if(subject in graphMap) {\n const graph = node['@graph'] = [];\n const graphObject = graphMap[subject];\n const graphSubjects = Object.keys(graphObject).sort();\n for(const graphSubject of graphSubjects) {\n const node = graphObject[graphSubject];\n // only add full subjects to top-level\n if(!graphTypes.isSubjectReference(node)) {\n graph.push(node);\n }\n }\n }\n // only add full subjects to top-level\n if(!graphTypes.isSubjectReference(node)) {\n result.push(node);\n }\n }\n\n return result;\n};\n\n/**\n * Converts an RDF triple object to a JSON-LD object.\n *\n * @param o the RDF triple object to convert.\n * @param useNativeTypes true to output native types, false not to.\n * @param rdfDirection text direction mode [null, i18n-datatype]\n * @param options top level API options\n *\n * @return the JSON-LD object.\n */\nfunction _RDFToObject(o, useNativeTypes, rdfDirection, options) {\n // convert NamedNode/BlankNode object to JSON-LD\n if(o.termType.endsWith('Node')) {\n return {'@id': o.value};\n }\n\n // convert literal to JSON-LD\n const rval = {'@value': o.value};\n\n // add language\n if(o.language) {\n if(!o.language.match(REGEX_BCP47)) {\n if(options.eventHandler) {\n _handleEvent({\n event: {\n type: ['JsonLdEvent'],\n code: 'invalid @language value',\n level: 'warning',\n message: '@language value must be valid BCP47.',\n details: {\n language: o.language\n }\n },\n options\n });\n }\n }\n rval['@language'] = o.language;\n } else {\n let type = o.datatype.value;\n if(!type) {\n type = XSD_STRING;\n }\n if(type === RDF_JSON_LITERAL) {\n type = '@json';\n try {\n rval['@value'] = JSON.parse(rval['@value']);\n } catch(e) {\n throw new JsonLdError(\n 'JSON literal could not be parsed.',\n 'jsonld.InvalidJsonLiteral',\n {code: 'invalid JSON literal', value: rval['@value'], cause: e});\n }\n }\n // use native types for certain xsd types\n if(useNativeTypes) {\n if(type === XSD_BOOLEAN) {\n if(rval['@value'] === 'true') {\n rval['@value'] = true;\n } else if(rval['@value'] === 'false') {\n rval['@value'] = false;\n }\n } else if(types.isNumeric(rval['@value'])) {\n if(type === XSD_INTEGER) {\n const i = parseInt(rval['@value'], 10);\n if(i.toFixed(0) === rval['@value']) {\n rval['@value'] = i;\n }\n } else if(type === XSD_DOUBLE) {\n rval['@value'] = parseFloat(rval['@value']);\n }\n }\n // do not add native type\n if(![XSD_BOOLEAN, XSD_INTEGER, XSD_DOUBLE, XSD_STRING].includes(type)) {\n rval['@type'] = type;\n }\n } else if(rdfDirection === 'i18n-datatype' &&\n type.startsWith('https://www.w3.org/ns/i18n#')) {\n const [, language, direction] = type.split(/[#_]/);\n if(language.length > 0) {\n rval['@language'] = language;\n if(!language.match(REGEX_BCP47)) {\n if(options.eventHandler) {\n _handleEvent({\n event: {\n type: ['JsonLdEvent'],\n code: 'invalid @language value',\n level: 'warning',\n message: '@language value must be valid BCP47.',\n details: {\n language\n }\n },\n options\n });\n }\n }\n }\n rval['@direction'] = direction;\n } else if(type !== XSD_STRING) {\n rval['@type'] = type;\n }\n }\n\n return rval;\n}\n","/*\n * Copyright (c) 2017 Digital Bazaar, Inc. All rights reserved.\n */\n'use strict';\n\nconst types = require('./types');\n\nconst api = {};\nmodule.exports = api;\n\n/**\n * Returns true if the given value is a subject with properties.\n *\n * @param v the value to check.\n *\n * @return true if the value is a subject with properties, false if not.\n */\napi.isSubject = v => {\n // Note: A value is a subject if all of these hold true:\n // 1. It is an Object.\n // 2. It is not a @value, @set, or @list.\n // 3. It has more than 1 key OR any existing key is not @id.\n if(types.isObject(v) &&\n !(('@value' in v) || ('@set' in v) || ('@list' in v))) {\n const keyCount = Object.keys(v).length;\n return (keyCount > 1 || !('@id' in v));\n }\n return false;\n};\n\n/**\n * Returns true if the given value is a subject reference.\n *\n * @param v the value to check.\n *\n * @return true if the value is a subject reference, false if not.\n */\napi.isSubjectReference = v =>\n // Note: A value is a subject reference if all of these hold true:\n // 1. It is an Object.\n // 2. It has a single key: @id.\n (types.isObject(v) && Object.keys(v).length === 1 && ('@id' in v));\n\n/**\n * Returns true if the given value is a @value.\n *\n * @param v the value to check.\n *\n * @return true if the value is a @value, false if not.\n */\napi.isValue = v =>\n // Note: A value is a @value if all of these hold true:\n // 1. It is an Object.\n // 2. It has the @value property.\n types.isObject(v) && ('@value' in v);\n\n/**\n * Returns true if the given value is a @list.\n *\n * @param v the value to check.\n *\n * @return true if the value is a @list, false if not.\n */\napi.isList = v =>\n // Note: A value is a @list if all of these hold true:\n // 1. It is an Object.\n // 2. It has the @list property.\n types.isObject(v) && ('@list' in v);\n\n/**\n * Returns true if the given value is a @graph.\n *\n * @return true if the value is a @graph, false if not.\n */\napi.isGraph = v => {\n // Note: A value is a graph if all of these hold true:\n // 1. It is an object.\n // 2. It has an `@graph` key.\n // 3. It may have '@id' or '@index'\n return types.isObject(v) &&\n '@graph' in v &&\n Object.keys(v)\n .filter(key => key !== '@id' && key !== '@index').length === 1;\n};\n\n/**\n * Returns true if the given value is a simple @graph.\n *\n * @return true if the value is a simple @graph, false if not.\n */\napi.isSimpleGraph = v => {\n // Note: A value is a simple graph if all of these hold true:\n // 1. It is an object.\n // 2. It has an `@graph` key.\n // 3. It has only 1 key or 2 keys where one of them is `@index`.\n return api.isGraph(v) && !('@id' in v);\n};\n\n/**\n * Returns true if the given value is a blank node.\n *\n * @param v the value to check.\n *\n * @return true if the value is a blank node, false if not.\n */\napi.isBlankNode = v => {\n // Note: A value is a blank node if all of these hold true:\n // 1. It is an Object.\n // 2. If it has an @id key that is not a string OR begins with '_:'.\n // 3. It has no keys OR is not a @value, @set, or @list.\n if(types.isObject(v)) {\n if('@id' in v) {\n const id = v['@id'];\n return !types.isString(id) || id.indexOf('_:') === 0;\n }\n return (Object.keys(v).length === 0 ||\n !(('@value' in v) || ('@set' in v) || ('@list' in v)));\n }\n return false;\n};\n","/**\n * A JavaScript implementation of the JSON-LD API.\n *\n * @author Dave Longley\n *\n * @license BSD 3-Clause License\n * Copyright (c) 2011-2022 Digital Bazaar, Inc.\n * All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are met:\n *\n * Redistributions of source code must retain the above copyright notice,\n * this list of conditions and the following disclaimer.\n *\n * Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n *\n * Neither the name of the Digital Bazaar, Inc. nor the names of its\n * contributors may be used to endorse or promote products derived from\n * this software without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\n * IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\n * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n */\nconst canonize = require('rdf-canonize');\nconst platform = require('./platform');\nconst util = require('./util');\nconst ContextResolver = require('./ContextResolver');\nconst IdentifierIssuer = util.IdentifierIssuer;\nconst JsonLdError = require('./JsonLdError');\nconst LRU = require('lru-cache');\nconst NQuads = require('./NQuads');\n\nconst {expand: _expand} = require('./expand');\nconst {flatten: _flatten} = require('./flatten');\nconst {fromRDF: _fromRDF} = require('./fromRdf');\nconst {toRDF: _toRDF} = require('./toRdf');\n\nconst {\n frameMergedOrDefault: _frameMergedOrDefault,\n cleanupNull: _cleanupNull\n} = require('./frame');\n\nconst {\n isArray: _isArray,\n isObject: _isObject,\n isString: _isString\n} = require('./types');\n\nconst {\n isSubjectReference: _isSubjectReference,\n} = require('./graphTypes');\n\nconst {\n expandIri: _expandIri,\n getInitialContext: _getInitialContext,\n process: _processContext,\n processingMode: _processingMode\n} = require('./context');\n\nconst {\n compact: _compact,\n compactIri: _compactIri\n} = require('./compact');\n\nconst {\n createNodeMap: _createNodeMap,\n createMergedNodeMap: _createMergedNodeMap,\n mergeNodeMaps: _mergeNodeMaps\n} = require('./nodeMap');\n\nconst {\n logEventHandler: _logEventHandler,\n logWarningEventHandler: _logWarningEventHandler,\n safeEventHandler: _safeEventHandler,\n setDefaultEventHandler: _setDefaultEventHandler,\n setupEventHandler: _setupEventHandler,\n strictEventHandler: _strictEventHandler,\n unhandledEventHandler: _unhandledEventHandler\n} = require('./events');\n\n/* eslint-disable indent */\n// attaches jsonld API to the given object\nconst wrapper = function(jsonld) {\n\n/** Registered RDF dataset parsers hashed by content-type. */\nconst _rdfParsers = {};\n\n// resolved context cache\n// TODO: consider basing max on context size rather than number\nconst RESOLVED_CONTEXT_CACHE_MAX_SIZE = 100;\nconst _resolvedContextCache = new LRU({max: RESOLVED_CONTEXT_CACHE_MAX_SIZE});\n\n/* Core API */\n\n/**\n * Performs JSON-LD compaction.\n *\n * @param input the JSON-LD input to compact.\n * @param ctx the context to compact with.\n * @param [options] options to use:\n * [base] the base IRI to use.\n * [compactArrays] true to compact arrays to single values when\n * appropriate, false not to (default: true).\n * [compactToRelative] true to compact IRIs to be relative to document\n * base, false to keep absolute (default: true)\n * [graph] true to always output a top-level graph (default: false).\n * [expandContext] a context to expand with.\n * [skipExpansion] true to assume the input is expanded and skip\n * expansion, false not to, defaults to false. Some well-formed\n * and safe-mode checks may be omitted.\n * [documentLoader(url, options)] the document loader.\n * [framing] true if compaction is occuring during a framing operation.\n * [safe] true to use safe mode. (default: false)\n * [contextResolver] internal use only.\n *\n * @return a Promise that resolves to the compacted output.\n */\njsonld.compact = async function(input, ctx, options) {\n if(arguments.length < 2) {\n throw new TypeError('Could not compact, too few arguments.');\n }\n\n if(ctx === null) {\n throw new JsonLdError(\n 'The compaction context must not be null.',\n 'jsonld.CompactError', {code: 'invalid local context'});\n }\n\n // nothing to compact\n if(input === null) {\n return null;\n }\n\n // set default options\n options = _setDefaults(options, {\n base: _isString(input) ? input : '',\n compactArrays: true,\n compactToRelative: true,\n graph: false,\n skipExpansion: false,\n link: false,\n issuer: new IdentifierIssuer('_:b'),\n contextResolver: new ContextResolver(\n {sharedCache: _resolvedContextCache})\n });\n if(options.link) {\n // force skip expansion when linking, \"link\" is not part of the public\n // API, it should only be called from framing\n options.skipExpansion = true;\n }\n if(!options.compactToRelative) {\n delete options.base;\n }\n\n // expand input\n let expanded;\n if(options.skipExpansion) {\n expanded = input;\n } else {\n expanded = await jsonld.expand(input, options);\n }\n\n // process context\n const activeCtx = await jsonld.processContext(\n _getInitialContext(options), ctx, options);\n\n // do compaction\n let compacted = await _compact({\n activeCtx,\n element: expanded,\n options\n });\n\n // perform clean up\n if(options.compactArrays && !options.graph && _isArray(compacted)) {\n if(compacted.length === 1) {\n // simplify to a single item\n compacted = compacted[0];\n } else if(compacted.length === 0) {\n // simplify to an empty object\n compacted = {};\n }\n } else if(options.graph && _isObject(compacted)) {\n // always use array if graph option is on\n compacted = [compacted];\n }\n\n // follow @context key\n if(_isObject(ctx) && '@context' in ctx) {\n ctx = ctx['@context'];\n }\n\n // build output context\n ctx = util.clone(ctx);\n if(!_isArray(ctx)) {\n ctx = [ctx];\n }\n // remove empty contexts\n const tmp = ctx;\n ctx = [];\n for(let i = 0; i < tmp.length; ++i) {\n if(!_isObject(tmp[i]) || Object.keys(tmp[i]).length > 0) {\n ctx.push(tmp[i]);\n }\n }\n\n // remove array if only one context\n const hasContext = (ctx.length > 0);\n if(ctx.length === 1) {\n ctx = ctx[0];\n }\n\n // add context and/or @graph\n if(_isArray(compacted)) {\n // use '@graph' keyword\n const graphAlias = _compactIri({\n activeCtx, iri: '@graph', relativeTo: {vocab: true}\n });\n const graph = compacted;\n compacted = {};\n if(hasContext) {\n compacted['@context'] = ctx;\n }\n compacted[graphAlias] = graph;\n } else if(_isObject(compacted) && hasContext) {\n // reorder keys so @context is first\n const graph = compacted;\n compacted = {'@context': ctx};\n for(const key in graph) {\n compacted[key] = graph[key];\n }\n }\n\n return compacted;\n};\n\n/**\n * Performs JSON-LD expansion.\n *\n * @param input the JSON-LD input to expand.\n * @param [options] the options to use:\n * [base] the base IRI to use.\n * [expandContext] a context to expand with.\n * [keepFreeFloatingNodes] true to keep free-floating nodes,\n * false not to, defaults to false.\n * [documentLoader(url, options)] the document loader.\n * [safe] true to use safe mode. (default: false)\n * [contextResolver] internal use only.\n *\n * @return a Promise that resolves to the expanded output.\n */\njsonld.expand = async function(input, options) {\n if(arguments.length < 1) {\n throw new TypeError('Could not expand, too few arguments.');\n }\n\n // set default options\n options = _setDefaults(options, {\n keepFreeFloatingNodes: false,\n contextResolver: new ContextResolver(\n {sharedCache: _resolvedContextCache})\n });\n\n // build set of objects that may have @contexts to resolve\n const toResolve = {};\n\n // build set of contexts to process prior to expansion\n const contextsToProcess = [];\n\n // if an `expandContext` has been given ensure it gets resolved\n if('expandContext' in options) {\n const expandContext = util.clone(options.expandContext);\n if(_isObject(expandContext) && '@context' in expandContext) {\n toResolve.expandContext = expandContext;\n } else {\n toResolve.expandContext = {'@context': expandContext};\n }\n contextsToProcess.push(toResolve.expandContext);\n }\n\n // if input is a string, attempt to dereference remote document\n let defaultBase;\n if(!_isString(input)) {\n // input is not a URL, do not need to retrieve it first\n toResolve.input = util.clone(input);\n } else {\n // load remote doc\n const remoteDoc = await jsonld.get(input, options);\n defaultBase = remoteDoc.documentUrl;\n toResolve.input = remoteDoc.document;\n if(remoteDoc.contextUrl) {\n // context included in HTTP link header and must be resolved\n toResolve.remoteContext = {'@context': remoteDoc.contextUrl};\n contextsToProcess.push(toResolve.remoteContext);\n }\n }\n\n // set default base\n if(!('base' in options)) {\n options.base = defaultBase || '';\n }\n\n // process any additional contexts\n let activeCtx = _getInitialContext(options);\n for(const localCtx of contextsToProcess) {\n activeCtx = await _processContext({activeCtx, localCtx, options});\n }\n\n // expand resolved input\n let expanded = await _expand({\n activeCtx,\n element: toResolve.input,\n options\n });\n\n // optimize away @graph with no other properties\n if(_isObject(expanded) && ('@graph' in expanded) &&\n Object.keys(expanded).length === 1) {\n expanded = expanded['@graph'];\n } else if(expanded === null) {\n expanded = [];\n }\n\n // normalize to an array\n if(!_isArray(expanded)) {\n expanded = [expanded];\n }\n\n return expanded;\n};\n\n/**\n * Performs JSON-LD flattening.\n *\n * @param input the JSON-LD to flatten.\n * @param ctx the context to use to compact the flattened output, or null.\n * @param [options] the options to use:\n * [base] the base IRI to use.\n * [expandContext] a context to expand with.\n * [documentLoader(url, options)] the document loader.\n * [contextResolver] internal use only.\n *\n * @return a Promise that resolves to the flattened output.\n */\njsonld.flatten = async function(input, ctx, options) {\n if(arguments.length < 1) {\n return new TypeError('Could not flatten, too few arguments.');\n }\n\n if(typeof ctx === 'function') {\n ctx = null;\n } else {\n ctx = ctx || null;\n }\n\n // set default options\n options = _setDefaults(options, {\n base: _isString(input) ? input : '',\n contextResolver: new ContextResolver(\n {sharedCache: _resolvedContextCache})\n });\n\n // expand input\n const expanded = await jsonld.expand(input, options);\n\n // do flattening\n const flattened = _flatten(expanded);\n\n if(ctx === null) {\n // no compaction required\n return flattened;\n }\n\n // compact result (force @graph option to true, skip expansion)\n options.graph = true;\n options.skipExpansion = true;\n const compacted = await jsonld.compact(flattened, ctx, options);\n\n return compacted;\n};\n\n/**\n * Performs JSON-LD framing.\n *\n * @param input the JSON-LD input to frame.\n * @param frame the JSON-LD frame to use.\n * @param [options] the framing options.\n * [base] the base IRI to use.\n * [expandContext] a context to expand with.\n * [embed] default @embed flag: '@last', '@always', '@never', '@link'\n * (default: '@last').\n * [explicit] default @explicit flag (default: false).\n * [requireAll] default @requireAll flag (default: true).\n * [omitDefault] default @omitDefault flag (default: false).\n * [documentLoader(url, options)] the document loader.\n * [safe] true to use safe mode. (default: false)\n * [contextResolver] internal use only.\n *\n * @return a Promise that resolves to the framed output.\n */\njsonld.frame = async function(input, frame, options) {\n if(arguments.length < 2) {\n throw new TypeError('Could not frame, too few arguments.');\n }\n\n // set default options\n options = _setDefaults(options, {\n base: _isString(input) ? input : '',\n embed: '@once',\n explicit: false,\n requireAll: false,\n omitDefault: false,\n bnodesToClear: [],\n contextResolver: new ContextResolver(\n {sharedCache: _resolvedContextCache})\n });\n\n // if frame is a string, attempt to dereference remote document\n if(_isString(frame)) {\n // load remote doc\n const remoteDoc = await jsonld.get(frame, options);\n frame = remoteDoc.document;\n\n if(remoteDoc.contextUrl) {\n // inject link header @context into frame\n let ctx = frame['@context'];\n if(!ctx) {\n ctx = remoteDoc.contextUrl;\n } else if(_isArray(ctx)) {\n ctx.push(remoteDoc.contextUrl);\n } else {\n ctx = [ctx, remoteDoc.contextUrl];\n }\n frame['@context'] = ctx;\n }\n }\n\n const frameContext = frame ? frame['@context'] || {} : {};\n\n // process context\n const activeCtx = await jsonld.processContext(\n _getInitialContext(options), frameContext, options);\n\n // mode specific defaults\n if(!options.hasOwnProperty('omitGraph')) {\n options.omitGraph = _processingMode(activeCtx, 1.1);\n }\n if(!options.hasOwnProperty('pruneBlankNodeIdentifiers')) {\n options.pruneBlankNodeIdentifiers = _processingMode(activeCtx, 1.1);\n }\n\n // expand input\n const expanded = await jsonld.expand(input, options);\n\n // expand frame\n const opts = {...options};\n opts.isFrame = true;\n opts.keepFreeFloatingNodes = true;\n const expandedFrame = await jsonld.expand(frame, opts);\n\n // if the unexpanded frame includes a key expanding to @graph, frame the\n // default graph, otherwise, the merged graph\n const frameKeys = Object.keys(frame)\n .map(key => _expandIri(activeCtx, key, {vocab: true}));\n opts.merged = !frameKeys.includes('@graph');\n opts.is11 = _processingMode(activeCtx, 1.1);\n\n // do framing\n const framed = _frameMergedOrDefault(expanded, expandedFrame, opts);\n\n opts.graph = !options.omitGraph;\n opts.skipExpansion = true;\n opts.link = {};\n opts.framing = true;\n let compacted = await jsonld.compact(framed, frameContext, opts);\n\n // replace @null with null, compacting arrays\n opts.link = {};\n compacted = _cleanupNull(compacted, opts);\n\n return compacted;\n};\n\n/**\n * **Experimental**\n *\n * Links a JSON-LD document's nodes in memory.\n *\n * @param input the JSON-LD document to link.\n * @param [ctx] the JSON-LD context to apply.\n * @param [options] the options to use:\n * [base] the base IRI to use.\n * [expandContext] a context to expand with.\n * [documentLoader(url, options)] the document loader.\n * [safe] true to use safe mode. (default: false)\n * [contextResolver] internal use only.\n *\n * @return a Promise that resolves to the linked output.\n */\njsonld.link = async function(input, ctx, options) {\n // API matches running frame with a wildcard frame and embed: '@link'\n // get arguments\n const frame = {};\n if(ctx) {\n frame['@context'] = ctx;\n }\n frame['@embed'] = '@link';\n return jsonld.frame(input, frame, options);\n};\n\n/**\n * Performs RDF dataset normalization on the given input. The input is JSON-LD\n * unless the 'inputFormat' option is used. The output is an RDF dataset\n * unless the 'format' option is used.\n *\n * Note: Canonicalization sets `safe` to `true` and `base` to `null` by\n * default in order to produce safe outputs and \"fail closed\" by default. This\n * is different from the other API transformations in this version which\n * allow unsafe defaults (for cryptographic usage) in order to comply with the\n * JSON-LD 1.1 specification.\n *\n * @param input the input to normalize as JSON-LD or as a format specified by\n * the 'inputFormat' option.\n * @param [options] the options to use:\n * [algorithm] the normalization algorithm to use, `URDNA2015` or\n * `URGNA2012` (default: `URDNA2015`).\n * [base] the base IRI to use (default: `null`).\n * [expandContext] a context to expand with.\n * [skipExpansion] true to assume the input is expanded and skip\n * expansion, false not to, defaults to false. Some well-formed\n * and safe-mode checks may be omitted.\n * [inputFormat] the format if input is not JSON-LD:\n * 'application/n-quads' for N-Quads.\n * [format] the format if output is a string:\n * 'application/n-quads' for N-Quads.\n * [documentLoader(url, options)] the document loader.\n * [useNative] true to use a native canonize algorithm\n * [rdfDirection] null or 'i18n-datatype' to support RDF\n * transformation of @direction (default: null).\n * [safe] true to use safe mode. (default: true).\n * [contextResolver] internal use only.\n *\n * @return a Promise that resolves to the normalized output.\n */\njsonld.normalize = jsonld.canonize = async function(input, options) {\n if(arguments.length < 1) {\n throw new TypeError('Could not canonize, too few arguments.');\n }\n\n // set default options\n options = _setDefaults(options, {\n base: _isString(input) ? input : null,\n algorithm: 'URDNA2015',\n skipExpansion: false,\n safe: true,\n contextResolver: new ContextResolver(\n {sharedCache: _resolvedContextCache})\n });\n if('inputFormat' in options) {\n if(options.inputFormat !== 'application/n-quads' &&\n options.inputFormat !== 'application/nquads') {\n throw new JsonLdError(\n 'Unknown canonicalization input format.',\n 'jsonld.CanonizeError');\n }\n // TODO: `await` for async parsers\n const parsedInput = NQuads.parse(input);\n\n // do canonicalization\n return canonize.canonize(parsedInput, options);\n }\n\n // convert to RDF dataset then do normalization\n const opts = {...options};\n delete opts.format;\n opts.produceGeneralizedRdf = false;\n const dataset = await jsonld.toRDF(input, opts);\n\n // do canonicalization\n return canonize.canonize(dataset, options);\n};\n\n/**\n * Converts an RDF dataset to JSON-LD.\n *\n * @param dataset a serialized string of RDF in a format specified by the\n * format option or an RDF dataset to convert.\n * @param [options] the options to use:\n * [format] the format if dataset param must first be parsed:\n * 'application/n-quads' for N-Quads (default).\n * [rdfParser] a custom RDF-parser to use to parse the dataset.\n * [useRdfType] true to use rdf:type, false to use @type\n * (default: false).\n * [useNativeTypes] true to convert XSD types into native types\n * (boolean, integer, double), false not to (default: false).\n * [rdfDirection] null or 'i18n-datatype' to support RDF\n * transformation of @direction (default: null).\n * [safe] true to use safe mode. (default: false)\n *\n * @return a Promise that resolves to the JSON-LD document.\n */\njsonld.fromRDF = async function(dataset, options) {\n if(arguments.length < 1) {\n throw new TypeError('Could not convert from RDF, too few arguments.');\n }\n\n // set default options\n options = _setDefaults(options, {\n format: _isString(dataset) ? 'application/n-quads' : undefined\n });\n\n const {format} = options;\n let {rdfParser} = options;\n\n // handle special format\n if(format) {\n // check supported formats\n rdfParser = rdfParser || _rdfParsers[format];\n if(!rdfParser) {\n throw new JsonLdError(\n 'Unknown input format.',\n 'jsonld.UnknownFormat', {format});\n }\n } else {\n // no-op parser, assume dataset already parsed\n rdfParser = () => dataset;\n }\n\n // rdfParser must be synchronous or return a promise, no callback support\n const parsedDataset = await rdfParser(dataset);\n return _fromRDF(parsedDataset, options);\n};\n\n/**\n * Outputs the RDF dataset found in the given JSON-LD object.\n *\n * @param input the JSON-LD input.\n * @param [options] the options to use:\n * [base] the base IRI to use.\n * [expandContext] a context to expand with.\n * [skipExpansion] true to assume the input is expanded and skip\n * expansion, false not to, defaults to false. Some well-formed\n * and safe-mode checks may be omitted.\n * [format] the format to use to output a string:\n * 'application/n-quads' for N-Quads.\n * [produceGeneralizedRdf] true to output generalized RDF, false\n * to produce only standard RDF (default: false).\n * [documentLoader(url, options)] the document loader.\n * [safe] true to use safe mode. (default: false)\n * [rdfDirection] null or 'i18n-datatype' to support RDF\n * transformation of @direction (default: null).\n * [contextResolver] internal use only.\n *\n * @return a Promise that resolves to the RDF dataset.\n */\njsonld.toRDF = async function(input, options) {\n if(arguments.length < 1) {\n throw new TypeError('Could not convert to RDF, too few arguments.');\n }\n\n // set default options\n options = _setDefaults(options, {\n base: _isString(input) ? input : '',\n skipExpansion: false,\n contextResolver: new ContextResolver(\n {sharedCache: _resolvedContextCache})\n });\n\n // TODO: support toRDF custom map?\n let expanded;\n if(options.skipExpansion) {\n expanded = input;\n } else {\n // expand input\n expanded = await jsonld.expand(input, options);\n }\n\n // output RDF dataset\n const dataset = _toRDF(expanded, options);\n if(options.format) {\n if(options.format === 'application/n-quads' ||\n options.format === 'application/nquads') {\n return NQuads.serialize(dataset);\n }\n throw new JsonLdError(\n 'Unknown output format.',\n 'jsonld.UnknownFormat', {format: options.format});\n }\n\n return dataset;\n};\n\n/**\n * **Experimental**\n *\n * Recursively flattens the nodes in the given JSON-LD input into a merged\n * map of node ID => node. All graphs will be merged into the default graph.\n *\n * @param input the JSON-LD input.\n * @param [options] the options to use:\n * [base] the base IRI to use.\n * [expandContext] a context to expand with.\n * [issuer] a jsonld.IdentifierIssuer to use to label blank nodes.\n * [documentLoader(url, options)] the document loader.\n * [contextResolver] internal use only.\n *\n * @return a Promise that resolves to the merged node map.\n */\njsonld.createNodeMap = async function(input, options) {\n if(arguments.length < 1) {\n throw new TypeError('Could not create node map, too few arguments.');\n }\n\n // set default options\n options = _setDefaults(options, {\n base: _isString(input) ? input : '',\n contextResolver: new ContextResolver(\n {sharedCache: _resolvedContextCache})\n });\n\n // expand input\n const expanded = await jsonld.expand(input, options);\n\n return _createMergedNodeMap(expanded, options);\n};\n\n/**\n * **Experimental**\n *\n * Merges two or more JSON-LD documents into a single flattened document.\n *\n * @param docs the JSON-LD documents to merge together.\n * @param ctx the context to use to compact the merged result, or null.\n * @param [options] the options to use:\n * [base] the base IRI to use.\n * [expandContext] a context to expand with.\n * [issuer] a jsonld.IdentifierIssuer to use to label blank nodes.\n * [mergeNodes] true to merge properties for nodes with the same ID,\n * false to ignore new properties for nodes with the same ID once\n * the ID has been defined; note that this may not prevent merging\n * new properties where a node is in the `object` position\n * (default: true).\n * [documentLoader(url, options)] the document loader.\n * [safe] true to use safe mode. (default: false)\n * [contextResolver] internal use only.\n *\n * @return a Promise that resolves to the merged output.\n */\njsonld.merge = async function(docs, ctx, options) {\n if(arguments.length < 1) {\n throw new TypeError('Could not merge, too few arguments.');\n }\n if(!_isArray(docs)) {\n throw new TypeError('Could not merge, \"docs\" must be an array.');\n }\n\n if(typeof ctx === 'function') {\n ctx = null;\n } else {\n ctx = ctx || null;\n }\n\n // set default options\n options = _setDefaults(options, {\n contextResolver: new ContextResolver(\n {sharedCache: _resolvedContextCache})\n });\n\n // expand all documents\n const expanded = await Promise.all(docs.map(doc => {\n const opts = {...options};\n return jsonld.expand(doc, opts);\n }));\n\n let mergeNodes = true;\n if('mergeNodes' in options) {\n mergeNodes = options.mergeNodes;\n }\n\n const issuer = options.issuer || new IdentifierIssuer('_:b');\n const graphs = {'@default': {}};\n\n for(let i = 0; i < expanded.length; ++i) {\n // uniquely relabel blank nodes\n const doc = util.relabelBlankNodes(expanded[i], {\n issuer: new IdentifierIssuer('_:b' + i + '-')\n });\n\n // add nodes to the shared node map graphs if merging nodes, to a\n // separate graph set if not\n const _graphs = (mergeNodes || i === 0) ? graphs : {'@default': {}};\n _createNodeMap(doc, _graphs, '@default', issuer);\n\n if(_graphs !== graphs) {\n // merge document graphs but don't merge existing nodes\n for(const graphName in _graphs) {\n const _nodeMap = _graphs[graphName];\n if(!(graphName in graphs)) {\n graphs[graphName] = _nodeMap;\n continue;\n }\n const nodeMap = graphs[graphName];\n for(const key in _nodeMap) {\n if(!(key in nodeMap)) {\n nodeMap[key] = _nodeMap[key];\n }\n }\n }\n }\n }\n\n // add all non-default graphs to default graph\n const defaultGraph = _mergeNodeMaps(graphs);\n\n // produce flattened output\n const flattened = [];\n const keys = Object.keys(defaultGraph).sort();\n for(let ki = 0; ki < keys.length; ++ki) {\n const node = defaultGraph[keys[ki]];\n // only add full subjects to top-level\n if(!_isSubjectReference(node)) {\n flattened.push(node);\n }\n }\n\n if(ctx === null) {\n return flattened;\n }\n\n // compact result (force @graph option to true, skip expansion)\n options.graph = true;\n options.skipExpansion = true;\n const compacted = await jsonld.compact(flattened, ctx, options);\n\n return compacted;\n};\n\n/**\n * The default document loader for external documents.\n *\n * @param url the URL to load.\n *\n * @return a promise that resolves to the remote document.\n */\nObject.defineProperty(jsonld, 'documentLoader', {\n get: () => jsonld._documentLoader,\n set: v => jsonld._documentLoader = v\n});\n// default document loader not implemented\njsonld.documentLoader = async url => {\n throw new JsonLdError(\n 'Could not retrieve a JSON-LD document from the URL. URL ' +\n 'dereferencing not implemented.', 'jsonld.LoadDocumentError',\n {code: 'loading document failed', url});\n};\n\n/**\n * Gets a remote JSON-LD document using the default document loader or\n * one given in the passed options.\n *\n * @param url the URL to fetch.\n * @param [options] the options to use:\n * [documentLoader] the document loader to use.\n *\n * @return a Promise that resolves to the retrieved remote document.\n */\njsonld.get = async function(url, options) {\n let load;\n if(typeof options.documentLoader === 'function') {\n load = options.documentLoader;\n } else {\n load = jsonld.documentLoader;\n }\n\n const remoteDoc = await load(url);\n\n try {\n if(!remoteDoc.document) {\n throw new JsonLdError(\n 'No remote document found at the given URL.',\n 'jsonld.NullRemoteDocument');\n }\n if(_isString(remoteDoc.document)) {\n remoteDoc.document = JSON.parse(remoteDoc.document);\n }\n } catch(e) {\n throw new JsonLdError(\n 'Could not retrieve a JSON-LD document from the URL.',\n 'jsonld.LoadDocumentError', {\n code: 'loading document failed',\n cause: e,\n remoteDoc\n });\n }\n\n return remoteDoc;\n};\n\n/**\n * Processes a local context, resolving any URLs as necessary, and returns a\n * new active context.\n *\n * @param activeCtx the current active context.\n * @param localCtx the local context to process.\n * @param [options] the options to use:\n * [documentLoader(url, options)] the document loader.\n * [safe] true to use safe mode. (default: false)\n * [contextResolver] internal use only.\n *\n * @return a Promise that resolves to the new active context.\n */\njsonld.processContext = async function(\n activeCtx, localCtx, options) {\n // set default options\n options = _setDefaults(options, {\n base: '',\n contextResolver: new ContextResolver(\n {sharedCache: _resolvedContextCache})\n });\n\n // return initial context early for null context\n if(localCtx === null) {\n return _getInitialContext(options);\n }\n\n // get URLs in localCtx\n localCtx = util.clone(localCtx);\n if(!(_isObject(localCtx) && '@context' in localCtx)) {\n localCtx = {'@context': localCtx};\n }\n\n return _processContext({activeCtx, localCtx, options});\n};\n\n// backwards compatibility\njsonld.getContextValue = require('./context').getContextValue;\n\n/**\n * Document loaders.\n */\njsonld.documentLoaders = {};\n\n/**\n * Assigns the default document loader for external document URLs to a built-in\n * default. Supported types currently include: 'xhr' and 'node'.\n *\n * @param type the type to set.\n * @param [params] the parameters required to use the document loader.\n */\njsonld.useDocumentLoader = function(type) {\n if(!(type in jsonld.documentLoaders)) {\n throw new JsonLdError(\n 'Unknown document loader type: \"' + type + '\"',\n 'jsonld.UnknownDocumentLoader',\n {type});\n }\n\n // set document loader\n jsonld.documentLoader = jsonld.documentLoaders[type].apply(\n jsonld, Array.prototype.slice.call(arguments, 1));\n};\n\n/**\n * Registers an RDF dataset parser by content-type, for use with\n * jsonld.fromRDF. An RDF dataset parser will always be given one parameter,\n * a string of input. An RDF dataset parser can be synchronous or\n * asynchronous (by returning a promise).\n *\n * @param contentType the content-type for the parser.\n * @param parser(input) the parser function (takes a string as a parameter\n * and either returns an RDF dataset or a Promise that resolves to one.\n */\njsonld.registerRDFParser = function(contentType, parser) {\n _rdfParsers[contentType] = parser;\n};\n\n/**\n * Unregisters an RDF dataset parser by content-type.\n *\n * @param contentType the content-type for the parser.\n */\njsonld.unregisterRDFParser = function(contentType) {\n delete _rdfParsers[contentType];\n};\n\n// register the N-Quads RDF parser\njsonld.registerRDFParser('application/n-quads', NQuads.parse);\njsonld.registerRDFParser('application/nquads', NQuads.parse);\n\n/* URL API */\njsonld.url = require('./url');\n\n/* Events API and handlers */\njsonld.logEventHandler = _logEventHandler;\njsonld.logWarningEventHandler = _logWarningEventHandler;\njsonld.safeEventHandler = _safeEventHandler;\njsonld.setDefaultEventHandler = _setDefaultEventHandler;\njsonld.strictEventHandler = _strictEventHandler;\njsonld.unhandledEventHandler = _unhandledEventHandler;\n\n/* Utility API */\njsonld.util = util;\n// backwards compatibility\nObject.assign(jsonld, util);\n\n// reexpose API as jsonld.promises for backwards compatability\njsonld.promises = jsonld;\n\n// backwards compatibility\njsonld.RequestQueue = require('./RequestQueue');\n\n/* WebIDL API */\njsonld.JsonLdProcessor = require('./JsonLdProcessor')(jsonld);\n\nplatform.setupGlobals(jsonld);\nplatform.setupDocumentLoaders(jsonld);\n\nfunction _setDefaults(options, {\n documentLoader = jsonld.documentLoader,\n ...defaults\n}) {\n // fail if obsolete options present\n if(options && 'compactionMap' in options) {\n throw new JsonLdError(\n '\"compactionMap\" not supported.',\n 'jsonld.OptionsError');\n }\n if(options && 'expansionMap' in options) {\n throw new JsonLdError(\n '\"expansionMap\" not supported.',\n 'jsonld.OptionsError');\n }\n return Object.assign(\n {},\n {documentLoader},\n defaults,\n options,\n {eventHandler: _setupEventHandler({options})}\n );\n}\n\n// end of jsonld API `wrapper` factory\nreturn jsonld;\n};\n\n// external APIs:\n\n// used to generate a new jsonld API instance\nconst factory = function() {\n return wrapper(function() {\n return factory();\n });\n};\n\n// wrap the main jsonld API instance\nwrapper(factory);\n// export API\nmodule.exports = factory;\n","/*\n * Copyright (c) 2017 Digital Bazaar, Inc. All rights reserved.\n */\n'use strict';\n\nconst {isKeyword} = require('./context');\nconst graphTypes = require('./graphTypes');\nconst types = require('./types');\nconst util = require('./util');\nconst JsonLdError = require('./JsonLdError');\n\nconst api = {};\nmodule.exports = api;\n\n/**\n * Creates a merged JSON-LD node map (node ID => node).\n *\n * @param input the expanded JSON-LD to create a node map of.\n * @param [options] the options to use:\n * [issuer] a jsonld.IdentifierIssuer to use to label blank nodes.\n *\n * @return the node map.\n */\napi.createMergedNodeMap = (input, options) => {\n options = options || {};\n\n // produce a map of all subjects and name each bnode\n const issuer = options.issuer || new util.IdentifierIssuer('_:b');\n const graphs = {'@default': {}};\n api.createNodeMap(input, graphs, '@default', issuer);\n\n // add all non-default graphs to default graph\n return api.mergeNodeMaps(graphs);\n};\n\n/**\n * Recursively flattens the subjects in the given JSON-LD expanded input\n * into a node map.\n *\n * @param input the JSON-LD expanded input.\n * @param graphs a map of graph name to subject map.\n * @param graph the name of the current graph.\n * @param issuer the blank node identifier issuer.\n * @param name the name assigned to the current input if it is a bnode.\n * @param list the list to append to, null for none.\n */\napi.createNodeMap = (input, graphs, graph, issuer, name, list) => {\n // recurse through array\n if(types.isArray(input)) {\n for(const node of input) {\n api.createNodeMap(node, graphs, graph, issuer, undefined, list);\n }\n return;\n }\n\n // add non-object to list\n if(!types.isObject(input)) {\n if(list) {\n list.push(input);\n }\n return;\n }\n\n // add values to list\n if(graphTypes.isValue(input)) {\n if('@type' in input) {\n let type = input['@type'];\n // rename @type blank node\n if(type.indexOf('_:') === 0) {\n input['@type'] = type = issuer.getId(type);\n }\n }\n if(list) {\n list.push(input);\n }\n return;\n } else if(list && graphTypes.isList(input)) {\n const _list = [];\n api.createNodeMap(input['@list'], graphs, graph, issuer, name, _list);\n list.push({'@list': _list});\n return;\n }\n\n // Note: At this point, input must be a subject.\n\n // spec requires @type to be named first, so assign names early\n if('@type' in input) {\n const types = input['@type'];\n for(const type of types) {\n if(type.indexOf('_:') === 0) {\n issuer.getId(type);\n }\n }\n }\n\n // get name for subject\n if(types.isUndefined(name)) {\n name = graphTypes.isBlankNode(input) ?\n issuer.getId(input['@id']) : input['@id'];\n }\n\n // add subject reference to list\n if(list) {\n list.push({'@id': name});\n }\n\n // create new subject or merge into existing one\n const subjects = graphs[graph];\n const subject = subjects[name] = subjects[name] || {};\n subject['@id'] = name;\n const properties = Object.keys(input).sort();\n for(let property of properties) {\n // skip @id\n if(property === '@id') {\n continue;\n }\n\n // handle reverse properties\n if(property === '@reverse') {\n const referencedNode = {'@id': name};\n const reverseMap = input['@reverse'];\n for(const reverseProperty in reverseMap) {\n const items = reverseMap[reverseProperty];\n for(const item of items) {\n let itemName = item['@id'];\n if(graphTypes.isBlankNode(item)) {\n itemName = issuer.getId(itemName);\n }\n api.createNodeMap(item, graphs, graph, issuer, itemName);\n util.addValue(\n subjects[itemName], reverseProperty, referencedNode,\n {propertyIsArray: true, allowDuplicate: false});\n }\n }\n continue;\n }\n\n // recurse into graph\n if(property === '@graph') {\n // add graph subjects map entry\n if(!(name in graphs)) {\n graphs[name] = {};\n }\n api.createNodeMap(input[property], graphs, name, issuer);\n continue;\n }\n\n // recurse into included\n if(property === '@included') {\n api.createNodeMap(input[property], graphs, graph, issuer);\n continue;\n }\n\n // copy non-@type keywords\n if(property !== '@type' && isKeyword(property)) {\n if(property === '@index' && property in subject &&\n (input[property] !== subject[property] ||\n input[property]['@id'] !== subject[property]['@id'])) {\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; conflicting @index property detected.',\n 'jsonld.SyntaxError',\n {code: 'conflicting indexes', subject});\n }\n subject[property] = input[property];\n continue;\n }\n\n // iterate over objects\n const objects = input[property];\n\n // if property is a bnode, assign it a new id\n if(property.indexOf('_:') === 0) {\n property = issuer.getId(property);\n }\n\n // ensure property is added for empty arrays\n if(objects.length === 0) {\n util.addValue(subject, property, [], {propertyIsArray: true});\n continue;\n }\n for(let o of objects) {\n if(property === '@type') {\n // rename @type blank nodes\n o = (o.indexOf('_:') === 0) ? issuer.getId(o) : o;\n }\n\n // handle embedded subject or subject reference\n if(graphTypes.isSubject(o) || graphTypes.isSubjectReference(o)) {\n // skip null @id\n if('@id' in o && !o['@id']) {\n continue;\n }\n\n // relabel blank node @id\n const id = graphTypes.isBlankNode(o) ?\n issuer.getId(o['@id']) : o['@id'];\n\n // add reference and recurse\n util.addValue(\n subject, property, {'@id': id},\n {propertyIsArray: true, allowDuplicate: false});\n api.createNodeMap(o, graphs, graph, issuer, id);\n } else if(graphTypes.isValue(o)) {\n util.addValue(\n subject, property, o,\n {propertyIsArray: true, allowDuplicate: false});\n } else if(graphTypes.isList(o)) {\n // handle @list\n const _list = [];\n api.createNodeMap(o['@list'], graphs, graph, issuer, name, _list);\n o = {'@list': _list};\n util.addValue(\n subject, property, o,\n {propertyIsArray: true, allowDuplicate: false});\n } else {\n // handle @value\n api.createNodeMap(o, graphs, graph, issuer, name);\n util.addValue(\n subject, property, o, {propertyIsArray: true, allowDuplicate: false});\n }\n }\n }\n};\n\n/**\n * Merge separate named graphs into a single merged graph including\n * all nodes from the default graph and named graphs.\n *\n * @param graphs a map of graph name to subject map.\n *\n * @return the merged graph map.\n */\napi.mergeNodeMapGraphs = graphs => {\n const merged = {};\n for(const name of Object.keys(graphs).sort()) {\n for(const id of Object.keys(graphs[name]).sort()) {\n const node = graphs[name][id];\n if(!(id in merged)) {\n merged[id] = {'@id': id};\n }\n const mergedNode = merged[id];\n\n for(const property of Object.keys(node).sort()) {\n if(isKeyword(property) && property !== '@type') {\n // copy keywords\n mergedNode[property] = util.clone(node[property]);\n } else {\n // merge objects\n for(const value of node[property]) {\n util.addValue(\n mergedNode, property, util.clone(value),\n {propertyIsArray: true, allowDuplicate: false});\n }\n }\n }\n }\n }\n\n return merged;\n};\n\napi.mergeNodeMaps = graphs => {\n // add all non-default graphs to default graph\n const defaultGraph = graphs['@default'];\n const graphNames = Object.keys(graphs).sort();\n for(const graphName of graphNames) {\n if(graphName === '@default') {\n continue;\n }\n const nodeMap = graphs[graphName];\n let subject = defaultGraph[graphName];\n if(!subject) {\n defaultGraph[graphName] = subject = {\n '@id': graphName,\n '@graph': []\n };\n } else if(!('@graph' in subject)) {\n subject['@graph'] = [];\n }\n const graph = subject['@graph'];\n for(const id of Object.keys(nodeMap).sort()) {\n const node = nodeMap[id];\n // only add full subjects\n if(!graphTypes.isSubjectReference(node)) {\n graph.push(node);\n }\n }\n }\n return defaultGraph;\n};\n","/*\n * Copyright (c) 2021 Digital Bazaar, Inc. All rights reserved.\n */\n'use strict';\n\nconst xhrLoader = require('./documentLoaders/xhr');\n\nconst api = {};\nmodule.exports = api;\n\n/**\n * Setup browser document loaders.\n *\n * @param jsonld the jsonld api.\n */\napi.setupDocumentLoaders = function(jsonld) {\n if(typeof XMLHttpRequest !== 'undefined') {\n jsonld.documentLoaders.xhr = xhrLoader;\n // use xhr document loader by default\n jsonld.useDocumentLoader('xhr');\n }\n};\n\n/**\n * Setup browser globals.\n *\n * @param jsonld the jsonld api.\n */\napi.setupGlobals = function(jsonld) {\n // setup browser global JsonLdProcessor\n if(typeof globalThis.JsonLdProcessor === 'undefined') {\n Object.defineProperty(globalThis, 'JsonLdProcessor', {\n writable: true,\n enumerable: false,\n configurable: true,\n value: jsonld.JsonLdProcessor\n });\n }\n};\n","/*\n * Copyright (c) 2017-2023 Digital Bazaar, Inc. All rights reserved.\n */\n'use strict';\n\nconst {createNodeMap} = require('./nodeMap');\nconst {isKeyword} = require('./context');\nconst graphTypes = require('./graphTypes');\nconst jsonCanonicalize = require('canonicalize');\nconst JsonLdError = require('./JsonLdError');\nconst types = require('./types');\nconst util = require('./util');\n\nconst {\n handleEvent: _handleEvent\n} = require('./events');\n\nconst {\n // RDF,\n // RDF_LIST,\n RDF_FIRST,\n RDF_REST,\n RDF_NIL,\n RDF_TYPE,\n // RDF_PLAIN_LITERAL,\n // RDF_XML_LITERAL,\n RDF_JSON_LITERAL,\n // RDF_OBJECT,\n RDF_LANGSTRING,\n\n // XSD,\n XSD_BOOLEAN,\n XSD_DOUBLE,\n XSD_INTEGER,\n XSD_STRING,\n} = require('./constants');\n\nconst {\n isAbsolute: _isAbsoluteIri\n} = require('./url');\n\nconst api = {};\nmodule.exports = api;\n\n/**\n * Outputs an RDF dataset for the expanded JSON-LD input.\n *\n * @param input the expanded JSON-LD input.\n * @param options the RDF serialization options.\n *\n * @return the RDF dataset.\n */\napi.toRDF = (input, options) => {\n // create node map for default graph (and any named graphs)\n const issuer = new util.IdentifierIssuer('_:b');\n const nodeMap = {'@default': {}};\n createNodeMap(input, nodeMap, '@default', issuer);\n\n const dataset = [];\n const graphNames = Object.keys(nodeMap).sort();\n for(const graphName of graphNames) {\n let graphTerm;\n if(graphName === '@default') {\n graphTerm = {termType: 'DefaultGraph', value: ''};\n } else if(_isAbsoluteIri(graphName)) {\n if(graphName.startsWith('_:')) {\n graphTerm = {termType: 'BlankNode'};\n } else {\n graphTerm = {termType: 'NamedNode'};\n }\n graphTerm.value = graphName;\n } else {\n // skip relative IRIs (not valid RDF)\n if(options.eventHandler) {\n _handleEvent({\n event: {\n type: ['JsonLdEvent'],\n code: 'relative graph reference',\n level: 'warning',\n message: 'Relative graph reference found.',\n details: {\n graph: graphName\n }\n },\n options\n });\n }\n continue;\n }\n _graphToRDF(dataset, nodeMap[graphName], graphTerm, issuer, options);\n }\n\n return dataset;\n};\n\n/**\n * Adds RDF quads for a particular graph to the given dataset.\n *\n * @param dataset the dataset to append RDF quads to.\n * @param graph the graph to create RDF quads for.\n * @param graphTerm the graph term for each quad.\n * @param issuer a IdentifierIssuer for assigning blank node names.\n * @param options the RDF serialization options.\n *\n * @return the array of RDF triples for the given graph.\n */\nfunction _graphToRDF(dataset, graph, graphTerm, issuer, options) {\n const ids = Object.keys(graph).sort();\n for(const id of ids) {\n const node = graph[id];\n const properties = Object.keys(node).sort();\n for(let property of properties) {\n const items = node[property];\n if(property === '@type') {\n property = RDF_TYPE;\n } else if(isKeyword(property)) {\n continue;\n }\n\n for(const item of items) {\n // RDF subject\n const subject = {\n termType: id.startsWith('_:') ? 'BlankNode' : 'NamedNode',\n value: id\n };\n\n // skip relative IRI subjects (not valid RDF)\n if(!_isAbsoluteIri(id)) {\n if(options.eventHandler) {\n _handleEvent({\n event: {\n type: ['JsonLdEvent'],\n code: 'relative subject reference',\n level: 'warning',\n message: 'Relative subject reference found.',\n details: {\n subject: id\n }\n },\n options\n });\n }\n continue;\n }\n\n // RDF predicate\n const predicate = {\n termType: property.startsWith('_:') ? 'BlankNode' : 'NamedNode',\n value: property\n };\n\n // skip relative IRI predicates (not valid RDF)\n if(!_isAbsoluteIri(property)) {\n if(options.eventHandler) {\n _handleEvent({\n event: {\n type: ['JsonLdEvent'],\n code: 'relative predicate reference',\n level: 'warning',\n message: 'Relative predicate reference found.',\n details: {\n predicate: property\n }\n },\n options\n });\n }\n continue;\n }\n\n // skip blank node predicates unless producing generalized RDF\n if(predicate.termType === 'BlankNode' &&\n !options.produceGeneralizedRdf) {\n if(options.eventHandler) {\n _handleEvent({\n event: {\n type: ['JsonLdEvent'],\n code: 'blank node predicate',\n level: 'warning',\n message: 'Dropping blank node predicate.',\n details: {\n // FIXME: add better issuer API to get reverse mapping\n property: issuer.getOldIds()\n .find(key => issuer.getId(key) === property)\n }\n },\n options\n });\n }\n continue;\n }\n\n // convert list, value or node object to triple\n const object = _objectToRDF(\n item, issuer, dataset, graphTerm, options.rdfDirection, options);\n // skip null objects (they are relative IRIs)\n if(object) {\n dataset.push({\n subject,\n predicate,\n object,\n graph: graphTerm\n });\n }\n }\n }\n }\n}\n\n/**\n * Converts a @list value into linked list of blank node RDF quads\n * (an RDF collection).\n *\n * @param list the @list value.\n * @param issuer a IdentifierIssuer for assigning blank node names.\n * @param dataset the array of quads to append to.\n * @param graphTerm the graph term for each quad.\n * @param options the RDF serialization options.\n *\n * @return the head of the list.\n */\nfunction _listToRDF(list, issuer, dataset, graphTerm, rdfDirection, options) {\n const first = {termType: 'NamedNode', value: RDF_FIRST};\n const rest = {termType: 'NamedNode', value: RDF_REST};\n const nil = {termType: 'NamedNode', value: RDF_NIL};\n\n const last = list.pop();\n // Result is the head of the list\n const result = last ? {termType: 'BlankNode', value: issuer.getId()} : nil;\n let subject = result;\n\n for(const item of list) {\n const object = _objectToRDF(\n item, issuer, dataset, graphTerm, rdfDirection, options);\n const next = {termType: 'BlankNode', value: issuer.getId()};\n dataset.push({\n subject,\n predicate: first,\n object,\n graph: graphTerm\n });\n dataset.push({\n subject,\n predicate: rest,\n object: next,\n graph: graphTerm\n });\n subject = next;\n }\n\n // Tail of list\n if(last) {\n const object = _objectToRDF(\n last, issuer, dataset, graphTerm, rdfDirection, options);\n dataset.push({\n subject,\n predicate: first,\n object,\n graph: graphTerm\n });\n dataset.push({\n subject,\n predicate: rest,\n object: nil,\n graph: graphTerm\n });\n }\n\n return result;\n}\n\n/**\n * Converts a JSON-LD value object to an RDF literal or a JSON-LD string,\n * node object to an RDF resource, or adds a list.\n *\n * @param item the JSON-LD value or node object.\n * @param issuer a IdentifierIssuer for assigning blank node names.\n * @param dataset the dataset to append RDF quads to.\n * @param graphTerm the graph term for each quad.\n * @param options the RDF serialization options.\n *\n * @return the RDF literal or RDF resource.\n */\nfunction _objectToRDF(\n item, issuer, dataset, graphTerm, rdfDirection, options\n) {\n const object = {};\n\n // convert value object to RDF\n if(graphTypes.isValue(item)) {\n object.termType = 'Literal';\n object.value = undefined;\n object.datatype = {\n termType: 'NamedNode'\n };\n let value = item['@value'];\n const datatype = item['@type'] || null;\n\n // convert to XSD/JSON datatypes as appropriate\n if(datatype === '@json') {\n object.value = jsonCanonicalize(value);\n object.datatype.value = RDF_JSON_LITERAL;\n } else if(types.isBoolean(value)) {\n object.value = value.toString();\n object.datatype.value = datatype || XSD_BOOLEAN;\n } else if(types.isDouble(value) || datatype === XSD_DOUBLE) {\n if(!types.isDouble(value)) {\n value = parseFloat(value);\n }\n // canonical double representation\n object.value = value.toExponential(15).replace(/(\\d)0*e\\+?/, '$1E');\n object.datatype.value = datatype || XSD_DOUBLE;\n } else if(types.isNumber(value)) {\n object.value = value.toFixed(0);\n object.datatype.value = datatype || XSD_INTEGER;\n } else if('@direction' in item && rdfDirection === 'i18n-datatype') {\n const language = (item['@language'] || '').toLowerCase();\n const direction = item['@direction'];\n const datatype = `https://www.w3.org/ns/i18n#${language}_${direction}`;\n object.datatype.value = datatype;\n object.value = value;\n } else if('@direction' in item && rdfDirection === 'compound-literal') {\n throw new JsonLdError(\n 'Unsupported rdfDirection value.',\n 'jsonld.InvalidRdfDirection',\n {value: rdfDirection});\n } else if('@direction' in item && rdfDirection) {\n throw new JsonLdError(\n 'Unknown rdfDirection value.',\n 'jsonld.InvalidRdfDirection',\n {value: rdfDirection});\n } else if('@language' in item) {\n if('@direction' in item && !rdfDirection) {\n if(options.eventHandler) {\n // FIXME: only emit once?\n _handleEvent({\n event: {\n type: ['JsonLdEvent'],\n code: 'rdfDirection not set',\n level: 'warning',\n message: 'rdfDirection not set for @direction.',\n details: {\n object: object.value\n }\n },\n options\n });\n }\n }\n object.value = value;\n object.datatype.value = datatype || RDF_LANGSTRING;\n object.language = item['@language'];\n } else {\n if('@direction' in item && !rdfDirection) {\n if(options.eventHandler) {\n // FIXME: only emit once?\n _handleEvent({\n event: {\n type: ['JsonLdEvent'],\n code: 'rdfDirection not set',\n level: 'warning',\n message: 'rdfDirection not set for @direction.',\n details: {\n object: object.value\n }\n },\n options\n });\n }\n }\n object.value = value;\n object.datatype.value = datatype || XSD_STRING;\n }\n } else if(graphTypes.isList(item)) {\n const _list = _listToRDF(\n item['@list'], issuer, dataset, graphTerm, rdfDirection, options);\n object.termType = _list.termType;\n object.value = _list.value;\n } else {\n // convert string/node object to RDF\n const id = types.isObject(item) ? item['@id'] : item;\n object.termType = id.startsWith('_:') ? 'BlankNode' : 'NamedNode';\n object.value = id;\n }\n\n // skip relative IRIs, not valid RDF\n if(object.termType === 'NamedNode' && !_isAbsoluteIri(object.value)) {\n if(options.eventHandler) {\n _handleEvent({\n event: {\n type: ['JsonLdEvent'],\n code: 'relative object reference',\n level: 'warning',\n message: 'Relative object reference found.',\n details: {\n object: object.value\n }\n },\n options\n });\n }\n return null;\n }\n\n return object;\n}\n","/*\n * Copyright (c) 2017 Digital Bazaar, Inc. All rights reserved.\n */\n'use strict';\n\nconst api = {};\nmodule.exports = api;\n\n/**\n * Returns true if the given value is an Array.\n *\n * @param v the value to check.\n *\n * @return true if the value is an Array, false if not.\n */\napi.isArray = Array.isArray;\n\n/**\n * Returns true if the given value is a Boolean.\n *\n * @param v the value to check.\n *\n * @return true if the value is a Boolean, false if not.\n */\napi.isBoolean = v => (typeof v === 'boolean' ||\n Object.prototype.toString.call(v) === '[object Boolean]');\n\n/**\n * Returns true if the given value is a double.\n *\n * @param v the value to check.\n *\n * @return true if the value is a double, false if not.\n */\napi.isDouble = v => api.isNumber(v) &&\n (String(v).indexOf('.') !== -1 || Math.abs(v) >= 1e21);\n\n/**\n * Returns true if the given value is an empty Object.\n *\n * @param v the value to check.\n *\n * @return true if the value is an empty Object, false if not.\n */\napi.isEmptyObject = v => api.isObject(v) && Object.keys(v).length === 0;\n\n/**\n * Returns true if the given value is a Number.\n *\n * @param v the value to check.\n *\n * @return true if the value is a Number, false if not.\n */\napi.isNumber = v => (typeof v === 'number' ||\n Object.prototype.toString.call(v) === '[object Number]');\n\n/**\n * Returns true if the given value is numeric.\n *\n * @param v the value to check.\n *\n * @return true if the value is numeric, false if not.\n */\napi.isNumeric = v => !isNaN(parseFloat(v)) && isFinite(v);\n\n/**\n * Returns true if the given value is an Object.\n *\n * @param v the value to check.\n *\n * @return true if the value is an Object, false if not.\n */\napi.isObject = v => Object.prototype.toString.call(v) === '[object Object]';\n\n/**\n * Returns true if the given value is a String.\n *\n * @param v the value to check.\n *\n * @return true if the value is a String, false if not.\n */\napi.isString = v => (typeof v === 'string' ||\n Object.prototype.toString.call(v) === '[object String]');\n\n/**\n * Returns true if the given value is undefined.\n *\n * @param v the value to check.\n *\n * @return true if the value is undefined, false if not.\n */\napi.isUndefined = v => typeof v === 'undefined';\n","/*\n * Copyright (c) 2017 Digital Bazaar, Inc. All rights reserved.\n */\n'use strict';\n\nconst types = require('./types');\n\nconst api = {};\nmodule.exports = api;\n\n// define URL parser\n// parseUri 1.2.2\n// (c) Steven Levithan \n// MIT License\n// with local jsonld.js modifications\napi.parsers = {\n simple: {\n // RFC 3986 basic parts\n keys: [\n 'href', 'scheme', 'authority', 'path', 'query', 'fragment'\n ],\n /* eslint-disable-next-line max-len */\n regex: /^(?:([^:\\/?#]+):)?(?:\\/\\/([^\\/?#]*))?([^?#]*)(?:\\?([^#]*))?(?:#(.*))?/\n },\n full: {\n keys: [\n 'href', 'protocol', 'scheme', 'authority', 'auth', 'user', 'password',\n 'hostname', 'port', 'path', 'directory', 'file', 'query', 'fragment'\n ],\n /* eslint-disable-next-line max-len */\n regex: /^(([a-zA-Z][a-zA-Z0-9+-.]*):)?(?:\\/\\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\\/?#]*)(?::(\\d*))?))?(?:(((?:[^?#\\/]*\\/)*)([^?#]*))(?:\\?([^#]*))?(?:#(.*))?)/\n }\n};\napi.parse = (str, parser) => {\n const parsed = {};\n const o = api.parsers[parser || 'full'];\n const m = o.regex.exec(str);\n let i = o.keys.length;\n while(i--) {\n parsed[o.keys[i]] = (m[i] === undefined) ? null : m[i];\n }\n\n // remove default ports in found in URLs\n if((parsed.scheme === 'https' && parsed.port === '443') ||\n (parsed.scheme === 'http' && parsed.port === '80')) {\n parsed.href = parsed.href.replace(':' + parsed.port, '');\n parsed.authority = parsed.authority.replace(':' + parsed.port, '');\n parsed.port = null;\n }\n\n parsed.normalizedPath = api.removeDotSegments(parsed.path);\n return parsed;\n};\n\n/**\n * Prepends a base IRI to the given relative IRI.\n *\n * @param base the base IRI.\n * @param iri the relative IRI.\n *\n * @return the absolute IRI.\n */\napi.prependBase = (base, iri) => {\n // skip IRI processing\n if(base === null) {\n return iri;\n }\n // already an absolute IRI\n if(api.isAbsolute(iri)) {\n return iri;\n }\n\n // parse base if it is a string\n if(!base || types.isString(base)) {\n base = api.parse(base || '');\n }\n\n // parse given IRI\n const rel = api.parse(iri);\n\n // per RFC3986 5.2.2\n const transform = {\n protocol: base.protocol || ''\n };\n\n if(rel.authority !== null) {\n transform.authority = rel.authority;\n transform.path = rel.path;\n transform.query = rel.query;\n } else {\n transform.authority = base.authority;\n\n if(rel.path === '') {\n transform.path = base.path;\n if(rel.query !== null) {\n transform.query = rel.query;\n } else {\n transform.query = base.query;\n }\n } else {\n if(rel.path.indexOf('/') === 0) {\n // IRI represents an absolute path\n transform.path = rel.path;\n } else {\n // merge paths\n let path = base.path;\n\n // append relative path to the end of the last directory from base\n path = path.substr(0, path.lastIndexOf('/') + 1);\n if((path.length > 0 || base.authority) && path.substr(-1) !== '/') {\n path += '/';\n }\n path += rel.path;\n\n transform.path = path;\n }\n transform.query = rel.query;\n }\n }\n\n if(rel.path !== '') {\n // remove slashes and dots in path\n transform.path = api.removeDotSegments(transform.path);\n }\n\n // construct URL\n let rval = transform.protocol;\n if(transform.authority !== null) {\n rval += '//' + transform.authority;\n }\n rval += transform.path;\n if(transform.query !== null) {\n rval += '?' + transform.query;\n }\n if(rel.fragment !== null) {\n rval += '#' + rel.fragment;\n }\n\n // handle empty base\n if(rval === '') {\n rval = './';\n }\n\n return rval;\n};\n\n/**\n * Removes a base IRI from the given absolute IRI.\n *\n * @param base the base IRI.\n * @param iri the absolute IRI.\n *\n * @return the relative IRI if relative to base, otherwise the absolute IRI.\n */\napi.removeBase = (base, iri) => {\n // skip IRI processing\n if(base === null) {\n return iri;\n }\n\n if(!base || types.isString(base)) {\n base = api.parse(base || '');\n }\n\n // establish base root\n let root = '';\n if(base.href !== '') {\n root += (base.protocol || '') + '//' + (base.authority || '');\n } else if(iri.indexOf('//')) {\n // support network-path reference with empty base\n root += '//';\n }\n\n // IRI not relative to base\n if(iri.indexOf(root) !== 0) {\n return iri;\n }\n\n // remove root from IRI and parse remainder\n const rel = api.parse(iri.substr(root.length));\n\n // remove path segments that match (do not remove last segment unless there\n // is a hash or query)\n const baseSegments = base.normalizedPath.split('/');\n const iriSegments = rel.normalizedPath.split('/');\n const last = (rel.fragment || rel.query) ? 0 : 1;\n while(baseSegments.length > 0 && iriSegments.length > last) {\n if(baseSegments[0] !== iriSegments[0]) {\n break;\n }\n baseSegments.shift();\n iriSegments.shift();\n }\n\n // use '../' for each non-matching base segment\n let rval = '';\n if(baseSegments.length > 0) {\n // don't count the last segment (if it ends with '/' last path doesn't\n // count and if it doesn't end with '/' it isn't a path)\n baseSegments.pop();\n for(let i = 0; i < baseSegments.length; ++i) {\n rval += '../';\n }\n }\n\n // prepend remaining segments\n rval += iriSegments.join('/');\n\n // add query and hash\n if(rel.query !== null) {\n rval += '?' + rel.query;\n }\n if(rel.fragment !== null) {\n rval += '#' + rel.fragment;\n }\n\n // handle empty base\n if(rval === '') {\n rval = './';\n }\n\n return rval;\n};\n\n/**\n * Removes dot segments from a URL path.\n *\n * @param path the path to remove dot segments from.\n */\napi.removeDotSegments = path => {\n // RFC 3986 5.2.4 (reworked)\n\n // empty path shortcut\n if(path.length === 0) {\n return '';\n }\n\n const input = path.split('/');\n const output = [];\n\n while(input.length > 0) {\n const next = input.shift();\n const done = input.length === 0;\n\n if(next === '.') {\n if(done) {\n // ensure output has trailing /\n output.push('');\n }\n continue;\n }\n\n if(next === '..') {\n output.pop();\n if(done) {\n // ensure output has trailing /\n output.push('');\n }\n continue;\n }\n\n output.push(next);\n }\n\n // if path was absolute, ensure output has leading /\n if(path[0] === '/' && output.length > 0 && output[0] !== '') {\n output.unshift('');\n }\n if(output.length === 1 && output[0] === '') {\n return '/';\n }\n\n return output.join('/');\n};\n\n// TODO: time better isAbsolute/isRelative checks using full regexes:\n// http://jmrware.com/articles/2009/uri_regexp/URI_regex.html\n\n// regex to check for absolute IRI (starting scheme and ':') or blank node IRI\nconst isAbsoluteRegex = /^([A-Za-z][A-Za-z0-9+-.]*|_):[^\\s]*$/;\n\n/**\n * Returns true if the given value is an absolute IRI or blank node IRI, false\n * if not.\n * Note: This weak check only checks for a correct starting scheme.\n *\n * @param v the value to check.\n *\n * @return true if the value is an absolute IRI, false if not.\n */\napi.isAbsolute = v => types.isString(v) && isAbsoluteRegex.test(v);\n\n/**\n * Returns true if the given value is a relative IRI, false if not.\n * Note: this is a weak check.\n *\n * @param v the value to check.\n *\n * @return true if the value is a relative IRI, false if not.\n */\napi.isRelative = v => types.isString(v);\n","/*\n * Copyright (c) 2017-2019 Digital Bazaar, Inc. All rights reserved.\n */\n'use strict';\n\nconst graphTypes = require('./graphTypes');\nconst types = require('./types');\n// TODO: move `IdentifierIssuer` to its own package\nconst IdentifierIssuer = require('rdf-canonize').IdentifierIssuer;\nconst JsonLdError = require('./JsonLdError');\n\n// constants\nconst REGEX_BCP47 = /^[a-zA-Z]{1,8}(-[a-zA-Z0-9]{1,8})*$/;\nconst REGEX_LINK_HEADERS = /(?:<[^>]*?>|\"[^\"]*?\"|[^,])+/g;\nconst REGEX_LINK_HEADER = /\\s*<([^>]*?)>\\s*(?:;\\s*(.*))?/;\nconst REGEX_LINK_HEADER_PARAMS =\n /(.*?)=(?:(?:\"([^\"]*?)\")|([^\"]*?))\\s*(?:(?:;\\s*)|$)/g;\nconst REGEX_KEYWORD = /^@[a-zA-Z]+$/;\n\nconst DEFAULTS = {\n headers: {\n accept: 'application/ld+json, application/json'\n }\n};\n\nconst api = {};\nmodule.exports = api;\napi.IdentifierIssuer = IdentifierIssuer;\napi.REGEX_BCP47 = REGEX_BCP47;\napi.REGEX_KEYWORD = REGEX_KEYWORD;\n\n/**\n * Clones an object, array, Map, Set, or string/number. If a typed JavaScript\n * object is given, such as a Date, it will be converted to a string.\n *\n * @param value the value to clone.\n *\n * @return the cloned value.\n */\napi.clone = function(value) {\n if(value && typeof value === 'object') {\n let rval;\n if(types.isArray(value)) {\n rval = [];\n for(let i = 0; i < value.length; ++i) {\n rval[i] = api.clone(value[i]);\n }\n } else if(value instanceof Map) {\n rval = new Map();\n for(const [k, v] of value) {\n rval.set(k, api.clone(v));\n }\n } else if(value instanceof Set) {\n rval = new Set();\n for(const v of value) {\n rval.add(api.clone(v));\n }\n } else if(types.isObject(value)) {\n rval = {};\n for(const key in value) {\n rval[key] = api.clone(value[key]);\n }\n } else {\n rval = value.toString();\n }\n return rval;\n }\n return value;\n};\n\n/**\n * Ensure a value is an array. If the value is an array, it is returned.\n * Otherwise, it is wrapped in an array.\n *\n * @param value the value to return as an array.\n *\n * @return the value as an array.\n */\napi.asArray = function(value) {\n return Array.isArray(value) ? value : [value];\n};\n\n/**\n * Builds an HTTP headers object for making a JSON-LD request from custom\n * headers and asserts the `accept` header isn't overridden.\n *\n * @param headers an object of headers with keys as header names and values\n * as header values.\n *\n * @return an object of headers with a valid `accept` header.\n */\napi.buildHeaders = (headers = {}) => {\n const hasAccept = Object.keys(headers).some(\n h => h.toLowerCase() === 'accept');\n\n if(hasAccept) {\n throw new RangeError(\n 'Accept header may not be specified; only \"' +\n DEFAULTS.headers.accept + '\" is supported.');\n }\n\n return Object.assign({Accept: DEFAULTS.headers.accept}, headers);\n};\n\n/**\n * Parses a link header. The results will be key'd by the value of \"rel\".\n *\n * Link: ;\n * rel=\"http://www.w3.org/ns/json-ld#context\"; type=\"application/ld+json\"\n *\n * Parses as: {\n * 'http://www.w3.org/ns/json-ld#context': {\n * target: http://json-ld.org/contexts/person.jsonld,\n * type: 'application/ld+json'\n * }\n * }\n *\n * If there is more than one \"rel\" with the same IRI, then entries in the\n * resulting map for that \"rel\" will be arrays.\n *\n * @param header the link header to parse.\n */\napi.parseLinkHeader = header => {\n const rval = {};\n // split on unbracketed/unquoted commas\n const entries = header.match(REGEX_LINK_HEADERS);\n for(let i = 0; i < entries.length; ++i) {\n let match = entries[i].match(REGEX_LINK_HEADER);\n if(!match) {\n continue;\n }\n const result = {target: match[1]};\n const params = match[2];\n while((match = REGEX_LINK_HEADER_PARAMS.exec(params))) {\n result[match[1]] = (match[2] === undefined) ? match[3] : match[2];\n }\n const rel = result.rel || '';\n if(Array.isArray(rval[rel])) {\n rval[rel].push(result);\n } else if(rval.hasOwnProperty(rel)) {\n rval[rel] = [rval[rel], result];\n } else {\n rval[rel] = result;\n }\n }\n return rval;\n};\n\n/**\n * Throws an exception if the given value is not a valid @type value.\n *\n * @param v the value to check.\n */\napi.validateTypeValue = (v, isFrame) => {\n if(types.isString(v)) {\n return;\n }\n\n if(types.isArray(v) && v.every(vv => types.isString(vv))) {\n return;\n }\n if(isFrame && types.isObject(v)) {\n switch(Object.keys(v).length) {\n case 0:\n // empty object is wildcard\n return;\n case 1:\n // default entry is all strings\n if('@default' in v &&\n api.asArray(v['@default']).every(vv => types.isString(vv))) {\n return;\n }\n }\n }\n\n throw new JsonLdError(\n 'Invalid JSON-LD syntax; \"@type\" value must a string, an array of ' +\n 'strings, an empty object, ' +\n 'or a default object.', 'jsonld.SyntaxError',\n {code: 'invalid type value', value: v});\n};\n\n/**\n * Returns true if the given subject has the given property.\n *\n * @param subject the subject to check.\n * @param property the property to look for.\n *\n * @return true if the subject has the given property, false if not.\n */\napi.hasProperty = (subject, property) => {\n if(subject.hasOwnProperty(property)) {\n const value = subject[property];\n return (!types.isArray(value) || value.length > 0);\n }\n return false;\n};\n\n/**\n * Determines if the given value is a property of the given subject.\n *\n * @param subject the subject to check.\n * @param property the property to check.\n * @param value the value to check.\n *\n * @return true if the value exists, false if not.\n */\napi.hasValue = (subject, property, value) => {\n if(api.hasProperty(subject, property)) {\n let val = subject[property];\n const isList = graphTypes.isList(val);\n if(types.isArray(val) || isList) {\n if(isList) {\n val = val['@list'];\n }\n for(let i = 0; i < val.length; ++i) {\n if(api.compareValues(value, val[i])) {\n return true;\n }\n }\n } else if(!types.isArray(value)) {\n // avoid matching the set of values with an array value parameter\n return api.compareValues(value, val);\n }\n }\n return false;\n};\n\n/**\n * Adds a value to a subject. If the value is an array, all values in the\n * array will be added.\n *\n * @param subject the subject to add the value to.\n * @param property the property that relates the value to the subject.\n * @param value the value to add.\n * @param [options] the options to use:\n * [propertyIsArray] true if the property is always an array, false\n * if not (default: false).\n * [valueIsArray] true if the value to be added should be preserved as\n * an array (lists) (default: false).\n * [allowDuplicate] true to allow duplicates, false not to (uses a\n * simple shallow comparison of subject ID or value) (default: true).\n * [prependValue] false to prepend value to any existing values.\n * (default: false)\n */\napi.addValue = (subject, property, value, options) => {\n options = options || {};\n if(!('propertyIsArray' in options)) {\n options.propertyIsArray = false;\n }\n if(!('valueIsArray' in options)) {\n options.valueIsArray = false;\n }\n if(!('allowDuplicate' in options)) {\n options.allowDuplicate = true;\n }\n if(!('prependValue' in options)) {\n options.prependValue = false;\n }\n\n if(options.valueIsArray) {\n subject[property] = value;\n } else if(types.isArray(value)) {\n if(value.length === 0 && options.propertyIsArray &&\n !subject.hasOwnProperty(property)) {\n subject[property] = [];\n }\n if(options.prependValue) {\n value = value.concat(subject[property]);\n subject[property] = [];\n }\n for(let i = 0; i < value.length; ++i) {\n api.addValue(subject, property, value[i], options);\n }\n } else if(subject.hasOwnProperty(property)) {\n // check if subject already has value if duplicates not allowed\n const hasValue = (!options.allowDuplicate &&\n api.hasValue(subject, property, value));\n\n // make property an array if value not present or always an array\n if(!types.isArray(subject[property]) &&\n (!hasValue || options.propertyIsArray)) {\n subject[property] = [subject[property]];\n }\n\n // add new value\n if(!hasValue) {\n if(options.prependValue) {\n subject[property].unshift(value);\n } else {\n subject[property].push(value);\n }\n }\n } else {\n // add new value as set or single value\n subject[property] = options.propertyIsArray ? [value] : value;\n }\n};\n\n/**\n * Gets all of the values for a subject's property as an array.\n *\n * @param subject the subject.\n * @param property the property.\n *\n * @return all of the values for a subject's property as an array.\n */\napi.getValues = (subject, property) => [].concat(subject[property] || []);\n\n/**\n * Removes a property from a subject.\n *\n * @param subject the subject.\n * @param property the property.\n */\napi.removeProperty = (subject, property) => {\n delete subject[property];\n};\n\n/**\n * Removes a value from a subject.\n *\n * @param subject the subject.\n * @param property the property that relates the value to the subject.\n * @param value the value to remove.\n * @param [options] the options to use:\n * [propertyIsArray] true if the property is always an array, false\n * if not (default: false).\n */\napi.removeValue = (subject, property, value, options) => {\n options = options || {};\n if(!('propertyIsArray' in options)) {\n options.propertyIsArray = false;\n }\n\n // filter out value\n const values = api.getValues(subject, property).filter(\n e => !api.compareValues(e, value));\n\n if(values.length === 0) {\n api.removeProperty(subject, property);\n } else if(values.length === 1 && !options.propertyIsArray) {\n subject[property] = values[0];\n } else {\n subject[property] = values;\n }\n};\n\n/**\n * Relabels all blank nodes in the given JSON-LD input.\n *\n * @param input the JSON-LD input.\n * @param [options] the options to use:\n * [issuer] an IdentifierIssuer to use to label blank nodes.\n */\napi.relabelBlankNodes = (input, options) => {\n options = options || {};\n const issuer = options.issuer || new IdentifierIssuer('_:b');\n return _labelBlankNodes(issuer, input);\n};\n\n/**\n * Compares two JSON-LD values for equality. Two JSON-LD values will be\n * considered equal if:\n *\n * 1. They are both primitives of the same type and value.\n * 2. They are both @values with the same @value, @type, @language,\n * and @index, OR\n * 3. They both have @ids they are the same.\n *\n * @param v1 the first value.\n * @param v2 the second value.\n *\n * @return true if v1 and v2 are considered equal, false if not.\n */\napi.compareValues = (v1, v2) => {\n // 1. equal primitives\n if(v1 === v2) {\n return true;\n }\n\n // 2. equal @values\n if(graphTypes.isValue(v1) && graphTypes.isValue(v2) &&\n v1['@value'] === v2['@value'] &&\n v1['@type'] === v2['@type'] &&\n v1['@language'] === v2['@language'] &&\n v1['@index'] === v2['@index']) {\n return true;\n }\n\n // 3. equal @ids\n if(types.isObject(v1) &&\n ('@id' in v1) &&\n types.isObject(v2) &&\n ('@id' in v2)) {\n return v1['@id'] === v2['@id'];\n }\n\n return false;\n};\n\n/**\n * Compares two strings first based on length and then lexicographically.\n *\n * @param a the first string.\n * @param b the second string.\n *\n * @return -1 if a < b, 1 if a > b, 0 if a === b.\n */\napi.compareShortestLeast = (a, b) => {\n if(a.length < b.length) {\n return -1;\n }\n if(b.length < a.length) {\n return 1;\n }\n if(a === b) {\n return 0;\n }\n return (a < b) ? -1 : 1;\n};\n\n/**\n * Labels the blank nodes in the given value using the given IdentifierIssuer.\n *\n * @param issuer the IdentifierIssuer to use.\n * @param element the element with blank nodes to rename.\n *\n * @return the element.\n */\nfunction _labelBlankNodes(issuer, element) {\n if(types.isArray(element)) {\n for(let i = 0; i < element.length; ++i) {\n element[i] = _labelBlankNodes(issuer, element[i]);\n }\n } else if(graphTypes.isList(element)) {\n element['@list'] = _labelBlankNodes(issuer, element['@list']);\n } else if(types.isObject(element)) {\n // relabel blank node\n if(graphTypes.isBlankNode(element)) {\n element['@id'] = issuer.getId(element['@id']);\n }\n\n // recursively apply to all keys\n const keys = Object.keys(element).sort();\n for(let ki = 0; ki < keys.length; ++ki) {\n const key = keys[ki];\n if(key !== '@id') {\n element[key] = _labelBlankNodes(issuer, element[key]);\n }\n }\n }\n\n return element;\n}\n","'use strict'\n\n// A linked list to keep track of recently-used-ness\nconst Yallist = require('yallist')\n\nconst MAX = Symbol('max')\nconst LENGTH = Symbol('length')\nconst LENGTH_CALCULATOR = Symbol('lengthCalculator')\nconst ALLOW_STALE = Symbol('allowStale')\nconst MAX_AGE = Symbol('maxAge')\nconst DISPOSE = Symbol('dispose')\nconst NO_DISPOSE_ON_SET = Symbol('noDisposeOnSet')\nconst LRU_LIST = Symbol('lruList')\nconst CACHE = Symbol('cache')\nconst UPDATE_AGE_ON_GET = Symbol('updateAgeOnGet')\n\nconst naiveLength = () => 1\n\n// lruList is a yallist where the head is the youngest\n// item, and the tail is the oldest. the list contains the Hit\n// objects as the entries.\n// Each Hit object has a reference to its Yallist.Node. This\n// never changes.\n//\n// cache is a Map (or PseudoMap) that matches the keys to\n// the Yallist.Node object.\nclass LRUCache {\n constructor (options) {\n if (typeof options === 'number')\n options = { max: options }\n\n if (!options)\n options = {}\n\n if (options.max && (typeof options.max !== 'number' || options.max < 0))\n throw new TypeError('max must be a non-negative number')\n // Kind of weird to have a default max of Infinity, but oh well.\n const max = this[MAX] = options.max || Infinity\n\n const lc = options.length || naiveLength\n this[LENGTH_CALCULATOR] = (typeof lc !== 'function') ? naiveLength : lc\n this[ALLOW_STALE] = options.stale || false\n if (options.maxAge && typeof options.maxAge !== 'number')\n throw new TypeError('maxAge must be a number')\n this[MAX_AGE] = options.maxAge || 0\n this[DISPOSE] = options.dispose\n this[NO_DISPOSE_ON_SET] = options.noDisposeOnSet || false\n this[UPDATE_AGE_ON_GET] = options.updateAgeOnGet || false\n this.reset()\n }\n\n // resize the cache when the max changes.\n set max (mL) {\n if (typeof mL !== 'number' || mL < 0)\n throw new TypeError('max must be a non-negative number')\n\n this[MAX] = mL || Infinity\n trim(this)\n }\n get max () {\n return this[MAX]\n }\n\n set allowStale (allowStale) {\n this[ALLOW_STALE] = !!allowStale\n }\n get allowStale () {\n return this[ALLOW_STALE]\n }\n\n set maxAge (mA) {\n if (typeof mA !== 'number')\n throw new TypeError('maxAge must be a non-negative number')\n\n this[MAX_AGE] = mA\n trim(this)\n }\n get maxAge () {\n return this[MAX_AGE]\n }\n\n // resize the cache when the lengthCalculator changes.\n set lengthCalculator (lC) {\n if (typeof lC !== 'function')\n lC = naiveLength\n\n if (lC !== this[LENGTH_CALCULATOR]) {\n this[LENGTH_CALCULATOR] = lC\n this[LENGTH] = 0\n this[LRU_LIST].forEach(hit => {\n hit.length = this[LENGTH_CALCULATOR](hit.value, hit.key)\n this[LENGTH] += hit.length\n })\n }\n trim(this)\n }\n get lengthCalculator () { return this[LENGTH_CALCULATOR] }\n\n get length () { return this[LENGTH] }\n get itemCount () { return this[LRU_LIST].length }\n\n rforEach (fn, thisp) {\n thisp = thisp || this\n for (let walker = this[LRU_LIST].tail; walker !== null;) {\n const prev = walker.prev\n forEachStep(this, fn, walker, thisp)\n walker = prev\n }\n }\n\n forEach (fn, thisp) {\n thisp = thisp || this\n for (let walker = this[LRU_LIST].head; walker !== null;) {\n const next = walker.next\n forEachStep(this, fn, walker, thisp)\n walker = next\n }\n }\n\n keys () {\n return this[LRU_LIST].toArray().map(k => k.key)\n }\n\n values () {\n return this[LRU_LIST].toArray().map(k => k.value)\n }\n\n reset () {\n if (this[DISPOSE] &&\n this[LRU_LIST] &&\n this[LRU_LIST].length) {\n this[LRU_LIST].forEach(hit => this[DISPOSE](hit.key, hit.value))\n }\n\n this[CACHE] = new Map() // hash of items by key\n this[LRU_LIST] = new Yallist() // list of items in order of use recency\n this[LENGTH] = 0 // length of items in the list\n }\n\n dump () {\n return this[LRU_LIST].map(hit =>\n isStale(this, hit) ? false : {\n k: hit.key,\n v: hit.value,\n e: hit.now + (hit.maxAge || 0)\n }).toArray().filter(h => h)\n }\n\n dumpLru () {\n return this[LRU_LIST]\n }\n\n set (key, value, maxAge) {\n maxAge = maxAge || this[MAX_AGE]\n\n if (maxAge && typeof maxAge !== 'number')\n throw new TypeError('maxAge must be a number')\n\n const now = maxAge ? Date.now() : 0\n const len = this[LENGTH_CALCULATOR](value, key)\n\n if (this[CACHE].has(key)) {\n if (len > this[MAX]) {\n del(this, this[CACHE].get(key))\n return false\n }\n\n const node = this[CACHE].get(key)\n const item = node.value\n\n // dispose of the old one before overwriting\n // split out into 2 ifs for better coverage tracking\n if (this[DISPOSE]) {\n if (!this[NO_DISPOSE_ON_SET])\n this[DISPOSE](key, item.value)\n }\n\n item.now = now\n item.maxAge = maxAge\n item.value = value\n this[LENGTH] += len - item.length\n item.length = len\n this.get(key)\n trim(this)\n return true\n }\n\n const hit = new Entry(key, value, len, now, maxAge)\n\n // oversized objects fall out of cache automatically.\n if (hit.length > this[MAX]) {\n if (this[DISPOSE])\n this[DISPOSE](key, value)\n\n return false\n }\n\n this[LENGTH] += hit.length\n this[LRU_LIST].unshift(hit)\n this[CACHE].set(key, this[LRU_LIST].head)\n trim(this)\n return true\n }\n\n has (key) {\n if (!this[CACHE].has(key)) return false\n const hit = this[CACHE].get(key).value\n return !isStale(this, hit)\n }\n\n get (key) {\n return get(this, key, true)\n }\n\n peek (key) {\n return get(this, key, false)\n }\n\n pop () {\n const node = this[LRU_LIST].tail\n if (!node)\n return null\n\n del(this, node)\n return node.value\n }\n\n del (key) {\n del(this, this[CACHE].get(key))\n }\n\n load (arr) {\n // reset the cache\n this.reset()\n\n const now = Date.now()\n // A previous serialized cache has the most recent items first\n for (let l = arr.length - 1; l >= 0; l--) {\n const hit = arr[l]\n const expiresAt = hit.e || 0\n if (expiresAt === 0)\n // the item was created without expiration in a non aged cache\n this.set(hit.k, hit.v)\n else {\n const maxAge = expiresAt - now\n // dont add already expired items\n if (maxAge > 0) {\n this.set(hit.k, hit.v, maxAge)\n }\n }\n }\n }\n\n prune () {\n this[CACHE].forEach((value, key) => get(this, key, false))\n }\n}\n\nconst get = (self, key, doUse) => {\n const node = self[CACHE].get(key)\n if (node) {\n const hit = node.value\n if (isStale(self, hit)) {\n del(self, node)\n if (!self[ALLOW_STALE])\n return undefined\n } else {\n if (doUse) {\n if (self[UPDATE_AGE_ON_GET])\n node.value.now = Date.now()\n self[LRU_LIST].unshiftNode(node)\n }\n }\n return hit.value\n }\n}\n\nconst isStale = (self, hit) => {\n if (!hit || (!hit.maxAge && !self[MAX_AGE]))\n return false\n\n const diff = Date.now() - hit.now\n return hit.maxAge ? diff > hit.maxAge\n : self[MAX_AGE] && (diff > self[MAX_AGE])\n}\n\nconst trim = self => {\n if (self[LENGTH] > self[MAX]) {\n for (let walker = self[LRU_LIST].tail;\n self[LENGTH] > self[MAX] && walker !== null;) {\n // We know that we're about to delete this one, and also\n // what the next least recently used key will be, so just\n // go ahead and set it now.\n const prev = walker.prev\n del(self, walker)\n walker = prev\n }\n }\n}\n\nconst del = (self, node) => {\n if (node) {\n const hit = node.value\n if (self[DISPOSE])\n self[DISPOSE](hit.key, hit.value)\n\n self[LENGTH] -= hit.length\n self[CACHE].delete(hit.key)\n self[LRU_LIST].removeNode(node)\n }\n}\n\nclass Entry {\n constructor (key, value, length, now, maxAge) {\n this.key = key\n this.value = value\n this.length = length\n this.now = now\n this.maxAge = maxAge || 0\n }\n}\n\nconst forEachStep = (self, fn, node, thisp) => {\n let hit = node.value\n if (isStale(self, hit)) {\n del(self, node)\n if (!self[ALLOW_STALE])\n hit = undefined\n }\n if (hit)\n fn.call(thisp, hit.value, hit.key, self)\n}\n\nmodule.exports = LRUCache\n","'use strict'\nmodule.exports = function (Yallist) {\n Yallist.prototype[Symbol.iterator] = function* () {\n for (let walker = this.head; walker; walker = walker.next) {\n yield walker.value\n }\n }\n}\n","'use strict'\nmodule.exports = Yallist\n\nYallist.Node = Node\nYallist.create = Yallist\n\nfunction Yallist (list) {\n var self = this\n if (!(self instanceof Yallist)) {\n self = new Yallist()\n }\n\n self.tail = null\n self.head = null\n self.length = 0\n\n if (list && typeof list.forEach === 'function') {\n list.forEach(function (item) {\n self.push(item)\n })\n } else if (arguments.length > 0) {\n for (var i = 0, l = arguments.length; i < l; i++) {\n self.push(arguments[i])\n }\n }\n\n return self\n}\n\nYallist.prototype.removeNode = function (node) {\n if (node.list !== this) {\n throw new Error('removing node which does not belong to this list')\n }\n\n var next = node.next\n var prev = node.prev\n\n if (next) {\n next.prev = prev\n }\n\n if (prev) {\n prev.next = next\n }\n\n if (node === this.head) {\n this.head = next\n }\n if (node === this.tail) {\n this.tail = prev\n }\n\n node.list.length--\n node.next = null\n node.prev = null\n node.list = null\n\n return next\n}\n\nYallist.prototype.unshiftNode = function (node) {\n if (node === this.head) {\n return\n }\n\n if (node.list) {\n node.list.removeNode(node)\n }\n\n var head = this.head\n node.list = this\n node.next = head\n if (head) {\n head.prev = node\n }\n\n this.head = node\n if (!this.tail) {\n this.tail = node\n }\n this.length++\n}\n\nYallist.prototype.pushNode = function (node) {\n if (node === this.tail) {\n return\n }\n\n if (node.list) {\n node.list.removeNode(node)\n }\n\n var tail = this.tail\n node.list = this\n node.prev = tail\n if (tail) {\n tail.next = node\n }\n\n this.tail = node\n if (!this.head) {\n this.head = node\n }\n this.length++\n}\n\nYallist.prototype.push = function () {\n for (var i = 0, l = arguments.length; i < l; i++) {\n push(this, arguments[i])\n }\n return this.length\n}\n\nYallist.prototype.unshift = function () {\n for (var i = 0, l = arguments.length; i < l; i++) {\n unshift(this, arguments[i])\n }\n return this.length\n}\n\nYallist.prototype.pop = function () {\n if (!this.tail) {\n return undefined\n }\n\n var res = this.tail.value\n this.tail = this.tail.prev\n if (this.tail) {\n this.tail.next = null\n } else {\n this.head = null\n }\n this.length--\n return res\n}\n\nYallist.prototype.shift = function () {\n if (!this.head) {\n return undefined\n }\n\n var res = this.head.value\n this.head = this.head.next\n if (this.head) {\n this.head.prev = null\n } else {\n this.tail = null\n }\n this.length--\n return res\n}\n\nYallist.prototype.forEach = function (fn, thisp) {\n thisp = thisp || this\n for (var walker = this.head, i = 0; walker !== null; i++) {\n fn.call(thisp, walker.value, i, this)\n walker = walker.next\n }\n}\n\nYallist.prototype.forEachReverse = function (fn, thisp) {\n thisp = thisp || this\n for (var walker = this.tail, i = this.length - 1; walker !== null; i--) {\n fn.call(thisp, walker.value, i, this)\n walker = walker.prev\n }\n}\n\nYallist.prototype.get = function (n) {\n for (var i = 0, walker = this.head; walker !== null && i < n; i++) {\n // abort out of the list early if we hit a cycle\n walker = walker.next\n }\n if (i === n && walker !== null) {\n return walker.value\n }\n}\n\nYallist.prototype.getReverse = function (n) {\n for (var i = 0, walker = this.tail; walker !== null && i < n; i++) {\n // abort out of the list early if we hit a cycle\n walker = walker.prev\n }\n if (i === n && walker !== null) {\n return walker.value\n }\n}\n\nYallist.prototype.map = function (fn, thisp) {\n thisp = thisp || this\n var res = new Yallist()\n for (var walker = this.head; walker !== null;) {\n res.push(fn.call(thisp, walker.value, this))\n walker = walker.next\n }\n return res\n}\n\nYallist.prototype.mapReverse = function (fn, thisp) {\n thisp = thisp || this\n var res = new Yallist()\n for (var walker = this.tail; walker !== null;) {\n res.push(fn.call(thisp, walker.value, this))\n walker = walker.prev\n }\n return res\n}\n\nYallist.prototype.reduce = function (fn, initial) {\n var acc\n var walker = this.head\n if (arguments.length > 1) {\n acc = initial\n } else if (this.head) {\n walker = this.head.next\n acc = this.head.value\n } else {\n throw new TypeError('Reduce of empty list with no initial value')\n }\n\n for (var i = 0; walker !== null; i++) {\n acc = fn(acc, walker.value, i)\n walker = walker.next\n }\n\n return acc\n}\n\nYallist.prototype.reduceReverse = function (fn, initial) {\n var acc\n var walker = this.tail\n if (arguments.length > 1) {\n acc = initial\n } else if (this.tail) {\n walker = this.tail.prev\n acc = this.tail.value\n } else {\n throw new TypeError('Reduce of empty list with no initial value')\n }\n\n for (var i = this.length - 1; walker !== null; i--) {\n acc = fn(acc, walker.value, i)\n walker = walker.prev\n }\n\n return acc\n}\n\nYallist.prototype.toArray = function () {\n var arr = new Array(this.length)\n for (var i = 0, walker = this.head; walker !== null; i++) {\n arr[i] = walker.value\n walker = walker.next\n }\n return arr\n}\n\nYallist.prototype.toArrayReverse = function () {\n var arr = new Array(this.length)\n for (var i = 0, walker = this.tail; walker !== null; i++) {\n arr[i] = walker.value\n walker = walker.prev\n }\n return arr\n}\n\nYallist.prototype.slice = function (from, to) {\n to = to || this.length\n if (to < 0) {\n to += this.length\n }\n from = from || 0\n if (from < 0) {\n from += this.length\n }\n var ret = new Yallist()\n if (to < from || to < 0) {\n return ret\n }\n if (from < 0) {\n from = 0\n }\n if (to > this.length) {\n to = this.length\n }\n for (var i = 0, walker = this.head; walker !== null && i < from; i++) {\n walker = walker.next\n }\n for (; walker !== null && i < to; i++, walker = walker.next) {\n ret.push(walker.value)\n }\n return ret\n}\n\nYallist.prototype.sliceReverse = function (from, to) {\n to = to || this.length\n if (to < 0) {\n to += this.length\n }\n from = from || 0\n if (from < 0) {\n from += this.length\n }\n var ret = new Yallist()\n if (to < from || to < 0) {\n return ret\n }\n if (from < 0) {\n from = 0\n }\n if (to > this.length) {\n to = this.length\n }\n for (var i = this.length, walker = this.tail; walker !== null && i > to; i--) {\n walker = walker.prev\n }\n for (; walker !== null && i > from; i--, walker = walker.prev) {\n ret.push(walker.value)\n }\n return ret\n}\n\nYallist.prototype.splice = function (start, deleteCount, ...nodes) {\n if (start > this.length) {\n start = this.length - 1\n }\n if (start < 0) {\n start = this.length + start;\n }\n\n for (var i = 0, walker = this.head; walker !== null && i < start; i++) {\n walker = walker.next\n }\n\n var ret = []\n for (var i = 0; walker && i < deleteCount; i++) {\n ret.push(walker.value)\n walker = this.removeNode(walker)\n }\n if (walker === null) {\n walker = this.tail\n }\n\n if (walker !== this.head && walker !== this.tail) {\n walker = walker.prev\n }\n\n for (var i = 0; i < nodes.length; i++) {\n walker = insert(this, walker, nodes[i])\n }\n return ret;\n}\n\nYallist.prototype.reverse = function () {\n var head = this.head\n var tail = this.tail\n for (var walker = head; walker !== null; walker = walker.prev) {\n var p = walker.prev\n walker.prev = walker.next\n walker.next = p\n }\n this.head = tail\n this.tail = head\n return this\n}\n\nfunction insert (self, node, value) {\n var inserted = node === self.head ?\n new Node(value, null, node, self) :\n new Node(value, node, node.next, self)\n\n if (inserted.next === null) {\n self.tail = inserted\n }\n if (inserted.prev === null) {\n self.head = inserted\n }\n\n self.length++\n\n return inserted\n}\n\nfunction push (self, item) {\n self.tail = new Node(item, self.tail, null, self)\n if (!self.head) {\n self.head = self.tail\n }\n self.length++\n}\n\nfunction unshift (self, item) {\n self.head = new Node(item, null, self.head, self)\n if (!self.tail) {\n self.tail = self.head\n }\n self.length++\n}\n\nfunction Node (value, prev, next, list) {\n if (!(this instanceof Node)) {\n return new Node(value, prev, next, list)\n }\n\n this.list = list\n this.value = value\n\n if (prev) {\n prev.next = this\n this.prev = prev\n } else {\n this.prev = null\n }\n\n if (next) {\n next.prev = this\n this.next = next\n } else {\n this.next = null\n }\n}\n\ntry {\n // add if support for Symbol.iterator is present\n require('./iterator.js')(Yallist)\n} catch (er) {}\n","/**\n * An implementation of the RDF Dataset Normalization specification.\n *\n * @author Dave Longley\n *\n * Copyright 2010-2021 Digital Bazaar, Inc.\n */\nmodule.exports = require('./lib');\n","/*\n * Copyright (c) 2016-2021 Digital Bazaar, Inc. All rights reserved.\n */\n'use strict';\n\nmodule.exports = class IdentifierIssuer {\n /**\n * Creates a new IdentifierIssuer. A IdentifierIssuer issues unique\n * identifiers, keeping track of any previously issued identifiers.\n *\n * @param prefix the prefix to use ('').\n * @param existing an existing Map to use.\n * @param counter the counter to use.\n */\n constructor(prefix, existing = new Map(), counter = 0) {\n this.prefix = prefix;\n this._existing = existing;\n this.counter = counter;\n }\n\n /**\n * Copies this IdentifierIssuer.\n *\n * @return a copy of this IdentifierIssuer.\n */\n clone() {\n const {prefix, _existing, counter} = this;\n return new IdentifierIssuer(prefix, new Map(_existing), counter);\n }\n\n /**\n * Gets the new identifier for the given old identifier, where if no old\n * identifier is given a new identifier will be generated.\n *\n * @param [old] the old identifier to get the new identifier for.\n *\n * @return the new identifier.\n */\n getId(old) {\n // return existing old identifier\n const existing = old && this._existing.get(old);\n if(existing) {\n return existing;\n }\n\n // get next identifier\n const identifier = this.prefix + this.counter;\n this.counter++;\n\n // save mapping\n if(old) {\n this._existing.set(old, identifier);\n }\n\n return identifier;\n }\n\n /**\n * Returns true if the given old identifer has already been assigned a new\n * identifier.\n *\n * @param old the old identifier to check.\n *\n * @return true if the old identifier has been assigned a new identifier,\n * false if not.\n */\n hasId(old) {\n return this._existing.has(old);\n }\n\n /**\n * Returns all of the IDs that have been issued new IDs in the order in\n * which they were issued new IDs.\n *\n * @return the list of old IDs that has been issued new IDs in order.\n */\n getOldIds() {\n return [...this._existing.keys()];\n }\n};\n","/*!\n * Copyright (c) 2016-2022 Digital Bazaar, Inc. All rights reserved.\n */\n'use strict';\n\nrequire('setimmediate');\n\nconst crypto = self.crypto || self.msCrypto;\n\nmodule.exports = class MessageDigest {\n /**\n * Creates a new MessageDigest.\n *\n * @param algorithm the algorithm to use.\n */\n constructor(algorithm) {\n // check if crypto.subtle is available\n // check is here rather than top-level to only fail if class is used\n if(!(crypto && crypto.subtle)) {\n throw new Error('crypto.subtle not found.');\n }\n if(algorithm === 'sha256') {\n this.algorithm = {name: 'SHA-256'};\n } else if(algorithm === 'sha1') {\n this.algorithm = {name: 'SHA-1'};\n } else {\n throw new Error(`Unsupported algorithm \"${algorithm}\".`);\n }\n this._content = '';\n }\n\n update(msg) {\n this._content += msg;\n }\n\n async digest() {\n const data = new TextEncoder().encode(this._content);\n const buffer = new Uint8Array(\n await crypto.subtle.digest(this.algorithm, data));\n // return digest in hex\n let hex = '';\n for(let i = 0; i < buffer.length; ++i) {\n hex += buffer[i].toString(16).padStart(2, '0');\n }\n return hex;\n }\n};\n","/*!\n * Copyright (c) 2016-2022 Digital Bazaar, Inc. All rights reserved.\n */\n'use strict';\n\n// eslint-disable-next-line no-unused-vars\nconst TERMS = ['subject', 'predicate', 'object', 'graph'];\nconst RDF = 'http://www.w3.org/1999/02/22-rdf-syntax-ns#';\nconst RDF_LANGSTRING = RDF + 'langString';\nconst XSD_STRING = 'http://www.w3.org/2001/XMLSchema#string';\n\nconst TYPE_NAMED_NODE = 'NamedNode';\nconst TYPE_BLANK_NODE = 'BlankNode';\nconst TYPE_LITERAL = 'Literal';\nconst TYPE_DEFAULT_GRAPH = 'DefaultGraph';\n\n// build regexes\nconst REGEX = {};\n(() => {\n const iri = '(?:<([^:]+:[^>]*)>)';\n // https://www.w3.org/TR/turtle/#grammar-production-BLANK_NODE_LABEL\n const PN_CHARS_BASE =\n 'A-Z' + 'a-z' +\n '\\u00C0-\\u00D6' +\n '\\u00D8-\\u00F6' +\n '\\u00F8-\\u02FF' +\n '\\u0370-\\u037D' +\n '\\u037F-\\u1FFF' +\n '\\u200C-\\u200D' +\n '\\u2070-\\u218F' +\n '\\u2C00-\\u2FEF' +\n '\\u3001-\\uD7FF' +\n '\\uF900-\\uFDCF' +\n '\\uFDF0-\\uFFFD';\n // TODO:\n //'\\u10000-\\uEFFFF';\n const PN_CHARS_U =\n PN_CHARS_BASE +\n '_';\n const PN_CHARS =\n PN_CHARS_U +\n '0-9' +\n '-' +\n '\\u00B7' +\n '\\u0300-\\u036F' +\n '\\u203F-\\u2040';\n const BLANK_NODE_LABEL =\n '(_:' +\n '(?:[' + PN_CHARS_U + '0-9])' +\n '(?:(?:[' + PN_CHARS + '.])*(?:[' + PN_CHARS + ']))?' +\n ')';\n const bnode = BLANK_NODE_LABEL;\n const plain = '\"([^\"\\\\\\\\]*(?:\\\\\\\\.[^\"\\\\\\\\]*)*)\"';\n const datatype = '(?:\\\\^\\\\^' + iri + ')';\n const language = '(?:@([a-zA-Z]+(?:-[a-zA-Z0-9]+)*))';\n const literal = '(?:' + plain + '(?:' + datatype + '|' + language + ')?)';\n const ws = '[ \\\\t]+';\n const wso = '[ \\\\t]*';\n\n // define quad part regexes\n const subject = '(?:' + iri + '|' + bnode + ')' + ws;\n const property = iri + ws;\n const object = '(?:' + iri + '|' + bnode + '|' + literal + ')' + wso;\n const graphName = '(?:\\\\.|(?:(?:' + iri + '|' + bnode + ')' + wso + '\\\\.))';\n\n // end of line and empty regexes\n REGEX.eoln = /(?:\\r\\n)|(?:\\n)|(?:\\r)/g;\n REGEX.empty = new RegExp('^' + wso + '$');\n\n // full quad regex\n REGEX.quad = new RegExp(\n '^' + wso + subject + property + object + graphName + wso + '$');\n})();\n\nmodule.exports = class NQuads {\n /**\n * Parses RDF in the form of N-Quads.\n *\n * @param input the N-Quads input to parse.\n *\n * @return an RDF dataset (an array of quads per http://rdf.js.org/).\n */\n static parse(input) {\n // build RDF dataset\n const dataset = [];\n\n const graphs = {};\n\n // split N-Quad input into lines\n const lines = input.split(REGEX.eoln);\n let lineNumber = 0;\n for(const line of lines) {\n lineNumber++;\n\n // skip empty lines\n if(REGEX.empty.test(line)) {\n continue;\n }\n\n // parse quad\n const match = line.match(REGEX.quad);\n if(match === null) {\n throw new Error('N-Quads parse error on line ' + lineNumber + '.');\n }\n\n // create RDF quad\n const quad = {subject: null, predicate: null, object: null, graph: null};\n\n // get subject\n if(match[1] !== undefined) {\n quad.subject = {termType: TYPE_NAMED_NODE, value: match[1]};\n } else {\n quad.subject = {termType: TYPE_BLANK_NODE, value: match[2]};\n }\n\n // get predicate\n quad.predicate = {termType: TYPE_NAMED_NODE, value: match[3]};\n\n // get object\n if(match[4] !== undefined) {\n quad.object = {termType: TYPE_NAMED_NODE, value: match[4]};\n } else if(match[5] !== undefined) {\n quad.object = {termType: TYPE_BLANK_NODE, value: match[5]};\n } else {\n quad.object = {\n termType: TYPE_LITERAL,\n value: undefined,\n datatype: {\n termType: TYPE_NAMED_NODE\n }\n };\n if(match[7] !== undefined) {\n quad.object.datatype.value = match[7];\n } else if(match[8] !== undefined) {\n quad.object.datatype.value = RDF_LANGSTRING;\n quad.object.language = match[8];\n } else {\n quad.object.datatype.value = XSD_STRING;\n }\n quad.object.value = _unescape(match[6]);\n }\n\n // get graph\n if(match[9] !== undefined) {\n quad.graph = {\n termType: TYPE_NAMED_NODE,\n value: match[9]\n };\n } else if(match[10] !== undefined) {\n quad.graph = {\n termType: TYPE_BLANK_NODE,\n value: match[10]\n };\n } else {\n quad.graph = {\n termType: TYPE_DEFAULT_GRAPH,\n value: ''\n };\n }\n\n // only add quad if it is unique in its graph\n if(!(quad.graph.value in graphs)) {\n graphs[quad.graph.value] = [quad];\n dataset.push(quad);\n } else {\n let unique = true;\n const quads = graphs[quad.graph.value];\n for(const q of quads) {\n if(_compareTriples(q, quad)) {\n unique = false;\n break;\n }\n }\n if(unique) {\n quads.push(quad);\n dataset.push(quad);\n }\n }\n }\n\n return dataset;\n }\n\n /**\n * Converts an RDF dataset to N-Quads.\n *\n * @param dataset (array of quads) the RDF dataset to convert.\n *\n * @return the N-Quads string.\n */\n static serialize(dataset) {\n if(!Array.isArray(dataset)) {\n dataset = NQuads.legacyDatasetToQuads(dataset);\n }\n const quads = [];\n for(const quad of dataset) {\n quads.push(NQuads.serializeQuad(quad));\n }\n return quads.sort().join('');\n }\n\n /**\n * Converts RDF quad components to an N-Quad string (a single quad).\n *\n * @param {Object} s - N-Quad subject component.\n * @param {Object} p - N-Quad predicate component.\n * @param {Object} o - N-Quad object component.\n * @param {Object} g - N-Quad graph component.\n *\n * @return {string} the N-Quad.\n */\n static serializeQuadComponents(s, p, o, g) {\n let nquad = '';\n\n // subject can only be NamedNode or BlankNode\n if(s.termType === TYPE_NAMED_NODE) {\n nquad += `<${s.value}>`;\n } else {\n nquad += `${s.value}`;\n }\n\n // predicate can only be NamedNode\n nquad += ` <${p.value}> `;\n\n // object is NamedNode, BlankNode, or Literal\n if(o.termType === TYPE_NAMED_NODE) {\n nquad += `<${o.value}>`;\n } else if(o.termType === TYPE_BLANK_NODE) {\n nquad += o.value;\n } else {\n nquad += `\"${_escape(o.value)}\"`;\n if(o.datatype.value === RDF_LANGSTRING) {\n if(o.language) {\n nquad += `@${o.language}`;\n }\n } else if(o.datatype.value !== XSD_STRING) {\n nquad += `^^<${o.datatype.value}>`;\n }\n }\n\n // graph can only be NamedNode or BlankNode (or DefaultGraph, but that\n // does not add to `nquad`)\n if(g.termType === TYPE_NAMED_NODE) {\n nquad += ` <${g.value}>`;\n } else if(g.termType === TYPE_BLANK_NODE) {\n nquad += ` ${g.value}`;\n }\n\n nquad += ' .\\n';\n return nquad;\n }\n\n /**\n * Converts an RDF quad to an N-Quad string (a single quad).\n *\n * @param quad the RDF quad convert.\n *\n * @return the N-Quad string.\n */\n static serializeQuad(quad) {\n return NQuads.serializeQuadComponents(\n quad.subject, quad.predicate, quad.object, quad.graph);\n }\n\n /**\n * Converts a legacy-formatted dataset to an array of quads dataset per\n * http://rdf.js.org/.\n *\n * @param dataset the legacy dataset to convert.\n *\n * @return the array of quads dataset.\n */\n static legacyDatasetToQuads(dataset) {\n const quads = [];\n\n const termTypeMap = {\n 'blank node': TYPE_BLANK_NODE,\n IRI: TYPE_NAMED_NODE,\n literal: TYPE_LITERAL\n };\n\n for(const graphName in dataset) {\n const triples = dataset[graphName];\n triples.forEach(triple => {\n const quad = {};\n for(const componentName in triple) {\n const oldComponent = triple[componentName];\n const newComponent = {\n termType: termTypeMap[oldComponent.type],\n value: oldComponent.value\n };\n if(newComponent.termType === TYPE_LITERAL) {\n newComponent.datatype = {\n termType: TYPE_NAMED_NODE\n };\n if('datatype' in oldComponent) {\n newComponent.datatype.value = oldComponent.datatype;\n }\n if('language' in oldComponent) {\n if(!('datatype' in oldComponent)) {\n newComponent.datatype.value = RDF_LANGSTRING;\n }\n newComponent.language = oldComponent.language;\n } else if(!('datatype' in oldComponent)) {\n newComponent.datatype.value = XSD_STRING;\n }\n }\n quad[componentName] = newComponent;\n }\n if(graphName === '@default') {\n quad.graph = {\n termType: TYPE_DEFAULT_GRAPH,\n value: ''\n };\n } else {\n quad.graph = {\n termType: graphName.startsWith('_:') ?\n TYPE_BLANK_NODE : TYPE_NAMED_NODE,\n value: graphName\n };\n }\n quads.push(quad);\n });\n }\n\n return quads;\n }\n};\n\n/**\n * Compares two RDF triples for equality.\n *\n * @param t1 the first triple.\n * @param t2 the second triple.\n *\n * @return true if the triples are the same, false if not.\n */\nfunction _compareTriples(t1, t2) {\n // compare subject and object types first as it is the quickest check\n if(!(t1.subject.termType === t2.subject.termType &&\n t1.object.termType === t2.object.termType)) {\n return false;\n }\n // compare values\n if(!(t1.subject.value === t2.subject.value &&\n t1.predicate.value === t2.predicate.value &&\n t1.object.value === t2.object.value)) {\n return false;\n }\n if(t1.object.termType !== TYPE_LITERAL) {\n // no `datatype` or `language` to check\n return true;\n }\n return (\n (t1.object.datatype.termType === t2.object.datatype.termType) &&\n (t1.object.language === t2.object.language) &&\n (t1.object.datatype.value === t2.object.datatype.value)\n );\n}\n\nconst _escapeRegex = /[\"\\\\\\n\\r]/g;\n/**\n * Escape string to N-Quads literal\n */\nfunction _escape(s) {\n return s.replace(_escapeRegex, function(match) {\n switch(match) {\n case '\"': return '\\\\\"';\n case '\\\\': return '\\\\\\\\';\n case '\\n': return '\\\\n';\n case '\\r': return '\\\\r';\n }\n });\n}\n\nconst _unescapeRegex =\n /(?:\\\\([tbnrf\"'\\\\]))|(?:\\\\u([0-9A-Fa-f]{4}))|(?:\\\\U([0-9A-Fa-f]{8}))/g;\n/**\n * Unescape N-Quads literal to string\n */\nfunction _unescape(s) {\n return s.replace(_unescapeRegex, function(match, code, u, U) {\n if(code) {\n switch(code) {\n case 't': return '\\t';\n case 'b': return '\\b';\n case 'n': return '\\n';\n case 'r': return '\\r';\n case 'f': return '\\f';\n case '\"': return '\"';\n case '\\'': return '\\'';\n case '\\\\': return '\\\\';\n }\n }\n if(u) {\n return String.fromCharCode(parseInt(u, 16));\n }\n if(U) {\n // FIXME: support larger values\n throw new Error('Unsupported U escape');\n }\n });\n}\n","/*!\n * Copyright (c) 2016-2022 Digital Bazaar, Inc. All rights reserved.\n */\n'use strict';\n\nmodule.exports = class Permuter {\n /**\n * A Permuter iterates over all possible permutations of the given array\n * of elements.\n *\n * @param list the array of elements to iterate over.\n */\n constructor(list) {\n // original array\n this.current = list.sort();\n // indicates whether there are more permutations\n this.done = false;\n // directional info for permutation algorithm\n this.dir = new Map();\n for(let i = 0; i < list.length; ++i) {\n this.dir.set(list[i], true);\n }\n }\n\n /**\n * Returns true if there is another permutation.\n *\n * @return true if there is another permutation, false if not.\n */\n hasNext() {\n return !this.done;\n }\n\n /**\n * Gets the next permutation. Call hasNext() to ensure there is another one\n * first.\n *\n * @return the next permutation.\n */\n next() {\n // copy current permutation to return it\n const {current, dir} = this;\n const rval = current.slice();\n\n /* Calculate the next permutation using the Steinhaus-Johnson-Trotter\n permutation algorithm. */\n\n // get largest mobile element k\n // (mobile: element is greater than the one it is looking at)\n let k = null;\n let pos = 0;\n const length = current.length;\n for(let i = 0; i < length; ++i) {\n const element = current[i];\n const left = dir.get(element);\n if((k === null || element > k) &&\n ((left && i > 0 && element > current[i - 1]) ||\n (!left && i < (length - 1) && element > current[i + 1]))) {\n k = element;\n pos = i;\n }\n }\n\n // no more permutations\n if(k === null) {\n this.done = true;\n } else {\n // swap k and the element it is looking at\n const swap = dir.get(k) ? pos - 1 : pos + 1;\n current[pos] = current[swap];\n current[swap] = k;\n\n // reverse the direction of all elements larger than k\n for(const element of current) {\n if(element > k) {\n dir.set(element, !dir.get(element));\n }\n }\n }\n\n return rval;\n }\n};\n","/*!\n * Copyright (c) 2016-2022 Digital Bazaar, Inc. All rights reserved.\n */\n'use strict';\n\nconst IdentifierIssuer = require('./IdentifierIssuer');\nconst MessageDigest = require('./MessageDigest');\nconst Permuter = require('./Permuter');\nconst NQuads = require('./NQuads');\n\nmodule.exports = class URDNA2015 {\n constructor({\n createMessageDigest = () => new MessageDigest('sha256'),\n canonicalIdMap = new Map(),\n maxDeepIterations = Infinity\n } = {}) {\n this.name = 'URDNA2015';\n this.blankNodeInfo = new Map();\n this.canonicalIssuer = new IdentifierIssuer('_:c14n', canonicalIdMap);\n this.createMessageDigest = createMessageDigest;\n this.maxDeepIterations = maxDeepIterations;\n this.quads = null;\n this.deepIterations = null;\n }\n\n // 4.4) Normalization Algorithm\n async main(dataset) {\n this.deepIterations = new Map();\n this.quads = dataset;\n\n // 1) Create the normalization state.\n // 2) For every quad in input dataset:\n for(const quad of dataset) {\n // 2.1) For each blank node that occurs in the quad, add a reference\n // to the quad using the blank node identifier in the blank node to\n // quads map, creating a new entry if necessary.\n this._addBlankNodeQuadInfo({quad, component: quad.subject});\n this._addBlankNodeQuadInfo({quad, component: quad.object});\n this._addBlankNodeQuadInfo({quad, component: quad.graph});\n }\n\n // 3) Create a list of non-normalized blank node identifiers\n // non-normalized identifiers and populate it using the keys from the\n // blank node to quads map.\n // Note: We use a map here and it was generated during step 2.\n\n // 4) `simple` flag is skipped -- loop is optimized away. This optimization\n // is permitted because there was a typo in the hash first degree quads\n // algorithm in the URDNA2015 spec that was implemented widely making it\n // such that it could not be fixed; the result was that the loop only\n // needs to be run once and the first degree quad hashes will never change.\n // 5.1-5.2 are skipped; first degree quad hashes are generated just once\n // for all non-normalized blank nodes.\n\n // 5.3) For each blank node identifier identifier in non-normalized\n // identifiers:\n const hashToBlankNodes = new Map();\n const nonNormalized = [...this.blankNodeInfo.keys()];\n let i = 0;\n for(const id of nonNormalized) {\n // Note: batch hashing first degree quads 100 at a time\n if(++i % 100 === 0) {\n await this._yield();\n }\n // steps 5.3.1 and 5.3.2:\n await this._hashAndTrackBlankNode({id, hashToBlankNodes});\n }\n\n // 5.4) For each hash to identifier list mapping in hash to blank\n // nodes map, lexicographically-sorted by hash:\n const hashes = [...hashToBlankNodes.keys()].sort();\n // optimize away second sort, gather non-unique hashes in order as we go\n const nonUnique = [];\n for(const hash of hashes) {\n // 5.4.1) If the length of identifier list is greater than 1,\n // continue to the next mapping.\n const idList = hashToBlankNodes.get(hash);\n if(idList.length > 1) {\n nonUnique.push(idList);\n continue;\n }\n\n // 5.4.2) Use the Issue Identifier algorithm, passing canonical\n // issuer and the single blank node identifier in identifier\n // list, identifier, to issue a canonical replacement identifier\n // for identifier.\n const id = idList[0];\n this.canonicalIssuer.getId(id);\n\n // Note: These steps are skipped, optimized away since the loop\n // only needs to be run once.\n // 5.4.3) Remove identifier from non-normalized identifiers.\n // 5.4.4) Remove hash from the hash to blank nodes map.\n // 5.4.5) Set simple to true.\n }\n\n // 6) For each hash to identifier list mapping in hash to blank nodes map,\n // lexicographically-sorted by hash:\n // Note: sort optimized away, use `nonUnique`.\n for(const idList of nonUnique) {\n // 6.1) Create hash path list where each item will be a result of\n // running the Hash N-Degree Quads algorithm.\n const hashPathList = [];\n\n // 6.2) For each blank node identifier identifier in identifier list:\n for(const id of idList) {\n // 6.2.1) If a canonical identifier has already been issued for\n // identifier, continue to the next identifier.\n if(this.canonicalIssuer.hasId(id)) {\n continue;\n }\n\n // 6.2.2) Create temporary issuer, an identifier issuer\n // initialized with the prefix _:b.\n const issuer = new IdentifierIssuer('_:b');\n\n // 6.2.3) Use the Issue Identifier algorithm, passing temporary\n // issuer and identifier, to issue a new temporary blank node\n // identifier for identifier.\n issuer.getId(id);\n\n // 6.2.4) Run the Hash N-Degree Quads algorithm, passing\n // temporary issuer, and append the result to the hash path list.\n const result = await this.hashNDegreeQuads(id, issuer);\n hashPathList.push(result);\n }\n\n // 6.3) For each result in the hash path list,\n // lexicographically-sorted by the hash in result:\n hashPathList.sort(_stringHashCompare);\n for(const result of hashPathList) {\n // 6.3.1) For each blank node identifier, existing identifier,\n // that was issued a temporary identifier by identifier issuer\n // in result, issue a canonical identifier, in the same order,\n // using the Issue Identifier algorithm, passing canonical\n // issuer and existing identifier.\n const oldIds = result.issuer.getOldIds();\n for(const id of oldIds) {\n this.canonicalIssuer.getId(id);\n }\n }\n }\n\n /* Note: At this point all blank nodes in the set of RDF quads have been\n assigned canonical identifiers, which have been stored in the canonical\n issuer. Here each quad is updated by assigning each of its blank nodes\n its new identifier. */\n\n // 7) For each quad, quad, in input dataset:\n const normalized = [];\n for(const quad of this.quads) {\n // 7.1) Create a copy, quad copy, of quad and replace any existing\n // blank node identifiers using the canonical identifiers\n // previously issued by canonical issuer.\n // Note: We optimize away the copy here.\n const nQuad = NQuads.serializeQuadComponents(\n this._componentWithCanonicalId(quad.subject),\n quad.predicate,\n this._componentWithCanonicalId(quad.object),\n this._componentWithCanonicalId(quad.graph)\n );\n // 7.2) Add quad copy to the normalized dataset.\n normalized.push(nQuad);\n }\n\n // sort normalized output\n normalized.sort();\n\n // 8) Return the normalized dataset.\n return normalized.join('');\n }\n\n // 4.6) Hash First Degree Quads\n async hashFirstDegreeQuads(id) {\n // 1) Initialize nquads to an empty list. It will be used to store quads in\n // N-Quads format.\n const nquads = [];\n\n // 2) Get the list of quads `quads` associated with the reference blank node\n // identifier in the blank node to quads map.\n const info = this.blankNodeInfo.get(id);\n const quads = info.quads;\n\n // 3) For each quad `quad` in `quads`:\n for(const quad of quads) {\n // 3.1) Serialize the quad in N-Quads format with the following special\n // rule:\n\n // 3.1.1) If any component in quad is an blank node, then serialize it\n // using a special identifier as follows:\n const copy = {\n subject: null, predicate: quad.predicate, object: null, graph: null\n };\n // 3.1.2) If the blank node's existing blank node identifier matches\n // the reference blank node identifier then use the blank node\n // identifier _:a, otherwise, use the blank node identifier _:z.\n copy.subject = this.modifyFirstDegreeComponent(\n id, quad.subject, 'subject');\n copy.object = this.modifyFirstDegreeComponent(\n id, quad.object, 'object');\n copy.graph = this.modifyFirstDegreeComponent(\n id, quad.graph, 'graph');\n nquads.push(NQuads.serializeQuad(copy));\n }\n\n // 4) Sort nquads in lexicographical order.\n nquads.sort();\n\n // 5) Return the hash that results from passing the sorted, joined nquads\n // through the hash algorithm.\n const md = this.createMessageDigest();\n for(const nquad of nquads) {\n md.update(nquad);\n }\n info.hash = await md.digest();\n return info.hash;\n }\n\n // 4.7) Hash Related Blank Node\n async hashRelatedBlankNode(related, quad, issuer, position) {\n // 1) Set the identifier to use for related, preferring first the canonical\n // identifier for related if issued, second the identifier issued by issuer\n // if issued, and last, if necessary, the result of the Hash First Degree\n // Quads algorithm, passing related.\n let id;\n if(this.canonicalIssuer.hasId(related)) {\n id = this.canonicalIssuer.getId(related);\n } else if(issuer.hasId(related)) {\n id = issuer.getId(related);\n } else {\n id = this.blankNodeInfo.get(related).hash;\n }\n\n // 2) Initialize a string input to the value of position.\n // Note: We use a hash object instead.\n const md = this.createMessageDigest();\n md.update(position);\n\n // 3) If position is not g, append <, the value of the predicate in quad,\n // and > to input.\n if(position !== 'g') {\n md.update(this.getRelatedPredicate(quad));\n }\n\n // 4) Append identifier to input.\n md.update(id);\n\n // 5) Return the hash that results from passing input through the hash\n // algorithm.\n return md.digest();\n }\n\n // 4.8) Hash N-Degree Quads\n async hashNDegreeQuads(id, issuer) {\n const deepIterations = this.deepIterations.get(id) || 0;\n if(deepIterations > this.maxDeepIterations) {\n throw new Error(\n `Maximum deep iterations (${this.maxDeepIterations}) exceeded.`);\n }\n this.deepIterations.set(id, deepIterations + 1);\n\n // 1) Create a hash to related blank nodes map for storing hashes that\n // identify related blank nodes.\n // Note: 2) and 3) handled within `createHashToRelated`\n const md = this.createMessageDigest();\n const hashToRelated = await this.createHashToRelated(id, issuer);\n\n // 4) Create an empty string, data to hash.\n // Note: We created a hash object `md` above instead.\n\n // 5) For each related hash to blank node list mapping in hash to related\n // blank nodes map, sorted lexicographically by related hash:\n const hashes = [...hashToRelated.keys()].sort();\n for(const hash of hashes) {\n // 5.1) Append the related hash to the data to hash.\n md.update(hash);\n\n // 5.2) Create a string chosen path.\n let chosenPath = '';\n\n // 5.3) Create an unset chosen issuer variable.\n let chosenIssuer;\n\n // 5.4) For each permutation of blank node list:\n const permuter = new Permuter(hashToRelated.get(hash));\n let i = 0;\n while(permuter.hasNext()) {\n const permutation = permuter.next();\n // Note: batch permutations 3 at a time\n if(++i % 3 === 0) {\n await this._yield();\n }\n\n // 5.4.1) Create a copy of issuer, issuer copy.\n let issuerCopy = issuer.clone();\n\n // 5.4.2) Create a string path.\n let path = '';\n\n // 5.4.3) Create a recursion list, to store blank node identifiers\n // that must be recursively processed by this algorithm.\n const recursionList = [];\n\n // 5.4.4) For each related in permutation:\n let nextPermutation = false;\n for(const related of permutation) {\n // 5.4.4.1) If a canonical identifier has been issued for\n // related, append it to path.\n if(this.canonicalIssuer.hasId(related)) {\n path += this.canonicalIssuer.getId(related);\n } else {\n // 5.4.4.2) Otherwise:\n // 5.4.4.2.1) If issuer copy has not issued an identifier for\n // related, append related to recursion list.\n if(!issuerCopy.hasId(related)) {\n recursionList.push(related);\n }\n // 5.4.4.2.2) Use the Issue Identifier algorithm, passing\n // issuer copy and related and append the result to path.\n path += issuerCopy.getId(related);\n }\n\n // 5.4.4.3) If chosen path is not empty and the length of path\n // is greater than or equal to the length of chosen path and\n // path is lexicographically greater than chosen path, then\n // skip to the next permutation.\n // Note: Comparing path length to chosen path length can be optimized\n // away; only compare lexicographically.\n if(chosenPath.length !== 0 && path > chosenPath) {\n nextPermutation = true;\n break;\n }\n }\n\n if(nextPermutation) {\n continue;\n }\n\n // 5.4.5) For each related in recursion list:\n for(const related of recursionList) {\n // 5.4.5.1) Set result to the result of recursively executing\n // the Hash N-Degree Quads algorithm, passing related for\n // identifier and issuer copy for path identifier issuer.\n const result = await this.hashNDegreeQuads(related, issuerCopy);\n\n // 5.4.5.2) Use the Issue Identifier algorithm, passing issuer\n // copy and related and append the result to path.\n path += issuerCopy.getId(related);\n\n // 5.4.5.3) Append <, the hash in result, and > to path.\n path += `<${result.hash}>`;\n\n // 5.4.5.4) Set issuer copy to the identifier issuer in\n // result.\n issuerCopy = result.issuer;\n\n // 5.4.5.5) If chosen path is not empty and the length of path\n // is greater than or equal to the length of chosen path and\n // path is lexicographically greater than chosen path, then\n // skip to the next permutation.\n // Note: Comparing path length to chosen path length can be optimized\n // away; only compare lexicographically.\n if(chosenPath.length !== 0 && path > chosenPath) {\n nextPermutation = true;\n break;\n }\n }\n\n if(nextPermutation) {\n continue;\n }\n\n // 5.4.6) If chosen path is empty or path is lexicographically\n // less than chosen path, set chosen path to path and chosen\n // issuer to issuer copy.\n if(chosenPath.length === 0 || path < chosenPath) {\n chosenPath = path;\n chosenIssuer = issuerCopy;\n }\n }\n\n // 5.5) Append chosen path to data to hash.\n md.update(chosenPath);\n\n // 5.6) Replace issuer, by reference, with chosen issuer.\n issuer = chosenIssuer;\n }\n\n // 6) Return issuer and the hash that results from passing data to hash\n // through the hash algorithm.\n return {hash: await md.digest(), issuer};\n }\n\n // helper for modifying component during Hash First Degree Quads\n modifyFirstDegreeComponent(id, component) {\n if(component.termType !== 'BlankNode') {\n return component;\n }\n /* Note: A mistake in the URDNA2015 spec that made its way into\n implementations (and therefore must stay to avoid interop breakage)\n resulted in an assigned canonical ID, if available for\n `component.value`, not being used in place of `_:a`/`_:z`, so\n we don't use it here. */\n return {\n termType: 'BlankNode',\n value: component.value === id ? '_:a' : '_:z'\n };\n }\n\n // helper for getting a related predicate\n getRelatedPredicate(quad) {\n return `<${quad.predicate.value}>`;\n }\n\n // helper for creating hash to related blank nodes map\n async createHashToRelated(id, issuer) {\n // 1) Create a hash to related blank nodes map for storing hashes that\n // identify related blank nodes.\n const hashToRelated = new Map();\n\n // 2) Get a reference, quads, to the list of quads in the blank node to\n // quads map for the key identifier.\n const quads = this.blankNodeInfo.get(id).quads;\n\n // 3) For each quad in quads:\n let i = 0;\n for(const quad of quads) {\n // Note: batch hashing related blank node quads 100 at a time\n if(++i % 100 === 0) {\n await this._yield();\n }\n // 3.1) For each component in quad, if component is the subject, object,\n // and graph name and it is a blank node that is not identified by\n // identifier:\n // steps 3.1.1 and 3.1.2 occur in helpers:\n await Promise.all([\n this._addRelatedBlankNodeHash({\n quad, component: quad.subject, position: 's',\n id, issuer, hashToRelated\n }),\n this._addRelatedBlankNodeHash({\n quad, component: quad.object, position: 'o',\n id, issuer, hashToRelated\n }),\n this._addRelatedBlankNodeHash({\n quad, component: quad.graph, position: 'g',\n id, issuer, hashToRelated\n })\n ]);\n }\n\n return hashToRelated;\n }\n\n async _hashAndTrackBlankNode({id, hashToBlankNodes}) {\n // 5.3.1) Create a hash, hash, according to the Hash First Degree\n // Quads algorithm.\n const hash = await this.hashFirstDegreeQuads(id);\n\n // 5.3.2) Add hash and identifier to hash to blank nodes map,\n // creating a new entry if necessary.\n const idList = hashToBlankNodes.get(hash);\n if(!idList) {\n hashToBlankNodes.set(hash, [id]);\n } else {\n idList.push(id);\n }\n }\n\n _addBlankNodeQuadInfo({quad, component}) {\n if(component.termType !== 'BlankNode') {\n return;\n }\n const id = component.value;\n const info = this.blankNodeInfo.get(id);\n if(info) {\n info.quads.add(quad);\n } else {\n this.blankNodeInfo.set(id, {quads: new Set([quad]), hash: null});\n }\n }\n\n async _addRelatedBlankNodeHash(\n {quad, component, position, id, issuer, hashToRelated}) {\n if(!(component.termType === 'BlankNode' && component.value !== id)) {\n return;\n }\n // 3.1.1) Set hash to the result of the Hash Related Blank Node\n // algorithm, passing the blank node identifier for component as\n // related, quad, path identifier issuer as issuer, and position as\n // either s, o, or g based on whether component is a subject, object,\n // graph name, respectively.\n const related = component.value;\n const hash = await this.hashRelatedBlankNode(\n related, quad, issuer, position);\n\n // 3.1.2) Add a mapping of hash to the blank node identifier for\n // component to hash to related blank nodes map, adding an entry as\n // necessary.\n const entries = hashToRelated.get(hash);\n if(entries) {\n entries.push(related);\n } else {\n hashToRelated.set(hash, [related]);\n }\n }\n\n // canonical ids for 7.1\n _componentWithCanonicalId(component) {\n if(component.termType === 'BlankNode' &&\n !component.value.startsWith(this.canonicalIssuer.prefix)) {\n // create new BlankNode\n return {\n termType: 'BlankNode',\n value: this.canonicalIssuer.getId(component.value)\n };\n }\n return component;\n }\n\n async _yield() {\n return new Promise(resolve => setImmediate(resolve));\n }\n};\n\nfunction _stringHashCompare(a, b) {\n return a.hash < b.hash ? -1 : a.hash > b.hash ? 1 : 0;\n}\n","/*!\n * Copyright (c) 2016-2022 Digital Bazaar, Inc. All rights reserved.\n */\n'use strict';\n\nconst IdentifierIssuer = require('./IdentifierIssuer');\n// FIXME: do not import; convert to requiring a\n// hash factory\nconst MessageDigest = require('./MessageDigest');\nconst Permuter = require('./Permuter');\nconst NQuads = require('./NQuads');\n\nmodule.exports = class URDNA2015Sync {\n constructor({\n createMessageDigest = () => new MessageDigest('sha256'),\n canonicalIdMap = new Map(),\n maxDeepIterations = Infinity\n } = {}) {\n this.name = 'URDNA2015';\n this.blankNodeInfo = new Map();\n this.canonicalIssuer = new IdentifierIssuer('_:c14n', canonicalIdMap);\n this.createMessageDigest = createMessageDigest;\n this.maxDeepIterations = maxDeepIterations;\n this.quads = null;\n this.deepIterations = null;\n }\n\n // 4.4) Normalization Algorithm\n main(dataset) {\n this.deepIterations = new Map();\n this.quads = dataset;\n\n // 1) Create the normalization state.\n // 2) For every quad in input dataset:\n for(const quad of dataset) {\n // 2.1) For each blank node that occurs in the quad, add a reference\n // to the quad using the blank node identifier in the blank node to\n // quads map, creating a new entry if necessary.\n this._addBlankNodeQuadInfo({quad, component: quad.subject});\n this._addBlankNodeQuadInfo({quad, component: quad.object});\n this._addBlankNodeQuadInfo({quad, component: quad.graph});\n }\n\n // 3) Create a list of non-normalized blank node identifiers\n // non-normalized identifiers and populate it using the keys from the\n // blank node to quads map.\n // Note: We use a map here and it was generated during step 2.\n\n // 4) `simple` flag is skipped -- loop is optimized away. This optimization\n // is permitted because there was a typo in the hash first degree quads\n // algorithm in the URDNA2015 spec that was implemented widely making it\n // such that it could not be fixed; the result was that the loop only\n // needs to be run once and the first degree quad hashes will never change.\n // 5.1-5.2 are skipped; first degree quad hashes are generated just once\n // for all non-normalized blank nodes.\n\n // 5.3) For each blank node identifier identifier in non-normalized\n // identifiers:\n const hashToBlankNodes = new Map();\n const nonNormalized = [...this.blankNodeInfo.keys()];\n for(const id of nonNormalized) {\n // steps 5.3.1 and 5.3.2:\n this._hashAndTrackBlankNode({id, hashToBlankNodes});\n }\n\n // 5.4) For each hash to identifier list mapping in hash to blank\n // nodes map, lexicographically-sorted by hash:\n const hashes = [...hashToBlankNodes.keys()].sort();\n // optimize away second sort, gather non-unique hashes in order as we go\n const nonUnique = [];\n for(const hash of hashes) {\n // 5.4.1) If the length of identifier list is greater than 1,\n // continue to the next mapping.\n const idList = hashToBlankNodes.get(hash);\n if(idList.length > 1) {\n nonUnique.push(idList);\n continue;\n }\n\n // 5.4.2) Use the Issue Identifier algorithm, passing canonical\n // issuer and the single blank node identifier in identifier\n // list, identifier, to issue a canonical replacement identifier\n // for identifier.\n const id = idList[0];\n this.canonicalIssuer.getId(id);\n\n // Note: These steps are skipped, optimized away since the loop\n // only needs to be run once.\n // 5.4.3) Remove identifier from non-normalized identifiers.\n // 5.4.4) Remove hash from the hash to blank nodes map.\n // 5.4.5) Set simple to true.\n }\n\n // 6) For each hash to identifier list mapping in hash to blank nodes map,\n // lexicographically-sorted by hash:\n // Note: sort optimized away, use `nonUnique`.\n for(const idList of nonUnique) {\n // 6.1) Create hash path list where each item will be a result of\n // running the Hash N-Degree Quads algorithm.\n const hashPathList = [];\n\n // 6.2) For each blank node identifier identifier in identifier list:\n for(const id of idList) {\n // 6.2.1) If a canonical identifier has already been issued for\n // identifier, continue to the next identifier.\n if(this.canonicalIssuer.hasId(id)) {\n continue;\n }\n\n // 6.2.2) Create temporary issuer, an identifier issuer\n // initialized with the prefix _:b.\n const issuer = new IdentifierIssuer('_:b');\n\n // 6.2.3) Use the Issue Identifier algorithm, passing temporary\n // issuer and identifier, to issue a new temporary blank node\n // identifier for identifier.\n issuer.getId(id);\n\n // 6.2.4) Run the Hash N-Degree Quads algorithm, passing\n // temporary issuer, and append the result to the hash path list.\n const result = this.hashNDegreeQuads(id, issuer);\n hashPathList.push(result);\n }\n\n // 6.3) For each result in the hash path list,\n // lexicographically-sorted by the hash in result:\n hashPathList.sort(_stringHashCompare);\n for(const result of hashPathList) {\n // 6.3.1) For each blank node identifier, existing identifier,\n // that was issued a temporary identifier by identifier issuer\n // in result, issue a canonical identifier, in the same order,\n // using the Issue Identifier algorithm, passing canonical\n // issuer and existing identifier.\n const oldIds = result.issuer.getOldIds();\n for(const id of oldIds) {\n this.canonicalIssuer.getId(id);\n }\n }\n }\n\n /* Note: At this point all blank nodes in the set of RDF quads have been\n assigned canonical identifiers, which have been stored in the canonical\n issuer. Here each quad is updated by assigning each of its blank nodes\n its new identifier. */\n\n // 7) For each quad, quad, in input dataset:\n const normalized = [];\n for(const quad of this.quads) {\n // 7.1) Create a copy, quad copy, of quad and replace any existing\n // blank node identifiers using the canonical identifiers\n // previously issued by canonical issuer.\n // Note: We optimize away the copy here.\n const nQuad = NQuads.serializeQuadComponents(\n this._componentWithCanonicalId({component: quad.subject}),\n quad.predicate,\n this._componentWithCanonicalId({component: quad.object}),\n this._componentWithCanonicalId({component: quad.graph})\n );\n // 7.2) Add quad copy to the normalized dataset.\n normalized.push(nQuad);\n }\n\n // sort normalized output\n normalized.sort();\n\n // 8) Return the normalized dataset.\n return normalized.join('');\n }\n\n // 4.6) Hash First Degree Quads\n hashFirstDegreeQuads(id) {\n // 1) Initialize nquads to an empty list. It will be used to store quads in\n // N-Quads format.\n const nquads = [];\n\n // 2) Get the list of quads `quads` associated with the reference blank node\n // identifier in the blank node to quads map.\n const info = this.blankNodeInfo.get(id);\n const quads = info.quads;\n\n // 3) For each quad `quad` in `quads`:\n for(const quad of quads) {\n // 3.1) Serialize the quad in N-Quads format with the following special\n // rule:\n\n // 3.1.1) If any component in quad is an blank node, then serialize it\n // using a special identifier as follows:\n const copy = {\n subject: null, predicate: quad.predicate, object: null, graph: null\n };\n // 3.1.2) If the blank node's existing blank node identifier matches\n // the reference blank node identifier then use the blank node\n // identifier _:a, otherwise, use the blank node identifier _:z.\n copy.subject = this.modifyFirstDegreeComponent(\n id, quad.subject, 'subject');\n copy.object = this.modifyFirstDegreeComponent(\n id, quad.object, 'object');\n copy.graph = this.modifyFirstDegreeComponent(\n id, quad.graph, 'graph');\n nquads.push(NQuads.serializeQuad(copy));\n }\n\n // 4) Sort nquads in lexicographical order.\n nquads.sort();\n\n // 5) Return the hash that results from passing the sorted, joined nquads\n // through the hash algorithm.\n const md = this.createMessageDigest();\n for(const nquad of nquads) {\n md.update(nquad);\n }\n info.hash = md.digest();\n return info.hash;\n }\n\n // 4.7) Hash Related Blank Node\n hashRelatedBlankNode(related, quad, issuer, position) {\n // 1) Set the identifier to use for related, preferring first the canonical\n // identifier for related if issued, second the identifier issued by issuer\n // if issued, and last, if necessary, the result of the Hash First Degree\n // Quads algorithm, passing related.\n let id;\n if(this.canonicalIssuer.hasId(related)) {\n id = this.canonicalIssuer.getId(related);\n } else if(issuer.hasId(related)) {\n id = issuer.getId(related);\n } else {\n id = this.blankNodeInfo.get(related).hash;\n }\n\n // 2) Initialize a string input to the value of position.\n // Note: We use a hash object instead.\n const md = this.createMessageDigest();\n md.update(position);\n\n // 3) If position is not g, append <, the value of the predicate in quad,\n // and > to input.\n if(position !== 'g') {\n md.update(this.getRelatedPredicate(quad));\n }\n\n // 4) Append identifier to input.\n md.update(id);\n\n // 5) Return the hash that results from passing input through the hash\n // algorithm.\n return md.digest();\n }\n\n // 4.8) Hash N-Degree Quads\n hashNDegreeQuads(id, issuer) {\n const deepIterations = this.deepIterations.get(id) || 0;\n if(deepIterations > this.maxDeepIterations) {\n throw new Error(\n `Maximum deep iterations (${this.maxDeepIterations}) exceeded.`);\n }\n this.deepIterations.set(id, deepIterations + 1);\n\n // 1) Create a hash to related blank nodes map for storing hashes that\n // identify related blank nodes.\n // Note: 2) and 3) handled within `createHashToRelated`\n const md = this.createMessageDigest();\n const hashToRelated = this.createHashToRelated(id, issuer);\n\n // 4) Create an empty string, data to hash.\n // Note: We created a hash object `md` above instead.\n\n // 5) For each related hash to blank node list mapping in hash to related\n // blank nodes map, sorted lexicographically by related hash:\n const hashes = [...hashToRelated.keys()].sort();\n for(const hash of hashes) {\n // 5.1) Append the related hash to the data to hash.\n md.update(hash);\n\n // 5.2) Create a string chosen path.\n let chosenPath = '';\n\n // 5.3) Create an unset chosen issuer variable.\n let chosenIssuer;\n\n // 5.4) For each permutation of blank node list:\n const permuter = new Permuter(hashToRelated.get(hash));\n while(permuter.hasNext()) {\n const permutation = permuter.next();\n\n // 5.4.1) Create a copy of issuer, issuer copy.\n let issuerCopy = issuer.clone();\n\n // 5.4.2) Create a string path.\n let path = '';\n\n // 5.4.3) Create a recursion list, to store blank node identifiers\n // that must be recursively processed by this algorithm.\n const recursionList = [];\n\n // 5.4.4) For each related in permutation:\n let nextPermutation = false;\n for(const related of permutation) {\n // 5.4.4.1) If a canonical identifier has been issued for\n // related, append it to path.\n if(this.canonicalIssuer.hasId(related)) {\n path += this.canonicalIssuer.getId(related);\n } else {\n // 5.4.4.2) Otherwise:\n // 5.4.4.2.1) If issuer copy has not issued an identifier for\n // related, append related to recursion list.\n if(!issuerCopy.hasId(related)) {\n recursionList.push(related);\n }\n // 5.4.4.2.2) Use the Issue Identifier algorithm, passing\n // issuer copy and related and append the result to path.\n path += issuerCopy.getId(related);\n }\n\n // 5.4.4.3) If chosen path is not empty and the length of path\n // is greater than or equal to the length of chosen path and\n // path is lexicographically greater than chosen path, then\n // skip to the next permutation.\n // Note: Comparing path length to chosen path length can be optimized\n // away; only compare lexicographically.\n if(chosenPath.length !== 0 && path > chosenPath) {\n nextPermutation = true;\n break;\n }\n }\n\n if(nextPermutation) {\n continue;\n }\n\n // 5.4.5) For each related in recursion list:\n for(const related of recursionList) {\n // 5.4.5.1) Set result to the result of recursively executing\n // the Hash N-Degree Quads algorithm, passing related for\n // identifier and issuer copy for path identifier issuer.\n const result = this.hashNDegreeQuads(related, issuerCopy);\n\n // 5.4.5.2) Use the Issue Identifier algorithm, passing issuer\n // copy and related and append the result to path.\n path += issuerCopy.getId(related);\n\n // 5.4.5.3) Append <, the hash in result, and > to path.\n path += `<${result.hash}>`;\n\n // 5.4.5.4) Set issuer copy to the identifier issuer in\n // result.\n issuerCopy = result.issuer;\n\n // 5.4.5.5) If chosen path is not empty and the length of path\n // is greater than or equal to the length of chosen path and\n // path is lexicographically greater than chosen path, then\n // skip to the next permutation.\n // Note: Comparing path length to chosen path length can be optimized\n // away; only compare lexicographically.\n if(chosenPath.length !== 0 && path > chosenPath) {\n nextPermutation = true;\n break;\n }\n }\n\n if(nextPermutation) {\n continue;\n }\n\n // 5.4.6) If chosen path is empty or path is lexicographically\n // less than chosen path, set chosen path to path and chosen\n // issuer to issuer copy.\n if(chosenPath.length === 0 || path < chosenPath) {\n chosenPath = path;\n chosenIssuer = issuerCopy;\n }\n }\n\n // 5.5) Append chosen path to data to hash.\n md.update(chosenPath);\n\n // 5.6) Replace issuer, by reference, with chosen issuer.\n issuer = chosenIssuer;\n }\n\n // 6) Return issuer and the hash that results from passing data to hash\n // through the hash algorithm.\n return {hash: md.digest(), issuer};\n }\n\n // helper for modifying component during Hash First Degree Quads\n modifyFirstDegreeComponent(id, component) {\n if(component.termType !== 'BlankNode') {\n return component;\n }\n /* Note: A mistake in the URDNA2015 spec that made its way into\n implementations (and therefore must stay to avoid interop breakage)\n resulted in an assigned canonical ID, if available for\n `component.value`, not being used in place of `_:a`/`_:z`, so\n we don't use it here. */\n return {\n termType: 'BlankNode',\n value: component.value === id ? '_:a' : '_:z'\n };\n }\n\n // helper for getting a related predicate\n getRelatedPredicate(quad) {\n return `<${quad.predicate.value}>`;\n }\n\n // helper for creating hash to related blank nodes map\n createHashToRelated(id, issuer) {\n // 1) Create a hash to related blank nodes map for storing hashes that\n // identify related blank nodes.\n const hashToRelated = new Map();\n\n // 2) Get a reference, quads, to the list of quads in the blank node to\n // quads map for the key identifier.\n const quads = this.blankNodeInfo.get(id).quads;\n\n // 3) For each quad in quads:\n for(const quad of quads) {\n // 3.1) For each component in quad, if component is the subject, object,\n // or graph name and it is a blank node that is not identified by\n // identifier:\n // steps 3.1.1 and 3.1.2 occur in helpers:\n this._addRelatedBlankNodeHash({\n quad, component: quad.subject, position: 's',\n id, issuer, hashToRelated\n });\n this._addRelatedBlankNodeHash({\n quad, component: quad.object, position: 'o',\n id, issuer, hashToRelated\n });\n this._addRelatedBlankNodeHash({\n quad, component: quad.graph, position: 'g',\n id, issuer, hashToRelated\n });\n }\n\n return hashToRelated;\n }\n\n _hashAndTrackBlankNode({id, hashToBlankNodes}) {\n // 5.3.1) Create a hash, hash, according to the Hash First Degree\n // Quads algorithm.\n const hash = this.hashFirstDegreeQuads(id);\n\n // 5.3.2) Add hash and identifier to hash to blank nodes map,\n // creating a new entry if necessary.\n const idList = hashToBlankNodes.get(hash);\n if(!idList) {\n hashToBlankNodes.set(hash, [id]);\n } else {\n idList.push(id);\n }\n }\n\n _addBlankNodeQuadInfo({quad, component}) {\n if(component.termType !== 'BlankNode') {\n return;\n }\n const id = component.value;\n const info = this.blankNodeInfo.get(id);\n if(info) {\n info.quads.add(quad);\n } else {\n this.blankNodeInfo.set(id, {quads: new Set([quad]), hash: null});\n }\n }\n\n _addRelatedBlankNodeHash(\n {quad, component, position, id, issuer, hashToRelated}) {\n if(!(component.termType === 'BlankNode' && component.value !== id)) {\n return;\n }\n // 3.1.1) Set hash to the result of the Hash Related Blank Node\n // algorithm, passing the blank node identifier for component as\n // related, quad, path identifier issuer as issuer, and position as\n // either s, o, or g based on whether component is a subject, object,\n // graph name, respectively.\n const related = component.value;\n const hash = this.hashRelatedBlankNode(related, quad, issuer, position);\n\n // 3.1.2) Add a mapping of hash to the blank node identifier for\n // component to hash to related blank nodes map, adding an entry as\n // necessary.\n const entries = hashToRelated.get(hash);\n if(entries) {\n entries.push(related);\n } else {\n hashToRelated.set(hash, [related]);\n }\n }\n\n // canonical ids for 7.1\n _componentWithCanonicalId({component}) {\n if(component.termType === 'BlankNode' &&\n !component.value.startsWith(this.canonicalIssuer.prefix)) {\n // create new BlankNode\n return {\n termType: 'BlankNode',\n value: this.canonicalIssuer.getId(component.value)\n };\n }\n return component;\n }\n};\n\nfunction _stringHashCompare(a, b) {\n return a.hash < b.hash ? -1 : a.hash > b.hash ? 1 : 0;\n}\n","/*!\n * Copyright (c) 2016-2022 Digital Bazaar, Inc. All rights reserved.\n */\n'use strict';\n\nconst MessageDigest = require('./MessageDigest');\nconst URDNA2015 = require('./URDNA2015');\n\nmodule.exports = class URDNA2012 extends URDNA2015 {\n constructor() {\n super();\n this.name = 'URGNA2012';\n this.createMessageDigest = () => new MessageDigest('sha1');\n }\n\n // helper for modifying component during Hash First Degree Quads\n modifyFirstDegreeComponent(id, component, key) {\n if(component.termType !== 'BlankNode') {\n return component;\n }\n if(key === 'graph') {\n return {\n termType: 'BlankNode',\n value: '_:g'\n };\n }\n return {\n termType: 'BlankNode',\n value: (component.value === id ? '_:a' : '_:z')\n };\n }\n\n // helper for getting a related predicate\n getRelatedPredicate(quad) {\n return quad.predicate.value;\n }\n\n // helper for creating hash to related blank nodes map\n async createHashToRelated(id, issuer) {\n // 1) Create a hash to related blank nodes map for storing hashes that\n // identify related blank nodes.\n const hashToRelated = new Map();\n\n // 2) Get a reference, quads, to the list of quads in the blank node to\n // quads map for the key identifier.\n const quads = this.blankNodeInfo.get(id).quads;\n\n // 3) For each quad in quads:\n let i = 0;\n for(const quad of quads) {\n // 3.1) If the quad's subject is a blank node that does not match\n // identifier, set hash to the result of the Hash Related Blank Node\n // algorithm, passing the blank node identifier for subject as related,\n // quad, path identifier issuer as issuer, and p as position.\n let position;\n let related;\n if(quad.subject.termType === 'BlankNode' && quad.subject.value !== id) {\n related = quad.subject.value;\n position = 'p';\n } else if(\n quad.object.termType === 'BlankNode' && quad.object.value !== id) {\n // 3.2) Otherwise, if quad's object is a blank node that does not match\n // identifier, to the result of the Hash Related Blank Node algorithm,\n // passing the blank node identifier for object as related, quad, path\n // identifier issuer as issuer, and r as position.\n related = quad.object.value;\n position = 'r';\n } else {\n // 3.3) Otherwise, continue to the next quad.\n continue;\n }\n // Note: batch hashing related blank nodes 100 at a time\n if(++i % 100 === 0) {\n await this._yield();\n }\n // 3.4) Add a mapping of hash to the blank node identifier for the\n // component that matched (subject or object) to hash to related blank\n // nodes map, adding an entry as necessary.\n const hash = await this.hashRelatedBlankNode(\n related, quad, issuer, position);\n const entries = hashToRelated.get(hash);\n if(entries) {\n entries.push(related);\n } else {\n hashToRelated.set(hash, [related]);\n }\n }\n\n return hashToRelated;\n }\n};\n","/*!\n * Copyright (c) 2016-2021 Digital Bazaar, Inc. All rights reserved.\n */\n'use strict';\n\nconst MessageDigest = require('./MessageDigest');\nconst URDNA2015Sync = require('./URDNA2015Sync');\n\nmodule.exports = class URDNA2012Sync extends URDNA2015Sync {\n constructor() {\n super();\n this.name = 'URGNA2012';\n this.createMessageDigest = () => new MessageDigest('sha1');\n }\n\n // helper for modifying component during Hash First Degree Quads\n modifyFirstDegreeComponent(id, component, key) {\n if(component.termType !== 'BlankNode') {\n return component;\n }\n if(key === 'graph') {\n return {\n termType: 'BlankNode',\n value: '_:g'\n };\n }\n return {\n termType: 'BlankNode',\n value: (component.value === id ? '_:a' : '_:z')\n };\n }\n\n // helper for getting a related predicate\n getRelatedPredicate(quad) {\n return quad.predicate.value;\n }\n\n // helper for creating hash to related blank nodes map\n createHashToRelated(id, issuer) {\n // 1) Create a hash to related blank nodes map for storing hashes that\n // identify related blank nodes.\n const hashToRelated = new Map();\n\n // 2) Get a reference, quads, to the list of quads in the blank node to\n // quads map for the key identifier.\n const quads = this.blankNodeInfo.get(id).quads;\n\n // 3) For each quad in quads:\n for(const quad of quads) {\n // 3.1) If the quad's subject is a blank node that does not match\n // identifier, set hash to the result of the Hash Related Blank Node\n // algorithm, passing the blank node identifier for subject as related,\n // quad, path identifier issuer as issuer, and p as position.\n let position;\n let related;\n if(quad.subject.termType === 'BlankNode' && quad.subject.value !== id) {\n related = quad.subject.value;\n position = 'p';\n } else if(\n quad.object.termType === 'BlankNode' && quad.object.value !== id) {\n // 3.2) Otherwise, if quad's object is a blank node that does not match\n // identifier, to the result of the Hash Related Blank Node algorithm,\n // passing the blank node identifier for object as related, quad, path\n // identifier issuer as issuer, and r as position.\n related = quad.object.value;\n position = 'r';\n } else {\n // 3.3) Otherwise, continue to the next quad.\n continue;\n }\n // 3.4) Add a mapping of hash to the blank node identifier for the\n // component that matched (subject or object) to hash to related blank\n // nodes map, adding an entry as necessary.\n const hash = this.hashRelatedBlankNode(related, quad, issuer, position);\n const entries = hashToRelated.get(hash);\n if(entries) {\n entries.push(related);\n } else {\n hashToRelated.set(hash, [related]);\n }\n }\n\n return hashToRelated;\n }\n};\n","/**\n * An implementation of the RDF Dataset Normalization specification.\n * This library works in the browser and node.js.\n *\n * BSD 3-Clause License\n * Copyright (c) 2016-2023 Digital Bazaar, Inc.\n * All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are met:\n *\n * Redistributions of source code must retain the above copyright notice,\n * this list of conditions and the following disclaimer.\n *\n * Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n *\n * Neither the name of the Digital Bazaar, Inc. nor the names of its\n * contributors may be used to endorse or promote products derived from\n * this software without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\n * IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\n * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n */\n'use strict';\n\nconst URDNA2015 = require('./URDNA2015');\nconst URGNA2012 = require('./URGNA2012');\nconst URDNA2015Sync = require('./URDNA2015Sync');\nconst URGNA2012Sync = require('./URGNA2012Sync');\n\n// optional native support\nlet rdfCanonizeNative;\ntry {\n rdfCanonizeNative = require('rdf-canonize-native');\n} catch(e) {}\n\n// return a dataset from input dataset or legacy dataset\nfunction _inputToDataset(input/*, options*/) {\n // back-compat with legacy dataset\n if(!Array.isArray(input)) {\n return exports.NQuads.legacyDatasetToQuads(input);\n }\n return input;\n}\n\n// expose helpers\nexports.NQuads = require('./NQuads');\nexports.IdentifierIssuer = require('./IdentifierIssuer');\n\n/**\n * Get or set native API.\n *\n * @param api the native API.\n *\n * @return the currently set native API.\n */\nexports._rdfCanonizeNative = function(api) {\n if(api) {\n rdfCanonizeNative = api;\n }\n return rdfCanonizeNative;\n};\n\n/**\n * Asynchronously canonizes an RDF dataset.\n *\n * @param {Array|object|string} input - The input to canonize given as a\n * dataset or legacy dataset.\n * @param {object} options - The options to use:\n * {string} algorithm - The canonicalization algorithm to use, `URDNA2015` or\n * `URGNA2012`.\n * {Function} [createMessageDigest] - A factory function for creating a\n * `MessageDigest` interface that overrides the built-in message digest\n * implementation used by the canonize algorithm; note that using a hash\n * algorithm (or HMAC algorithm) that differs from the one specified by\n * the canonize algorithm will result in different output.\n * {Map} [canonicalIdMap] - An optional Map to be populated by the canonical\n * identifier issuer with the bnode identifier mapping generated by the\n * canonicalization algorithm.\n * {boolean} [useNative=false] - Use native implementation.\n * {number} [maxDeepIterations=Infinity] - The maximum number of times to run\n * deep comparison algorithms (such as the N-Degree Hash Quads algorithm\n * used in URDNA2015) before bailing out and throwing an error; this is a\n * useful setting for preventing wasted CPU cycles or DoS when canonizing\n * meaningless or potentially malicious datasets, a recommended value is\n * `1`.\n *\n * @return a Promise that resolves to the canonicalized RDF Dataset.\n */\nexports.canonize = async function(input, options) {\n const dataset = _inputToDataset(input, options);\n\n if(options.useNative) {\n if(!rdfCanonizeNative) {\n throw new Error('rdf-canonize-native not available');\n }\n if(options.createMessageDigest) {\n throw new Error(\n '\"createMessageDigest\" cannot be used with \"useNative\".');\n }\n return new Promise((resolve, reject) =>\n rdfCanonizeNative.canonize(dataset, options, (err, canonical) =>\n err ? reject(err) : resolve(canonical)));\n }\n\n if(options.algorithm === 'URDNA2015') {\n return new URDNA2015(options).main(dataset);\n }\n if(options.algorithm === 'URGNA2012') {\n if(options.createMessageDigest) {\n throw new Error(\n '\"createMessageDigest\" cannot be used with \"URGNA2012\".');\n }\n return new URGNA2012(options).main(dataset);\n }\n if(!('algorithm' in options)) {\n throw new Error('No RDF Dataset Canonicalization algorithm specified.');\n }\n throw new Error(\n 'Invalid RDF Dataset Canonicalization algorithm: ' + options.algorithm);\n};\n\n/**\n * This method is no longer available in the public API, it is for testing\n * only. It synchronously canonizes an RDF dataset and does not work in the\n * browser.\n *\n * @param {Array|object|string} input - The input to canonize given as a\n * dataset or legacy dataset.\n * @param {object} options - The options to use:\n * {string} algorithm - The canonicalization algorithm to use, `URDNA2015` or\n * `URGNA2012`.\n * {Function} [createMessageDigest] - A factory function for creating a\n * `MessageDigest` interface that overrides the built-in message digest\n * implementation used by the canonize algorithm; note that using a hash\n * algorithm (or HMAC algorithm) that differs from the one specified by\n * the canonize algorithm will result in different output.\n * {boolean} [useNative=false] - Use native implementation.\n * {number} [maxDeepIterations=Infinity] - The maximum number of times to run\n * deep comparison algorithms (such as the N-Degree Hash Quads algorithm\n * used in URDNA2015) before bailing out and throwing an error; this is a\n * useful setting for preventing wasted CPU cycles or DoS when canonizing\n * meaningless or potentially malicious datasets, a recommended value is\n * `1`.\n *\n * @return the RDF dataset in canonical form.\n */\nexports._canonizeSync = function(input, options) {\n const dataset = _inputToDataset(input, options);\n\n if(options.useNative) {\n if(!rdfCanonizeNative) {\n throw new Error('rdf-canonize-native not available');\n }\n if(options.createMessageDigest) {\n throw new Error(\n '\"createMessageDigest\" cannot be used with \"useNative\".');\n }\n return rdfCanonizeNative.canonizeSync(dataset, options);\n }\n if(options.algorithm === 'URDNA2015') {\n return new URDNA2015Sync(options).main(dataset);\n }\n if(options.algorithm === 'URGNA2012') {\n if(options.createMessageDigest) {\n throw new Error(\n '\"createMessageDigest\" cannot be used with \"URGNA2012\".');\n }\n return new URGNA2012Sync(options).main(dataset);\n }\n if(!('algorithm' in options)) {\n throw new Error('No RDF Dataset Canonicalization algorithm specified.');\n }\n throw new Error(\n 'Invalid RDF Dataset Canonicalization algorithm: ' + options.algorithm);\n};\n","(function (global, undefined) {\n \"use strict\";\n\n if (global.setImmediate) {\n return;\n }\n\n var nextHandle = 1; // Spec says greater than zero\n var tasksByHandle = {};\n var currentlyRunningATask = false;\n var doc = global.document;\n var registerImmediate;\n\n function setImmediate(callback) {\n // Callback can either be a function or a string\n if (typeof callback !== \"function\") {\n callback = new Function(\"\" + callback);\n }\n // Copy function arguments\n var args = new Array(arguments.length - 1);\n for (var i = 0; i < args.length; i++) {\n args[i] = arguments[i + 1];\n }\n // Store and register the task\n var task = { callback: callback, args: args };\n tasksByHandle[nextHandle] = task;\n registerImmediate(nextHandle);\n return nextHandle++;\n }\n\n function clearImmediate(handle) {\n delete tasksByHandle[handle];\n }\n\n function run(task) {\n var callback = task.callback;\n var args = task.args;\n switch (args.length) {\n case 0:\n callback();\n break;\n case 1:\n callback(args[0]);\n break;\n case 2:\n callback(args[0], args[1]);\n break;\n case 3:\n callback(args[0], args[1], args[2]);\n break;\n default:\n callback.apply(undefined, args);\n break;\n }\n }\n\n function runIfPresent(handle) {\n // From the spec: \"Wait until any invocations of this algorithm started before this one have completed.\"\n // So if we're currently running a task, we'll need to delay this invocation.\n if (currentlyRunningATask) {\n // Delay by doing a setTimeout. setImmediate was tried instead, but in Firefox 7 it generated a\n // \"too much recursion\" error.\n setTimeout(runIfPresent, 0, handle);\n } else {\n var task = tasksByHandle[handle];\n if (task) {\n currentlyRunningATask = true;\n try {\n run(task);\n } finally {\n clearImmediate(handle);\n currentlyRunningATask = false;\n }\n }\n }\n }\n\n function installNextTickImplementation() {\n registerImmediate = function(handle) {\n process.nextTick(function () { runIfPresent(handle); });\n };\n }\n\n function canUsePostMessage() {\n // The test against `importScripts` prevents this implementation from being installed inside a web worker,\n // where `global.postMessage` means something completely different and can't be used for this purpose.\n if (global.postMessage && !global.importScripts) {\n var postMessageIsAsynchronous = true;\n var oldOnMessage = global.onmessage;\n global.onmessage = function() {\n postMessageIsAsynchronous = false;\n };\n global.postMessage(\"\", \"*\");\n global.onmessage = oldOnMessage;\n return postMessageIsAsynchronous;\n }\n }\n\n function installPostMessageImplementation() {\n // Installs an event handler on `global` for the `message` event: see\n // * https://developer.mozilla.org/en/DOM/window.postMessage\n // * http://www.whatwg.org/specs/web-apps/current-work/multipage/comms.html#crossDocumentMessages\n\n var messagePrefix = \"setImmediate$\" + Math.random() + \"$\";\n var onGlobalMessage = function(event) {\n if (event.source === global &&\n typeof event.data === \"string\" &&\n event.data.indexOf(messagePrefix) === 0) {\n runIfPresent(+event.data.slice(messagePrefix.length));\n }\n };\n\n if (global.addEventListener) {\n global.addEventListener(\"message\", onGlobalMessage, false);\n } else {\n global.attachEvent(\"onmessage\", onGlobalMessage);\n }\n\n registerImmediate = function(handle) {\n global.postMessage(messagePrefix + handle, \"*\");\n };\n }\n\n function installMessageChannelImplementation() {\n var channel = new MessageChannel();\n channel.port1.onmessage = function(event) {\n var handle = event.data;\n runIfPresent(handle);\n };\n\n registerImmediate = function(handle) {\n channel.port2.postMessage(handle);\n };\n }\n\n function installReadyStateChangeImplementation() {\n var html = doc.documentElement;\n registerImmediate = function(handle) {\n // Create a \r\n","import mod from \"-!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./Footer.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./Footer.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./Footer.vue?vue&type=template&id=579b6b3e\"\nimport script from \"./Footer.vue?vue&type=script&lang=js\"\nexport * from \"./Footer.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('v-app-bar',{attrs:{\"app\":\"\",\"flat\":\"\",\"clipped-left\":\"\"}},[_c('router-link',{attrs:{\"to\":\"/\"}},[_c('v-img',{staticClass:\"mx-2\",attrs:{\"src\":_vm.app_logo,\"max-height\":\"40\",\"max-width\":\"40\",\"contain\":\"\"}})],1),_c('v-toolbar-title',[_vm._v(_vm._s(_vm.app_name))])],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\r\n\r\n\r\n\r\n","import mod from \"-!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./Topbar.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./Topbar.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./Topbar.vue?vue&type=template&id=5a5c0e34\"\nimport script from \"./Topbar.vue?vue&type=script&lang=js\"\nexport * from \"./Topbar.vue?vue&type=script&lang=js\"\nimport style0 from \"./Topbar.vue?vue&type=style&index=0&id=5a5c0e34&prod&lang=css\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\r\n\r\n\r\n\r\n","import mod from \"-!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./App.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./App.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./App.vue?vue&type=template&id=fefcadbe\"\nimport script from \"./App.vue?vue&type=script&lang=js\"\nexport * from \"./App.vue?vue&type=script&lang=js\"\nimport style0 from \"./App.vue?vue&type=style&index=0&id=fefcadbe&prod&lang=css\"\n\n\n/* normalize component */\nimport normalizer from \"!../node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import Vue from 'vue';\r\nimport Vuetify from 'vuetify/lib/framework';\r\nimport '@mdi/font/css/materialdesignicons.css'\r\n\r\nVue.use(Vuetify);\r\n\r\nexport default new Vuetify({\r\n theme: {\r\n themes: {\r\n light: {\r\n primary: '#757575', },\r\n }\r\n }\r\n});\r\n","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('div',[_c('PageTitle',{attrs:{\"title\":_vm.asset_type,\"show_breadcrumbs\":true}}),_c('v-row',{staticClass:\"px-10 my-2\"},[_c('v-col',{staticClass:\"py-2\",attrs:{\"cols\":\"8\"}},[_c('p',[_c('b',[_vm._v(\"Fill the form with all the metadata and download the RDF\")]),_vm._v(\" representation using \"),_c('a',{attrs:{\"href\":\"https://w3id.org/mobilitydcat-ap/\"}},[_vm._v(\"mobilityDCAT-AP\")]),_vm._v(\". Test and experiment to learn how different information should be described in RDF according to the mobilityDCAT-AP specification. The form is compliant with the minimum profile required by mobilityDCAT-AP.\"),_c('br'),_c('br'),_vm._v(\" The page is client-side only so all the information inserted are not collected/stored but can not be retrieved if the page is reloaded. The output RDF can be converted to different serializations using online converters such as \"),_c('a',{attrs:{\"href\":\"https://rdfshape.weso.es/dataConvert\"}},[_vm._v(\"RDFShape\")]),_vm._v(\".\"),_c('br'),_c('br'),_vm._v(\" This page is powered by \"),_c('b',[_vm._v(\"KCONG (Knowledge Catalogue and Governance)\")]),_vm._v(\" a complete (meta)data catalogue solution developed by \"),_c('a',{attrs:{\"href\":\"https://www.cefriel.com/\"}},[_vm._v(\"Cefriel\")]),_vm._v(\". If you want to know more visit \"),_c('a',{attrs:{\"href\":\"https://kcong.cefriel.com/\"}},[_vm._v(\"https://kcong.cefriel.com/\")]),_vm._v(\".\")])]),_c('v-col',{staticClass:\"text-center py-2\",attrs:{\"cols\":\"4\"}},[_c('img',{staticStyle:{\"max-height\":\"100px\"},attrs:{\"src\":require(\"@/assets/logo.png\"),\"alt\":\"Company Logo\"}})])],1),_vm._l((_vm.alert_messages),function(alert_message,index){return _c('Alert',{key:index,attrs:{\"message\":alert_message.message,\"alert_type\":alert_message.alert_type}})}),_c('v-container',[_c('v-row',[_c('v-col',{attrs:{\"cols\":\"6\"}},[_c('v-form',{ref:\"form\",model:{value:(_vm.valid),callback:function ($$v) {_vm.valid=$$v},expression:\"valid\"}},[_c('JsonForm',{key:_vm.formKey,attrs:{\"value\":_vm.asset,\"schema\":_vm.asset_schema,\"options\":_vm.options},on:{\"update:model\":_vm.set_asset_value}})],1),_c('p',[_c('br')]),_c('v-btn',{staticStyle:{\"margin-top\":\"10px\"},on:{\"click\":_vm.create_object}},[_vm._v(\"Generate\")])],1),_c('v-col',{attrs:{\"cols\":\"6\"}},[(_vm.saved_asset_rdf)?_c('div',{staticClass:\"rdf-container\"},[_c('v-select',{staticClass:\"mb-3\",attrs:{\"items\":_vm.formats,\"label\":\"Select RDF Format\"},model:{value:(_vm.selectedFormat),callback:function ($$v) {_vm.selectedFormat=$$v},expression:\"selectedFormat\"}}),_c('rdf-editor',{staticClass:\"h-full overflow-hidden\",attrs:{\"format\":_vm.selectedFormat,\"readonly\":true,\"prefixes\":_vm.editorPrefixes,\"auto-parse\":\"\",\"parse-delay\":\"1000\"},domProps:{\"value\":_vm.saved_asset_rdf},on:{\"parsing-failed\":_vm.onParsingFailed,\"prefixes-parsed\":_vm.onPrefixesParsed,\"serialized\":_vm.onSerialized}}),_c('v-btn',{staticClass:\"mb-2\",attrs:{\"color\":\"primary\"},on:{\"click\":_vm.downloadRDF}},[_vm._v(\"Download RDF\")])],1):_vm._e()])],1)],1)],2)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('v-container',[_c('v-form',{model:{value:(_vm.valid),callback:function ($$v) {_vm.valid=$$v},expression:\"valid\"}},[_c('v-jsf',{attrs:{\"schema\":_vm.schema,\"options\":_vm.options},on:{\"input\":function($event){return _vm.$emit('update:model', $event)}},model:{value:(_vm.model),callback:function ($$v) {_vm.model=$$v},expression:\"model\"}})],1)],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\r\n\r\n\r\n\r\n\r\n","import mod from \"-!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./JsonForm.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./JsonForm.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./JsonForm.vue?vue&type=template&id=7f267588\"\nimport script from \"./JsonForm.vue?vue&type=script&lang=js\"\nexport * from \"./JsonForm.vue?vue&type=script&lang=js\"\nimport style0 from \"./JsonForm.vue?vue&type=style&index=0&id=7f267588&prod&lang=css\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('v-container',[_c('v-alert',{staticClass:\"text-center\",attrs:{\"value\":!!_vm.message,\"type\":_vm.alert_type,\"dismissible\":\"\"}},[_vm._v(\" \"+_vm._s(_vm.message)+\" \")])],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\r\n\r\n\r\n","import mod from \"-!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./Alert.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./Alert.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./Alert.vue?vue&type=template&id=64459cc8\"\nimport script from \"./Alert.vue?vue&type=script&lang=js\"\nexport * from \"./Alert.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('v-container',{staticClass:\"page-top py-4 mb-8\",attrs:{\"fluid\":\"\"}},[_c('v-row',[_c('v-col',{attrs:{\"cols\":\"9\"}},[_c('v-row',{staticClass:\"ml-4\"},[_c('v-col',[_c('h1',{staticClass:\"text-capitalize\"},[_vm._v(_vm._s(_vm.title || _vm.remove_underscore))])])],1),(_vm.subtitle!=null)?_c('v-row',{staticClass:\"ml-4\"},[_c('v-col',[_c('h2',{staticClass:\"text-capitalize\"},[_vm._v(_vm._s(_vm.subtitle || _vm.remove_underscore))])])],1):_vm._e(),(_vm.third_line!=null)?_c('v-row',{staticClass:\"ml-4\"},[_c('v-col',[_c('h3',[_vm._v(\" \"+_vm._s(_vm.third_line || _vm.remove_underscore)+\" \")])])],1):_vm._e()],1),_c('v-col',{attrs:{\"cols\":\"3\"}},[(_vm.image!=null)?_c('v-row',[_c('v-img',{attrs:{\"max-height\":\"160px\",\"position\":\"bottom center\",\"src\":_vm.image,\"contain\":\"\"}})],1):_vm._e()],1)],1)],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\r\n\r\n\r\n\r\n\r\n","import mod from \"-!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./PageTitle.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./PageTitle.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./PageTitle.vue?vue&type=template&id=46f3abe2&scoped=true\"\nimport script from \"./PageTitle.vue?vue&type=script&lang=js\"\nexport * from \"./PageTitle.vue?vue&type=script&lang=js\"\nimport style0 from \"./PageTitle.vue?vue&type=style&index=0&id=46f3abe2&prod&lang=css&scoped=true\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"46f3abe2\",\n null\n \n)\n\nexport default component.exports","export default \"{%- set prefix=\\\"https://knowledge.c-innovationhub.com/cefriel/data/\\\" -%}\\r\\n{%- set dcat_content = obj.header -%}\\r\\n{%- set json_content = obj.content -%}\\r\\n{%- set asset_name = slugify(dcat_content.name) -%}\\r\\n{%- set asset_type = dcat_content.type -%}\\r\\n{%- set asset_id = '<' + prefix + asset_type + '#' + asset_name + '>' -%}\\r\\n{%- set catalogue_id= '<' + prefix + 'CefrielDataCatalogue#' + asset_type + '>' -%}\\r\\n{%- set catalogue_record_id = '<' + prefix + 'CefrielDataCatalogueRecord/' + asset_type + '#' + asset_name + '>' -%}\\r\\n{%- set asset_type_url = data_platform_url + '/assets/' + asset_name -%}\\r\\n{%- set freq_iri = {\\r\\n \\\"Continuously\\\": \\\"http://publications.europa.eu/resource/authority/frequency/UPDATE_CONT\\\",\\r\\n \\\"Never (one-time provision)\\\": \\\"http://publications.europa.eu/resource/authority/frequency/NEVER\\\",\\r\\n \\\"On occurrence / irregularly\\\": \\\"http://publications.europa.eu/resource/authority/frequency/IRREG\\\",\\r\\n \\\"Up to 1min\\\": \\\"https://w3id.org/mobilitydcat-ap/update-frequency/1min\\\",\\r\\n \\\"Up to 5min\\\": \\\"https://w3id.org/mobilitydcat-ap/update-frequency/5min\\\",\\r\\n \\\"Up to 10 min\\\": \\\"https://w3id.org/mobilitydcat-ap/update-frequency/10min\\\",\\r\\n \\\"Up to 15 min\\\": \\\"https://w3id.org/mobilitydcat-ap/update-frequency/15min\\\",\\r\\n \\\"Up to 30 min\\\": \\\"https://w3id.org/mobilitydcat-ap/update-frequency/30min\\\",\\r\\n \\\"Up to 1h\\\": \\\"http://publications.europa.eu/resource/authority/frequency/HOURLY\\\",\\r\\n \\\"Up to 2h\\\": \\\"http://publications.europa.eu/resource/authority/frequency/BIHOURLY\\\",\\r\\n \\\"Up to 3h\\\": \\\"http://publications.europa.eu/resource/authority/frequency/TRIHOURLY\\\",\\r\\n \\\"Up to 12h\\\": \\\"https://w3id.org/mobilitydcat-ap/update-frequency/12h\\\",\\r\\n \\\"Up to 24h\\\": \\\"http://publications.europa.eu/resource/authority/frequency/DAILY\\\",\\r\\n \\\"Up to Weekly\\\": \\\"http://publications.europa.eu/resource/authority/frequency/WEEKLY\\\",\\r\\n \\\"Up to Monthly\\\": \\\"http://publications.europa.eu/resource/authority/frequency/MONTHLY\\\",\\r\\n \\\"Up to every 2 months\\\": \\\"http://publications.europa.eu/resource/authority/frequency/BIMONTHLY\\\",\\r\\n \\\"Up to every 3 months\\\": \\\"http://publications.europa.eu/resource/authority/frequency/QUARTERLY\\\",\\r\\n \\\"Up to every 6 months\\\": \\\"https://w3id.org/mobilitydcat-ap/update-frequency/ANNUAL_2\\\",\\r\\n \\\"Up to Annual\\\": \\\"http://publications.europa.eu/resource/authority/frequency/ANNUAL\\\",\\r\\n \\\"Up to Biennial\\\": \\\"http://publications.europa.eu/resource/authority/frequency/BIENNIAL\\\",\\r\\n \\\"Up to Triennial\\\": \\\"http://publications.europa.eu/resource/authority/frequency/TRIENNIAL\\\",\\r\\n \\\"Up to Quadrennial\\\": \\\"http://publications.europa.eu/resource/authority/frequency/QUADRENNIAL\\\",\\r\\n \\\"Up to Quinquennial\\\": \\\"http://publications.europa.eu/resource/authority/frequency/QUINQUENNIAL\\\",\\r\\n \\\"Up to Decennial\\\": \\\"http://publications.europa.eu/resource/authority/frequency/DECENNIAL\\\",\\r\\n \\\"Up to Bidecennial\\\": \\\"http://publications.europa.eu/resource/authority/frequency/BIDECENNIAL\\\",\\r\\n \\\"Up to Tridecennial\\\": \\\"http://publications.europa.eu/resource/authority/frequency/TRIDECENNIAL\\\",\\r\\n \\\"Unknown\\\": \\\"http://publications.europa.eu/resource/authority/frequency/UNKNOWN\\\"\\r\\n }\\r\\n-%}\\r\\n\\r\\n@prefix dct: .\\r\\n@prefix rdf: .\\r\\n@prefix xsd: .\\r\\n@prefix dcat: .\\r\\n@prefix vcard: .\\r\\n@prefix foaf: .\\r\\n@prefix owl: .\\r\\n@prefix mobilitydcatap: .\\r\\n@prefix mdata: .\\r\\n@prefix mtheme: .\\r\\n\\r\\n\\r\\n{{catalogue_id | safe}} rdf:type dcat:Catalog;\\r\\n\\tdct:title \\\"Cefriel RDF Metadata Generator for mobilityDCAT-AP\\\";\\r\\n\\tdct:description \\\"Cefriel RDF Metadata Generator for mobilityDCAT-AP powered by KCONG\\\"@en;\\r\\n\\tdct:publisher [\\r\\n\\t rdf:type foaf:Agent;\\r\\n\\t foaf:name \\\"Mobility Data Publisher\\\";\\r\\n\\t foaf:mbox \\\"no-reply@cefriel.com\\\";\\r\\n\\t];\\r\\n\\tdct:dataset {{asset_id | safe}};\\r\\n\\tdcat:record {{catalogue_record_id | safe}};\\r\\n\\tfoaf:homepage .\\r\\n\\r\\n\\r\\n{{catalogue_record_id | safe}} rdf:type dcat:CatalogRecord ;\\r\\n\\tdct:modified \\\"{{dcat_content.last_updated}}\\\"^^xsd:dateTime ;\\r\\n\\tdct:created \\\"{{dcat_content.creation_time}}\\\"^^xsd:dateTime ;\\r\\n\\tfoaf:primaryTopic {{asset_id | safe}} .\\r\\n\\r\\n\\r\\n{{asset_id | safe}} rdf:type dcat:Dataset;\\r\\n dct:identifier \\\"\\\"\\\"{{dcat_content.identifier}}\\\"\\\"\\\";\\r\\n dct:title \\\"{{dcat_content.name}}\\\";\\r\\n dct:description \\\"\\\"\\\"{{dcat_content.description}}\\\"\\\"\\\";\\r\\n {%if dcat_content.publisher_name or dcat_content.publisher_email %}\\r\\n dct:publisher [\\r\\n\\t rdf:type foaf:Agent;\\r\\n {%if dcat_content.publisher_name %}\\r\\n\\t foaf:name \\\"{{dcat_content.publisher_name}}\\\";\\r\\n {%endif%}\\r\\n {%if dcat_content.publisher_email %}\\r\\n\\t foaf:mbox \\\"{{dcat_content.publisher_email}}\\\";\\r\\n {%endif%}\\r\\n ];\\r\\n {%endif%}\\r\\n \\r\\n {%if json_content.mobility_themes%}\\r\\n {% for mtheme in json_content.mobility_themes %}\\r\\n mobilitydcatap:mobilityTheme mtheme:{{mtheme | lower | replace(\\\" \\\", \\\"-\\\") | replace(\\\",\\\" , \\\"\\\")}};\\r\\n {% endfor %}\\r\\n {%endif%}\\r\\n {%if '://' in json_content.spatial_coverage %}\\r\\n dcat:spatial <{{json_content.spatial_coverage}}>;\\r\\n {%else%}\\r\\n dcat:spatial \\\"\\\"\\\"{{json_content.spatial_coverage}}\\\"\\\"\\\";\\r\\n {%endif%}\\r\\n {%if json_content.spatial_aggregation%}\\r\\n dcat:spatialResolutionInMeters \\\"\\\"\\\"{{json_content.spatial_aggregation}}\\\"\\\"\\\";\\r\\n {%endif%}\\r\\n\\r\\n {%if json_content.temporal_coverage_start or json_content.temporal_coverage_end%}\\r\\n dcat:temporal [ a dct:PeriodOfTime;\\r\\n {%if json_content.temporal_coverage_start%}\\r\\n\\t dcat:startDate \\\"\\\"\\\"{{json_content.temporal_coverage_start}}\\\"\\\"\\\";\\r\\n {%endif%}\\r\\n {%if json_content.temporal_coverage_end%}\\r\\n\\t dcat:endDate \\\"\\\"\\\"{{json_content.temporal_coverage_end}}\\\"\\\"\\\";\\r\\n {%endif%}\\r\\n ];\\r\\n {%endif%}\\r\\n\\r\\n {%if json_content.temporal_aggregation%}\\r\\n dcat:temporalResolution \\\"\\\"\\\"{{json_content.temporal_aggregation}}\\\"\\\"\\\";\\r\\n {%endif%}\\r\\n\\r\\n {%-if json_content.source_asset.id-%}\\r\\n dct:source <{{json_content.source_asset.id}}>;\\r\\n {%-endif-%}\\r\\n\\r\\n {%- set accrual_periodicity = json_content.accrual_periodicity -%}\\r\\n dcat:accrualPeriodicity <{{ freq_iri[accrual_periodicity] }}>.\\r\\n\\r\\n\\r\\n {%if json_content.distributions %}\\r\\n {%- for distribution in json_content.distributions -%}\\r\\n {%- set distribution_id = '<' + prefix + asset_type + '/Distribution#' + asset_name + '-' + loop.index + '>' -%}\\r\\n {{asset_id | safe}} dcat:distribution {{distribution_id | safe}} .\\r\\n\\r\\n {{distribution_id | safe}} rdf:type dcat:Distribution;\\r\\n mobilitydcatap:mobilityDataStandard mdata:{{distribution.data_schema | lower | replace(\\\" \\\", \\\"-\\\")}} ;\\r\\n {% if '://' in json_content.spatial_coverage %}\\r\\n dct:format <{{distribution.format}}>;\\r\\n {%else%}\\r\\n dct:format \\\"{{distribution.format}}\\\";\\r\\n {%endif%}\\r\\n\\t {%-if json_content.data_sample -%}\\r\\n {%- for sample in json_content.data_sample -%}\\r\\n adms:sample [\\r\\n rdf:type dcat:Distribution;\\r\\n dcat:downloadURL <{{sample.url}}>;\\r\\n {%-if sample.sample_description -%}\\r\\n dct:description \\\"\\\"\\\"{{sample.sample_description}}\\\"\\\"\\\"\\r\\n {%- endif -%}\\r\\n ];\\r\\n {%- endfor -%}\\r\\n\\t {%- endif -%}\\r\\n\\tdcat:accessURL <{{distribution.access_url}}> .\\r\\n {%- endfor -%}\\r\\n {%- endif -%}\\r\\n\";","\r\n\r\n\r\n","import mod from \"-!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./AssetCreate.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./AssetCreate.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./AssetCreate.vue?vue&type=template&id=74f8f882\"\nimport script from \"./AssetCreate.vue?vue&type=script&lang=js\"\nexport * from \"./AssetCreate.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import Vue from 'vue'\r\nimport Router from 'vue-router'\r\n\r\nimport AssetCreate from './components/AssetCreate.vue'\r\n\r\nVue.use(Router)\r\n\r\n\r\nconst router= new Router({\r\n mode: 'history',\r\n routes: [\r\n {\r\n path: '/mobilitydcatap-ui/',\r\n name: 'asset_create',\r\n component: AssetCreate,\r\n props: {\r\n asset_type : 'mobilityDCAT-AP Generator Tool'\r\n },\r\n meta: {\r\n title: \"Cefriel RDF Metadata Generator\",\r\n }\r\n },\r\n ]\r\n})\r\n\r\nexport default router\r\n","import Vue from 'vue';\r\nimport App from './App.vue';\r\nimport vuetify from './plugins/vuetify';\r\nimport router from './router';\r\nimport Resource from 'vue-resource';\r\nimport moment from 'moment/src/moment';\r\n\r\nVue.config.productionTip = false;\r\nVue.config.ignoredElements = ['rdf-editor']\r\n\r\nVue.use(Resource);\r\n\r\n// Set page title\r\nrouter.beforeEach((to, from, next) => {\r\n const { title } = to.meta;\r\n document.title = typeof title === 'function' ? title(to) : title;\r\n next();\r\n});\r\n\r\n// Vue functions to be used in templates\r\nVue.filter('formatDate', function(value) {\r\n if (value) {\r\n return moment(String(value)).format('MM/DD/YYYY hh:mm')\r\n }\r\n});\r\n\r\nVue.filter('remove_underscore', function (value) {\r\n if (!value) return ''\r\n value = value.toString()\r\n return value.replaceAll(\"_\", \" \")\r\n})\r\n\r\nnew Vue({\r\n vuetify,\r\n router,\r\n render: h => h(App)\r\n}).$mount('#app')\r\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\tid: moduleId,\n\t\tloaded: false,\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t// Flag the module as loaded\n\tmodule.loaded = true;\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n","var deferred = [];\n__webpack_require__.O = function(result, chunkIds, fn, priority) {\n\tif(chunkIds) {\n\t\tpriority = priority || 0;\n\t\tfor(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];\n\t\tdeferred[i] = [chunkIds, fn, priority];\n\t\treturn;\n\t}\n\tvar notFulfilled = Infinity;\n\tfor (var i = 0; i < deferred.length; i++) {\n\t\tvar chunkIds = deferred[i][0];\n\t\tvar fn = deferred[i][1];\n\t\tvar priority = deferred[i][2];\n\t\tvar fulfilled = true;\n\t\tfor (var j = 0; j < chunkIds.length; j++) {\n\t\t\tif ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every(function(key) { return __webpack_require__.O[key](chunkIds[j]); })) {\n\t\t\t\tchunkIds.splice(j--, 1);\n\t\t\t} else {\n\t\t\t\tfulfilled = false;\n\t\t\t\tif(priority < notFulfilled) notFulfilled = priority;\n\t\t\t}\n\t\t}\n\t\tif(fulfilled) {\n\t\t\tdeferred.splice(i--, 1)\n\t\t\tvar r = fn();\n\t\t\tif (r !== undefined) result = r;\n\t\t}\n\t}\n\treturn result;\n};","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = function(module) {\n\tvar getter = module && module.__esModule ?\n\t\tfunction() { return module['default']; } :\n\t\tfunction() { return module; };\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","var getProto = Object.getPrototypeOf ? function(obj) { return Object.getPrototypeOf(obj); } : function(obj) { return obj.__proto__; };\nvar leafPrototypes;\n// create a fake namespace object\n// mode & 1: value is a module id, require it\n// mode & 2: merge all properties of value into the ns\n// mode & 4: return value when already ns object\n// mode & 16: return value when it's Promise-like\n// mode & 8|1: behave like require\n__webpack_require__.t = function(value, mode) {\n\tif(mode & 1) value = this(value);\n\tif(mode & 8) return value;\n\tif(typeof value === 'object' && value) {\n\t\tif((mode & 4) && value.__esModule) return value;\n\t\tif((mode & 16) && typeof value.then === 'function') return value;\n\t}\n\tvar ns = Object.create(null);\n\t__webpack_require__.r(ns);\n\tvar def = {};\n\tleafPrototypes = leafPrototypes || [null, getProto({}), getProto([]), getProto(getProto)];\n\tfor(var current = mode & 2 && value; typeof current == 'object' && !~leafPrototypes.indexOf(current); current = getProto(current)) {\n\t\tObject.getOwnPropertyNames(current).forEach(function(key) { def[key] = function() { return value[key]; }; });\n\t}\n\tdef['default'] = function() { return value; };\n\t__webpack_require__.d(ns, def);\n\treturn ns;\n};","// define getter functions for harmony exports\n__webpack_require__.d = function(exports, definition) {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.f = {};\n// This file contains only the entry chunk.\n// The chunk loading function for additional chunks\n__webpack_require__.e = function(chunkId) {\n\treturn Promise.all(Object.keys(__webpack_require__.f).reduce(function(promises, key) {\n\t\t__webpack_require__.f[key](chunkId, promises);\n\t\treturn promises;\n\t}, []));\n};","// This function allow to reference async chunks\n__webpack_require__.u = function(chunkId) {\n\t// return url for filenames based on template\n\treturn \"js/\" + chunkId + \".\" + {\"13\":\"06cd2e07\",\"43\":\"fb5b896b\",\"49\":\"f2c20221\",\"55\":\"d111b5d7\",\"109\":\"350c7c05\",\"148\":\"2b6347d2\",\"200\":\"4dc78eed\",\"208\":\"65de7a32\",\"236\":\"207c840f\",\"420\":\"fb240bdb\",\"590\":\"387eb152\",\"595\":\"96320e8c\",\"611\":\"77fb901c\",\"675\":\"a10f8029\",\"699\":\"15a1d044\",\"731\":\"a686c60c\",\"733\":\"320f4a50\",\"818\":\"44b91e54\",\"954\":\"898da33a\",\"978\":\"44af7ef6\"}[chunkId] + \".js\";\n};","// This function allow to reference async chunks\n__webpack_require__.miniCssF = function(chunkId) {\n\t// return url for filenames based on template\n\treturn undefined;\n};","__webpack_require__.g = (function() {\n\tif (typeof globalThis === 'object') return globalThis;\n\ttry {\n\t\treturn this || new Function('return this')();\n\t} catch (e) {\n\t\tif (typeof window === 'object') return window;\n\t}\n})();","__webpack_require__.hmd = function(module) {\n\tmodule = Object.create(module);\n\tif (!module.children) module.children = [];\n\tObject.defineProperty(module, 'exports', {\n\t\tenumerable: true,\n\t\tset: function() {\n\t\t\tthrow new Error('ES Modules may not assign module.exports or exports.*, Use ESM export syntax, instead: ' + module.id);\n\t\t}\n\t});\n\treturn module;\n};","__webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }","var inProgress = {};\nvar dataWebpackPrefix = \"mobilitydcatap-ui:\";\n// loadScript function to load a script via script tag\n__webpack_require__.l = function(url, done, key, chunkId) {\n\tif(inProgress[url]) { inProgress[url].push(done); return; }\n\tvar script, needAttach;\n\tif(key !== undefined) {\n\t\tvar scripts = document.getElementsByTagName(\"script\");\n\t\tfor(var i = 0; i < scripts.length; i++) {\n\t\t\tvar s = scripts[i];\n\t\t\tif(s.getAttribute(\"src\") == url || s.getAttribute(\"data-webpack\") == dataWebpackPrefix + key) { script = s; break; }\n\t\t}\n\t}\n\tif(!script) {\n\t\tneedAttach = true;\n\t\tscript = document.createElement('script');\n\n\t\tscript.charset = 'utf-8';\n\t\tscript.timeout = 120;\n\t\tif (__webpack_require__.nc) {\n\t\t\tscript.setAttribute(\"nonce\", __webpack_require__.nc);\n\t\t}\n\t\tscript.setAttribute(\"data-webpack\", dataWebpackPrefix + key);\n\n\t\tscript.src = url;\n\t}\n\tinProgress[url] = [done];\n\tvar onScriptComplete = function(prev, event) {\n\t\t// avoid mem leaks in IE.\n\t\tscript.onerror = script.onload = null;\n\t\tclearTimeout(timeout);\n\t\tvar doneFns = inProgress[url];\n\t\tdelete inProgress[url];\n\t\tscript.parentNode && script.parentNode.removeChild(script);\n\t\tdoneFns && doneFns.forEach(function(fn) { return fn(event); });\n\t\tif(prev) return prev(event);\n\t}\n\tvar timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000);\n\tscript.onerror = onScriptComplete.bind(null, script.onerror);\n\tscript.onload = onScriptComplete.bind(null, script.onload);\n\tneedAttach && document.head.appendChild(script);\n};","// define __esModule on exports\n__webpack_require__.r = function(exports) {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","__webpack_require__.nmd = function(module) {\n\tmodule.paths = [];\n\tif (!module.children) module.children = [];\n\treturn module;\n};","__webpack_require__.p = \"/mobilitydcatap-ui/\";","// no baseURI\n\n// object to store loaded and loading chunks\n// undefined = chunk not loaded, null = chunk preloaded/prefetched\n// [resolve, reject, Promise] = chunk loading, 0 = chunk loaded\nvar installedChunks = {\n\t524: 0\n};\n\n__webpack_require__.f.j = function(chunkId, promises) {\n\t\t// JSONP chunk loading for javascript\n\t\tvar installedChunkData = __webpack_require__.o(installedChunks, chunkId) ? installedChunks[chunkId] : undefined;\n\t\tif(installedChunkData !== 0) { // 0 means \"already installed\".\n\n\t\t\t// a Promise means \"currently loading\".\n\t\t\tif(installedChunkData) {\n\t\t\t\tpromises.push(installedChunkData[2]);\n\t\t\t} else {\n\t\t\t\tif(true) { // all chunks have JS\n\t\t\t\t\t// setup Promise in chunk cache\n\t\t\t\t\tvar promise = new Promise(function(resolve, reject) { installedChunkData = installedChunks[chunkId] = [resolve, reject]; });\n\t\t\t\t\tpromises.push(installedChunkData[2] = promise);\n\n\t\t\t\t\t// start chunk loading\n\t\t\t\t\tvar url = __webpack_require__.p + __webpack_require__.u(chunkId);\n\t\t\t\t\t// create error before stack unwound to get useful stacktrace later\n\t\t\t\t\tvar error = new Error();\n\t\t\t\t\tvar loadingEnded = function(event) {\n\t\t\t\t\t\tif(__webpack_require__.o(installedChunks, chunkId)) {\n\t\t\t\t\t\t\tinstalledChunkData = installedChunks[chunkId];\n\t\t\t\t\t\t\tif(installedChunkData !== 0) installedChunks[chunkId] = undefined;\n\t\t\t\t\t\t\tif(installedChunkData) {\n\t\t\t\t\t\t\t\tvar errorType = event && (event.type === 'load' ? 'missing' : event.type);\n\t\t\t\t\t\t\t\tvar realSrc = event && event.target && event.target.src;\n\t\t\t\t\t\t\t\terror.message = 'Loading chunk ' + chunkId + ' failed.\\n(' + errorType + ': ' + realSrc + ')';\n\t\t\t\t\t\t\t\terror.name = 'ChunkLoadError';\n\t\t\t\t\t\t\t\terror.type = errorType;\n\t\t\t\t\t\t\t\terror.request = realSrc;\n\t\t\t\t\t\t\t\tinstalledChunkData[1](error);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t\t__webpack_require__.l(url, loadingEnded, \"chunk-\" + chunkId, chunkId);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n};\n\n// no prefetching\n\n// no preloaded\n\n// no HMR\n\n// no HMR manifest\n\n__webpack_require__.O.j = function(chunkId) { return installedChunks[chunkId] === 0; };\n\n// install a JSONP callback for chunk loading\nvar webpackJsonpCallback = function(parentChunkLoadingFunction, data) {\n\tvar chunkIds = data[0];\n\tvar moreModules = data[1];\n\tvar runtime = data[2];\n\t// add \"moreModules\" to the modules object,\n\t// then flag all \"chunkIds\" as loaded and fire callback\n\tvar moduleId, chunkId, i = 0;\n\tif(chunkIds.some(function(id) { return installedChunks[id] !== 0; })) {\n\t\tfor(moduleId in moreModules) {\n\t\t\tif(__webpack_require__.o(moreModules, moduleId)) {\n\t\t\t\t__webpack_require__.m[moduleId] = moreModules[moduleId];\n\t\t\t}\n\t\t}\n\t\tif(runtime) var result = runtime(__webpack_require__);\n\t}\n\tif(parentChunkLoadingFunction) parentChunkLoadingFunction(data);\n\tfor(;i < chunkIds.length; i++) {\n\t\tchunkId = chunkIds[i];\n\t\tif(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {\n\t\t\tinstalledChunks[chunkId][0]();\n\t\t}\n\t\tinstalledChunks[chunkId] = 0;\n\t}\n\treturn __webpack_require__.O(result);\n}\n\nvar chunkLoadingGlobal = self[\"webpackChunkmobilitydcatap_ui\"] = self[\"webpackChunkmobilitydcatap_ui\"] || [];\nchunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));\nchunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));","// startup\n// Load entry module and return exports\n// This entry module depends on other loaded chunks and execution need to be delayed\nvar __webpack_exports__ = __webpack_require__.O(undefined, [504], function() { return __webpack_require__(75215); })\n__webpack_exports__ = __webpack_require__.O(__webpack_exports__);\n"],"names":["attrs","render","staticRenderFns","staticClass","_c","_vm","_v","name","component","data","app_name","app_logo","require","path_items","components","Footer","Topbar","username","window","localStorage","getItem","methods","Vue","use","Vuetify","theme","themes","light","primary","_l","alert_message","value","valid","callback","expression","key","formKey","asset","on","staticStyle","create_object","model","selectedFormat","domProps","saved_asset_rdf","$$v","VJsf","props","schema","Object","options","emits","watch","handler","newValue","deep","immediate","message","String","alert_type","_s","title","type","required","subtitle","third_line","freetext","image","show_breadcrumbs","Boolean","ajv","Ajv","JsonForm","PageTitle","Alert","template_engine","template","asset_schema","initial_asset","saved_asset","serialized_rdf","alert_messages","selectedPdf","pdfUrl","parseError","formats","parsers","keys","editorPrefixes","context","languages","mounted","compile","form_template","onParsingFailed","e","console","error","detail","onPrefixesParsed","prefixes","join","onSerialized","downloadRDF","push","formatToExtension","fileExtension","blob","Blob","url","URL","createObjectURL","link","document","createElement","href","setAttribute","body","appendChild","click","removeChild","revokeObjectURL","set_asset_value","event","slugify","str","normalize","replace","trim","toLowerCase","$refs","form","validate","header","creation_time","Date","toISOString","last_updated","asset_type","id","uuidv4","obj","data_platform_url","log","Router","router","mode","routes","path","AssetCreate","meta","config","productionTip","ignoredElements","Resource","beforeEach","to","from","next","filter","moment","format","toString","replaceAll","vuetify","h","App","$mount","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","undefined","exports","module","loaded","__webpack_modules__","call","m","deferred","O","result","chunkIds","fn","priority","notFulfilled","Infinity","i","length","fulfilled","j","every","splice","r","n","getter","__esModule","d","a","leafPrototypes","getProto","getPrototypeOf","__proto__","t","this","then","ns","create","def","current","indexOf","getOwnPropertyNames","forEach","definition","o","defineProperty","enumerable","get","f","chunkId","Promise","all","reduce","promises","u","miniCssF","g","globalThis","Function","hmd","children","set","Error","prop","prototype","hasOwnProperty","inProgress","dataWebpackPrefix","l","done","script","needAttach","scripts","getElementsByTagName","s","getAttribute","charset","timeout","nc","src","onScriptComplete","prev","onerror","onload","clearTimeout","doneFns","parentNode","setTimeout","bind","target","head","Symbol","toStringTag","nmd","paths","p","installedChunks","installedChunkData","promise","resolve","reject","loadingEnded","errorType","realSrc","request","webpackJsonpCallback","parentChunkLoadingFunction","moreModules","runtime","some","chunkLoadingGlobal","self","__webpack_exports__"],"sourceRoot":""} \ No newline at end of file diff --git a/dist/js/chunk-vendors.1bff00ef.js b/dist/js/chunk-vendors.1bff00ef.js new file mode 100644 index 0000000..764b49a --- /dev/null +++ b/dist/js/chunk-vendors.1bff00ef.js @@ -0,0 +1,94 @@ +(self["webpackChunkmobilitydcatap_ui"]=self["webpackChunkmobilitydcatap_ui"]||[]).push([[504],{76063:function(e,t,r){const i=r(91565),n=/([\x00-\x20<>"{}|^`\\]|%(?![0-9A-F][0-9A-F]))/g,s=(e,t)=>{let r=t.codePointAt(0).toString(16)+"";return r.length>4?"\\U"+r.padStart(8,"0"):"\\u"+r.padStart(4,"0")},o=e=>e.replace(n,s),a=/^(?:[\u0000-@[-`{-\u00bf\u00d7\u00f7\u0300-\u306f\u037e\u2000-\u200b\u200e-\u206f\u2190-\u2bff\u2ff0-\u3000\ud800-\uf8ff\ufdd0-\ufddf\ufffe\uffff].+|(?:.+?[\u0000-,\/:-@[-^`{-\u00b6\u00b8-\u00bf\u00d7\u00f7\u037e\u2000-\u200b\u200e-\u203e\u2041-\u206f\u2190-\u2bff\u2ff0-\u3000\ud800-\uf8ff\ufdd0-\ufddf\ufffe\uffff].*)|.+\.)$/,l=/^(?:\\|[\u0000-\/;-@[-^`{-\u00bf\u00d7\u00f7\u0300-\u306f\u037e\u2000-\u200b\u200e-\u206f\u2190-\u2bff\u2ff0-\u3000\ud800-\uf8ff\ufdd0-\ufddf\ufffe\uffff].+|(?:.+?(?:\\|[\u0000-,\/;-@[-^`{-\u00b6\u00b8-\u00bf\u00d7\u00f7\u037e\u2000-\u200b\u200e-\u203e\u2041-\u206f\u2190-\u2bff\u2ff0-\u3000\ud800-\uf8ff\ufdd0-\ufddf\ufffe\uffff]).+)|(?:.+?(?:\\|[\u0000-,.\/;-@[-^`{-\u00b6\u00b8-\u00bf\u00d7\u00f7\u037e\u2000-\u200b\u200e-\u203e\u2041-\u206f\u2190-\u2bff\u2ff0-\u3000\ud800-\uf8ff\ufdd0-\ufddf\ufffe\uffff])))$/,u=/^([Tt](rue)?|TRUE)$/,c=/^([Ff](alse)?|FALSE)$/,h="xxxxxxxx_xxxx_4xxx_yxxx_xxxxxxxxxxxx",d=/[xy]/g,f=()=>{let e=Date.now();return"undefined"!==typeof performance&&(e+=performance.now()),h.replace(d,(t=>{let r=(e+16*Math.random())%16|0;return e=Math.floor(e/16),("x"===t?r:3&r|8).toString(16)}))},p=Symbol("prefix-cache"),m=/[$^*()+[\\{}|.?]/g,g="((?:[A-Za-z\\xc0-\\xd6\\xd8-\\xf6\\xf8-\\u{02ff}\\u{0370}-\\u{037d}\\u{037f}-\\u{1fff}\\u{200c}-\\u{200d}\\u{2070}-\\u{218f}\\u{2c00}-\\u{2fef}\\u{3001}-\\u{d7ff}\\u{f900}-\\u{fdcf}\\u{fdf0}-\\u{fffd}\\u{10000}-\\u{effff}_:0-9]|%[A-Fa-f0-9]{2}|\\\\[_~.\\-!$&'()*+,;=/?#@%])(?:(?:[A-Za-z\\xc0-\\xd6\\xd8-\\xf6\\xf8-\\u{02ff}\\u{0370}-\\u{037d}\\u{037f}-\\u{1fff}\\u{200c}-\\u{200d}\\u{2070}-\\u{218f}\\u{2c00}-\\u{2fef}\\u{3001}-\\u{d7ff}\\u{f900}-\\u{fdcf}\\u{fdf0}-\\u{fffd}\\u{10000}-\\u{effff}_\\-0-9\\xb7\\u{0300}-\\u{036f}\\u{203f}-\\u{2040}.:]|%[A-Fa-f0-9]{2}|\\\\[_~.\\-!$&'()*+,;=/?#@%])*(?:[A-Za-z\\xc0-\\xd6\\xd8-\\xf6\\xf8-\\u{02ff}\\u{0370}-\\u{037d}\\u{037f}-\\u{1fff}\\u{200c}-\\u{200d}\\u{2070}-\\u{218f}\\u{2c00}-\\u{2fef}\\u{3001}-\\u{d7ff}\\u{f900}-\\u{fdcf}\\u{fdf0}-\\u{fffd}\\u{10000}-\\u{effff}_\\-0-9\\xb7\\u{0300}-\\u{036f}\\u{203f}-\\u{2040}:]|%[A-Fa-f0-9]{2}|\\\\[_~.\\-!$&'()*+,;=/?#@%]))?)$";function v(e,t=!1){let r=[],i={};for(let n in e){let s=e[n];t&&a.test(n)||(i[s]=n,r.push(s.replace(m,"\\$&")))}return r.length?(e[p]={_r_iris:new RegExp(`^(${r.join("|")})${g}`,"u"),_h_inverse:i},Object.freeze(e)):e}const y=(e,t)=>{let r=t[p];if(r){let t=r._r_iris.exec(e);if(t)return r._h_inverse[t[1]]+":"+t[2]}else{let r="",i="",n=-1;for(let s in t){let o=t[s];if(0===e.indexOf(o)&&o.length>n&&!a.test(s)){let t=e.slice(o.length);l.test(t)||(i=t,r=s,n=o.length)}}if(-1!==n)return r+":"+i}return"<"+e+">"},b=(e,t={})=>{let r=t[p];if(r){let t=r._r_iris.exec(e);if(t)return r._h_inverse[t[1]]+":"+t[2]}else{let r="",i=-1;for(let n in t){let s=t[n];e.startsWith(s)&&s.length>i&&(r=n,i=s.length)}if(-1!==i)return r+":"+e.slice(i)}return">"+e},w=/^([^:]*):(.*)$/;function _(e,t={},r=!1){switch(e[0]){case">":return"<"+e.slice(1)+">";case"_":return e.length<=2||"#"===e[2]?(new J)[r?"verbose":"terse"]():e;case'"':return JSON.stringify(e.slice(1));case"@":{let t=e.indexOf('"');return JSON.stringify(e.slice(t+1))+e.slice(0,t)}case"^":{let i=e.indexOf('"');return JSON.stringify(e.slice(i+1))+"^^"+_(e.slice(1,i),t,r)}case"*":return"";case"<":case"`":return ne.c1(e).terse(t);default:{if("a"===e)return r?"":"a";let[,i,n]=w.exec(e);return r||l.test(n)||a.test(i)?"<"+t[i]+n+">":e}}}class k{valueOf(){return this.concise()}toString(){return this.concise()}equals(e){return!!e&&(this===e||e.termType===this.termType&&e.value===this.value)}}Object.assign(k.prototype,{isGraphyTerm:!0});class x extends k{constructor(e){super(),this.value=e}concise(e={}){return b(this.value,e)}terse(e={},t=!1){return y(o(this.value),e,t)}verbose(){return"<"+o(this.value)+">"}isolate(){return{termType:"NamedNode",value:this.value}}}Object.assign(x.prototype,{termType:"NamedNode",isNamedNode:!0});const S=new x("http://www.w3.org/1999/02/22-rdf-syntax-ns#type");S.isRdfTypeAlias=!0;const M=new x("http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"),E=M.isolate(),A=new x("http://www.w3.org/1999/02/22-rdf-syntax-ns#first"),C=new x("http://www.w3.org/1999/02/22-rdf-syntax-ns#rest"),$=new x("http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"),O=new x("http://www.w3.org/2001/XMLSchema#date"),P=new x("http://www.w3.org/2001/XMLSchema#dateTime"),T=new x("http://www.w3.org/2001/XMLSchema#string");class I extends k{equals(e){return!!e&&(this===e||"Literal"===e.termType&&e.value===this.value&&this.datatype.equals(e.datatype)&&e.language===this.language)}verbose(){return JSON.stringify(this.value)+(this.language?"@"+this.language:"^^"+this.datatype.verbose())}concise(e){return this.language?"@"+this.language+'"'+this.value:"^"+b(this.datatype.value,e)+'"'+this.value}terse(e={}){let t=this.datatype.terse(e);return JSON.stringify(this.value)+(this.language?"@"+this.language:"^^"+t)}isolate(){return{termType:"Literal",value:this.value,language:this.language,datatype:this.datatype.isolate()}}}Object.assign(I.prototype,{datatype:T,language:"",termType:"Literal",isLiteral:!0,isSimple:!1});class D extends I{constructor(e,t){super(),this.value=e,this.language=("@"===t[0]?t.slice(1):t).toLowerCase()}verbose(){return JSON.stringify(this.value)+"@"+this.language}concise(){return"@"+this.language+'"'+this.value}terse(){return JSON.stringify(this.value)+"@"+this.language}isolate(){return{termType:"Literal",value:this.value,language:this.language,datatype:E}}}Object.assign(D.prototype,{datatype:M,isLanguaged:!0});class L extends I{verbose(){return JSON.stringify(this.value)+"^^"+this.datatype.verbose()}concise(e){return"^"+b(this.datatype.value,e)+'"'+this.value}terse(e={}){let t=this.datatype.terse(e);return JSON.stringify(this.value)+"^^"+t}isolate(){return{termType:"Literal",value:this.value,language:this.language,datatype:this.datatype.isolate()}}}Object.assign(L.prototype,{isDatatyped:!0});class N extends L{constructor(e,t){super(),this.value=e,this.datatype=t}}class R extends k{constructor(e){super(),this.value=e}get isSimple(){return!this.language&&!this.datatype.equals(T)}get isLanguaged(){return!!this.language}get isDatatyped(){return T.equals(this.datatype)}equals(e){return!!e&&(this===e||"Literal"===e.termType&&e.value===this.value&&this.datatype.equals(e.datatype)&&e.language===this.language)}verbose(){return JSON.stringify(this.value)+(this.language?"@"+this.language:"^^"+this.datatype.verbose())}concise(e){return this.language?"@"+this.language+'"'+this.value:"^"+b(this.datatype.value,e)+'"'+this.value}terse(e={}){let t=this.datatype.terse(e);return JSON.stringify(this.value)+(this.language?"@"+this.language:"^^"+t)}isolate(){return{termType:"Literal",value:this.value,language:this.language,datatype:this.datatype.isolate()}}}Object.assign(R.prototype,{datatype:T,language:"",termType:"Literal",isLiteral:!0});class j extends I{constructor(e){super(),this.value=e}verbose(){return JSON.stringify(this.value)}concise(){return'"'+this.value}terse(){return JSON.stringify(this.value)}}Object.assign(j.prototype,{isSimple:!0});const B=new x("http://www.w3.org/2001/XMLSchema#integer");class F extends L{static from(e){let t=new F(+e);return t.value=e,t}constructor(e){super(),this.value=e+"",this.number=e}concise(e={}){return"^"+B.concise(e)+'"'+this.value}terse(){return this.value.includes("e")?`"${this.value}"^^`:this.value}}Object.assign(F.prototype,{datatype:B,isNumeric:!0,isInteger:!0});const z=new x("http://www.w3.org/2001/XMLSchema#double");class V extends L{static from(e){let t=new V(+e);return t.value=e,t}constructor(e){super(),this.value=e+"",this.number=e}concise(e={}){return"^"+z.concise(e)+'"'+this.value}terse(){return this.number.toExponential()}}Object.assign(V.prototype,{datatype:z,isNumeric:!0,isDouble:!0});const q=new x("http://www.w3.org/2001/XMLSchema#decimal");class U extends L{static from(e){let t=new U(+e);return t.value=e,t}constructor(e){super(),this.value=e+"",this.number=e}concise(e={}){return"^"+q.concise(e)+'"'+this.value}terse(){return this.value.includes("e")?`"${this.value}"^^`:this.value+(this.value.includes(".")?"":".0")}}Object.assign(U.prototype,{datatype:q,isNumeric:!0,isDecimal:!0});const H=new x("http://www.w3.org/2001/XMLSchema#boolean");class W extends L{static from(e){let t=new W(+e);return t.value=e,t}constructor(e){super(),this.value=e+"",this.boolean=e}concise(e={}){return"^"+H.concise(e)+'"'+this.value}terse(){return this.value+""}}Object.assign(W.prototype,{datatype:H,isBoolean:!0});class K extends V{constructor(){super(1/0),this.value="INF"}terse(e){return'"INF"^^'+z.terse(e)}}Object.assign(K.prototype,{isInfinite:!0});class Y extends V{constructor(){super(-1/0),this.value="-INF"}terse(e){return'"-INF"^^'+z.terse(e)}}Object.assign(Y.prototype,{isInfinite:!0});class G extends V{constructor(){super(NaN),this.value="NaN"}terse(e){return'"NaN"^^'+z.terse(e)}}function Z(e,t=!1){this.value=e,this.isAnonymous=t}function J(){}Object.assign(G.prototype,{isNaN:!0}),Z.prototype=Object.assign(Object.create(k.prototype),{termType:"BlankNode",isBlankNode:!0,concise(){return"_:"+this.value},terse(){return"_:"+this.value},verbose(){return"_:"+this.value},isolate(){return{termType:"BlankNode",value:this.value}}}),J.prototype=Object.assign(Object.create(Z.prototype),{isAnonymous:!0,isEphemeral:!0,concise(){return"_:#"+this.value},terse(){return"[]"},verbose(){return"_:"+this.value},isolate(){return{termType:"BlankNode",value:this.value}},equals(){return!1}}),Object.defineProperty(J.prototype,"value",{get(){return"_"+f()}});class X extends k{constructor(e){super(),this.value=e}concise(){return"?"+this.value}terse(){throw new Error("Cannot call .terse() on 'Variable' term type")}verbose(){throw new Error("Cannot call .verbose() on 'Variable' term type")}isolate(){return{termType:"Variable",value:this.value}}}function Q(){}function ee(){}Object.assign(X.prototype,{termType:"Variable",isVariable:!0}),Q.prototype=Object.assign(Object.create(k.prototype),{value:"",termType:"DefaultGraph",isDefaultGraph:!0,concise(){return"*"},terse(){return""},verbose(){return""},isolate(){return{termType:"DefaultGraph",value:""}}}),ee.prototype=Object.assign(Object.create(k.prototype),{value:"",termType:"NoGraph",concise(){return""},terse(){return""},verbose(){return""},isolate(){return{termType:"NoGraph",value:""}}});const te=new Q;function re(e,t,r,i=te){this.subject=e,this.predicate=t,this.object=r,this.graph=i}Object.assign(re.prototype,{isGraphyQuad:!0,equals(e){return!!e&&(this===e||this.object.equals(e.object)&&this.subject.equals(e.subject)&&this.predicate.equals(e.predicate)&&this.graph.equals(e.graph))},valueOf(){return this.verbose()},concise(e={}){return[this.subject.concise(e),this.predicate.concise(e),this.object.concise(e),this.graph.concise(e)]},terse(e){let t=this.graph.isDefaultGraph;return(t?"":this.graph.terse(e)+" { ")+this.subject.terse(e)+" "+this.predicate.terse(e)+" "+this.object.terse(e)+" ."+(t?"":" }")},verbose(){return this.subject.verbose()+" "+this.predicate.verbose()+" "+this.object.verbose()+" "+(this.graph.isDefaultGraph?"":this.graph.verbose()+" ")+"."},isolate(){return{subject:this.subject.isolate(),predicate:this.predicate.isolate(),object:this.object.isolate(),graph:this.graph.isolate()}}});let ie={namedNode(e){return new x(e)},blankNode(e,t){return new Z(e,t)},literal(e){return new R(e)},defaultGraph(){return new Q},quad(e,t,r,i){return new re(e,t,r,i||te)},integer(e){return F.from(e)},double(e){return V.from(e)},decimal(e){return U.from(e)},boolean(e){return new W(e)}};const ne=e.exports={concise:b,adopt(e){let t=Object.create(e),r=!1;if("function"!==typeof e.boolean){let i=e.namedNode("http://www.w3.org/2001/XMLSchema#boolean");t.boolean=t=>e.literal(t+"",i),r=!0}if("function"!==typeof e.double){let i=e.namedNode("http://www.w3.org/2001/XMLSchema#double");t.double=t=>e.literal(t+"",i),r=!0}if("function"!==typeof e.decimal){let i=e.namedNode("http://www.w3.org/2001/XMLSchema#decimal");t.decimal=t=>e.literal(t+"",i),r=!0}if("function"!==typeof e.integer){let i=e.namedNode("http://www.w3.org/2001/XMLSchema#integer");t.integer=t=>e.literal(t+"",i),r=!0}return"function"!==typeof e.simpleLiteral&&(t.simpleLiteral=t=>e.literal(t),r=!0),"function"!==typeof e.languagedLiteral&&(t.languagedLiteral=(t,r)=>e.literal(t,r),r=!0),"function"!==typeof e.datatypedLiteral&&(t.datatypedLiteral=(t,r)=>e.literal(t,r),r=!0),r?t:e},raw:ie,unfiltered:{...ie,literal(e,t){return!t||T.equals(t)?new j(e):"string"===typeof t?new D(e,t):T.equals(t)?new j(e):new N(e,t)},simpleLiteral(e){return new j(e)},languagedLiteral(e,t){return new D(e,t)},datatypedLiteral(e,t){return T.equals(t)?new j(e):new N(e,t)}},number(e){return"number"!==typeof e||Number.isFinite(e)&&!Number.isNaN(e)?Number.isInteger(e)||"bigint"===typeof e?ne.integer(e):ne.decimal(e):ne.double(e)},date(e){return ne.literal(e.toISOString().replace(/T.+$/,"Z"),O)},dateTime(e){return ne.literal(e.toISOString(),P)},namedNode(e){return new x(e)},ephemeral(){return new J},anonymous(){return new J},blankNode(e){if(!e)return new Z("_"+f(),!0);if("string"===typeof e)return new Z(e);throw new TypeError(`factory.blankNode(label) expects 'label' parameter to be falsy or a string; instead found: ${e}`)},literal(e,t){return!t||T.equals(t)?new j(e):"string"===typeof t?new D(e,t):new N(e,t)},integer(e){let t=typeof e;if("number"===t){if(!Number.isFinite(e)){if(Number.isNaN(e))throw new Error("XSD integer cannot encode NaN. Try using double");throw new Error("XSD integer cannot encode +/-infinity. Try using double")}if(!Number.isInteger(e))throw new Error("Number is not an integer: "+e);return new F(e)}if("string"===t){if(""===e)throw new Error("Refusing to serialize empty string as xsd:integer");let t=+e;if(Number.isNaN(t)||!Number.isInteger(t))throw new Error("Invalid integer string: "+e);return new F(t)}if("undefined"===t)throw new Error("Refusing to serialize undefined value as xsd:integer");if(null===e)throw new Error("Refusing to serialize null value as xsd:integer");throw new Error("XSD integer expects a number type or integer string")},double(e){let t=typeof e;if("number"===t)return Number.isFinite(e)?new V(e):Number.isNaN(e)?new G:e>0?new K:new Y;if("string"===t){if(""===e)throw new Error("Refusing to serialize empty string as xsd:double");let t=+e;if(Number.isNaN(t))throw new Error("Invalid decimal string: "+e);return new V(t)}if("undefined"===t)throw new Error("Refusing to serialize undefined value as xsd:double");if(null===e)throw new Error("Refusing to serialize null value as xsd:double");throw new Error("XSD double expects a number type or double string")},decimal(e){let t=typeof e;if("number"===t){if(!Number.isFinite(e)){if(Number.isNaN(e))throw new Error("XSD decimal cannot encode NaN. Try using double");throw new Error("XSD decimal cannot encode +/-infinity. Try using double")}return new U(e)}if("string"===t){if(""===e)throw new Error("Refusing to serialize empty string as xsd:decimal");let t=+e;if(Number.isNaN(t))throw new Error("Invalid decimal string: "+e);return new U(t)}if("undefined"===t)throw new Error("Refusing to serialize undefined value as xsd:decimal");if(null===e)throw new Error("Refusing to serialize null value as xsd:decimal");throw new Error("XSD decimal expects a number type or decimal string")},boolean(e){let t=typeof e;if("boolean"===t)return new W(e);if("number"===t){if(1===e)return new W(!0);if(0===e)return new W(!1);throw new Error("Boolean value 'w_value' must be either a '1' or '0' if using numbers")}if("string"===t){if(u.test(e))return new W(!0);if(c.test(e))return new W(!1);if(""===e)throw new Error("Refusing to serialize empty string as xsd:boolean");throw new Error("Invalid boolean string: "+e)}if("undefined"===t)throw new Error("Refusing to serialize undefined value as xsd:boolean");if(null===e)throw new Error("Refusing to serialize null value as xsd:boolean");throw new Error("XSD boolean expects a boolean type or boolean string")},defaultGraph(){return new Q},variable(e){return new X(e)},triple(e,t,r){let i=new Error("It is strongly encouraged to use .quad() instead of .triple()");return console.warn(i.stack.replace(/^(\s*)Error:/,"$1Warning:")),new re(e,t,r)},quad(e,t,r,i){return new re(e,t,r,i||te)},term(e,t){return"string"===typeof e?ne.c1(e,t):ne.from.rdfjs_term(e)},c1(e,t={}){switch(e[0]){case"^":{let r=e.indexOf('"');if(-1===r)throw new Error(`Invalid concise-term string, no content literal delimiter found: '${e}'`);let i=e.slice(1,r);return ne.literal(e.slice(r+1),ne.c1_node_explicit(i,t))}case"@":{let t=e.indexOf('"');if(-1===t)throw new Error(`Invalid concise-term string, no content literal delimiter found: '${e}'`);let r=e.slice(1,t);return ne.literal(e.slice(t+1),r)}case'"':return ne.literal(e.slice(1));default:return ne.c1_node(e,t)}},c1_node(e,t={}){if("a"===e)return S;if("*"===e)return ne.defaultGraph();if("_"===e[0]){if(":"!==e[1])throw new Error(`Invliad concise-term string, prefixes are not allowed to start with an underscore: '${e}'`);return"#"===e[2]||2===e.length?ne.ephemeral():ne.blankNode(e.slice(2))}return ne.c1_node_explicit(e,t)},c1_named_node(e,t={}){return"a"===e?S:ne.c1_node_explicit(e,t)},c1_node_explicit(e,t={}){switch(e[0]){case">":return ne.namedNode(e.slice(1));case"<":throw new Error(`Whoops! It looks like this concise-term string starts with a '<' character. Remember to use '>' if you are trying to make an absolute IRI reference.\nInvalid concise-term string '${e}'`);case"`":throw new Error(`The backtick character '\`' is reserved for concise-struct key directives and should not be used in the object position.\nInvalid concise-term string '${e}'`);default:return this.c1_prefixed_node(e,t)}},c1_prefixed_node(e,t={}){let r=e.indexOf(":");if(-1===r)throw new Error(`A relative or prefixed node must include a ':' character. \nInvalid concise-term string for node: '${e}'`);let i=e.slice(0,r),n=e.slice(r+1);if(i in t)return ne.namedNode(t[i]+n);throw new Error(`Prefix not defined: '${i}'`)},c1_to_nt:_,*quads(e,t={}){for(let r in e)yield*ne.triples(e[r],t,r)},*triples(e,t={},r="*"){let i=ne.c1(r,t);for(let n in e){let r=ne.c1(n,t),s=e[n];yield*ne.pairs(i,r,s,t)}},*pairs(e,t,r,i={}){for(let n in r){let s=ne.c1(n,i),o=r[n];yield*ne.objects(e,t,s,o,i)}},*collection(e,t,r,i={}){yield*ne.objects(e,t,A,r[0],i);let n=r.slice(1);if(n.length){let r=ne.blankNode();yield new re(t,C,r,e),yield*ne.collection(e,r,n,i)}else yield new re(t,C,$,e)},*objects(e,t,r,i,n,s=!1){let o=typeof i;switch(o){case"string":yield new re(t,r,ne.c1(i,n),e);break;case"number":yield new re(t,r,ne.number(i),e);break;case"object":if(Array.isArray(i))if(s){let s=ne.blankNode();yield new re(t,r,s,e),yield*ne.collection(e,s,i,n)}else for(let s of i)yield*ne.objects(e,t,r,s,n,!0);else{let s=ne.blankNode();yield new re(t,r,s,e),yield*ne.pairs(e,s,i,n)}break;default:throw new Error("invalid object type: "+typeof i)}},from:{term(e){return null===e||e.isGraphyTerm?e:ne.from.rdfjs_term(e)},quad(e){if(null===e)return e;if(e.isGraphyQuad)return e;let t=ne.from;return new re(t.rdfjs_term(e.subject),t.rdfjs_term(e.predicate),t.rdfjs_term(e.object),e.graph?t.rdfjs_term(e.graph):te)},rdfjs_term(e){switch(e.termType){case"NamedNode":return new x(e.value);case"BlankNode":return new Z(e.value);case"Literal":return ne.literal(e.value,e.language?e.language:e.datatype?new x(e.datatype.value):null);case"DefaultGraph":return new Q;default:throw new TypeError(`invalid termType: ${e.termType}`)}},sparql_result(e){switch(e.type){case"uri":return new x(e.value);case"literal":case"typed-literal":return"xml:lang"in e?new D(e.value,e["xml:lang"]):"datatype"in e&&"http://www.w3.org/2001/XMLSchema#string"!==e.datatype?new N(e.value,new x(e.datatype)):new j(e.value);case"bnode":return new Z(e.value);default:throw new Error(`unexpected SPARQL Result JSON Format Term type: ${e.type}`)}}},to:{boolean:e=>W.from(e),integer:e=>F.from(e),decimal:e=>U.from(e),double:e=>V.from(e)},comment(e={}){return`\`[${f()}]${JSON.stringify({...e,type:"comment"})}`},newlines(){return`\`[${f()}]{"type":"newlines"}`},config(e){if("string"!==typeof e)throw new TypeError("Expected 'key' argument to be a string, instead found "+typeof e);return`\`[${f()}]{"type":"config","value":${JSON.stringify(e)}}`},hash(e){let t=ne.from.quad(e),r=i.createHash("sha256");return r.update(t.verbose()),r.digest("hex")},cache_prefixes:v,cachePrefixes:v,terse:y,clean_iri:o,cleanIri:o,$_PREFIX_CACHE:p};Object.assign(ne,{c3:ne.triples,c4:ne.quads,fromTerm:ne.from.term,fromQuad:ne.from.quad})},81656:function(e,t,r){"use strict";function i(e,t,r,i,n,s,o,a){var l,u="function"===typeof e?e.options:e;if(t&&(u.render=t,u.staticRenderFns=r,u._compiled=!0),i&&(u.functional=!0),s&&(u._scopeId="data-v-"+s),o?(l=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||"undefined"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),n&&n.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},u._ssrRegister=l):n&&(l=a?function(){n.call(this,(u.functional?this.parent:this).$root.$options.shadowRoot)}:n),l)if(u.functional){u._injectStyles=l;var c=u.render;u.render=function(e,t){return l.call(t),c(e,t)}}else{var h=u.beforeCreate;u.beforeCreate=h?[].concat(h,l):[l]}return{exports:e,options:u}}r.d(t,{A:function(){return i}})},7849:function(e,t,r){"use strict";const{SymbolDispose:i}=r(36152),{AbortError:n,codes:s}=r(16653),{isNodeStream:o,isWebStream:a,kControllerErrorFunction:l}=r(98825),u=r(34756),{ERR_INVALID_ARG_TYPE:c}=s;let h;const d=(e,t)=>{if("object"!==typeof e||!("aborted"in e))throw new c(t,"AbortSignal",e)};e.exports.addAbortSignal=function(t,r){if(d(t,"signal"),!o(r)&&!a(r))throw new c("stream",["ReadableStream","WritableStream","Stream"],r);return e.exports.addAbortSignalNoValidate(t,r)},e.exports.addAbortSignalNoValidate=function(e,t){if("object"!==typeof e||!("aborted"in e))return t;const s=o(t)?()=>{t.destroy(new n(void 0,{cause:e.reason}))}:()=>{t[l](new n(void 0,{cause:e.reason}))};if(e.aborted)s();else{h=h||r(23774).addAbortListener;const n=h(e,s);u(t,n[i])}return t}},76491:function(e,t,r){"use strict";const{StringPrototypeSlice:i,SymbolIterator:n,TypedArrayPrototypeSet:s,Uint8Array:o}=r(36152),{Buffer:a}=r(48287),{inspect:l}=r(23774);e.exports=class{constructor(){this.head=null,this.tail=null,this.length=0}push(e){const t={data:e,next:null};this.length>0?this.tail.next=t:this.head=t,this.tail=t,++this.length}unshift(e){const t={data:e,next:this.head};0===this.length&&(this.tail=t),this.head=t,++this.length}shift(){if(0===this.length)return;const e=this.head.data;return 1===this.length?this.head=this.tail=null:this.head=this.head.next,--this.length,e}clear(){this.head=this.tail=null,this.length=0}join(e){if(0===this.length)return"";let t=this.head,r=""+t.data;while(null!==(t=t.next))r+=e+t.data;return r}concat(e){if(0===this.length)return a.alloc(0);const t=a.allocUnsafe(e>>>0);let r=this.head,i=0;while(r)s(t,r.data,i),i+=r.data.length,r=r.next;return t}consume(e,t){const r=this.head.data;if(es.length)){e===s.length?(t+=s,++n,r.next?this.head=r.next:this.head=this.tail=null):(t+=i(s,0,e),this.head=r,r.data=i(s,e));break}t+=s,e-=s.length,++n}while(null!==(r=r.next));return this.length-=n,t}_getBuffer(e){const t=a.allocUnsafe(e),r=e;let i=this.head,n=0;do{const a=i.data;if(!(e>a.length)){e===a.length?(s(t,a,r-e),++n,i.next?this.head=i.next:this.head=this.tail=null):(s(t,new o(a.buffer,a.byteOffset,e),r-e),this.head=i,i.data=a.slice(e));break}s(t,a,r-e),e-=a.length,++n}while(null!==(i=i.next));return this.length-=n,t}[Symbol.for("nodejs.util.inspect.custom")](e,t){return l(this,{...t,depth:0,customInspect:!1})}}},57123:function(e,t,r){"use strict";const{pipeline:i}=r(27944),n=r(84656),{destroyer:s}=r(91582),{isNodeStream:o,isReadable:a,isWritable:l,isWebStream:u,isTransformStream:c,isWritableStream:h,isReadableStream:d}=r(98825),{AbortError:f,codes:{ERR_INVALID_ARG_VALUE:p,ERR_MISSING_ARGS:m}}=r(16653),g=r(34756);e.exports=function(...e){if(0===e.length)throw new m("streams");if(1===e.length)return n.from(e[0]);const t=[...e];if("function"===typeof e[0]&&(e[0]=n.from(e[0])),"function"===typeof e[e.length-1]){const t=e.length-1;e[t]=n.from(e[t])}for(let i=0;i0&&!(l(e[i])||h(e[i])||c(e[i])))throw new p(`streams[${i}]`,t[i],"must be writable")}let r,v,y,b,w;function _(e){const t=b;b=null,t?t(e):e?w.destroy(e):M||S||w.destroy()}const k=e[0],x=i(e,_),S=!!(l(k)||h(k)||c(k)),M=!!(a(x)||d(x)||c(x));if(w=new n({writableObjectMode:!(null===k||void 0===k||!k.writableObjectMode),readableObjectMode:!(null===x||void 0===x||!x.readableObjectMode),writable:S,readable:M}),S){if(o(k))w._write=function(e,t,i){k.write(e,t)?i():r=i},w._final=function(e){k.end(),v=e},k.on("drain",(function(){if(r){const e=r;r=null,e()}}));else if(u(k)){const e=c(k)?k.writable:k,t=e.getWriter();w._write=async function(e,r,i){try{await t.ready,t.write(e).catch((()=>{})),i()}catch(err){i(err)}},w._final=async function(e){try{await t.ready,t.close().catch((()=>{})),v=e}catch(err){e(err)}}}const e=c(x)?x.readable:x;g(e,(()=>{if(v){const e=v;v=null,e()}}))}if(M)if(o(x))x.on("readable",(function(){if(y){const e=y;y=null,e()}})),x.on("end",(function(){w.push(null)})),w._read=function(){while(1){const e=x.read();if(null===e)return void(y=w._read);if(!w.push(e))return}};else if(u(x)){const e=c(x)?x.readable:x,t=e.getReader();w._read=async function(){while(1)try{const{value:e,done:r}=await t.read();if(!w.push(e))return;if(r)return void w.push(null)}catch{return}}}return w._destroy=function(e,t){e||null===b||(e=new f),y=null,r=null,v=null,null===b?t(e):(b=t,o(x)&&s(x,e))},w}},91582:function(e,t,r){"use strict";const i=r(65606),{aggregateTwoErrors:n,codes:{ERR_MULTIPLE_CALLBACK:s},AbortError:o}=r(16653),{Symbol:a}=r(36152),{kIsDestroyed:l,isDestroyed:u,isFinished:c,isServerRequest:h}=r(98825),d=a("kDestroy"),f=a("kConstruct");function p(e,t,r){e&&(e.stack,t&&!t.errored&&(t.errored=e),r&&!r.errored&&(r.errored=e))}function m(e,t){const r=this._readableState,i=this._writableState,s=i||r;return null!==i&&void 0!==i&&i.destroyed||null!==r&&void 0!==r&&r.destroyed?("function"===typeof t&&t(),this):(p(e,i,r),i&&(i.destroyed=!0),r&&(r.destroyed=!0),s.constructed?g(this,e,t):this.once(d,(function(r){g(this,n(r,e),t)})),this)}function g(e,t,r){let n=!1;function s(t){if(n)return;n=!0;const s=e._readableState,o=e._writableState;p(t,o,s),o&&(o.closed=!0),s&&(s.closed=!0),"function"===typeof r&&r(t),t?i.nextTick(v,e,t):i.nextTick(y,e)}try{e._destroy(t||null,s)}catch(t){s(t)}}function v(e,t){b(e,t),y(e)}function y(e){const t=e._readableState,r=e._writableState;r&&(r.closeEmitted=!0),t&&(t.closeEmitted=!0),(null!==r&&void 0!==r&&r.emitClose||null!==t&&void 0!==t&&t.emitClose)&&e.emit("close")}function b(e,t){const r=e._readableState,i=e._writableState;null!==i&&void 0!==i&&i.errorEmitted||null!==r&&void 0!==r&&r.errorEmitted||(i&&(i.errorEmitted=!0),r&&(r.errorEmitted=!0),e.emit("error",t))}function w(){const e=this._readableState,t=this._writableState;e&&(e.constructed=!0,e.closed=!1,e.closeEmitted=!1,e.destroyed=!1,e.errored=null,e.errorEmitted=!1,e.reading=!1,e.ended=!1===e.readable,e.endEmitted=!1===e.readable),t&&(t.constructed=!0,t.destroyed=!1,t.closed=!1,t.closeEmitted=!1,t.errored=null,t.errorEmitted=!1,t.finalCalled=!1,t.prefinished=!1,t.ended=!1===t.writable,t.ending=!1===t.writable,t.finished=!1===t.writable)}function _(e,t,r){const n=e._readableState,s=e._writableState;if(null!==s&&void 0!==s&&s.destroyed||null!==n&&void 0!==n&&n.destroyed)return this;null!==n&&void 0!==n&&n.autoDestroy||null!==s&&void 0!==s&&s.autoDestroy?e.destroy(t):t&&(t.stack,s&&!s.errored&&(s.errored=t),n&&!n.errored&&(n.errored=t),r?i.nextTick(b,e,t):b(e,t))}function k(e,t){if("function"!==typeof e._construct)return;const r=e._readableState,n=e._writableState;r&&(r.constructed=!1),n&&(n.constructed=!1),e.once(f,t),e.listenerCount(f)>1||i.nextTick(x,e)}function x(e){let t=!1;function r(r){if(t)return void _(e,null!==r&&void 0!==r?r:new s);t=!0;const n=e._readableState,o=e._writableState,a=o||n;n&&(n.constructed=!0),o&&(o.constructed=!0),a.destroyed?e.emit(d,r):r?_(e,r,!0):i.nextTick(S,e)}try{e._construct((e=>{i.nextTick(r,e)}))}catch(err){i.nextTick(r,err)}}function S(e){e.emit(f)}function M(e){return(null===e||void 0===e?void 0:e.setHeader)&&"function"===typeof e.abort}function E(e){e.emit("close")}function A(e,t){e.emit("error",t),i.nextTick(E,e)}function C(e,t){e&&!u(e)&&(t||c(e)||(t=new o),h(e)?(e.socket=null,e.destroy(t)):M(e)?e.abort():M(e.req)?e.req.abort():"function"===typeof e.destroy?e.destroy(t):"function"===typeof e.close?e.close():t?i.nextTick(A,e,t):i.nextTick(E,e),e.destroyed||(e[l]=!0))}e.exports={construct:k,destroyer:C,destroy:m,undestroy:w,errorOrDestroy:_}},84656:function(e,t,r){"use strict";const{ObjectDefineProperties:i,ObjectGetOwnPropertyDescriptor:n,ObjectKeys:s,ObjectSetPrototypeOf:o}=r(36152);e.exports=u;const a=r(21878),l=r(49498);o(u.prototype,a.prototype),o(u,a);{const e=s(l.prototype);for(let t=0;t{h=!1,e&&y(t,e),d(e)})),u._write=function(e,t,n){r.write(e,t)?n():i=n},u._final=function(e){r.end(),n=e},r.on("drain",(function(){if(i){const e=i;i=null,e()}})),r.on("finish",(function(){if(n){const e=n;n=null,e()}}))),c&&(p(t,(e=>{c=!1,e&&y(t,e),d(e)})),t.on("readable",(function(){if(a){const e=a;a=null,e()}})),t.on("end",(function(){u.push(null)})),u._read=function(){while(1){const e=t.read();if(null===e)return void(a=u._read);if(!u.push(e))return}}),u._destroy=function(e,s){e||null===l||(e=new m),a=null,i=null,n=null,null===l?s(e):(l=s,y(r,e),y(t,e))},u}e.exports=function e(t,r){if(h(t))return t;if(u(t))return O({readable:t});if(c(t))return O({writable:t});if(l(t))return O({writable:!1,readable:!1});if(d(t))return O({readable:w.fromWeb(t)});if(f(t))return O({writable:_.fromWeb(t)});if("function"===typeof t){const{value:e,write:n,final:s,destroy:o}=$(t);if(a(e))return x(C,e,{objectMode:!0,write:n,final:s,destroy:o});const l=null===e||void 0===e?void 0:e.then;if("function"===typeof l){let t;const r=A(l,e,(e=>{if(null!=e)throw new v("nully","body",e)}),(e=>{y(t,e)}));return t=new C({objectMode:!0,readable:!1,write:n,final(e){s((async()=>{try{await r,i.nextTick(e,null)}catch(err){i.nextTick(e,err)}}))},destroy:o})}throw new v("Iterable, AsyncIterable or AsyncFunction",r,e)}if(M(t))return e(t.arrayBuffer());if(a(t))return x(C,t,{objectMode:!0,writable:!1});if(d(null===t||void 0===t?void 0:t.readable)&&f(null===t||void 0===t?void 0:t.writable))return C.fromWeb(t);if("object"===typeof(null===t||void 0===t?void 0:t.writable)||"object"===typeof(null===t||void 0===t?void 0:t.readable)){const r=null!==t&&void 0!==t&&t.readable?u(null===t||void 0===t?void 0:t.readable)?null===t||void 0===t?void 0:t.readable:e(t.readable):void 0,i=null!==t&&void 0!==t&&t.writable?c(null===t||void 0===t?void 0:t.writable)?null===t||void 0===t?void 0:t.writable:e(t.writable):void 0;return O({readable:r,writable:i})}const n=null===t||void 0===t?void 0:t.then;if("function"===typeof n){let e;return A(n,t,(t=>{null!=t&&e.push(t),e.push(null)}),(t=>{y(e,t)})),e=new C({objectMode:!0,writable:!1,read(){}})}throw new g(r,["Blob","ReadableStream","WritableStream","Stream","Iterable","AsyncIterable","Function","{ readable, writable } pair","Promise"],t)}},34756:function(e,t,r){const i=r(65606),{AbortError:n,codes:s}=r(16653),{ERR_INVALID_ARG_TYPE:o,ERR_STREAM_PREMATURE_CLOSE:a}=s,{kEmptyObject:l,once:u}=r(23774),{validateAbortSignal:c,validateFunction:h,validateObject:d,validateBoolean:f}=r(82091),{Promise:p,PromisePrototypeThen:m,SymbolDispose:g}=r(36152),{isClosed:v,isReadable:y,isReadableNodeStream:b,isReadableStream:w,isReadableFinished:_,isReadableErrored:k,isWritable:x,isWritableNodeStream:S,isWritableStream:M,isWritableFinished:E,isWritableErrored:A,isNodeStream:C,willEmitClose:$,kIsClosedPromise:O}=r(98825);let P;function T(e){return e.setHeader&&"function"===typeof e.abort}const I=()=>{};function D(e,t,s){var f,p;if(2===arguments.length?(s=t,t=l):null==t?t=l:d(t,"options"),h(s,"callback"),c(t.signal,"options.signal"),s=u(s),w(e)||M(e))return L(e,t,s);if(!C(e))throw new o("stream",["ReadableStream","WritableStream","Stream"],e);const m=null!==(f=t.readable)&&void 0!==f?f:b(e),O=null!==(p=t.writable)&&void 0!==p?p:S(e),D=e._writableState,N=e._readableState,R=()=>{e.writable||F()};let j=$(e)&&b(e)===m&&S(e)===O,B=E(e,!1);const F=()=>{B=!0,e.destroyed&&(j=!1),(!j||e.readable&&!m)&&(m&&!z||s.call(e))};let z=_(e,!1);const V=()=>{z=!0,e.destroyed&&(j=!1),(!j||e.writable&&!O)&&(O&&!B||s.call(e))},q=t=>{s.call(e,t)};let U=v(e);const H=()=>{U=!0;const t=A(e)||k(e);return t&&"boolean"!==typeof t?s.call(e,t):m&&!z&&b(e,!0)&&!_(e,!1)?s.call(e,new a):!O||B||E(e,!1)?void s.call(e):s.call(e,new a)},W=()=>{U=!0;const t=A(e)||k(e);if(t&&"boolean"!==typeof t)return s.call(e,t);s.call(e)},K=()=>{e.req.on("finish",F)};T(e)?(e.on("complete",F),j||e.on("abort",H),e.req?K():e.on("request",K)):O&&!D&&(e.on("end",R),e.on("close",R)),j||"boolean"!==typeof e.aborted||e.on("aborted",H),e.on("end",V),e.on("finish",F),!1!==t.error&&e.on("error",q),e.on("close",H),U?i.nextTick(H):null!==D&&void 0!==D&&D.errorEmitted||null!==N&&void 0!==N&&N.errorEmitted?j||i.nextTick(W):(m||j&&!y(e)||!B&&!1!==x(e))&&(O||j&&!x(e)||!z&&!1!==y(e))?N&&e.req&&e.aborted&&i.nextTick(W):i.nextTick(W);const Y=()=>{s=I,e.removeListener("aborted",H),e.removeListener("complete",F),e.removeListener("abort",H),e.removeListener("request",K),e.req&&e.req.removeListener("finish",F),e.removeListener("end",R),e.removeListener("close",R),e.removeListener("finish",F),e.removeListener("end",V),e.removeListener("error",q),e.removeListener("close",H)};if(t.signal&&!U){const o=()=>{const r=s;Y(),r.call(e,new n(void 0,{cause:t.signal.reason}))};if(t.signal.aborted)i.nextTick(o);else{P=P||r(23774).addAbortListener;const i=P(t.signal,o),n=s;s=u(((...t)=>{i[g](),n.apply(e,t)}))}}return Y}function L(e,t,s){let o=!1,a=I;if(t.signal)if(a=()=>{o=!0,s.call(e,new n(void 0,{cause:t.signal.reason}))},t.signal.aborted)i.nextTick(a);else{P=P||r(23774).addAbortListener;const i=P(t.signal,a),n=s;s=u(((...t)=>{i[g](),n.apply(e,t)}))}const l=(...t)=>{o||i.nextTick((()=>s.apply(e,t)))};return m(e[O].promise,l,l),I}function N(e,t){var r;let i=!1;return null===t&&(t=l),null!==(r=t)&&void 0!==r&&r.cleanup&&(f(t.cleanup,"cleanup"),i=t.cleanup),new p(((r,n)=>{const s=D(e,t,(e=>{i&&s(),e?n(e):r()}))}))}e.exports=D,e.exports.finished=N},3854:function(e,t,r){"use strict";const i=r(65606),{PromisePrototypeThen:n,SymbolAsyncIterator:s,SymbolIterator:o}=r(36152),{Buffer:a}=r(48287),{ERR_INVALID_ARG_TYPE:l,ERR_STREAM_NULL_VALUES:u}=r(16653).codes;function c(e,t,r){let c,h;if("string"===typeof t||t instanceof a)return new e({objectMode:!0,...r,read(){this.push(t),this.push(null)}});if(t&&t[s])h=!0,c=t[s]();else{if(!t||!t[o])throw new l("iterable",["Iterable"],t);h=!1,c=t[o]()}const d=new e({objectMode:!0,highWaterMark:1,...r});let f=!1;async function p(e){const t=void 0!==e&&null!==e,r="function"===typeof c.throw;if(t&&r){const{value:t,done:r}=await c.throw(e);if(await t,r)return}if("function"===typeof c.return){const{value:e}=await c.return();await e}}async function m(){for(;;){try{const{value:e,done:t}=h?await c.next():c.next();if(t)d.push(null);else{const t=e&&"function"===typeof e.then?await e:e;if(null===t)throw f=!1,new u;if(d.push(t))continue;f=!1}}catch(err){d.destroy(err)}break}}return d._read=function(){f||(f=!0,m())},d._destroy=function(e,t){n(p(e),(()=>i.nextTick(t,e)),(r=>i.nextTick(t,r||e)))},d}e.exports=c},33137:function(e,t,r){"use strict";const{ArrayIsArray:i,ObjectSetPrototypeOf:n}=r(36152),{EventEmitter:s}=r(37007);function o(e){s.call(this,e)}function a(e,t,r){if("function"===typeof e.prependListener)return e.prependListener(t,r);e._events&&e._events[t]?i(e._events[t])?e._events[t].unshift(r):e._events[t]=[r,e._events[t]]:e.on(t,r)}n(o.prototype,s.prototype),n(o,s),o.prototype.pipe=function(e,t){const r=this;function i(t){e.writable&&!1===e.write(t)&&r.pause&&r.pause()}function n(){r.readable&&r.resume&&r.resume()}r.on("data",i),e.on("drain",n),e._isStdio||t&&!1===t.end||(r.on("end",l),r.on("close",u));let o=!1;function l(){o||(o=!0,e.end())}function u(){o||(o=!0,"function"===typeof e.destroy&&e.destroy())}function c(e){h(),0===s.listenerCount(this,"error")&&this.emit("error",e)}function h(){r.removeListener("data",i),e.removeListener("drain",n),r.removeListener("end",l),r.removeListener("close",u),r.removeListener("error",c),e.removeListener("error",c),r.removeListener("end",h),r.removeListener("close",h),e.removeListener("close",h)}return a(r,"error",c),a(e,"error",c),r.on("end",h),r.on("close",h),e.on("close",h),e.emit("pipe",r),e},e.exports={Stream:o,prependListener:a}},5589:function(e,t,r){"use strict";const i=globalThis.AbortController||r(25568).AbortController,{codes:{ERR_INVALID_ARG_VALUE:n,ERR_INVALID_ARG_TYPE:s,ERR_MISSING_ARGS:o,ERR_OUT_OF_RANGE:a},AbortError:l}=r(16653),{validateAbortSignal:u,validateInteger:c,validateObject:h}=r(82091),d=r(36152).Symbol("kWeak"),f=r(36152).Symbol("kResistStopPropagation"),{finished:p}=r(34756),m=r(57123),{addAbortSignalNoValidate:g}=r(7849),{isWritable:v,isNodeStream:y}=r(98825),{deprecate:b}=r(23774),{ArrayPrototypePush:w,Boolean:_,MathFloor:k,Number:x,NumberIsNaN:S,Promise:M,PromiseReject:E,PromiseResolve:A,PromisePrototypeThen:C,Symbol:$}=r(36152),O=$("kEmpty"),P=$("kEof");function T(e,t){if(null!=t&&h(t,"options"),null!=(null===t||void 0===t?void 0:t.signal)&&u(t.signal,"options.signal"),y(e)&&!v(e))throw new n("stream",e,"must be writable");const r=m(this,e);return null!==t&&void 0!==t&&t.signal&&g(t.signal,r),r}function I(e,t){if("function"!==typeof e)throw new s("fn",["Function","AsyncFunction"],e);null!=t&&h(t,"options"),null!=(null===t||void 0===t?void 0:t.signal)&&u(t.signal,"options.signal");let i=1;null!=(null===t||void 0===t?void 0:t.concurrency)&&(i=k(t.concurrency));let n=i-1;return null!=(null===t||void 0===t?void 0:t.highWaterMark)&&(n=k(t.highWaterMark)),c(i,"options.concurrency",1),c(n,"options.highWaterMark",0),n+=i,async function*(){const s=r(23774).AbortSignalAny([null===t||void 0===t?void 0:t.signal].filter(_)),o=this,a=[],u={signal:s};let c,h,d=!1,f=0;function p(){d=!0,m()}function m(){f-=1,g()}function g(){h&&!d&&f=n||f>=i)&&await new M((e=>{h=e}))}a.push(P)}catch(err){const t=E(err);C(t,m,p),a.push(t)}finally{d=!0,c&&(c(),c=null)}}v();try{while(1){while(a.length>0){const e=await a[0];if(e===P)return;if(s.aborted)throw new l;e!==O&&(yield e),a.shift(),g()}await new M((e=>{c=e}))}}finally{d=!0,h&&(h(),h=null)}}.call(this)}function D(e=void 0){return null!=e&&h(e,"options"),null!=(null===e||void 0===e?void 0:e.signal)&&u(e.signal,"options.signal"),async function*(){let t=0;for await(const i of this){var r;if(null!==e&&void 0!==e&&null!==(r=e.signal)&&void 0!==r&&r.aborted)throw new l({cause:e.signal.reason});yield[t++,i]}}.call(this)}async function L(e,t=void 0){for await(const r of B.call(this,e,t))return!0;return!1}async function N(e,t=void 0){if("function"!==typeof e)throw new s("fn",["Function","AsyncFunction"],e);return!await L.call(this,(async(...t)=>!await e(...t)),t)}async function R(e,t){for await(const r of B.call(this,e,t))return r}async function j(e,t){if("function"!==typeof e)throw new s("fn",["Function","AsyncFunction"],e);async function r(t,r){return await e(t,r),O}for await(const i of I.call(this,r,t));}function B(e,t){if("function"!==typeof e)throw new s("fn",["Function","AsyncFunction"],e);async function r(t,r){return await e(t,r)?t:O}return I.call(this,r,t)}class F extends o{constructor(){super("reduce"),this.message="Reduce of an empty stream requires an initial value"}}async function z(e,t,r){var n;if("function"!==typeof e)throw new s("reducer",["Function","AsyncFunction"],e);null!=r&&h(r,"options"),null!=(null===r||void 0===r?void 0:r.signal)&&u(r.signal,"options.signal");let o=arguments.length>1;if(null!==r&&void 0!==r&&null!==(n=r.signal)&&void 0!==n&&n.aborted){const e=new l(void 0,{cause:r.signal.reason});throw this.once("error",(()=>{})),await p(this.destroy(e)),e}const a=new i,c=a.signal;if(null!==r&&void 0!==r&&r.signal){const e={once:!0,[d]:this,[f]:!0};r.signal.addEventListener("abort",(()=>a.abort()),e)}let m=!1;try{for await(const i of this){var g;if(m=!0,null!==r&&void 0!==r&&null!==(g=r.signal)&&void 0!==g&&g.aborted)throw new l;o?t=await e(t,i,{signal:c}):(t=i,o=!0)}if(!m&&!o)throw new F}finally{a.abort()}return t}async function V(e){null!=e&&h(e,"options"),null!=(null===e||void 0===e?void 0:e.signal)&&u(e.signal,"options.signal");const t=[];for await(const i of this){var r;if(null!==e&&void 0!==e&&null!==(r=e.signal)&&void 0!==r&&r.aborted)throw new l(void 0,{cause:e.signal.reason});w(t,i)}return t}function q(e,t){const r=I.call(this,e,t);return async function*(){for await(const e of r)yield*e}.call(this)}function U(e){if(e=x(e),S(e))return 0;if(e<0)throw new a("number",">= 0",e);return e}function H(e,t=void 0){return null!=t&&h(t,"options"),null!=(null===t||void 0===t?void 0:t.signal)&&u(t.signal,"options.signal"),e=U(e),async function*(){var r;if(null!==t&&void 0!==t&&null!==(r=t.signal)&&void 0!==r&&r.aborted)throw new l;for await(const n of this){var i;if(null!==t&&void 0!==t&&null!==(i=t.signal)&&void 0!==i&&i.aborted)throw new l;e--<=0&&(yield n)}}.call(this)}function W(e,t=void 0){return null!=t&&h(t,"options"),null!=(null===t||void 0===t?void 0:t.signal)&&u(t.signal,"options.signal"),e=U(e),async function*(){var r;if(null!==t&&void 0!==t&&null!==(r=t.signal)&&void 0!==r&&r.aborted)throw new l;for await(const n of this){var i;if(null!==t&&void 0!==t&&null!==(i=t.signal)&&void 0!==i&&i.aborted)throw new l;if(e-- >0&&(yield n),e<=0)return}}.call(this)}e.exports.streamReturningOperators={asIndexedPairs:b(D,"readable.asIndexedPairs will be removed in a future version."),drop:H,filter:B,flatMap:q,map:I,take:W,compose:T},e.exports.promiseReturningOperators={every:N,forEach:j,reduce:z,toArray:V,some:L,find:R}},15122:function(e,t,r){"use strict";const{ObjectSetPrototypeOf:i}=r(36152);e.exports=s;const n=r(82112);function s(e){if(!(this instanceof s))return new s(e);n.call(this,e)}i(s.prototype,n.prototype),i(s,n),s.prototype._transform=function(e,t,r){r(null,e)}},27944:function(e,t,r){const i=r(65606),{ArrayIsArray:n,Promise:s,SymbolAsyncIterator:o,SymbolDispose:a}=r(36152),l=r(34756),{once:u}=r(23774),c=r(91582),h=r(84656),{aggregateTwoErrors:d,codes:{ERR_INVALID_ARG_TYPE:f,ERR_INVALID_RETURN_VALUE:p,ERR_MISSING_ARGS:m,ERR_STREAM_DESTROYED:g,ERR_STREAM_PREMATURE_CLOSE:v},AbortError:y}=r(16653),{validateFunction:b,validateAbortSignal:w}=r(82091),{isIterable:_,isReadable:k,isReadableNodeStream:x,isNodeStream:S,isTransformStream:M,isWebStream:E,isReadableStream:A,isReadableFinished:C}=r(98825),$=globalThis.AbortController||r(25568).AbortController;let O,P,T;function I(e,t,r){let i=!1;e.on("close",(()=>{i=!0}));const n=l(e,{readable:t,writable:r},(e=>{i=!e}));return{destroy:t=>{i||(i=!0,c.destroyer(e,t||new g("pipe")))},cleanup:n}}function D(e){return b(e[e.length-1],"streams[stream.length - 1]"),e.pop()}function L(e){if(_(e))return e;if(x(e))return N(e);throw new f("val",["Readable","Iterable","AsyncIterable"],e)}async function*N(e){P||(P=r(21878)),yield*P.prototype[o].call(e)}async function R(e,t,r,{end:i}){let n,o=null;const a=e=>{if(e&&(n=e),o){const e=o;o=null,e()}},u=()=>new s(((e,t)=>{n?t(n):o=()=>{n?t(n):e()}}));t.on("drain",a);const c=l(t,{readable:!1},a);try{t.writableNeedDrain&&await u();for await(const r of e)t.write(r)||await u();i&&(t.end(),await u()),r()}catch(err){r(n!==err?d(n,err):err)}finally{c(),t.off("drain",a)}}async function j(e,t,r,{end:i}){M(t)&&(t=t.writable);const n=t.getWriter();try{for await(const t of e)await n.ready,n.write(t).catch((()=>{}));await n.ready,i&&await n.close(),r()}catch(err){try{await n.abort(err),r(err)}catch(err){r(err)}}}function B(...e){return F(e,u(D(e)))}function F(e,t,s){if(1===e.length&&n(e[0])&&(e=e[0]),e.length<2)throw new m("streams");const o=new $,l=o.signal,u=null===s||void 0===s?void 0:s.signal,c=[];function d(){B(new y)}let g,v,b;w(u,"options.signal"),T=T||r(23774).addAbortListener,u&&(g=T(u,d));const C=[];let P,D=0;function N(e){B(e,0===--D)}function B(e,r){var n;if(!e||v&&"ERR_STREAM_PREMATURE_CLOSE"!==v.code||(v=e),v||r){while(C.length)C.shift()(v);null===(n=g)||void 0===n||n[a](),o.abort(),r&&(v||c.forEach((e=>e())),i.nextTick(t,v,b))}}for(let U=0;U0,Y=W||!1!==(null===s||void 0===s?void 0:s.end),G=U===e.length-1;if(S(H)){if(Y){const{destroy:Z,cleanup:J}=I(H,W,K);C.push(Z),k(H)&&G&&c.push(J)}function F(e){e&&"AbortError"!==e.name&&"ERR_STREAM_PREMATURE_CLOSE"!==e.code&&N(e)}H.on("error",F),k(H)&&G&&c.push((()=>{H.removeListener("error",F)}))}if(0===U)if("function"===typeof H){if(P=H({signal:l}),!_(P))throw new p("Iterable, AsyncIterable or Stream","source",P)}else P=_(H)||x(H)||M(H)?H:h.from(H);else if("function"===typeof H){var V;if(M(P))P=L(null===(V=P)||void 0===V?void 0:V.readable);else P=L(P);if(P=H(P,{signal:l}),W){if(!_(P,!0))throw new p("AsyncIterable",`transform[${U-1}]`,P)}else{var q;O||(O=r(15122));const X=new O({objectMode:!0}),Q=null===(q=P)||void 0===q?void 0:q.then;if("function"===typeof Q)D++,Q.call(P,(e=>{b=e,null!=e&&X.write(e),Y&&X.end(),i.nextTick(N)}),(e=>{X.destroy(e),i.nextTick(N,e)}));else if(_(P,!0))D++,R(P,X,N,{end:Y});else{if(!A(P)&&!M(P))throw new p("AsyncIterable or Promise","destination",P);{const re=P.readable||P;D++,R(re,X,N,{end:Y})}}P=X;const{destroy:ee,cleanup:te}=I(P,!1,!0);C.push(ee),G&&c.push(te)}}else if(S(H)){if(x(P)){D+=2;const ie=z(P,H,N,{end:Y});k(H)&&G&&c.push(ie)}else if(M(P)||A(P)){const ne=P.readable||P;D++,R(ne,H,N,{end:Y})}else{if(!_(P))throw new f("val",["Readable","Iterable","AsyncIterable","ReadableStream","TransformStream"],P);D++,R(P,H,N,{end:Y})}P=H}else if(E(H)){if(x(P))D++,j(L(P),H,N,{end:Y});else if(A(P)||_(P))D++,j(P,H,N,{end:Y});else{if(!M(P))throw new f("val",["Readable","Iterable","AsyncIterable","ReadableStream","TransformStream"],P);D++,j(P.readable,H,N,{end:Y})}P=H}else P=h.from(H)}return(null!==l&&void 0!==l&&l.aborted||null!==u&&void 0!==u&&u.aborted)&&i.nextTick(d),P}function z(e,t,r,{end:n}){let s=!1;if(t.on("close",(()=>{s||r(new v)})),e.pipe(t,{end:!1}),n){function o(){s=!0,t.end()}C(e)?i.nextTick(o):e.once("end",o)}else r();return l(e,{readable:!0,writable:!1},(t=>{const i=e._readableState;t&&"ERR_STREAM_PREMATURE_CLOSE"===t.code&&i&&i.ended&&!i.errored&&!i.errorEmitted?e.once("end",r).once("error",r):r(t)})),l(t,{readable:!1,writable:!0},r)}e.exports={pipelineImpl:F,pipeline:B}},21878:function(e,t,r){const i=r(65606),{ArrayPrototypeIndexOf:n,NumberIsInteger:s,NumberIsNaN:o,NumberParseInt:a,ObjectDefineProperties:l,ObjectKeys:u,ObjectSetPrototypeOf:c,Promise:h,SafeSet:d,SymbolAsyncDispose:f,SymbolAsyncIterator:p,Symbol:m}=r(36152);e.exports=ae,ae.ReadableState=oe;const{EventEmitter:g}=r(37007),{Stream:v,prependListener:y}=r(33137),{Buffer:b}=r(48287),{addAbortSignal:w}=r(7849),_=r(34756);let k=r(23774).debuglog("stream",(e=>{k=e}));const x=r(76491),S=r(91582),{getHighWaterMark:M,getDefaultHighWaterMark:E}=r(49809),{aggregateTwoErrors:A,codes:{ERR_INVALID_ARG_TYPE:C,ERR_METHOD_NOT_IMPLEMENTED:$,ERR_OUT_OF_RANGE:O,ERR_STREAM_PUSH_AFTER_EOF:P,ERR_STREAM_UNSHIFT_AFTER_END_EVENT:T},AbortError:I}=r(16653),{validateObject:D}=r(82091),L=m("kPaused"),{StringDecoder:N}=r(83141),R=r(3854);c(ae.prototype,v.prototype),c(ae,v);const j=()=>{},{errorOrDestroy:B}=S,F=1,z=2,V=4,q=8,U=16,H=32,W=64,K=128,Y=256,G=512,Z=1024,J=2048,X=4096,Q=8192,ee=16384,te=32768,re=65536,ie=1<<17,ne=1<<18;function se(e){return{enumerable:!1,get(){return 0!==(this.state&e)},set(t){t?this.state|=e:this.state&=~e}}}function oe(e,t,i){"boolean"!==typeof i&&(i=t instanceof r(84656)),this.state=J|X|U|H,e&&e.objectMode&&(this.state|=F),i&&e&&e.readableObjectMode&&(this.state|=F),this.highWaterMark=e?M(this,e,"readableHighWaterMark",i):E(!1),this.buffer=new x,this.length=0,this.pipes=[],this.flowing=null,this[L]=null,e&&!1===e.emitClose&&(this.state&=~J),e&&!1===e.autoDestroy&&(this.state&=~X),this.errored=null,this.defaultEncoding=e&&e.defaultEncoding||"utf8",this.awaitDrainWriters=null,this.decoder=null,this.encoding=null,e&&e.encoding&&(this.decoder=new N(e.encoding),this.encoding=e.encoding)}function ae(e){if(!(this instanceof ae))return new ae(e);const t=this instanceof r(84656);this._readableState=new oe(e,this,t),e&&("function"===typeof e.read&&(this._read=e.read),"function"===typeof e.destroy&&(this._destroy=e.destroy),"function"===typeof e.construct&&(this._construct=e.construct),e.signal&&!t&&w(e.signal,this)),v.call(this,e),S.construct(this,(()=>{this._readableState.needReadable&&ge(this,this._readableState)}))}function le(e,t,r,i){k("readableAddChunk",t);const n=e._readableState;let s;if(0===(n.state&F)&&("string"===typeof t?(r=r||n.defaultEncoding,n.encoding!==r&&(i&&n.encoding?t=b.from(t,r).toString(n.encoding):(t=b.from(t,r),r=""))):t instanceof b?r="":v._isUint8Array(t)?(t=v._uint8ArrayToBuffer(t),r=""):null!=t&&(s=new C("chunk",["string","Buffer","Uint8Array"],t))),s)B(e,s);else if(null===t)n.state&=~q,fe(e,n);else if(0!==(n.state&F)||t&&t.length>0)if(i)if(0!==(n.state&V))B(e,new T);else{if(n.destroyed||n.errored)return!1;ue(e,n,t,!0)}else if(n.ended)B(e,new P);else{if(n.destroyed||n.errored)return!1;n.state&=~q,n.decoder&&!r?(t=n.decoder.write(t),n.objectMode||0!==t.length?ue(e,n,t,!1):ge(e,n)):ue(e,n,t,!1)}else i||(n.state&=~q,ge(e,n));return!n.ended&&(n.length0?(0!==(t.state&re)?t.awaitDrainWriters.clear():t.awaitDrainWriters=null,t.dataEmitted=!0,e.emit("data",r)):(t.length+=t.objectMode?1:r.length,i?t.buffer.unshift(r):t.buffer.push(r),0!==(t.state&W)&&pe(e)),ge(e,t)}l(oe.prototype,{objectMode:se(F),ended:se(z),endEmitted:se(V),reading:se(q),constructed:se(U),sync:se(H),needReadable:se(W),emittedReadable:se(K),readableListening:se(Y),resumeScheduled:se(G),errorEmitted:se(Z),emitClose:se(J),autoDestroy:se(X),destroyed:se(Q),closed:se(ee),closeEmitted:se(te),multiAwaitDrain:se(re),readingMore:se(ie),dataEmitted:se(ne)}),ae.prototype.destroy=S.destroy,ae.prototype._undestroy=S.undestroy,ae.prototype._destroy=function(e,t){t(e)},ae.prototype[g.captureRejectionSymbol]=function(e){this.destroy(e)},ae.prototype[f]=function(){let e;return this.destroyed||(e=this.readableEnded?null:new I,this.destroy(e)),new h(((t,r)=>_(this,(i=>i&&i!==e?r(i):t(null)))))},ae.prototype.push=function(e,t){return le(this,e,t,!1)},ae.prototype.unshift=function(e,t){return le(this,e,t,!0)},ae.prototype.isPaused=function(){const e=this._readableState;return!0===e[L]||!1===e.flowing},ae.prototype.setEncoding=function(e){const t=new N(e);this._readableState.decoder=t,this._readableState.encoding=this._readableState.decoder.encoding;const r=this._readableState.buffer;let i="";for(const n of r)i+=t.write(n);return r.clear(),""!==i&&r.push(i),this._readableState.length=i.length,this};const ce=1073741824;function he(e){if(e>ce)throw new O("size","<= 1GiB",e);return e--,e|=e>>>1,e|=e>>>2,e|=e>>>4,e|=e>>>8,e|=e>>>16,e++,e}function de(e,t){return e<=0||0===t.length&&t.ended?0:0!==(t.state&F)?1:o(e)?t.flowing&&t.length?t.buffer.first().length:t.length:e<=t.length?e:t.ended?t.length:0}function fe(e,t){if(k("onEofChunk"),!t.ended){if(t.decoder){const e=t.decoder.end();e&&e.length&&(t.buffer.push(e),t.length+=t.objectMode?1:e.length)}t.ended=!0,t.sync?pe(e):(t.needReadable=!1,t.emittedReadable=!0,me(e))}}function pe(e){const t=e._readableState;k("emitReadable",t.needReadable,t.emittedReadable),t.needReadable=!1,t.emittedReadable||(k("emitReadable",t.flowing),t.emittedReadable=!0,i.nextTick(me,e))}function me(e){const t=e._readableState;k("emitReadable_",t.destroyed,t.length,t.ended),t.destroyed||t.errored||!t.length&&!t.ended||(e.emit("readable"),t.emittedReadable=!1),t.needReadable=!t.flowing&&!t.ended&&t.length<=t.highWaterMark,xe(e)}function ge(e,t){!t.readingMore&&t.constructed&&(t.readingMore=!0,i.nextTick(ve,e,t))}function ve(e,t){while(!t.reading&&!t.ended&&(t.length0,t.resumeScheduled&&!1===t[L]?t.flowing=!0:e.listenerCount("data")>0?e.resume():t.readableListening||(t.flowing=null)}function we(e){k("readable nexttick read 0"),e.read(0)}function _e(e,t){t.resumeScheduled||(t.resumeScheduled=!0,i.nextTick(ke,e,t))}function ke(e,t){k("resume",t.reading),t.reading||e.read(0),t.resumeScheduled=!1,e.emit("resume"),xe(e),t.flowing&&!t.reading&&e.read(0)}function xe(e){const t=e._readableState;k("flow",t.flowing);while(t.flowing&&null!==e.read());}function Se(e,t){"function"!==typeof e.read&&(e=ae.wrap(e,{objectMode:!0}));const r=Me(e,t);return r.stream=e,r}async function*Me(e,t){let r,i=j;function n(t){this===e?(i(),i=j):i=t}e.on("readable",n);const s=_(e,{writable:!1},(e=>{r=e?A(r,e):null,i(),i=j}));try{while(1){const t=e.destroyed?null:e.read();if(null!==t)yield t;else{if(r)throw r;if(null===r)return;await new h(n)}}}catch(err){throw r=A(r,err),r}finally{!r&&!1===(null===t||void 0===t?void 0:t.destroyOnReturn)||void 0!==r&&!e._readableState.autoDestroy?(e.off("readable",n),s()):S.destroyer(e,null)}}function Ee(e,t){if(0===t.length)return null;let r;return t.objectMode?r=t.buffer.shift():!e||e>=t.length?(r=t.decoder?t.buffer.join(""):1===t.buffer.length?t.buffer.first():t.buffer.concat(t.length),t.buffer.clear()):r=t.buffer.consume(e,t.decoder),r}function Ae(e){const t=e._readableState;k("endReadable",t.endEmitted),t.endEmitted||(t.ended=!0,i.nextTick(Ce,t,e))}function Ce(e,t){if(k("endReadableNT",e.endEmitted,e.length),!e.errored&&!e.closeEmitted&&!e.endEmitted&&0===e.length)if(e.endEmitted=!0,t.emit("end"),t.writable&&!1===t.allowHalfOpen)i.nextTick($e,t);else if(e.autoDestroy){const e=t._writableState,r=!e||e.autoDestroy&&(e.finished||!1===e.writable);r&&t.destroy()}}function $e(e){const t=e.writable&&!e.writableEnded&&!e.destroyed;t&&e.end()}let Oe;function Pe(){return void 0===Oe&&(Oe={}),Oe}ae.prototype.read=function(e){k("read",e),void 0===e?e=NaN:s(e)||(e=a(e,10));const t=this._readableState,r=e;if(e>t.highWaterMark&&(t.highWaterMark=he(e)),0!==e&&(t.state&=~K),0===e&&t.needReadable&&((0!==t.highWaterMark?t.length>=t.highWaterMark:t.length>0)||t.ended))return k("read: emitReadable",t.length,t.ended),0===t.length&&t.ended?Ae(this):pe(this),null;if(e=de(e,t),0===e&&t.ended)return 0===t.length&&Ae(this),null;let i,n=0!==(t.state&W);if(k("need readable",n),(0===t.length||t.length-e0?Ee(e,t):null,null===i?(t.needReadable=t.length<=t.highWaterMark,e=0):(t.length-=e,t.multiAwaitDrain?t.awaitDrainWriters.clear():t.awaitDrainWriters=null),0===t.length&&(t.ended||(t.needReadable=!0),r!==e&&t.ended&&Ae(this)),null===i||t.errorEmitted||t.closeEmitted||(t.dataEmitted=!0,this.emit("data",i)),i},ae.prototype._read=function(e){throw new $("_read()")},ae.prototype.pipe=function(e,t){const r=this,n=this._readableState;1===n.pipes.length&&(n.multiAwaitDrain||(n.multiAwaitDrain=!0,n.awaitDrainWriters=new d(n.awaitDrainWriters?[n.awaitDrainWriters]:[]))),n.pipes.push(e),k("pipe count=%d opts=%j",n.pipes.length,t);const s=(!t||!1!==t.end)&&e!==i.stdout&&e!==i.stderr,o=s?l:b;function a(e,t){k("onunpipe"),e===r&&t&&!1===t.hasUnpiped&&(t.hasUnpiped=!0,h())}function l(){k("onend"),e.end()}let u;n.endEmitted?i.nextTick(o):r.once("end",o),e.on("unpipe",a);let c=!1;function h(){k("cleanup"),e.removeListener("close",g),e.removeListener("finish",v),u&&e.removeListener("drain",u),e.removeListener("error",m),e.removeListener("unpipe",a),r.removeListener("end",l),r.removeListener("end",b),r.removeListener("data",p),c=!0,u&&n.awaitDrainWriters&&(!e._writableState||e._writableState.needDrain)&&u()}function f(){c||(1===n.pipes.length&&n.pipes[0]===e?(k("false write response, pause",0),n.awaitDrainWriters=e,n.multiAwaitDrain=!1):n.pipes.length>1&&n.pipes.includes(e)&&(k("false write response, pause",n.awaitDrainWriters.size),n.awaitDrainWriters.add(e)),r.pause()),u||(u=ye(r,e),e.on("drain",u))}function p(t){k("ondata");const r=e.write(t);k("dest.write",r),!1===r&&f()}function m(t){if(k("onerror",t),b(),e.removeListener("error",m),0===e.listenerCount("error")){const r=e._writableState||e._readableState;r&&!r.errorEmitted?B(e,t):e.emit("error",t)}}function g(){e.removeListener("finish",v),b()}function v(){k("onfinish"),e.removeListener("close",g),b()}function b(){k("unpipe"),r.unpipe(e)}return r.on("data",p),y(e,"error",m),e.once("close",g),e.once("finish",v),e.emit("pipe",r),!0===e.writableNeedDrain?f():n.flowing||(k("pipe resume"),r.resume()),e},ae.prototype.unpipe=function(e){const t=this._readableState,r={hasUnpiped:!1};if(0===t.pipes.length)return this;if(!e){const e=t.pipes;t.pipes=[],this.pause();for(let t=0;t0,!1!==n.flowing&&this.resume()):"readable"===e&&(n.endEmitted||n.readableListening||(n.readableListening=n.needReadable=!0,n.flowing=!1,n.emittedReadable=!1,k("on readable",n.length,n.reading),n.length?pe(this):n.reading||i.nextTick(we,this))),r},ae.prototype.addListener=ae.prototype.on,ae.prototype.removeListener=function(e,t){const r=v.prototype.removeListener.call(this,e,t);return"readable"===e&&i.nextTick(be,this),r},ae.prototype.off=ae.prototype.removeListener,ae.prototype.removeAllListeners=function(e){const t=v.prototype.removeAllListeners.apply(this,arguments);return"readable"!==e&&void 0!==e||i.nextTick(be,this),t},ae.prototype.resume=function(){const e=this._readableState;return e.flowing||(k("resume"),e.flowing=!e.readableListening,_e(this,e)),e[L]=!1,this},ae.prototype.pause=function(){return k("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(k("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState[L]=!0,this},ae.prototype.wrap=function(e){let t=!1;e.on("data",(r=>{!this.push(r)&&e.pause&&(t=!0,e.pause())})),e.on("end",(()=>{this.push(null)})),e.on("error",(e=>{B(this,e)})),e.on("close",(()=>{this.destroy()})),e.on("destroy",(()=>{this.destroy()})),this._read=()=>{t&&e.resume&&(t=!1,e.resume())};const r=u(e);for(let i=1;i{t?e?e(t):this.destroy(t):(null!=r&&this.push(r),this.push(null),e&&e())}))}function h(){this._final!==c&&c.call(this)}u.prototype._final=c,u.prototype._transform=function(e,t,r){throw new s("_transform()")},u.prototype._write=function(e,t,r){const i=this._readableState,n=this._writableState,s=i.length;this._transform(e,t,((e,t)=>{e?r(e):(null!=t&&this.push(t),n.ended||s===i.length||i.length{const e=this._writableState;e.writing||q(this,e),K(this,e)}))}function L(e,t,r,n){const s=e._writableState;if("function"===typeof r)n=r,r=s.defaultEncoding;else{if(r){if("buffer"!==r&&!m.isEncoding(r))throw new C(r)}else r=s.defaultEncoding;"function"!==typeof n&&(n=O)}if(null===t)throw new E;if(!s.objectMode)if("string"===typeof t)!1!==s.decodeStrings&&(t=m.from(t,r),r="buffer");else if(t instanceof m)r="buffer";else{if(!p._isUint8Array(t))throw new w("chunk",["string","Buffer","Uint8Array"],t);t=p._uint8ArrayToBuffer(t),r="buffer"}let o;return s.ending?o=new A:s.destroyed&&(o=new S("write")),o?(i.nextTick(n,o),$(e,o,!0),o):(s.pendingcb++,N(e,s,t,r,n))}function N(e,t,r,i,n){const s=t.objectMode?1:r.length;t.length+=s;const o=t.lengthr.bufferedIndex&&q(e,r),n?null!==r.afterWriteTickInfo&&r.afterWriteTickInfo.cb===s?r.afterWriteTickInfo.count++:(r.afterWriteTickInfo={count:1,cb:s,stream:e,state:r},i.nextTick(F,r.afterWriteTickInfo)):z(e,r,1,s))):$(e,new k)}function F({stream:e,state:t,count:r,cb:i}){return t.afterWriteTickInfo=null,z(e,t,r,i)}function z(e,t,r,i){const n=!t.ending&&!e.destroyed&&0===t.length&&t.needDrain;n&&(t.needDrain=!1,e.emit("drain"));while(r-- >0)t.pendingcb--,i();t.destroyed&&V(t),K(e,t)}function V(e){if(e.writing)return;for(let n=e.bufferedIndex;n1&&e._writev){t.pendingcb-=o-1;const i=t.allNoop?O:e=>{for(let t=a;t256?(r.splice(0,a),t.bufferedIndex=0):t.bufferedIndex=a}t.bufferProcessing=!1}function U(e){return e.ending&&!e.destroyed&&e.constructed&&0===e.length&&!e.errored&&0===e.buffered.length&&!e.finished&&!e.writing&&!e.errorEmitted&&!e.closeEmitted}function H(e,t){let r=!1;function n(n){if(r)$(e,null!==n&&void 0!==n?n:k());else if(r=!0,t.pendingcb--,n){const r=t[P].splice(0);for(let e=0;e{U(t)?Y(e,t):t.pendingcb--}),e,t)):U(t)&&(t.pendingcb++,Y(e,t))))}function Y(e,t){t.pendingcb--,t.finished=!0;const r=t[P].splice(0);for(let i=0;i>>0}const $=/^[0-7]+$/,O="must be a 32-bit unsigned integer or an octal string";function P(e,t,r){if("undefined"===typeof e&&(e=r),"string"===typeof e){if(null===f($,e))throw new w(t,e,O);e=h(e,8)}return D(e,t),e}const T=v(((e,t,r=c,i=u)=>{if("number"!==typeof e)throw new b(t,"number",e);if(!a(e))throw new _(t,"an integer",e);if(ei)throw new _(t,`>= ${r} && <= ${i}`,e)})),I=v(((e,t,r=-2147483648,i=2147483647)=>{if("number"!==typeof e)throw new b(t,"number",e);if(!a(e))throw new _(t,"an integer",e);if(ei)throw new _(t,`>= ${r} && <= ${i}`,e)})),D=v(((e,t,r=!1)=>{if("number"!==typeof e)throw new b(t,"number",e);if(!a(e))throw new _(t,"an integer",e);const i=r?1:0,n=4294967295;if(en)throw new _(t,`>= ${i} && <= ${n}`,e)}));function L(e,t){if("string"!==typeof e)throw new b(t,"string",e)}function N(e,t,r=void 0,i){if("number"!==typeof e)throw new b(t,"number",e);if(null!=r&&ei||(null!=r||null!=i)&&l(e))throw new _(t,`${null!=r?`>= ${r}`:""}${null!=r&&null!=i?" && ":""}${null!=i?`<= ${i}`:""}`,e)}const R=v(((e,t,r)=>{if(!n(r,e)){const i=s(o(r,(e=>"string"===typeof e?`'${e}'`:p(e))),", "),n="must be one of: "+i;throw new w(t,e,n)}}));function j(e,t){if("boolean"!==typeof e)throw new b(t,"boolean",e)}function B(e,t,r){return null!=e&&d(e,t)?e[t]:r}const F=v(((e,t,r=null)=>{const n=B(r,"allowArray",!1),s=B(r,"allowFunction",!1),o=B(r,"nullable",!1);if(!o&&null===e||!n&&i(e)||"object"!==typeof e&&(!s||"function"!==typeof e))throw new b(t,"Object",e)})),z=v(((e,t)=>{if(null!=e&&"object"!==typeof e&&"function"!==typeof e)throw new b(t,"a dictionary",e)})),V=v(((e,t,r=0)=>{if(!i(e))throw new b(t,"Array",e);if(e.length{if(!M(e))throw new b(t,["Buffer","TypedArray","DataView"],e)}));function Y(e,t){const r=x(t),i=e.length;if("hex"===r&&i%2!==0)throw new w("encoding",t,`is invalid for data of length ${i}`)}function G(e,t="Port",r=!0){if("number"!==typeof e&&"string"!==typeof e||"string"===typeof e&&0===g(e).length||+e!==+e>>>0||e>65535||0===e&&!r)throw new y(t,e,r);return 0|e}const Z=v(((e,t)=>{if(void 0!==e&&(null===e||"object"!==typeof e||!("aborted"in e)))throw new b(t,"AbortSignal",e)})),J=v(((e,t)=>{if("function"!==typeof e)throw new b(t,"Function",e)})),X=v(((e,t)=>{if("function"!==typeof e||S(e))throw new b(t,"Function",e)})),Q=v(((e,t)=>{if(void 0!==e)throw new b(t,"undefined",e)}));function ee(e,t,r){if(!n(r,e))throw new b(t,`('${s(r,"|")}')`,e)}const te=/^(?:<[^>]*>)(?:\s*;\s*[^;"\s]+(?:=(")?[^;"\s]*\1)?)*$/;function re(e,t){if("undefined"===typeof e||!f(te,e))throw new w(t,e,'must be an array or string of format "; rel=preload; as=style"')}function ie(e){if("string"===typeof e)return re(e,"hints"),e;if(i(e)){const t=e.length;let r="";if(0===t)return r;for(let i=0;i; rel=preload; as=style"')}e.exports={isInt32:A,isUint32:C,parseFileMode:P,validateArray:V,validateStringArray:q,validateBooleanArray:U,validateAbortSignalArray:H,validateBoolean:j,validateBuffer:K,validateDictionary:z,validateEncoding:Y,validateFunction:J,validateInt32:I,validateInteger:T,validateNumber:N,validateObject:F,validateOneOf:R,validatePlainFunction:X,validatePort:G,validateSignalName:W,validateString:L,validateUint32:D,validateUndefined:Q,validateUnion:ee,validateAbortSignal:Z,validateLinkHeaderValue:ie}},14088:function(e,t,r){"use strict";const i=r(66836),n=r(67673),s=i.Readable.destroy;e.exports=i.Readable,e.exports._uint8ArrayToBuffer=i._uint8ArrayToBuffer,e.exports._isUint8Array=i._isUint8Array,e.exports.isDisturbed=i.isDisturbed,e.exports.isErrored=i.isErrored,e.exports.isReadable=i.isReadable,e.exports.Readable=i.Readable,e.exports.Writable=i.Writable,e.exports.Duplex=i.Duplex,e.exports.Transform=i.Transform,e.exports.PassThrough=i.PassThrough,e.exports.addAbortSignal=i.addAbortSignal,e.exports.finished=i.finished,e.exports.destroy=i.destroy,e.exports.destroy=s,e.exports.pipeline=i.pipeline,e.exports.compose=i.compose,Object.defineProperty(i,"promises",{configurable:!0,enumerable:!0,get(){return n}}),e.exports.Stream=i.Stream,e.exports["default"]=e.exports},16653:function(e,t,r){"use strict";const{format:i,inspect:n,AggregateError:s}=r(23774),o=globalThis.AggregateError||s,a=Symbol("kIsNodeError"),l=["string","function","number","object","Function","Object","boolean","bigint","symbol"],u=/^([A-Z][a-z0-9]*)+$/,c="__node_internal_",h={};function d(e,t){if(!e)throw new h.ERR_INTERNAL_ASSERTION(t)}function f(e){let t="",r=e.length;const i="-"===e[0]?1:0;for(;r>=i+4;r-=3)t=`_${e.slice(r-3,r)}${t}`;return`${e.slice(0,r)}${t}`}function p(e,t,r){if("function"===typeof t)return d(t.length<=r.length,`Code: ${e}; The provided arguments length (${r.length}) does not match the required ones (${t.length}).`),t(...r);const n=(t.match(/%[dfijoOs]/g)||[]).length;return d(n===r.length,`Code: ${e}; The provided arguments length (${r.length}) does not match the required ones (${n}).`),0===r.length?t:i(t,...r)}function m(e,t,r){r||(r=Error);class i extends r{constructor(...r){super(p(e,t,r))}toString(){return`${this.name} [${e}]: ${this.message}`}}Object.defineProperties(i.prototype,{name:{value:r.name,writable:!0,enumerable:!1,configurable:!0},toString:{value(){return`${this.name} [${e}]: ${this.message}`},writable:!0,enumerable:!1,configurable:!0}}),i.prototype.code=e,i.prototype[a]=!0,h[e]=i}function g(e){const t=c+e.name;return Object.defineProperty(e,"name",{value:t}),e}function v(e,t){if(e&&t&&e!==t){if(Array.isArray(t.errors))return t.errors.push(e),t;const r=new o([t,e],t.message);return r.code=t.code,r}return e||t}class y extends Error{constructor(e="The operation was aborted",t=void 0){if(void 0!==t&&"object"!==typeof t)throw new h.ERR_INVALID_ARG_TYPE("options","Object",t);super(e,t),this.code="ABORT_ERR",this.name="AbortError"}}m("ERR_ASSERTION","%s",Error),m("ERR_INVALID_ARG_TYPE",((e,t,r)=>{d("string"===typeof e,"'name' must be a string"),Array.isArray(t)||(t=[t]);let i="The ";e.endsWith(" argument")?i+=`${e} `:i+=`"${e}" ${e.includes(".")?"property":"argument"} `,i+="must be ";const s=[],o=[],a=[];for(const n of t)d("string"===typeof n,"All expected entries have to be of type string"),l.includes(n)?s.push(n.toLowerCase()):u.test(n)?o.push(n):(d("object"!==n,'The value "object" should be written as "Object"'),a.push(n));if(o.length>0){const e=s.indexOf("object");-1!==e&&(s.splice(s,e,1),o.push("Object"))}if(s.length>0){switch(s.length){case 1:i+=`of type ${s[0]}`;break;case 2:i+=`one of type ${s[0]} or ${s[1]}`;break;default:{const e=s.pop();i+=`one of type ${s.join(", ")}, or ${e}`}}(o.length>0||a.length>0)&&(i+=" or ")}if(o.length>0){switch(o.length){case 1:i+=`an instance of ${o[0]}`;break;case 2:i+=`an instance of ${o[0]} or ${o[1]}`;break;default:{const e=o.pop();i+=`an instance of ${o.join(", ")}, or ${e}`}}a.length>0&&(i+=" or ")}switch(a.length){case 0:break;case 1:a[0].toLowerCase()!==a[0]&&(i+="an "),i+=`${a[0]}`;break;case 2:i+=`one of ${a[0]} or ${a[1]}`;break;default:{const e=a.pop();i+=`one of ${a.join(", ")}, or ${e}`}}if(null==r)i+=`. Received ${r}`;else if("function"===typeof r&&r.name)i+=`. Received function ${r.name}`;else if("object"===typeof r){var c;if(null!==(c=r.constructor)&&void 0!==c&&c.name)i+=`. Received an instance of ${r.constructor.name}`;else{const e=n(r,{depth:-1});i+=`. Received ${e}`}}else{let e=n(r,{colors:!1});e.length>25&&(e=`${e.slice(0,25)}...`),i+=`. Received type ${typeof r} (${e})`}return i}),TypeError),m("ERR_INVALID_ARG_VALUE",((e,t,r="is invalid")=>{let i=n(t);i.length>128&&(i=i.slice(0,128)+"...");const s=e.includes(".")?"property":"argument";return`The ${s} '${e}' ${r}. Received ${i}`}),TypeError),m("ERR_INVALID_RETURN_VALUE",((e,t,r)=>{var i;const n=null!==r&&void 0!==r&&null!==(i=r.constructor)&&void 0!==i&&i.name?`instance of ${r.constructor.name}`:"type "+typeof r;return`Expected ${e} to be returned from the "${t}" function but got ${n}.`}),TypeError),m("ERR_MISSING_ARGS",((...e)=>{let t;d(e.length>0,"At least one arg needs to be specified");const r=e.length;switch(e=(Array.isArray(e)?e:[e]).map((e=>`"${e}"`)).join(" or "),r){case 1:t+=`The ${e[0]} argument`;break;case 2:t+=`The ${e[0]} and ${e[1]} arguments`;break;default:{const r=e.pop();t+=`The ${e.join(", ")}, and ${r} arguments`}break}return`${t} must be specified`}),TypeError),m("ERR_OUT_OF_RANGE",((e,t,r)=>{let i;return d(t,'Missing "range" argument'),Number.isInteger(r)&&Math.abs(r)>2**32?i=f(String(r)):"bigint"===typeof r?(i=String(r),(r>2n**32n||r<-(2n**32n))&&(i=f(i)),i+="n"):i=n(r),`The value of "${e}" is out of range. It must be ${t}. Received ${i}`}),RangeError),m("ERR_MULTIPLE_CALLBACK","Callback called multiple times",Error),m("ERR_METHOD_NOT_IMPLEMENTED","The %s method is not implemented",Error),m("ERR_STREAM_ALREADY_FINISHED","Cannot call %s after a stream was finished",Error),m("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable",Error),m("ERR_STREAM_DESTROYED","Cannot call %s after a stream was destroyed",Error),m("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),m("ERR_STREAM_PREMATURE_CLOSE","Premature close",Error),m("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF",Error),m("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event",Error),m("ERR_STREAM_WRITE_AFTER_END","write after end",Error),m("ERR_UNKNOWN_ENCODING","Unknown encoding: %s",TypeError),e.exports={AbortError:y,aggregateTwoErrors:g(v),hideStackFrames:g,codes:h}},36152:function(e){"use strict";e.exports={ArrayIsArray(e){return Array.isArray(e)},ArrayPrototypeIncludes(e,t){return e.includes(t)},ArrayPrototypeIndexOf(e,t){return e.indexOf(t)},ArrayPrototypeJoin(e,t){return e.join(t)},ArrayPrototypeMap(e,t){return e.map(t)},ArrayPrototypePop(e,t){return e.pop(t)},ArrayPrototypePush(e,t){return e.push(t)},ArrayPrototypeSlice(e,t,r){return e.slice(t,r)},Error:Error,FunctionPrototypeCall(e,t,...r){return e.call(t,...r)},FunctionPrototypeSymbolHasInstance(e,t){return Function.prototype[Symbol.hasInstance].call(e,t)},MathFloor:Math.floor,Number:Number,NumberIsInteger:Number.isInteger,NumberIsNaN:Number.isNaN,NumberMAX_SAFE_INTEGER:Number.MAX_SAFE_INTEGER,NumberMIN_SAFE_INTEGER:Number.MIN_SAFE_INTEGER,NumberParseInt:Number.parseInt,ObjectDefineProperties(e,t){return Object.defineProperties(e,t)},ObjectDefineProperty(e,t,r){return Object.defineProperty(e,t,r)},ObjectGetOwnPropertyDescriptor(e,t){return Object.getOwnPropertyDescriptor(e,t)},ObjectKeys(e){return Object.keys(e)},ObjectSetPrototypeOf(e,t){return Object.setPrototypeOf(e,t)},Promise:Promise,PromisePrototypeCatch(e,t){return e.catch(t)},PromisePrototypeThen(e,t,r){return e.then(t,r)},PromiseReject(e){return Promise.reject(e)},PromiseResolve(e){return Promise.resolve(e)},ReflectApply:Reflect.apply,RegExpPrototypeTest(e,t){return e.test(t)},SafeSet:Set,String:String,StringPrototypeSlice(e,t,r){return e.slice(t,r)},StringPrototypeToLowerCase(e){return e.toLowerCase()},StringPrototypeToUpperCase(e){return e.toUpperCase()},StringPrototypeTrim(e){return e.trim()},Symbol:Symbol,SymbolFor:Symbol.for,SymbolAsyncIterator:Symbol.asyncIterator,SymbolHasInstance:Symbol.hasInstance,SymbolIterator:Symbol.iterator,SymbolDispose:Symbol.dispose||Symbol("Symbol.dispose"),SymbolAsyncDispose:Symbol.asyncDispose||Symbol("Symbol.asyncDispose"),TypedArrayPrototypeSet(e,t,r){return e.set(t,r)},Boolean:Boolean,Uint8Array:Uint8Array}},23774:function(e,t,r){"use strict";const i=r(48287),{kResistStopPropagation:n,SymbolDispose:s}=r(36152),o=globalThis.AbortSignal||r(25568).AbortSignal,a=globalThis.AbortController||r(25568).AbortController,l=Object.getPrototypeOf((async function(){})).constructor,u=globalThis.Blob||i.Blob,c="undefined"!==typeof u?function(e){return e instanceof u}:function(e){return!1},h=(e,t)=>{if(void 0!==e&&(null===e||"object"!==typeof e||!("aborted"in e)))throw new ERR_INVALID_ARG_TYPE(t,"AbortSignal",e)},d=(e,t)=>{if("function"!==typeof e)throw new ERR_INVALID_ARG_TYPE(t,"Function",e)};class f extends Error{constructor(e){if(!Array.isArray(e))throw new TypeError("Expected input to be an Array, got "+typeof e);let t="";for(let r=0;r{e=r,t=i}));return{promise:r,resolve:e,reject:t}},promisify(e){return new Promise(((t,r)=>{e(((e,...i)=>e?r(e):t(...i)))}))},debuglog(){return function(){}},format(e,...t){return e.replace(/%([sdifj])/g,(function(...[e,r]){const i=t.shift();if("f"===r)return i.toFixed(6);if("j"===r)return JSON.stringify(i);if("s"===r&&"object"===typeof i){const e=i.constructor!==Object?i.constructor.name:"";return`${e} {}`.trim()}return i.toString()}))},inspect(e){switch(typeof e){case"string":if(e.includes("'")){if(!e.includes('"'))return`"${e}"`;if(!e.includes("`")&&!e.includes("${"))return`\`${e}\``}return`'${e}'`;case"number":return isNaN(e)?"NaN":Object.is(e,-0)?String(e):e;case"bigint":return`${String(e)}n`;case"boolean":case"undefined":return String(e);case"object":return"{}"}},types:{isAsyncFunction(e){return e instanceof l},isArrayBufferView(e){return ArrayBuffer.isView(e)}},isBlob:c,deprecate(e,t){return e},addAbortListener:r(37007).addAbortListener||function(e,t){if(void 0===e)throw new ERR_INVALID_ARG_TYPE("signal","AbortSignal",e);let r;return h(e,"signal"),d(t,"listener"),e.aborted?queueMicrotask((()=>t())):(e.addEventListener("abort",t,{__proto__:null,once:!0,[n]:!0}),r=()=>{e.removeEventListener("abort",t)}),{__proto__:null,[s](){var e;null===(e=r)||void 0===e||e()}}},AbortSignalAny:o.any||function(e){if(1===e.length)return e[0];const t=new a,r=()=>t.abort();return e.forEach((e=>{h(e,"signals"),e.addEventListener("abort",r,{once:!0})})),t.signal.addEventListener("abort",(()=>{e.forEach((e=>e.removeEventListener("abort",r)))}),{once:!0}),t.signal}},e.exports.promisify.custom=Symbol.for("nodejs.util.promisify.custom")},66836:function(e,t,r){const{Buffer:i}=r(48287),{ObjectDefineProperty:n,ObjectKeys:s,ReflectApply:o}=r(36152),{promisify:{custom:a}}=r(23774),{streamReturningOperators:l,promiseReturningOperators:u}=r(5589),{codes:{ERR_ILLEGAL_CONSTRUCTOR:c}}=r(16653),h=r(57123),{setDefaultHighWaterMark:d,getDefaultHighWaterMark:f}=r(49809),{pipeline:p}=r(27944),{destroyer:m}=r(91582),g=r(34756),v=r(67673),y=r(98825),b=e.exports=r(33137).Stream;b.isDestroyed=y.isDestroyed,b.isDisturbed=y.isDisturbed,b.isErrored=y.isErrored,b.isReadable=y.isReadable,b.isWritable=y.isWritable,b.Readable=r(21878);for(const k of s(l)){const x=l[k];function w(...e){if(new.target)throw c();return b.Readable.from(o(x,this,e))}n(w,"name",{__proto__:null,value:x.name}),n(w,"length",{__proto__:null,value:x.length}),n(b.Readable.prototype,k,{__proto__:null,value:w,enumerable:!1,configurable:!0,writable:!0})}for(const S of s(u)){const M=u[S];function w(...e){if(new.target)throw c();return o(M,this,e)}n(w,"name",{__proto__:null,value:M.name}),n(w,"length",{__proto__:null,value:M.length}),n(b.Readable.prototype,S,{__proto__:null,value:w,enumerable:!1,configurable:!0,writable:!0})}b.Writable=r(49498),b.Duplex=r(84656),b.Transform=r(82112),b.PassThrough=r(15122),b.pipeline=p;const{addAbortSignal:_}=r(7849);b.addAbortSignal=_,b.finished=g,b.destroy=m,b.compose=h,b.setDefaultHighWaterMark=d,b.getDefaultHighWaterMark=f,n(b,"promises",{__proto__:null,configurable:!0,enumerable:!0,get(){return v}}),n(p,a,{__proto__:null,enumerable:!0,get(){return v.pipeline}}),n(g,a,{__proto__:null,enumerable:!0,get(){return v.finished}}),b.Stream=b,b._isUint8Array=function(e){return e instanceof Uint8Array},b._uint8ArrayToBuffer=function(e){return i.from(e.buffer,e.byteOffset,e.byteLength)}},67673:function(e,t,r){"use strict";const{ArrayPrototypePop:i,Promise:n}=r(36152),{isIterable:s,isNodeStream:o,isWebStream:a}=r(98825),{pipelineImpl:l}=r(27944),{finished:u}=r(34756);function c(...e){return new n(((t,r)=>{let n,u;const c=e[e.length-1];if(c&&"object"===typeof c&&!o(c)&&!s(c)&&!a(c)){const t=i(e);n=t.signal,u=t.end}l(e,((e,i)=>{e?r(e):t(i)}),{signal:n,end:u})}))}r(66836),e.exports={finished:u,pipeline:c}},25568:function(e){"use strict";const{AbortController:t,AbortSignal:r}="undefined"!==typeof self?self:"undefined"!==typeof window?window:void 0;e.exports=t,e.exports.AbortSignal=r,e.exports["default"]=t},14018:function(e,t){"use strict";function r(e,t){return{validate:e,compare:t}}function i(e){return e%4===0&&(e%100!==0||e%400===0)}Object.defineProperty(t,"__esModule",{value:!0}),t.formatNames=t.fastFormats=t.fullFormats=void 0,t.fullFormats={date:r(o,a),time:r(u,c),"date-time":r(d,f),duration:/^P(?!$)((\d+Y)?(\d+M)?(\d+D)?(T(?=\d)(\d+H)?(\d+M)?(\d+S)?)?|(\d+W)?)$/,uri:g,"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":/^(?:(?:[^\x00-\x20"'<>%\\^`{|}]|%[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,url:/^(?:https?|ftp):\/\/(?:\S+(?::\S*)?@)?(?:(?!(?:10|127)(?:\.\d{1,3}){3})(?!(?:169\.254|192\.168)(?:\.\d{1,3}){2})(?!172\.(?:1[6-9]|2\d|3[0-1])(?:\.\d{1,3}){2})(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z0-9\u{00a1}-\u{ffff}]+-)*[a-z0-9\u{00a1}-\u{ffff}]+)(?:\.(?:[a-z0-9\u{00a1}-\u{ffff}]+-)*[a-z0-9\u{00a1}-\u{ffff}]+)*(?:\.(?:[a-z\u{00a1}-\u{ffff}]{2,})))(?::\d{2,5})?(?:\/[^\s]*)?$/iu,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:/^(?=.{1,253}\.?$)[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?(?:\.[a-z0-9](?:[-0-9a-z]{0,61}[0-9a-z])?)*\.?$/i,ipv4:/^(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)$/,ipv6:/^((([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}))|:)))$/i,regex:M,uuid:/^(?:urn:uuid:)?[0-9a-f]{8}-(?:[0-9a-f]{4}-){3}[0-9a-f]{12}$/i,"json-pointer":/^(?:\/(?:[^~/]|~0|~1)*)*$/,"json-pointer-uri-fragment":/^#(?:\/(?:[a-z0-9_\-.!$&'()*+,;:=@]|%[0-9a-f]{2}|~0|~1)*)*$/i,"relative-json-pointer":/^(?:0|[1-9][0-9]*)(?:#|(?:\/(?:[^~/]|~0|~1)*)*)$/,byte:y,int32:{type:"number",validate:_},int64:{type:"number",validate:k},float:{type:"number",validate:x},double:{type:"number",validate:x},password:!0,binary:!0},t.fastFormats={...t.fullFormats,date:r(/^\d\d\d\d-[0-1]\d-[0-3]\d$/,a),time:r(/^(?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d(?::?\d\d)?)?$/i,c),"date-time":r(/^\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,f),uri:/^(?:[a-z][a-z0-9+\-.]*:)(?:\/?\/)?[^\s]*$/i,"uri-reference":/^(?:(?:[a-z][a-z0-9+\-.]*:)?\/?\/)?(?:[^\\\s#][^\s#]*)?(?:#[^\\\s]*)?$/i,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},t.formatNames=Object.keys(t.fullFormats);const n=/^(\d\d\d\d)-(\d\d)-(\d\d)$/,s=[0,31,28,31,30,31,30,31,31,30,31,30,31];function o(e){const t=n.exec(e);if(!t)return!1;const r=+t[1],o=+t[2],a=+t[3];return o>=1&&o<=12&&a>=1&&a<=(2===o&&i(r)?29:s[o])}function a(e,t){if(e&&t)return e>t?1:et?1:e=b}function k(e){return Number.isInteger(e)}function x(){return!0}const S=/[^\\]\\Z/;function M(e){if(S.test(e))return!1;try{return new RegExp(e),!0}catch(t){return!1}}},68182:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(14018),n=r(26461),s=r(93789),o=new s.Name("fullFormats"),a=new s.Name("fastFormats"),l=(e,t={keywords:!0})=>{if(Array.isArray(t))return u(e,t,i.fullFormats,o),e;const[r,s]="fast"===t.mode?[i.fastFormats,a]:[i.fullFormats,o],l=t.formats||i.formatNames;return u(e,l,r,s),t.keywords&&n.default(e),e};function u(e,t,r,i){var n,o;null!==(n=(o=e.opts.code).formats)&&void 0!==n||(o.formats=s._`require("ajv-formats/dist/formats").${i}`);for(const s of t)e.addFormat(s,r[s])}l.get=(e,t="full")=>{const r="fast"===t?i.fastFormats:i.fullFormats,n=r[e];if(!n)throw new Error(`Unknown format "${e}"`);return n},e.exports=t=l,Object.defineProperty(t,"__esModule",{value:!0}),t["default"]=l},26461:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.formatLimitDefinition=void 0;const i=r(22394),n=r(93789),s=n.operators,o={formatMaximum:{okStr:"<=",ok:s.LTE,fail:s.GT},formatMinimum:{okStr:">=",ok:s.GTE,fail:s.LT},formatExclusiveMaximum:{okStr:"<",ok:s.LT,fail:s.GTE},formatExclusiveMinimum:{okStr:">",ok:s.GT,fail:s.LTE}},a={message:({keyword:e,schemaCode:t})=>n.str`should be ${o[e].okStr} ${t}`,params:({keyword:e,schemaCode:t})=>n._`{comparison: ${o[e].okStr}, limit: ${t}}`};t.formatLimitDefinition={keyword:Object.keys(o),type:"string",schemaType:"string",$data:!0,error:a,code(e){const{gen:t,data:r,schemaCode:s,keyword:a,it:l}=e,{opts:u,self:c}=l;if(!u.validateFormats)return;const h=new i.KeywordCxt(l,c.RULES.all.format.definition,"format");function d(){const r=t.scopeValue("formats",{ref:c.formats,code:u.code.formats}),i=t.const("fmt",n._`${r}[${h.schemaCode}]`);e.fail$data(n.or(n._`typeof ${i} != "object"`,n._`${i} instanceof RegExp`,n._`typeof ${i}.compare != "function"`,p(i)))}function f(){const r=h.schema,i=c.formats[r];if(!i||!0===i)return;if("object"!=typeof i||i instanceof RegExp||"function"!=typeof i.compare)throw new Error(`"${a}": format "${r}" does not define "compare" function`);const s=t.scopeValue("formats",{key:r,ref:i,code:u.code.formats?n._`${u.code.formats}${n.getProperty(r)}`:void 0});e.fail$data(p(s))}function p(e){return n._`${e}.compare(${r}, ${s}) ${o[a].fail} 0`}h.$data?d():f()},dependencies:["format"]};const l=e=>(e.addKeyword(t.formatLimitDefinition),e);t["default"]=l},22394:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.MissingRefError=t.ValidationError=t.CodeGen=t.Name=t.nil=t.stringify=t.str=t._=t.KeywordCxt=t.Ajv=void 0;const i=r(17666),n=r(4824),s=r(77013),o=r(92455),a=["/properties"],l="http://json-schema.org/draft-07/schema";class u extends i.default{_addVocabularies(){super._addVocabularies(),n.default.forEach((e=>this.addVocabulary(e))),this.opts.discriminator&&this.addKeyword(s.default)}_addDefaultMetaSchema(){if(super._addDefaultMetaSchema(),!this.opts.meta)return;const e=this.opts.$data?this.$dataMetaSchema(o,a):o;this.addMetaSchema(e,l,!1),this.refs["http://json-schema.org/schema"]=l}defaultMeta(){return this.opts.defaultMeta=super.defaultMeta()||(this.getSchema(l)?l:void 0)}}t.Ajv=u,e.exports=t=u,e.exports.Ajv=u,Object.defineProperty(t,"__esModule",{value:!0}),t["default"]=u;var c=r(69810);Object.defineProperty(t,"KeywordCxt",{enumerable:!0,get:function(){return c.KeywordCxt}});var h=r(93789);Object.defineProperty(t,"_",{enumerable:!0,get:function(){return h._}}),Object.defineProperty(t,"str",{enumerable:!0,get:function(){return h.str}}),Object.defineProperty(t,"stringify",{enumerable:!0,get:function(){return h.stringify}}),Object.defineProperty(t,"nil",{enumerable:!0,get:function(){return h.nil}}),Object.defineProperty(t,"Name",{enumerable:!0,get:function(){return h.Name}}),Object.defineProperty(t,"CodeGen",{enumerable:!0,get:function(){return h.CodeGen}});var d=r(99598);Object.defineProperty(t,"ValidationError",{enumerable:!0,get:function(){return d.default}});var f=r(70303);Object.defineProperty(t,"MissingRefError",{enumerable:!0,get:function(){return f.default}})},72104:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.regexpCode=t.getEsmExportName=t.getProperty=t.safeStringify=t.stringify=t.strConcat=t.addCodeArg=t.str=t._=t.nil=t._Code=t.Name=t.IDENTIFIER=t._CodeOrName=void 0;class r{}t._CodeOrName=r,t.IDENTIFIER=/^[a-z$_][a-z$_0-9]*$/i;class i extends r{constructor(e){if(super(),!t.IDENTIFIER.test(e))throw new Error("CodeGen: name must be a valid identifier");this.str=e}toString(){return this.str}emptyStr(){return!1}get names(){return{[this.str]:1}}}t.Name=i;class n extends r{constructor(e){super(),this._items="string"===typeof e?[e]:e}toString(){return this.str}emptyStr(){if(this._items.length>1)return!1;const e=this._items[0];return""===e||'""'===e}get str(){var e;return null!==(e=this._str)&&void 0!==e?e:this._str=this._items.reduce(((e,t)=>`${e}${t}`),"")}get names(){var e;return null!==(e=this._names)&&void 0!==e?e:this._names=this._items.reduce(((e,t)=>(t instanceof i&&(e[t.str]=(e[t.str]||0)+1),e)),{})}}function s(e,...t){const r=[e[0]];let i=0;while(i"),GTE:new i._Code(">="),LT:new i._Code("<"),LTE:new i._Code("<="),EQ:new i._Code("==="),NEQ:new i._Code("!=="),NOT:new i._Code("!"),OR:new i._Code("||"),AND:new i._Code("&&"),ADD:new i._Code("+")};class a{optimizeNodes(){return this}optimizeNames(e,t){return this}}class l extends a{constructor(e,t,r){super(),this.varKind=e,this.name=t,this.rhs=r}render({es5:e,_n:t}){const r=e?n.varKinds.var:this.varKind,i=void 0===this.rhs?"":` = ${this.rhs}`;return`${r} ${this.name}${i};`+t}optimizeNames(e,t){if(e[this.name.str])return this.rhs&&(this.rhs=T(this.rhs,e,t)),this}get names(){return this.rhs instanceof i._CodeOrName?this.rhs.names:{}}}class u extends a{constructor(e,t,r){super(),this.lhs=e,this.rhs=t,this.sideEffects=r}render({_n:e}){return`${this.lhs} = ${this.rhs};`+e}optimizeNames(e,t){if(!(this.lhs instanceof i.Name)||e[this.lhs.str]||this.sideEffects)return this.rhs=T(this.rhs,e,t),this}get names(){const e=this.lhs instanceof i.Name?{}:{...this.lhs.names};return P(e,this.rhs)}}class c extends u{constructor(e,t,r,i){super(e,r,i),this.op=t}render({_n:e}){return`${this.lhs} ${this.op}= ${this.rhs};`+e}}class h extends a{constructor(e){super(),this.label=e,this.names={}}render({_n:e}){return`${this.label}:`+e}}class d extends a{constructor(e){super(),this.label=e,this.names={}}render({_n:e}){const t=this.label?` ${this.label}`:"";return`break${t};`+e}}class f extends a{constructor(e){super(),this.error=e}render({_n:e}){return`throw ${this.error};`+e}get names(){return this.error.names}}class p extends a{constructor(e){super(),this.code=e}render({_n:e}){return`${this.code};`+e}optimizeNodes(){return`${this.code}`?this:void 0}optimizeNames(e,t){return this.code=T(this.code,e,t),this}get names(){return this.code instanceof i._CodeOrName?this.code.names:{}}}class m extends a{constructor(e=[]){super(),this.nodes=e}render(e){return this.nodes.reduce(((t,r)=>t+r.render(e)),"")}optimizeNodes(){const{nodes:e}=this;let t=e.length;while(t--){const r=e[t].optimizeNodes();Array.isArray(r)?e.splice(t,1,...r):r?e[t]=r:e.splice(t,1)}return e.length>0?this:void 0}optimizeNames(e,t){const{nodes:r}=this;let i=r.length;while(i--){const n=r[i];n.optimizeNames(e,t)||(I(e,n.names),r.splice(i,1))}return r.length>0?this:void 0}get names(){return this.nodes.reduce(((e,t)=>O(e,t.names)),{})}}class g extends m{render(e){return"{"+e._n+super.render(e)+"}"+e._n}}class v extends m{}class y extends g{}y.kind="else";class b extends g{constructor(e,t){super(t),this.condition=e}render(e){let t=`if(${this.condition})`+super.render(e);return this.else&&(t+="else "+this.else.render(e)),t}optimizeNodes(){super.optimizeNodes();const e=this.condition;if(!0===e)return this.nodes;let t=this.else;if(t){const e=t.optimizeNodes();t=this.else=Array.isArray(e)?new y(e):e}return t?!1===e?t instanceof b?t:t.nodes:this.nodes.length?this:new b(D(e),t instanceof b?[t]:t.nodes):!1!==e&&this.nodes.length?this:void 0}optimizeNames(e,t){var r;if(this.else=null===(r=this.else)||void 0===r?void 0:r.optimizeNames(e,t),super.optimizeNames(e,t)||this.else)return this.condition=T(this.condition,e,t),this}get names(){const e=super.names;return P(e,this.condition),this.else&&O(e,this.else.names),e}}b.kind="if";class w extends g{}w.kind="for";class _ extends w{constructor(e){super(),this.iteration=e}render(e){return`for(${this.iteration})`+super.render(e)}optimizeNames(e,t){if(super.optimizeNames(e,t))return this.iteration=T(this.iteration,e,t),this}get names(){return O(super.names,this.iteration.names)}}class k extends w{constructor(e,t,r,i){super(),this.varKind=e,this.name=t,this.from=r,this.to=i}render(e){const t=e.es5?n.varKinds.var:this.varKind,{name:r,from:i,to:s}=this;return`for(${t} ${r}=${i}; ${r}<${s}; ${r}++)`+super.render(e)}get names(){const e=P(super.names,this.from);return P(e,this.to)}}class x extends w{constructor(e,t,r,i){super(),this.loop=e,this.varKind=t,this.name=r,this.iterable=i}render(e){return`for(${this.varKind} ${this.name} ${this.loop} ${this.iterable})`+super.render(e)}optimizeNames(e,t){if(super.optimizeNames(e,t))return this.iterable=T(this.iterable,e,t),this}get names(){return O(super.names,this.iterable.names)}}class S extends g{constructor(e,t,r){super(),this.name=e,this.args=t,this.async=r}render(e){const t=this.async?"async ":"";return`${t}function ${this.name}(${this.args})`+super.render(e)}}S.kind="func";class M extends m{render(e){return"return "+super.render(e)}}M.kind="return";class E extends g{render(e){let t="try"+super.render(e);return this.catch&&(t+=this.catch.render(e)),this.finally&&(t+=this.finally.render(e)),t}optimizeNodes(){var e,t;return super.optimizeNodes(),null===(e=this.catch)||void 0===e||e.optimizeNodes(),null===(t=this.finally)||void 0===t||t.optimizeNodes(),this}optimizeNames(e,t){var r,i;return super.optimizeNames(e,t),null===(r=this.catch)||void 0===r||r.optimizeNames(e,t),null===(i=this.finally)||void 0===i||i.optimizeNames(e,t),this}get names(){const e=super.names;return this.catch&&O(e,this.catch.names),this.finally&&O(e,this.finally.names),e}}class A extends g{constructor(e){super(),this.error=e}render(e){return`catch(${this.error})`+super.render(e)}}A.kind="catch";class C extends g{render(e){return"finally"+super.render(e)}}C.kind="finally";class ${constructor(e,t={}){this._values={},this._blockStarts=[],this._constants={},this.opts={...t,_n:t.lines?"\n":""},this._extScope=e,this._scope=new n.Scope({parent:e}),this._nodes=[new v]}toString(){return this._root.render(this.opts)}name(e){return this._scope.name(e)}scopeName(e){return this._extScope.name(e)}scopeValue(e,t){const r=this._extScope.value(e,t),i=this._values[r.prefix]||(this._values[r.prefix]=new Set);return i.add(r),r}getScopeValue(e,t){return this._extScope.getValue(e,t)}scopeRefs(e){return this._extScope.scopeRefs(e,this._values)}scopeCode(){return this._extScope.scopeCode(this._values)}_def(e,t,r,i){const n=this._scope.toName(t);return void 0!==r&&i&&(this._constants[n.str]=r),this._leafNode(new l(e,n,r)),n}const(e,t,r){return this._def(n.varKinds.const,e,t,r)}let(e,t,r){return this._def(n.varKinds.let,e,t,r)}var(e,t,r){return this._def(n.varKinds.var,e,t,r)}assign(e,t,r){return this._leafNode(new u(e,t,r))}add(e,r){return this._leafNode(new c(e,t.operators.ADD,r))}code(e){return"function"==typeof e?e():e!==i.nil&&this._leafNode(new p(e)),this}object(...e){const t=["{"];for(const[r,n]of e)t.length>1&&t.push(","),t.push(r),(r!==n||this.opts.es5)&&(t.push(":"),(0,i.addCodeArg)(t,n));return t.push("}"),new i._Code(t)}if(e,t,r){if(this._blockNode(new b(e)),t&&r)this.code(t).else().code(r).endIf();else if(t)this.code(t).endIf();else if(r)throw new Error('CodeGen: "else" body without "then" body');return this}elseIf(e){return this._elseNode(new b(e))}else(){return this._elseNode(new y)}endIf(){return this._endBlockNode(b,y)}_for(e,t){return this._blockNode(e),t&&this.code(t).endFor(),this}for(e,t){return this._for(new _(e),t)}forRange(e,t,r,i,s=(this.opts.es5?n.varKinds.var:n.varKinds.let)){const o=this._scope.toName(e);return this._for(new k(s,o,t,r),(()=>i(o)))}forOf(e,t,r,s=n.varKinds.const){const o=this._scope.toName(e);if(this.opts.es5){const e=t instanceof i.Name?t:this.var("_arr",t);return this.forRange("_i",0,i._`${e}.length`,(t=>{this.var(o,i._`${e}[${t}]`),r(o)}))}return this._for(new x("of",s,o,t),(()=>r(o)))}forIn(e,t,r,s=(this.opts.es5?n.varKinds.var:n.varKinds.const)){if(this.opts.ownProperties)return this.forOf(e,i._`Object.keys(${t})`,r);const o=this._scope.toName(e);return this._for(new x("in",s,o,t),(()=>r(o)))}endFor(){return this._endBlockNode(w)}label(e){return this._leafNode(new h(e))}break(e){return this._leafNode(new d(e))}return(e){const t=new M;if(this._blockNode(t),this.code(e),1!==t.nodes.length)throw new Error('CodeGen: "return" should have one node');return this._endBlockNode(M)}try(e,t,r){if(!t&&!r)throw new Error('CodeGen: "try" without "catch" and "finally"');const i=new E;if(this._blockNode(i),this.code(e),t){const e=this.name("e");this._currNode=i.catch=new A(e),t(e)}return r&&(this._currNode=i.finally=new C,this.code(r)),this._endBlockNode(A,C)}throw(e){return this._leafNode(new f(e))}block(e,t){return this._blockStarts.push(this._nodes.length),e&&this.code(e).endBlock(t),this}endBlock(e){const t=this._blockStarts.pop();if(void 0===t)throw new Error("CodeGen: not in self-balancing block");const r=this._nodes.length-t;if(r<0||void 0!==e&&r!==e)throw new Error(`CodeGen: wrong number of nodes: ${r} vs ${e} expected`);return this._nodes.length=t,this}func(e,t=i.nil,r,n){return this._blockNode(new S(e,t,r)),n&&this.code(n).endFunc(),this}endFunc(){return this._endBlockNode(S)}optimize(e=1){while(e-- >0)this._root.optimizeNodes(),this._root.optimizeNames(this._root.names,this._constants)}_leafNode(e){return this._currNode.nodes.push(e),this}_blockNode(e){this._currNode.nodes.push(e),this._nodes.push(e)}_endBlockNode(e,t){const r=this._currNode;if(r instanceof e||t&&r instanceof t)return this._nodes.pop(),this;throw new Error(`CodeGen: not in block "${t?`${e.kind}/${t.kind}`:e.kind}"`)}_elseNode(e){const t=this._currNode;if(!(t instanceof b))throw new Error('CodeGen: "else" without "if"');return this._currNode=t.else=e,this}get _root(){return this._nodes[0]}get _currNode(){const e=this._nodes;return e[e.length-1]}set _currNode(e){const t=this._nodes;t[t.length-1]=e}}function O(e,t){for(const r in t)e[r]=(e[r]||0)+(t[r]||0);return e}function P(e,t){return t instanceof i._CodeOrName?O(e,t.names):e}function T(e,t,r){return e instanceof i.Name?n(e):s(e)?new i._Code(e._items.reduce(((e,t)=>(t instanceof i.Name&&(t=n(t)),t instanceof i._Code?e.push(...t._items):e.push(t),e)),[])):e;function n(e){const i=r[e.str];return void 0===i||1!==t[e.str]?e:(delete t[e.str],i)}function s(e){return e instanceof i._Code&&e._items.some((e=>e instanceof i.Name&&1===t[e.str]&&void 0!==r[e.str]))}}function I(e,t){for(const r in t)e[r]=(e[r]||0)-(t[r]||0)}function D(e){return"boolean"==typeof e||"number"==typeof e||null===e?!e:i._`!${F(e)}`}t.CodeGen=$,t.not=D;const L=B(t.operators.AND);function N(...e){return e.reduce(L)}t.and=N;const R=B(t.operators.OR);function j(...e){return e.reduce(R)}function B(e){return(t,r)=>t===i.nil?r:r===i.nil?t:i._`${F(t)} ${e} ${F(r)}`}function F(e){return e instanceof i.Name?e:i._`(${e})`}t.or=j},45885:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ValueScope=t.ValueScopeName=t.Scope=t.varKinds=t.UsedValueState=void 0;const i=r(72104);class n extends Error{constructor(e){super(`CodeGen: "code" for ${e} not defined`),this.value=e.value}}var s;(function(e){e[e["Started"]=0]="Started",e[e["Completed"]=1]="Completed"})(s||(t.UsedValueState=s={})),t.varKinds={const:new i.Name("const"),let:new i.Name("let"),var:new i.Name("var")};class o{constructor({prefixes:e,parent:t}={}){this._names={},this._prefixes=e,this._parent=t}toName(e){return e instanceof i.Name?e:this.name(e)}name(e){return new i.Name(this._newName(e))}_newName(e){const t=this._names[e]||this._nameGroup(e);return`${e}${t.index++}`}_nameGroup(e){var t,r;if((null===(r=null===(t=this._parent)||void 0===t?void 0:t._prefixes)||void 0===r?void 0:r.has(e))||this._prefixes&&!this._prefixes.has(e))throw new Error(`CodeGen: prefix "${e}" is not allowed in this scope`);return this._names[e]={prefix:e,index:0}}}t.Scope=o;class a extends i.Name{constructor(e,t){super(t),this.prefix=e}setValue(e,{property:t,itemIndex:r}){this.value=e,this.scopePath=i._`.${new i.Name(t)}[${r}]`}}t.ValueScopeName=a;const l=i._`\n`;class u extends o{constructor(e){super(e),this._values={},this._scope=e.scope,this.opts={...e,_n:e.lines?l:i.nil}}get(){return this._scope}name(e){return new a(e,this._newName(e))}value(e,t){var r;if(void 0===t.ref)throw new Error("CodeGen: ref must be passed in value");const i=this.toName(e),{prefix:n}=i,s=null!==(r=t.key)&&void 0!==r?r:t.ref;let o=this._values[n];if(o){const e=o.get(s);if(e)return e}else o=this._values[n]=new Map;o.set(s,i);const a=this._scope[n]||(this._scope[n]=[]),l=a.length;return a[l]=t.ref,i.setValue(t,{property:n,itemIndex:l}),i}getValue(e,t){const r=this._values[e];if(r)return r.get(t)}scopeRefs(e,t=this._values){return this._reduceValues(t,(t=>{if(void 0===t.scopePath)throw new Error(`CodeGen: name "${t}" has no value`);return i._`${e}${t.scopePath}`}))}scopeCode(e=this._values,t,r){return this._reduceValues(e,(e=>{if(void 0===e.value)throw new Error(`CodeGen: name "${e}" has no value`);return e.value.code}),t,r)}_reduceValues(e,r,o={},a){let l=i.nil;for(const u in e){const c=e[u];if(!c)continue;const h=o[u]=o[u]||new Map;c.forEach((e=>{if(h.has(e))return;h.set(e,s.Started);let o=r(e);if(o){const r=this.opts.es5?t.varKinds.var:t.varKinds.const;l=i._`${l}${r} ${e} = ${o};${this.opts._n}`}else{if(!(o=null===a||void 0===a?void 0:a(e)))throw new n(e);l=i._`${l}${o}${this.opts._n}`}h.set(e,s.Completed)}))}return l}}t.ValueScope=u},22796:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.extendErrors=t.resetErrorsCount=t.reportExtraError=t.reportError=t.keyword$DataError=t.keywordError=void 0;const i=r(93789),n=r(7083),s=r(66735);function o(e,r=t.keywordError,n,s){const{it:o}=e,{gen:a,compositeRule:l,allErrors:u}=o,d=f(e,r,n);(null!==s&&void 0!==s?s:l||u)?c(a,d):h(o,i._`[${d}]`)}function a(e,r=t.keywordError,i){const{it:n}=e,{gen:o,compositeRule:a,allErrors:l}=n,u=f(e,r,i);c(o,u),a||l||h(n,s.default.vErrors)}function l(e,t){e.assign(s.default.errors,t),e.if(i._`${s.default.vErrors} !== null`,(()=>e.if(t,(()=>e.assign(i._`${s.default.vErrors}.length`,t)),(()=>e.assign(s.default.vErrors,null)))))}function u({gen:e,keyword:t,schemaValue:r,data:n,errsCount:o,it:a}){if(void 0===o)throw new Error("ajv implementation error");const l=e.name("err");e.forRange("i",o,s.default.errors,(o=>{e.const(l,i._`${s.default.vErrors}[${o}]`),e.if(i._`${l}.instancePath === undefined`,(()=>e.assign(i._`${l}.instancePath`,(0,i.strConcat)(s.default.instancePath,a.errorPath)))),e.assign(i._`${l}.schemaPath`,i.str`${a.errSchemaPath}/${t}`),a.opts.verbose&&(e.assign(i._`${l}.schema`,r),e.assign(i._`${l}.data`,n))}))}function c(e,t){const r=e.const("err",t);e.if(i._`${s.default.vErrors} === null`,(()=>e.assign(s.default.vErrors,i._`[${r}]`)),i._`${s.default.vErrors}.push(${r})`),e.code(i._`${s.default.errors}++`)}function h(e,t){const{gen:r,validateName:n,schemaEnv:s}=e;s.$async?r.throw(i._`new ${e.ValidationError}(${t})`):(r.assign(i._`${n}.errors`,t),r.return(!1))}t.keywordError={message:({keyword:e})=>i.str`must pass "${e}" keyword validation`},t.keyword$DataError={message:({keyword:e,schemaType:t})=>t?i.str`"${e}" keyword must be ${t} ($data)`:i.str`"${e}" keyword is invalid ($data)`},t.reportError=o,t.reportExtraError=a,t.resetErrorsCount=l,t.extendErrors=u;const d={keyword:new i.Name("keyword"),schemaPath:new i.Name("schemaPath"),params:new i.Name("params"),propertyName:new i.Name("propertyName"),message:new i.Name("message"),schema:new i.Name("schema"),parentSchema:new i.Name("parentSchema")};function f(e,t,r){const{createErrors:n}=e.it;return!1===n?i._`{}`:p(e,t,r)}function p(e,t,r={}){const{gen:i,it:n}=e,s=[m(n,r),g(e,r)];return v(e,t,s),i.object(...s)}function m({errorPath:e},{instancePath:t}){const r=t?i.str`${e}${(0,n.getErrorPath)(t,n.Type.Str)}`:e;return[s.default.instancePath,(0,i.strConcat)(s.default.instancePath,r)]}function g({keyword:e,it:{errSchemaPath:t}},{schemaPath:r,parentSchema:s}){let o=s?t:i.str`${t}/${e}`;return r&&(o=i.str`${o}${(0,n.getErrorPath)(r,n.Type.Str)}`),[d.schemaPath,o]}function v(e,{params:t,message:r},n){const{keyword:o,data:a,schemaValue:l,it:u}=e,{opts:c,propertyName:h,topSchemaRef:f,schemaPath:p}=u;n.push([d.keyword,o],[d.params,"function"==typeof t?t(e):t||i._`{}`]),c.messages&&n.push([d.message,"function"==typeof r?r(e):r]),c.verbose&&n.push([d.schema,l],[d.parentSchema,i._`${f}${p}`],[s.default.data,a]),h&&n.push([d.propertyName,h])}},65219:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.resolveSchema=t.getCompilingSchema=t.resolveRef=t.compileSchema=t.SchemaEnv=void 0;const i=r(93789),n=r(99598),s=r(66735),o=r(63043),a=r(7083),l=r(69810);class u{constructor(e){var t;let r;this.refs={},this.dynamicAnchors={},"object"==typeof e.schema&&(r=e.schema),this.schema=e.schema,this.schemaId=e.schemaId,this.root=e.root||this,this.baseId=null!==(t=e.baseId)&&void 0!==t?t:(0,o.normalizeId)(null===r||void 0===r?void 0:r[e.schemaId||"$id"]),this.schemaPath=e.schemaPath,this.localRefs=e.localRefs,this.meta=e.meta,this.$async=null===r||void 0===r?void 0:r.$async,this.refs={}}}function c(e){const t=f.call(this,e);if(t)return t;const r=(0,o.getFullPath)(this.opts.uriResolver,e.root.baseId),{es5:a,lines:u}=this.opts.code,{ownProperties:c}=this.opts,h=new i.CodeGen(this.scope,{es5:a,lines:u,ownProperties:c});let d;e.$async&&(d=h.scopeValue("Error",{ref:n.default,code:i._`require("ajv/dist/runtime/validation_error").default`}));const p=h.scopeName("validate");e.validateName=p;const m={gen:h,allErrors:this.opts.allErrors,data:s.default.data,parentData:s.default.parentData,parentDataProperty:s.default.parentDataProperty,dataNames:[s.default.data],dataPathArr:[i.nil],dataLevel:0,dataTypes:[],definedProperties:new Set,topSchemaRef:h.scopeValue("schema",!0===this.opts.code.source?{ref:e.schema,code:(0,i.stringify)(e.schema)}:{ref:e.schema}),validateName:p,ValidationError:d,schema:e.schema,schemaEnv:e,rootId:r,baseId:e.baseId||r,schemaPath:i.nil,errSchemaPath:e.schemaPath||(this.opts.jtd?"":"#"),errorPath:i._`""`,opts:this.opts,self:this};let g;try{this._compilations.add(e),(0,l.validateFunctionCode)(m),h.optimize(this.opts.code.optimize);const t=h.toString();g=`${h.scopeRefs(s.default.scope)}return ${t}`,this.opts.code.process&&(g=this.opts.code.process(g,e));const r=new Function(`${s.default.self}`,`${s.default.scope}`,g),n=r(this,this.scope.get());if(this.scope.value(p,{ref:n}),n.errors=null,n.schema=e.schema,n.schemaEnv=e,e.$async&&(n.$async=!0),!0===this.opts.code.source&&(n.source={validateName:p,validateCode:t,scopeValues:h._values}),this.opts.unevaluated){const{props:e,items:t}=m;n.evaluated={props:e instanceof i.Name?void 0:e,items:t instanceof i.Name?void 0:t,dynamicProps:e instanceof i.Name,dynamicItems:t instanceof i.Name},n.source&&(n.source.evaluated=(0,i.stringify)(n.evaluated))}return e.validate=n,e}catch(v){throw delete e.validate,delete e.validateName,g&&this.logger.error("Error compiling schema, function code:",g),v}finally{this._compilations.delete(e)}}function h(e,t,r){var i;r=(0,o.resolveUrl)(this.opts.uriResolver,t,r);const n=e.refs[r];if(n)return n;let s=m.call(this,e,r);if(void 0===s){const n=null===(i=e.localRefs)||void 0===i?void 0:i[r],{schemaId:o}=this.opts;n&&(s=new u({schema:n,schemaId:o,root:e,baseId:t}))}return void 0!==s?e.refs[r]=d.call(this,s):void 0}function d(e){return(0,o.inlineRef)(e.schema,this.opts.inlineRefs)?e.schema:e.validate?e:c.call(this,e)}function f(e){for(const t of this._compilations)if(p(t,e))return t}function p(e,t){return e.schema===t.schema&&e.root===t.root&&e.baseId===t.baseId}function m(e,t){let r;while("string"==typeof(r=this.refs[t]))t=r;return r||this.schemas[t]||g.call(this,e,t)}function g(e,t){const r=this.opts.uriResolver.parse(t),i=(0,o._getFullPath)(this.opts.uriResolver,r);let n=(0,o.getFullPath)(this.opts.uriResolver,e.baseId,void 0);if(Object.keys(e.schema).length>0&&i===n)return y.call(this,r,e);const s=(0,o.normalizeId)(i),a=this.refs[s]||this.schemas[s];if("string"==typeof a){const t=g.call(this,e,a);if("object"!==typeof(null===t||void 0===t?void 0:t.schema))return;return y.call(this,r,t)}if("object"===typeof(null===a||void 0===a?void 0:a.schema)){if(a.validate||c.call(this,a),s===(0,o.normalizeId)(t)){const{schema:t}=a,{schemaId:r}=this.opts,i=t[r];return i&&(n=(0,o.resolveUrl)(this.opts.uriResolver,n,i)),new u({schema:t,schemaId:r,root:e,baseId:n})}return y.call(this,r,a)}}t.SchemaEnv=u,t.compileSchema=c,t.resolveRef=h,t.getCompilingSchema=f,t.resolveSchema=g;const v=new Set(["properties","patternProperties","enum","dependencies","definitions"]);function y(e,{baseId:t,schema:r,root:i}){var n;if("/"!==(null===(n=e.fragment)||void 0===n?void 0:n[0]))return;for(const u of e.fragment.slice(1).split("/")){if("boolean"===typeof r)return;const e=r[(0,a.unescapeFragment)(u)];if(void 0===e)return;r=e;const i="object"===typeof r&&r[this.opts.schemaId];!v.has(u)&&i&&(t=(0,o.resolveUrl)(this.opts.uriResolver,t,i))}let s;if("boolean"!=typeof r&&r.$ref&&!(0,a.schemaHasRulesButRef)(r,this.RULES)){const e=(0,o.resolveUrl)(this.opts.uriResolver,t,r.$ref);s=g.call(this,i,e)}const{schemaId:l}=this.opts;return s=s||new u({schema:r,schemaId:l,root:i,baseId:t}),s.schema!==s.root.schema?s:void 0}},66735:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(93789),n={data:new i.Name("data"),valCxt:new i.Name("valCxt"),instancePath:new i.Name("instancePath"),parentData:new i.Name("parentData"),parentDataProperty:new i.Name("parentDataProperty"),rootData:new i.Name("rootData"),dynamicAnchors:new i.Name("dynamicAnchors"),vErrors:new i.Name("vErrors"),errors:new i.Name("errors"),this:new i.Name("this"),self:new i.Name("self"),scope:new i.Name("scope"),json:new i.Name("json"),jsonPos:new i.Name("jsonPos"),jsonLen:new i.Name("jsonLen"),jsonPart:new i.Name("jsonPart")};t["default"]=n},70303:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(63043);class n extends Error{constructor(e,t,r,n){super(n||`can't resolve reference ${r} from id ${t}`),this.missingRef=(0,i.resolveUrl)(e,t,r),this.missingSchema=(0,i.normalizeId)((0,i.getFullPath)(e,this.missingRef))}}t["default"]=n},63043:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getSchemaRefs=t.resolveUrl=t.normalizeId=t._getFullPath=t.getFullPath=t.inlineRef=void 0;const i=r(7083),n=r(32017),s=r(67242),o=new Set(["type","format","pattern","maxLength","minLength","maxProperties","minProperties","maxItems","minItems","maximum","minimum","uniqueItems","multipleOf","required","enum","const"]);function a(e,t=!0){return"boolean"==typeof e||(!0===t?!u(e):!!t&&c(e)<=t)}t.inlineRef=a;const l=new Set(["$ref","$recursiveRef","$recursiveAnchor","$dynamicRef","$dynamicAnchor"]);function u(e){for(const t in e){if(l.has(t))return!0;const r=e[t];if(Array.isArray(r)&&r.some(u))return!0;if("object"==typeof r&&u(r))return!0}return!1}function c(e){let t=0;for(const r in e){if("$ref"===r)return 1/0;if(t++,!o.has(r)&&("object"==typeof e[r]&&(0,i.eachItem)(e[r],(e=>t+=c(e))),t===1/0))return 1/0}return t}function h(e,t="",r){!1!==r&&(t=p(t));const i=e.parse(t);return d(e,i)}function d(e,t){const r=e.serialize(t);return r.split("#")[0]+"#"}t.getFullPath=h,t._getFullPath=d;const f=/#\/?$/;function p(e){return e?e.replace(f,""):""}function m(e,t,r){return r=p(r),e.resolve(t,r)}t.normalizeId=p,t.resolveUrl=m;const g=/^[a-z_][-a-z0-9._]*$/i;function v(e,t){if("boolean"==typeof e)return{};const{schemaId:r,uriResolver:i}=this.opts,o=p(e[r]||t),a={"":o},l=h(i,o,!1),u={},c=new Set;return s(e,{allKeys:!0},((e,t,i,n)=>{if(void 0===n)return;const s=l+t;let o=a[n];function h(t){const r=this.opts.uriResolver.resolve;if(t=p(o?r(o,t):t),c.has(t))throw f(t);c.add(t);let i=this.refs[t];return"string"==typeof i&&(i=this.refs[i]),"object"==typeof i?d(e,i.schema,t):t!==p(s)&&("#"===t[0]?(d(e,u[t],t),u[t]=e):this.refs[t]=s),t}function m(e){if("string"==typeof e){if(!g.test(e))throw new Error(`invalid anchor "${e}"`);h.call(this,`#${e}`)}}"string"==typeof e[r]&&(o=h.call(this,e[r])),m.call(this,e.$anchor),m.call(this,e.$dynamicAnchor),a[t]=o})),u;function d(e,t,r){if(void 0!==t&&!n(e,t))throw f(r)}function f(e){return new Error(`reference "${e}" resolves to more than one schema`)}}t.getSchemaRefs=v},27476:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getRules=t.isJSONType=void 0;const r=["string","number","integer","boolean","null","object","array"],i=new Set(r);function n(e){return"string"==typeof e&&i.has(e)}function s(){const e={number:{type:"number",rules:[]},string:{type:"string",rules:[]},array:{type:"array",rules:[]},object:{type:"object",rules:[]}};return{types:{...e,integer:!0,boolean:!0,null:!0},rules:[{rules:[]},e.number,e.string,e.array,e.object],post:{rules:[]},all:{},keywords:{}}}t.isJSONType=n,t.getRules=s},7083:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.checkStrictMode=t.getErrorPath=t.Type=t.useFunc=t.setEvaluated=t.evaluatedPropsToName=t.mergeEvaluated=t.eachItem=t.unescapeJsonPointer=t.escapeJsonPointer=t.escapeFragment=t.unescapeFragment=t.schemaRefOrVal=t.schemaHasRulesButRef=t.schemaHasRules=t.checkUnknownRules=t.alwaysValidSchema=t.toHash=void 0;const i=r(93789),n=r(72104);function s(e){const t={};for(const r of e)t[r]=!0;return t}function o(e,t){return"boolean"==typeof t?t:0===Object.keys(t).length||(a(e,t),!l(t,e.self.RULES.all))}function a(e,t=e.schema){const{opts:r,self:i}=e;if(!r.strictSchema)return;if("boolean"===typeof t)return;const n=i.RULES.keywords;for(const s in t)n[s]||x(e,`unknown keyword: "${s}"`)}function l(e,t){if("boolean"==typeof e)return!e;for(const r in e)if(t[r])return!0;return!1}function u(e,t){if("boolean"==typeof e)return!e;for(const r in e)if("$ref"!==r&&t.all[r])return!0;return!1}function c({topSchemaRef:e,schemaPath:t},r,n,s){if(!s){if("number"==typeof r||"boolean"==typeof r)return r;if("string"==typeof r)return i._`${r}`}return i._`${e}${t}${(0,i.getProperty)(n)}`}function h(e){return p(decodeURIComponent(e))}function d(e){return encodeURIComponent(f(e))}function f(e){return"number"==typeof e?`${e}`:e.replace(/~/g,"~0").replace(/\//g,"~1")}function p(e){return e.replace(/~1/g,"/").replace(/~0/g,"~")}function m(e,t){if(Array.isArray(e))for(const r of e)t(r);else t(e)}function g({mergeNames:e,mergeToName:t,mergeValues:r,resultToName:n}){return(s,o,a,l)=>{const u=void 0===a?o:a instanceof i.Name?(o instanceof i.Name?e(s,o,a):t(s,o,a),a):o instanceof i.Name?(t(s,a,o),o):r(o,a);return l!==i.Name||u instanceof i.Name?u:n(s,u)}}function v(e,t){if(!0===t)return e.var("props",!0);const r=e.var("props",i._`{}`);return void 0!==t&&y(e,r,t),r}function y(e,t,r){Object.keys(r).forEach((r=>e.assign(i._`${t}${(0,i.getProperty)(r)}`,!0)))}t.toHash=s,t.alwaysValidSchema=o,t.checkUnknownRules=a,t.schemaHasRules=l,t.schemaHasRulesButRef=u,t.schemaRefOrVal=c,t.unescapeFragment=h,t.escapeFragment=d,t.escapeJsonPointer=f,t.unescapeJsonPointer=p,t.eachItem=m,t.mergeEvaluated={props:g({mergeNames:(e,t,r)=>e.if(i._`${r} !== true && ${t} !== undefined`,(()=>{e.if(i._`${t} === true`,(()=>e.assign(r,!0)),(()=>e.assign(r,i._`${r} || {}`).code(i._`Object.assign(${r}, ${t})`)))})),mergeToName:(e,t,r)=>e.if(i._`${r} !== true`,(()=>{!0===t?e.assign(r,!0):(e.assign(r,i._`${r} || {}`),y(e,r,t))})),mergeValues:(e,t)=>!0===e||{...e,...t},resultToName:v}),items:g({mergeNames:(e,t,r)=>e.if(i._`${r} !== true && ${t} !== undefined`,(()=>e.assign(r,i._`${t} === true ? true : ${r} > ${t} ? ${r} : ${t}`))),mergeToName:(e,t,r)=>e.if(i._`${r} !== true`,(()=>e.assign(r,!0===t||i._`${r} > ${t} ? ${r} : ${t}`))),mergeValues:(e,t)=>!0===e||Math.max(e,t),resultToName:(e,t)=>e.var("items",t)})},t.evaluatedPropsToName=v,t.setEvaluated=y;const b={};function w(e,t){return e.scopeValue("func",{ref:t,code:b[t.code]||(b[t.code]=new n._Code(t.code))})}var _;function k(e,t,r){if(e instanceof i.Name){const n=t===_.Num;return r?n?i._`"[" + ${e} + "]"`:i._`"['" + ${e} + "']"`:n?i._`"/" + ${e}`:i._`"/" + ${e}.replace(/~/g, "~0").replace(/\\//g, "~1")`}return r?(0,i.getProperty)(e).toString():"/"+f(e)}function x(e,t,r=e.opts.strictSchema){if(r){if(t=`strict mode: ${t}`,!0===r)throw new Error(t);e.self.logger.warn(t)}}t.useFunc=w,function(e){e[e["Num"]=0]="Num",e[e["Str"]=1]="Str"}(_||(t.Type=_={})),t.getErrorPath=k,t.checkStrictMode=x},65335:function(e,t){"use strict";function r({schema:e,self:t},r){const n=t.RULES.types[r];return n&&!0!==n&&i(e,n)}function i(e,t){return t.rules.some((t=>n(e,t)))}function n(e,t){var r;return void 0!==e[t.keyword]||(null===(r=t.definition.implements)||void 0===r?void 0:r.some((t=>void 0!==e[t])))}Object.defineProperty(t,"__esModule",{value:!0}),t.shouldUseRule=t.shouldUseGroup=t.schemaHasRulesForType=void 0,t.schemaHasRulesForType=r,t.shouldUseGroup=i,t.shouldUseRule=n},15583:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.boolOrEmptySchema=t.topBoolOrEmptySchema=void 0;const i=r(22796),n=r(93789),s=r(66735),o={message:"boolean schema is false"};function a(e){const{gen:t,schema:r,validateName:i}=e;!1===r?u(e,!1):"object"==typeof r&&!0===r.$async?t.return(s.default.data):(t.assign(n._`${i}.errors`,null),t.return(!0))}function l(e,t){const{gen:r,schema:i}=e;!1===i?(r.var(t,!1),u(e)):r.var(t,!0)}function u(e,t){const{gen:r,data:n}=e,s={gen:r,keyword:"false schema",data:n,schema:!1,schemaCode:!1,schemaValue:!1,params:{},it:e};(0,i.reportError)(s,o,void 0,t)}t.topBoolOrEmptySchema=a,t.boolOrEmptySchema=l},28840:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.reportTypeError=t.checkDataTypes=t.checkDataType=t.coerceAndCheckDataType=t.getJSONTypes=t.getSchemaTypes=t.DataType=void 0;const i=r(27476),n=r(65335),s=r(22796),o=r(93789),a=r(7083);var l;function u(e){const t=c(e.type),r=t.includes("null");if(r){if(!1===e.nullable)throw new Error("type: null contradicts nullable: false")}else{if(!t.length&&void 0!==e.nullable)throw new Error('"nullable" cannot be used without "type"');!0===e.nullable&&t.push("null")}return t}function c(e){const t=Array.isArray(e)?e:e?[e]:[];if(t.every(i.isJSONType))return t;throw new Error("type must be JSONType or JSONType[]: "+t.join(","))}function h(e,t){const{gen:r,data:i,opts:s}=e,o=f(t,s.coerceTypes),a=t.length>0&&!(0===o.length&&1===t.length&&(0,n.schemaHasRulesForType)(e,t[0]));if(a){const n=v(t,i,s.strictNumbers,l.Wrong);r.if(n,(()=>{o.length?p(e,t,o):b(e)}))}return a}(function(e){e[e["Correct"]=0]="Correct",e[e["Wrong"]=1]="Wrong"})(l||(t.DataType=l={})),t.getSchemaTypes=u,t.getJSONTypes=c,t.coerceAndCheckDataType=h;const d=new Set(["string","number","integer","boolean","null"]);function f(e,t){return t?e.filter((e=>d.has(e)||"array"===t&&"array"===e)):[]}function p(e,t,r){const{gen:i,data:n,opts:s}=e,a=i.let("dataType",o._`typeof ${n}`),l=i.let("coerced",o._`undefined`);"array"===s.coerceTypes&&i.if(o._`${a} == 'object' && Array.isArray(${n}) && ${n}.length == 1`,(()=>i.assign(n,o._`${n}[0]`).assign(a,o._`typeof ${n}`).if(v(t,n,s.strictNumbers),(()=>i.assign(l,n))))),i.if(o._`${l} !== undefined`);for(const o of r)(d.has(o)||"array"===o&&"array"===s.coerceTypes)&&u(o);function u(e){switch(e){case"string":return void i.elseIf(o._`${a} == "number" || ${a} == "boolean"`).assign(l,o._`"" + ${n}`).elseIf(o._`${n} === null`).assign(l,o._`""`);case"number":return void i.elseIf(o._`${a} == "boolean" || ${n} === null + || (${a} == "string" && ${n} && ${n} == +${n})`).assign(l,o._`+${n}`);case"integer":return void i.elseIf(o._`${a} === "boolean" || ${n} === null + || (${a} === "string" && ${n} && ${n} == +${n} && !(${n} % 1))`).assign(l,o._`+${n}`);case"boolean":return void i.elseIf(o._`${n} === "false" || ${n} === 0 || ${n} === null`).assign(l,!1).elseIf(o._`${n} === "true" || ${n} === 1`).assign(l,!0);case"null":return i.elseIf(o._`${n} === "" || ${n} === 0 || ${n} === false`),void i.assign(l,null);case"array":i.elseIf(o._`${a} === "string" || ${a} === "number" + || ${a} === "boolean" || ${n} === null`).assign(l,o._`[${n}]`)}}i.else(),b(e),i.endIf(),i.if(o._`${l} !== undefined`,(()=>{i.assign(n,l),m(e,l)}))}function m({gen:e,parentData:t,parentDataProperty:r},i){e.if(o._`${t} !== undefined`,(()=>e.assign(o._`${t}[${r}]`,i)))}function g(e,t,r,i=l.Correct){const n=i===l.Correct?o.operators.EQ:o.operators.NEQ;let s;switch(e){case"null":return o._`${t} ${n} null`;case"array":s=o._`Array.isArray(${t})`;break;case"object":s=o._`${t} && typeof ${t} == "object" && !Array.isArray(${t})`;break;case"integer":s=a(o._`!(${t} % 1) && !isNaN(${t})`);break;case"number":s=a();break;default:return o._`typeof ${t} ${n} ${e}`}return i===l.Correct?s:(0,o.not)(s);function a(e=o.nil){return(0,o.and)(o._`typeof ${t} == "number"`,e,r?o._`isFinite(${t})`:o.nil)}}function v(e,t,r,i){if(1===e.length)return g(e[0],t,r,i);let n;const s=(0,a.toHash)(e);if(s.array&&s.object){const e=o._`typeof ${t} != "object"`;n=s.null?e:o._`!${t} || ${e}`,delete s.null,delete s.array,delete s.object}else n=o.nil;s.number&&delete s.integer;for(const a in s)n=(0,o.and)(n,g(a,t,r,i));return n}t.checkDataType=g,t.checkDataTypes=v;const y={message:({schema:e})=>`must be ${e}`,params:({schema:e,schemaValue:t})=>"string"==typeof e?o._`{type: ${e}}`:o._`{type: ${t}}`};function b(e){const t=w(e);(0,s.reportError)(t,y)}function w(e){const{gen:t,data:r,schema:i}=e,n=(0,a.schemaRefOrVal)(e,i,"type");return{gen:t,keyword:"type",data:r,schema:i.type,schemaCode:n,schemaValue:n,parentSchema:i,params:{},it:e}}t.reportTypeError=b},75590:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.assignDefaults=void 0;const i=r(93789),n=r(7083);function s(e,t){const{properties:r,items:i}=e.schema;if("object"===t&&r)for(const n in r)o(e,n,r[n].default);else"array"===t&&Array.isArray(i)&&i.forEach(((t,r)=>o(e,r,t.default)))}function o(e,t,r){const{gen:s,compositeRule:o,data:a,opts:l}=e;if(void 0===r)return;const u=i._`${a}${(0,i.getProperty)(t)}`;if(o)return void(0,n.checkStrictMode)(e,`default is ignored for: ${u}`);let c=i._`${u} === undefined`;"empty"===l.useDefaults&&(c=i._`${c} || ${u} === null || ${u} === ""`),s.if(c,i._`${u} = ${(0,i.stringify)(r)}`)}t.assignDefaults=s},69810:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getData=t.KeywordCxt=t.validateFunctionCode=void 0;const i=r(15583),n=r(28840),s=r(65335),o=r(28840),a=r(75590),l=r(62657),u=r(19543),c=r(93789),h=r(66735),d=r(63043),f=r(7083),p=r(22796);function m(e){S(e)&&(E(e),x(e))?b(e):g(e,(()=>(0,i.topBoolOrEmptySchema)(e)))}function g({gen:e,validateName:t,schema:r,schemaEnv:i,opts:n},s){n.code.es5?e.func(t,c._`${h.default.data}, ${h.default.valCxt}`,i.$async,(()=>{e.code(c._`"use strict"; ${_(r,n)}`),y(e,n),e.code(s)})):e.func(t,c._`${h.default.data}, ${v(n)}`,i.$async,(()=>e.code(_(r,n)).code(s)))}function v(e){return c._`{${h.default.instancePath}="", ${h.default.parentData}, ${h.default.parentDataProperty}, ${h.default.rootData}=${h.default.data}${e.dynamicRef?c._`, ${h.default.dynamicAnchors}={}`:c.nil}}={}`}function y(e,t){e.if(h.default.valCxt,(()=>{e.var(h.default.instancePath,c._`${h.default.valCxt}.${h.default.instancePath}`),e.var(h.default.parentData,c._`${h.default.valCxt}.${h.default.parentData}`),e.var(h.default.parentDataProperty,c._`${h.default.valCxt}.${h.default.parentDataProperty}`),e.var(h.default.rootData,c._`${h.default.valCxt}.${h.default.rootData}`),t.dynamicRef&&e.var(h.default.dynamicAnchors,c._`${h.default.valCxt}.${h.default.dynamicAnchors}`)}),(()=>{e.var(h.default.instancePath,c._`""`),e.var(h.default.parentData,c._`undefined`),e.var(h.default.parentDataProperty,c._`undefined`),e.var(h.default.rootData,h.default.data),t.dynamicRef&&e.var(h.default.dynamicAnchors,c._`{}`)}))}function b(e){const{schema:t,opts:r,gen:i}=e;g(e,(()=>{r.$comment&&t.$comment&&T(e),$(e),i.let(h.default.vErrors,null),i.let(h.default.errors,0),r.unevaluated&&w(e),A(e),I(e)}))}function w(e){const{gen:t,validateName:r}=e;e.evaluated=t.const("evaluated",c._`${r}.evaluated`),t.if(c._`${e.evaluated}.dynamicProps`,(()=>t.assign(c._`${e.evaluated}.props`,c._`undefined`))),t.if(c._`${e.evaluated}.dynamicItems`,(()=>t.assign(c._`${e.evaluated}.items`,c._`undefined`)))}function _(e,t){const r="object"==typeof e&&e[t.schemaId];return r&&(t.code.source||t.code.process)?c._`/*# sourceURL=${r} */`:c.nil}function k(e,t){S(e)&&(E(e),x(e))?M(e,t):(0,i.boolOrEmptySchema)(e,t)}function x({schema:e,self:t}){if("boolean"==typeof e)return!e;for(const r in e)if(t.RULES.all[r])return!0;return!1}function S(e){return"boolean"!=typeof e.schema}function M(e,t){const{schema:r,gen:i,opts:n}=e;n.$comment&&r.$comment&&T(e),O(e),P(e);const s=i.const("_errs",h.default.errors);A(e,s),i.var(t,c._`${s} === ${h.default.errors}`)}function E(e){(0,f.checkUnknownRules)(e),C(e)}function A(e,t){if(e.opts.jtd)return L(e,[],!1,t);const r=(0,n.getSchemaTypes)(e.schema),i=(0,n.coerceAndCheckDataType)(e,r);L(e,r,!i,t)}function C(e){const{schema:t,errSchemaPath:r,opts:i,self:n}=e;t.$ref&&i.ignoreKeywordsWithRef&&(0,f.schemaHasRulesButRef)(t,n.RULES)&&n.logger.warn(`$ref: keywords ignored in schema at path "${r}"`)}function $(e){const{schema:t,opts:r}=e;void 0!==t.default&&r.useDefaults&&r.strictSchema&&(0,f.checkStrictMode)(e,"default is ignored in the schema root")}function O(e){const t=e.schema[e.opts.schemaId];t&&(e.baseId=(0,d.resolveUrl)(e.opts.uriResolver,e.baseId,t))}function P(e){if(e.schema.$async&&!e.schemaEnv.$async)throw new Error("async schema in sync schema")}function T({gen:e,schemaEnv:t,schema:r,errSchemaPath:i,opts:n}){const s=r.$comment;if(!0===n.$comment)e.code(c._`${h.default.self}.logger.log(${s})`);else if("function"==typeof n.$comment){const r=c.str`${i}/$comment`,n=e.scopeValue("root",{ref:t.root});e.code(c._`${h.default.self}.opts.$comment(${s}, ${r}, ${n}.schema)`)}}function I(e){const{gen:t,schemaEnv:r,validateName:i,ValidationError:n,opts:s}=e;r.$async?t.if(c._`${h.default.errors} === 0`,(()=>t.return(h.default.data)),(()=>t.throw(c._`new ${n}(${h.default.vErrors})`))):(t.assign(c._`${i}.errors`,h.default.vErrors),s.unevaluated&&D(e),t.return(c._`${h.default.errors} === 0`))}function D({gen:e,evaluated:t,props:r,items:i}){r instanceof c.Name&&e.assign(c._`${t}.props`,r),i instanceof c.Name&&e.assign(c._`${t}.items`,i)}function L(e,t,r,i){const{gen:n,schema:a,data:l,allErrors:u,opts:d,self:p}=e,{RULES:m}=p;function g(f){(0,s.shouldUseGroup)(a,f)&&(f.type?(n.if((0,o.checkDataType)(f.type,l,d.strictNumbers)),N(e,f),1===t.length&&t[0]===f.type&&r&&(n.else(),(0,o.reportTypeError)(e)),n.endIf()):N(e,f),u||n.if(c._`${h.default.errors} === ${i||0}`))}!a.$ref||!d.ignoreKeywordsWithRef&&(0,f.schemaHasRulesButRef)(a,m)?(d.jtd||R(e,t),n.block((()=>{for(const e of m.rules)g(e);g(m.post)}))):n.block((()=>W(e,"$ref",m.all.$ref.definition)))}function N(e,t){const{gen:r,schema:i,opts:{useDefaults:n}}=e;n&&(0,a.assignDefaults)(e,t.type),r.block((()=>{for(const r of t.rules)(0,s.shouldUseRule)(i,r)&&W(e,r.keyword,r.definition,t.type)}))}function R(e,t){!e.schemaEnv.meta&&e.opts.strictTypes&&(j(e,t),e.opts.allowUnionTypes||B(e,t),F(e,e.dataTypes))}function j(e,t){t.length&&(e.dataTypes.length?(t.forEach((t=>{V(e.dataTypes,t)||U(e,`type "${t}" not allowed by context "${e.dataTypes.join(",")}"`)})),q(e,t)):e.dataTypes=t)}function B(e,t){t.length>1&&(2!==t.length||!t.includes("null"))&&U(e,"use allowUnionTypes to allow union type keyword")}function F(e,t){const r=e.self.RULES.all;for(const i in r){const n=r[i];if("object"==typeof n&&(0,s.shouldUseRule)(e.schema,n)){const{type:r}=n.definition;r.length&&!r.some((e=>z(t,e)))&&U(e,`missing type "${r.join(",")}" for keyword "${i}"`)}}}function z(e,t){return e.includes(t)||"number"===t&&e.includes("integer")}function V(e,t){return e.includes(t)||"integer"===t&&e.includes("number")}function q(e,t){const r=[];for(const i of e.dataTypes)V(t,i)?r.push(i):t.includes("integer")&&"number"===i&&r.push("integer");e.dataTypes=r}function U(e,t){const r=e.schemaEnv.baseId+e.errSchemaPath;t+=` at "${r}" (strictTypes)`,(0,f.checkStrictMode)(e,t,e.opts.strictTypes)}t.validateFunctionCode=m;class H{constructor(e,t,r){if((0,l.validateKeywordUsage)(e,t,r),this.gen=e.gen,this.allErrors=e.allErrors,this.keyword=r,this.data=e.data,this.schema=e.schema[r],this.$data=t.$data&&e.opts.$data&&this.schema&&this.schema.$data,this.schemaValue=(0,f.schemaRefOrVal)(e,this.schema,r,this.$data),this.schemaType=t.schemaType,this.parentSchema=e.schema,this.params={},this.it=e,this.def=t,this.$data)this.schemaCode=e.gen.const("vSchema",G(this.$data,e));else if(this.schemaCode=this.schemaValue,!(0,l.validSchemaType)(this.schema,t.schemaType,t.allowUndefined))throw new Error(`${r} value must be ${JSON.stringify(t.schemaType)}`);("code"in t?t.trackErrors:!1!==t.errors)&&(this.errsCount=e.gen.const("_errs",h.default.errors))}result(e,t,r){this.failResult((0,c.not)(e),t,r)}failResult(e,t,r){this.gen.if(e),r?r():this.error(),t?(this.gen.else(),t(),this.allErrors&&this.gen.endIf()):this.allErrors?this.gen.endIf():this.gen.else()}pass(e,t){this.failResult((0,c.not)(e),void 0,t)}fail(e){if(void 0===e)return this.error(),void(this.allErrors||this.gen.if(!1));this.gen.if(e),this.error(),this.allErrors?this.gen.endIf():this.gen.else()}fail$data(e){if(!this.$data)return this.fail(e);const{schemaCode:t}=this;this.fail(c._`${t} !== undefined && (${(0,c.or)(this.invalid$data(),e)})`)}error(e,t,r){if(t)return this.setParams(t),this._error(e,r),void this.setParams({});this._error(e,r)}_error(e,t){(e?p.reportExtraError:p.reportError)(this,this.def.error,t)}$dataError(){(0,p.reportError)(this,this.def.$dataError||p.keyword$DataError)}reset(){if(void 0===this.errsCount)throw new Error('add "trackErrors" to keyword definition');(0,p.resetErrorsCount)(this.gen,this.errsCount)}ok(e){this.allErrors||this.gen.if(e)}setParams(e,t){t?Object.assign(this.params,e):this.params=e}block$data(e,t,r=c.nil){this.gen.block((()=>{this.check$data(e,r),t()}))}check$data(e=c.nil,t=c.nil){if(!this.$data)return;const{gen:r,schemaCode:i,schemaType:n,def:s}=this;r.if((0,c.or)(c._`${i} === undefined`,t)),e!==c.nil&&r.assign(e,!0),(n.length||s.validateSchema)&&(r.elseIf(this.invalid$data()),this.$dataError(),e!==c.nil&&r.assign(e,!1)),r.else()}invalid$data(){const{gen:e,schemaCode:t,schemaType:r,def:i,it:n}=this;return(0,c.or)(s(),a());function s(){if(r.length){if(!(t instanceof c.Name))throw new Error("ajv implementation error");const e=Array.isArray(r)?r:[r];return c._`${(0,o.checkDataTypes)(e,t,n.opts.strictNumbers,o.DataType.Wrong)}`}return c.nil}function a(){if(i.validateSchema){const r=e.scopeValue("validate$data",{ref:i.validateSchema});return c._`!${r}(${t})`}return c.nil}}subschema(e,t){const r=(0,u.getSubschema)(this.it,e);(0,u.extendSubschemaData)(r,this.it,e),(0,u.extendSubschemaMode)(r,e);const i={...this.it,...r,items:void 0,props:void 0};return k(i,t),i}mergeEvaluated(e,t){const{it:r,gen:i}=this;r.opts.unevaluated&&(!0!==r.props&&void 0!==e.props&&(r.props=f.mergeEvaluated.props(i,e.props,r.props,t)),!0!==r.items&&void 0!==e.items&&(r.items=f.mergeEvaluated.items(i,e.items,r.items,t)))}mergeValidEvaluated(e,t){const{it:r,gen:i}=this;if(r.opts.unevaluated&&(!0!==r.props||!0!==r.items))return i.if(t,(()=>this.mergeEvaluated(e,c.Name))),!0}}function W(e,t,r,i){const n=new H(e,r,t);"code"in r?r.code(n,i):n.$data&&r.validate?(0,l.funcKeywordCode)(n,r):"macro"in r?(0,l.macroKeywordCode)(n,r):(r.compile||r.validate)&&(0,l.funcKeywordCode)(n,r)}t.KeywordCxt=H;const K=/^\/(?:[^~]|~0|~1)*$/,Y=/^([0-9]+)(#|\/(?:[^~]|~0|~1)*)?$/;function G(e,{dataLevel:t,dataNames:r,dataPathArr:i}){let n,s;if(""===e)return h.default.rootData;if("/"===e[0]){if(!K.test(e))throw new Error(`Invalid JSON-pointer: ${e}`);n=e,s=h.default.rootData}else{const o=Y.exec(e);if(!o)throw new Error(`Invalid JSON-pointer: ${e}`);const a=+o[1];if(n=o[2],"#"===n){if(a>=t)throw new Error(l("property/index",a));return i[t-a]}if(a>t)throw new Error(l("data",a));if(s=r[t-a],!n)return s}let o=s;const a=n.split("/");for(const u of a)u&&(s=c._`${s}${(0,c.getProperty)((0,f.unescapeJsonPointer)(u))}`,o=c._`${o} && ${s}`);return o;function l(e,r){return`Cannot access ${e} ${r} levels up, current level is ${t}`}}t.getData=G},62657:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.validateKeywordUsage=t.validSchemaType=t.funcKeywordCode=t.macroKeywordCode=void 0;const i=r(93789),n=r(66735),s=r(21085),o=r(22796);function a(e,t){const{gen:r,keyword:n,schema:s,parentSchema:o,it:a}=e,l=t.macro.call(a.self,s,o,a),u=d(r,n,l);!1!==a.opts.validateSchema&&a.self.validateSchema(l,!0);const c=r.name("valid");e.subschema({schema:l,schemaPath:i.nil,errSchemaPath:`${a.errSchemaPath}/${n}`,topSchemaRef:u,compositeRule:!0},c),e.pass(c,(()=>e.error(!0)))}function l(e,t){var r;const{gen:o,keyword:a,schema:l,parentSchema:f,$data:p,it:m}=e;h(m,t);const g=!p&&t.compile?t.compile.call(m.self,l,f,m):t.validate,v=d(o,a,g),y=o.let("valid");function b(){if(!1===t.errors)k(),t.modifying&&u(e),x((()=>e.error()));else{const r=t.async?w():_();t.modifying&&u(e),x((()=>c(e,r)))}}function w(){const e=o.let("ruleErrs",null);return o.try((()=>k(i._`await `)),(t=>o.assign(y,!1).if(i._`${t} instanceof ${m.ValidationError}`,(()=>o.assign(e,i._`${t}.errors`)),(()=>o.throw(t))))),e}function _(){const e=i._`${v}.errors`;return o.assign(e,null),k(i.nil),e}function k(r=(t.async?i._`await `:i.nil)){const a=m.opts.passContext?n.default.this:n.default.self,l=!("compile"in t&&!p||!1===t.schema);o.assign(y,i._`${r}${(0,s.callValidateCode)(e,v,a,l)}`,t.modifying)}function x(e){var r;o.if((0,i.not)(null!==(r=t.valid)&&void 0!==r?r:y),e)}e.block$data(y,b),e.ok(null!==(r=t.valid)&&void 0!==r?r:y)}function u(e){const{gen:t,data:r,it:n}=e;t.if(n.parentData,(()=>t.assign(r,i._`${n.parentData}[${n.parentDataProperty}]`)))}function c(e,t){const{gen:r}=e;r.if(i._`Array.isArray(${t})`,(()=>{r.assign(n.default.vErrors,i._`${n.default.vErrors} === null ? ${t} : ${n.default.vErrors}.concat(${t})`).assign(n.default.errors,i._`${n.default.vErrors}.length`),(0,o.extendErrors)(e)}),(()=>e.error()))}function h({schemaEnv:e},t){if(t.async&&!e.$async)throw new Error("async keyword in sync schema")}function d(e,t,r){if(void 0===r)throw new Error(`keyword "${t}" failed to compile`);return e.scopeValue("keyword","function"==typeof r?{ref:r}:{ref:r,code:(0,i.stringify)(r)})}function f(e,t,r=!1){return!t.length||t.some((t=>"array"===t?Array.isArray(e):"object"===t?e&&"object"==typeof e&&!Array.isArray(e):typeof e==t||r&&"undefined"==typeof e))}function p({schema:e,opts:t,self:r,errSchemaPath:i},n,s){if(Array.isArray(n.keyword)?!n.keyword.includes(s):n.keyword!==s)throw new Error("ajv implementation error");const o=n.dependencies;if(null===o||void 0===o?void 0:o.some((t=>!Object.prototype.hasOwnProperty.call(e,t))))throw new Error(`parent schema must have dependencies of ${s}: ${o.join(",")}`);if(n.validateSchema){const o=n.validateSchema(e[s]);if(!o){const e=`keyword "${s}" value is invalid at path "${i}": `+r.errorsText(n.validateSchema.errors);if("log"!==t.validateSchema)throw new Error(e);r.logger.error(e)}}}t.macroKeywordCode=a,t.funcKeywordCode=l,t.validSchemaType=f,t.validateKeywordUsage=p},19543:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.extendSubschemaMode=t.extendSubschemaData=t.getSubschema=void 0;const i=r(93789),n=r(7083);function s(e,{keyword:t,schemaProp:r,schema:s,schemaPath:o,errSchemaPath:a,topSchemaRef:l}){if(void 0!==t&&void 0!==s)throw new Error('both "keyword" and "schema" passed, only one allowed');if(void 0!==t){const s=e.schema[t];return void 0===r?{schema:s,schemaPath:i._`${e.schemaPath}${(0,i.getProperty)(t)}`,errSchemaPath:`${e.errSchemaPath}/${t}`}:{schema:s[r],schemaPath:i._`${e.schemaPath}${(0,i.getProperty)(t)}${(0,i.getProperty)(r)}`,errSchemaPath:`${e.errSchemaPath}/${t}/${(0,n.escapeFragment)(r)}`}}if(void 0!==s){if(void 0===o||void 0===a||void 0===l)throw new Error('"schemaPath", "errSchemaPath" and "topSchemaRef" are required with "schema"');return{schema:s,schemaPath:o,topSchemaRef:l,errSchemaPath:a}}throw new Error('either "keyword" or "schema" must be passed')}function o(e,t,{dataProp:r,dataPropType:s,data:o,dataTypes:a,propertyName:l}){if(void 0!==o&&void 0!==r)throw new Error('both "data" and "dataProp" passed, only one allowed');const{gen:u}=t;if(void 0!==r){const{errorPath:o,dataPathArr:a,opts:l}=t,h=u.let("data",i._`${t.data}${(0,i.getProperty)(r)}`,!0);c(h),e.errorPath=i.str`${o}${(0,n.getErrorPath)(r,s,l.jsPropertySyntax)}`,e.parentDataProperty=i._`${r}`,e.dataPathArr=[...a,e.parentDataProperty]}if(void 0!==o){const t=o instanceof i.Name?o:u.let("data",o,!0);c(t),void 0!==l&&(e.propertyName=l)}function c(r){e.data=r,e.dataLevel=t.dataLevel+1,e.dataTypes=[],t.definedProperties=new Set,e.parentData=t.data,e.dataNames=[...t.dataNames,r]}a&&(e.dataTypes=a)}function a(e,{jtdDiscriminator:t,jtdMetadata:r,compositeRule:i,createErrors:n,allErrors:s}){void 0!==i&&(e.compositeRule=i),void 0!==n&&(e.createErrors=n),void 0!==s&&(e.allErrors=s),e.jtdDiscriminator=t,e.jtdMetadata=r}t.getSubschema=s,t.extendSubschemaData=o,t.extendSubschemaMode=a},17666:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CodeGen=t.Name=t.nil=t.stringify=t.str=t._=t.KeywordCxt=void 0;var i=r(69810);Object.defineProperty(t,"KeywordCxt",{enumerable:!0,get:function(){return i.KeywordCxt}});var n=r(93789);Object.defineProperty(t,"_",{enumerable:!0,get:function(){return n._}}),Object.defineProperty(t,"str",{enumerable:!0,get:function(){return n.str}}),Object.defineProperty(t,"stringify",{enumerable:!0,get:function(){return n.stringify}}),Object.defineProperty(t,"nil",{enumerable:!0,get:function(){return n.nil}}),Object.defineProperty(t,"Name",{enumerable:!0,get:function(){return n.Name}}),Object.defineProperty(t,"CodeGen",{enumerable:!0,get:function(){return n.CodeGen}});const s=r(99598),o=r(70303),a=r(27476),l=r(65219),u=r(93789),c=r(63043),h=r(28840),d=r(7083),f=r(37301),p=r(76976),m=(e,t)=>new RegExp(e,t);m.code="new RegExp";const g=["removeAdditional","useDefaults","coerceTypes"],v=new Set(["validate","serialize","parse","wrapper","root","schema","keyword","pattern","formats","validate$data","func","obj","Error"]),y={errorDataPath:"",format:"`validateFormats: false` can be used instead.",nullable:'"nullable" keyword is supported by default.',jsonPointers:"Deprecated jsPropertySyntax can be used instead.",extendRefs:"Deprecated ignoreKeywordsWithRef can be used instead.",missingRefs:"Pass empty schema with $id that should be ignored to ajv.addSchema.",processCode:"Use option `code: {process: (code, schemaEnv: object) => string}`",sourceCode:"Use option `code: {source: true}`",strictDefaults:"It is default now, see option `strict`.",strictKeywords:"It is default now, see option `strict`.",uniqueItems:'"uniqueItems" keyword is always validated.',unknownFormats:"Disable strict mode or pass `true` to `ajv.addFormat` (or `formats` option).",cache:"Map is used as cache, schema object as key.",serialize:"Map is used as cache, schema object as key.",ajvErrors:"It is default now."},b={ignoreKeywordsWithRef:"",jsPropertySyntax:"",unicode:'"minLength"/"maxLength" account for unicode characters by default.'},w=200;function _(e){var t,r,i,n,s,o,a,l,u,c,h,d,f,g,v,y,b,_,k,x,S,M,E,A,C;const $=e.strict,O=null===(t=e.code)||void 0===t?void 0:t.optimize,P=!0===O||void 0===O?1:O||0,T=null!==(i=null===(r=e.code)||void 0===r?void 0:r.regExp)&&void 0!==i?i:m,I=null!==(n=e.uriResolver)&&void 0!==n?n:p.default;return{strictSchema:null===(o=null!==(s=e.strictSchema)&&void 0!==s?s:$)||void 0===o||o,strictNumbers:null===(l=null!==(a=e.strictNumbers)&&void 0!==a?a:$)||void 0===l||l,strictTypes:null!==(c=null!==(u=e.strictTypes)&&void 0!==u?u:$)&&void 0!==c?c:"log",strictTuples:null!==(d=null!==(h=e.strictTuples)&&void 0!==h?h:$)&&void 0!==d?d:"log",strictRequired:null!==(g=null!==(f=e.strictRequired)&&void 0!==f?f:$)&&void 0!==g&&g,code:e.code?{...e.code,optimize:P,regExp:T}:{optimize:P,regExp:T},loopRequired:null!==(v=e.loopRequired)&&void 0!==v?v:w,loopEnum:null!==(y=e.loopEnum)&&void 0!==y?y:w,meta:null===(b=e.meta)||void 0===b||b,messages:null===(_=e.messages)||void 0===_||_,inlineRefs:null===(k=e.inlineRefs)||void 0===k||k,schemaId:null!==(x=e.schemaId)&&void 0!==x?x:"$id",addUsedSchema:null===(S=e.addUsedSchema)||void 0===S||S,validateSchema:null===(M=e.validateSchema)||void 0===M||M,validateFormats:null===(E=e.validateFormats)||void 0===E||E,unicodeRegExp:null===(A=e.unicodeRegExp)||void 0===A||A,int32range:null===(C=e.int32range)||void 0===C||C,uriResolver:I}}class k{constructor(e={}){this.schemas={},this.refs={},this.formats={},this._compilations=new Set,this._loading={},this._cache=new Map,e=this.opts={...e,..._(e)};const{es5:t,lines:r}=this.opts.code;this.scope=new u.ValueScope({scope:{},prefixes:v,es5:t,lines:r}),this.logger=O(e.logger);const i=e.validateFormats;e.validateFormats=!1,this.RULES=(0,a.getRules)(),x.call(this,y,e,"NOT SUPPORTED"),x.call(this,b,e,"DEPRECATED","warn"),this._metaOpts=C.call(this),e.formats&&E.call(this),this._addVocabularies(),this._addDefaultMetaSchema(),e.keywords&&A.call(this,e.keywords),"object"==typeof e.meta&&this.addMetaSchema(e.meta),M.call(this),e.validateFormats=i}_addVocabularies(){this.addKeyword("$async")}_addDefaultMetaSchema(){const{$data:e,meta:t,schemaId:r}=this.opts;let i=f;"id"===r&&(i={...f},i.id=i.$id,delete i.$id),t&&e&&this.addMetaSchema(i,i[r],!1)}defaultMeta(){const{meta:e,schemaId:t}=this.opts;return this.opts.defaultMeta="object"==typeof e?e[t]||e:void 0}validate(e,t){let r;if("string"==typeof e){if(r=this.getSchema(e),!r)throw new Error(`no schema with key or ref "${e}"`)}else r=this.compile(e);const i=r(t);return"$async"in r||(this.errors=r.errors),i}compile(e,t){const r=this._addSchema(e,t);return r.validate||this._compileSchemaEnv(r)}compileAsync(e,t){if("function"!=typeof this.opts.loadSchema)throw new Error("options.loadSchema should be a function");const{loadSchema:r}=this.opts;return i.call(this,e,t);async function i(e,t){await n.call(this,e.$schema);const r=this._addSchema(e,t);return r.validate||s.call(this,r)}async function n(e){e&&!this.getSchema(e)&&await i.call(this,{$ref:e},!0)}async function s(e){try{return this._compileSchemaEnv(e)}catch(t){if(!(t instanceof o.default))throw t;return a.call(this,t),await l.call(this,t.missingSchema),s.call(this,e)}}function a({missingSchema:e,missingRef:t}){if(this.refs[e])throw new Error(`AnySchema ${e} is loaded but ${t} cannot be resolved`)}async function l(e){const r=await u.call(this,e);this.refs[e]||await n.call(this,r.$schema),this.refs[e]||this.addSchema(r,e,t)}async function u(e){const t=this._loading[e];if(t)return t;try{return await(this._loading[e]=r(e))}finally{delete this._loading[e]}}}addSchema(e,t,r,i=this.opts.validateSchema){if(Array.isArray(e)){for(const t of e)this.addSchema(t,void 0,r,i);return this}let n;if("object"===typeof e){const{schemaId:t}=this.opts;if(n=e[t],void 0!==n&&"string"!=typeof n)throw new Error(`schema ${t} must be string`)}return t=(0,c.normalizeId)(t||n),this._checkUnique(t),this.schemas[t]=this._addSchema(e,r,t,i,!0),this}addMetaSchema(e,t,r=this.opts.validateSchema){return this.addSchema(e,t,!0,r),this}validateSchema(e,t){if("boolean"==typeof e)return!0;let r;if(r=e.$schema,void 0!==r&&"string"!=typeof r)throw new Error("$schema must be a string");if(r=r||this.opts.defaultMeta||this.defaultMeta(),!r)return this.logger.warn("meta-schema not available"),this.errors=null,!0;const i=this.validate(r,e);if(!i&&t){const e="schema is invalid: "+this.errorsText();if("log"!==this.opts.validateSchema)throw new Error(e);this.logger.error(e)}return i}getSchema(e){let t;while("string"==typeof(t=S.call(this,e)))e=t;if(void 0===t){const{schemaId:r}=this.opts,i=new l.SchemaEnv({schema:{},schemaId:r});if(t=l.resolveSchema.call(this,i,e),!t)return;this.refs[e]=t}return t.validate||this._compileSchemaEnv(t)}removeSchema(e){if(e instanceof RegExp)return this._removeAllSchemas(this.schemas,e),this._removeAllSchemas(this.refs,e),this;switch(typeof e){case"undefined":return this._removeAllSchemas(this.schemas),this._removeAllSchemas(this.refs),this._cache.clear(),this;case"string":{const t=S.call(this,e);return"object"==typeof t&&this._cache.delete(t.schema),delete this.schemas[e],delete this.refs[e],this}case"object":{const t=e;this._cache.delete(t);let r=e[this.opts.schemaId];return r&&(r=(0,c.normalizeId)(r),delete this.schemas[r],delete this.refs[r]),this}default:throw new Error("ajv.removeSchema: invalid parameter")}}addVocabulary(e){for(const t of e)this.addKeyword(t);return this}addKeyword(e,t){let r;if("string"==typeof e)r=e,"object"==typeof t&&(this.logger.warn("these parameters are deprecated, see docs for addKeyword"),t.keyword=r);else{if("object"!=typeof e||void 0!==t)throw new Error("invalid addKeywords parameters");if(t=e,r=t.keyword,Array.isArray(r)&&!r.length)throw new Error("addKeywords: keyword must be string or non-empty array")}if(T.call(this,r,t),!t)return(0,d.eachItem)(r,(e=>I.call(this,e))),this;L.call(this,t);const i={...t,type:(0,h.getJSONTypes)(t.type),schemaType:(0,h.getJSONTypes)(t.schemaType)};return(0,d.eachItem)(r,0===i.type.length?e=>I.call(this,e,i):e=>i.type.forEach((t=>I.call(this,e,i,t)))),this}getKeyword(e){const t=this.RULES.all[e];return"object"==typeof t?t.definition:!!t}removeKeyword(e){const{RULES:t}=this;delete t.keywords[e],delete t.all[e];for(const r of t.rules){const t=r.rules.findIndex((t=>t.keyword===e));t>=0&&r.rules.splice(t,1)}return this}addFormat(e,t){return"string"==typeof t&&(t=new RegExp(t)),this.formats[e]=t,this}errorsText(e=this.errors,{separator:t=", ",dataVar:r="data"}={}){return e&&0!==e.length?e.map((e=>`${r}${e.instancePath} ${e.message}`)).reduce(((e,r)=>e+t+r)):"No errors"}$dataMetaSchema(e,t){const r=this.RULES.all;e=JSON.parse(JSON.stringify(e));for(const i of t){const t=i.split("/").slice(1);let n=e;for(const e of t)n=n[e];for(const e in r){const t=r[e];if("object"!=typeof t)continue;const{$data:i}=t.definition,s=n[e];i&&s&&(n[e]=R(s))}}return e}_removeAllSchemas(e,t){for(const r in e){const i=e[r];t&&!t.test(r)||("string"==typeof i?delete e[r]:i&&!i.meta&&(this._cache.delete(i.schema),delete e[r]))}}_addSchema(e,t,r,i=this.opts.validateSchema,n=this.opts.addUsedSchema){let s;const{schemaId:o}=this.opts;if("object"==typeof e)s=e[o];else{if(this.opts.jtd)throw new Error("schema must be object");if("boolean"!=typeof e)throw new Error("schema must be object or boolean")}let a=this._cache.get(e);if(void 0!==a)return a;r=(0,c.normalizeId)(s||r);const u=c.getSchemaRefs.call(this,e,r);return a=new l.SchemaEnv({schema:e,schemaId:o,meta:t,baseId:r,localRefs:u}),this._cache.set(a.schema,a),n&&!r.startsWith("#")&&(r&&this._checkUnique(r),this.refs[r]=a),i&&this.validateSchema(e,!0),a}_checkUnique(e){if(this.schemas[e]||this.refs[e])throw new Error(`schema with key or id "${e}" already exists`)}_compileSchemaEnv(e){if(e.meta?this._compileMetaSchema(e):l.compileSchema.call(this,e),!e.validate)throw new Error("ajv implementation error");return e.validate}_compileMetaSchema(e){const t=this.opts;this.opts=this._metaOpts;try{l.compileSchema.call(this,e)}finally{this.opts=t}}}function x(e,t,r,i="error"){for(const n in e){const s=n;s in t&&this.logger[i](`${r}: option ${n}. ${e[s]}`)}}function S(e){return e=(0,c.normalizeId)(e),this.schemas[e]||this.refs[e]}function M(){const e=this.opts.schemas;if(e)if(Array.isArray(e))this.addSchema(e);else for(const t in e)this.addSchema(e[t],t)}function E(){for(const e in this.opts.formats){const t=this.opts.formats[e];t&&this.addFormat(e,t)}}function A(e){if(Array.isArray(e))this.addVocabulary(e);else{this.logger.warn("keywords option as map is deprecated, pass array");for(const t in e){const r=e[t];r.keyword||(r.keyword=t),this.addKeyword(r)}}}function C(){const e={...this.opts};for(const t of g)delete e[t];return e}k.ValidationError=s.default,k.MissingRefError=o.default,t["default"]=k;const $={log(){},warn(){},error(){}};function O(e){if(!1===e)return $;if(void 0===e)return console;if(e.log&&e.warn&&e.error)return e;throw new Error("logger must implement log, warn and error methods")}const P=/^[a-z_$][a-z0-9_$:-]*$/i;function T(e,t){const{RULES:r}=this;if((0,d.eachItem)(e,(e=>{if(r.keywords[e])throw new Error(`Keyword ${e} is already defined`);if(!P.test(e))throw new Error(`Keyword ${e} has invalid name`)})),t&&t.$data&&!("code"in t)&&!("validate"in t))throw new Error('$data keyword must have "code" or "validate" function')}function I(e,t,r){var i;const n=null===t||void 0===t?void 0:t.post;if(r&&n)throw new Error('keyword with "post" flag cannot have "type"');const{RULES:s}=this;let o=n?s.post:s.rules.find((({type:e})=>e===r));if(o||(o={type:r,rules:[]},s.rules.push(o)),s.keywords[e]=!0,!t)return;const a={keyword:e,definition:{...t,type:(0,h.getJSONTypes)(t.type),schemaType:(0,h.getJSONTypes)(t.schemaType)}};t.before?D.call(this,o,a,t.before):o.rules.push(a),s.all[e]=a,null===(i=t.implements)||void 0===i||i.forEach((e=>this.addKeyword(e)))}function D(e,t,r){const i=e.rules.findIndex((e=>e.keyword===r));i>=0?e.rules.splice(i,0,t):(e.rules.push(t),this.logger.warn(`rule ${r} is not defined`))}function L(e){let{metaSchema:t}=e;void 0!==t&&(e.$data&&this.opts.$data&&(t=R(t)),e.validateSchema=this.compile(t,!0))}const N={$ref:"https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#"};function R(e){return{anyOf:[e,N]}}},72482:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(32017);i.code='require("ajv/dist/runtime/equal").default',t["default"]=i},82261:function(e,t){"use strict";function r(e){const t=e.length;let r,i=0,n=0;while(n=55296&&r<=56319&&ni.str`must NOT have more than ${e} items`,params:({params:{len:e}})=>i._`{limit: ${e}}`},o={keyword:"additionalItems",type:"array",schemaType:["boolean","object"],before:"uniqueItems",error:s,code(e){const{parentSchema:t,it:r}=e,{items:i}=t;Array.isArray(i)?a(e,i):(0,n.checkStrictMode)(r,'"additionalItems" is ignored when "items" is not an array of schemas')}};function a(e,t){const{gen:r,schema:s,data:o,keyword:a,it:l}=e;l.items=!0;const u=r.const("len",i._`${o}.length`);if(!1===s)e.setParams({len:t.length}),e.pass(i._`${u} <= ${t.length}`);else if("object"==typeof s&&!(0,n.alwaysValidSchema)(l,s)){const n=r.var("valid",i._`${u} <= ${t.length}`);r.if((0,i.not)(n),(()=>c(n))),e.ok(n)}function c(s){r.forRange("i",t.length,u,(t=>{e.subschema({keyword:a,dataProp:t,dataPropType:n.Type.Num},s),l.allErrors||r.if((0,i.not)(s),(()=>r.break()))}))}}t.validateAdditionalItems=a,t["default"]=o},90396:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(21085),n=r(93789),s=r(66735),o=r(7083),a={message:"must NOT have additional properties",params:({params:e})=>n._`{additionalProperty: ${e.additionalProperty}}`},l={keyword:"additionalProperties",type:["object"],schemaType:["boolean","object"],allowUndefined:!0,trackErrors:!0,error:a,code(e){const{gen:t,schema:r,parentSchema:a,data:l,errsCount:u,it:c}=e;if(!u)throw new Error("ajv implementation error");const{allErrors:h,opts:d}=c;if(c.props=!0,"all"!==d.removeAdditional&&(0,o.alwaysValidSchema)(c,r))return;const f=(0,i.allSchemaProperties)(a.properties),p=(0,i.allSchemaProperties)(a.patternProperties);function m(){t.forIn("key",l,(e=>{f.length||p.length?t.if(g(e),(()=>y(e))):y(e)}))}function g(r){let s;if(f.length>8){const e=(0,o.schemaRefOrVal)(c,a.properties,"properties");s=(0,i.isOwnProperty)(t,e,r)}else s=f.length?(0,n.or)(...f.map((e=>n._`${r} === ${e}`))):n.nil;return p.length&&(s=(0,n.or)(s,...p.map((t=>n._`${(0,i.usePattern)(e,t)}.test(${r})`)))),(0,n.not)(s)}function v(e){t.code(n._`delete ${l}[${e}]`)}function y(i){if("all"===d.removeAdditional||d.removeAdditional&&!1===r)v(i);else{if(!1===r)return e.setParams({additionalProperty:i}),e.error(),void(h||t.break());if("object"==typeof r&&!(0,o.alwaysValidSchema)(c,r)){const r=t.name("valid");"failing"===d.removeAdditional?(b(i,r,!1),t.if((0,n.not)(r),(()=>{e.reset(),v(i)}))):(b(i,r),h||t.if((0,n.not)(r),(()=>t.break())))}}}function b(t,r,i){const n={keyword:"additionalProperties",dataProp:t,dataPropType:o.Type.Str};!1===i&&Object.assign(n,{compositeRule:!0,createErrors:!1,allErrors:!1}),e.subschema(n,r)}m(),e.ok(n._`${u} === ${s.default.errors}`)}};t["default"]=l},66636:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(7083),n={keyword:"allOf",schemaType:"array",code(e){const{gen:t,schema:r,it:n}=e;if(!Array.isArray(r))throw new Error("ajv implementation error");const s=t.name("valid");r.forEach(((t,r)=>{if((0,i.alwaysValidSchema)(n,t))return;const o=e.subschema({keyword:"allOf",schemaProp:r},s);e.ok(s),e.mergeEvaluated(o)}))}};t["default"]=n},41665:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(21085),n={keyword:"anyOf",schemaType:"array",trackErrors:!0,code:i.validateUnion,error:{message:"must match a schema in anyOf"}};t["default"]=n},96925:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(93789),n=r(7083),s={message:({params:{min:e,max:t}})=>void 0===t?i.str`must contain at least ${e} valid item(s)`:i.str`must contain at least ${e} and no more than ${t} valid item(s)`,params:({params:{min:e,max:t}})=>void 0===t?i._`{minContains: ${e}}`:i._`{minContains: ${e}, maxContains: ${t}}`},o={keyword:"contains",type:"array",schemaType:["object","boolean"],before:"uniqueItems",trackErrors:!0,error:s,code(e){const{gen:t,schema:r,parentSchema:s,data:o,it:a}=e;let l,u;const{minContains:c,maxContains:h}=s;a.opts.next?(l=void 0===c?1:c,u=h):l=1;const d=t.const("len",i._`${o}.length`);if(e.setParams({min:l,max:u}),void 0===u&&0===l)return void(0,n.checkStrictMode)(a,'"minContains" == 0 without "maxContains": "contains" keyword ignored');if(void 0!==u&&l>u)return(0,n.checkStrictMode)(a,'"minContains" > "maxContains" is always invalid'),void e.fail();if((0,n.alwaysValidSchema)(a,r)){let t=i._`${d} >= ${l}`;return void 0!==u&&(t=i._`${t} && ${d} <= ${u}`),void e.pass(t)}a.items=!0;const f=t.name("valid");function p(){const e=t.name("_valid"),r=t.let("count",0);m(e,(()=>t.if(e,(()=>g(r)))))}function m(r,i){t.forRange("i",0,d,(t=>{e.subschema({keyword:"contains",dataProp:t,dataPropType:n.Type.Num,compositeRule:!0},r),i()}))}function g(e){t.code(i._`${e}++`),void 0===u?t.if(i._`${e} >= ${l}`,(()=>t.assign(f,!0).break())):(t.if(i._`${e} > ${u}`,(()=>t.assign(f,!1).break())),1===l?t.assign(f,!0):t.if(i._`${e} >= ${l}`,(()=>t.assign(f,!0))))}void 0===u&&1===l?m(f,(()=>t.if(f,(()=>t.break())))):0===l?(t.let(f,!0),void 0!==u&&t.if(i._`${o}.length > 0`,p)):(t.let(f,!1),p()),e.result(f,(()=>e.reset()))}};t["default"]=o},71273:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.validateSchemaDeps=t.validatePropertyDeps=t.error=void 0;const i=r(93789),n=r(7083),s=r(21085);t.error={message:({params:{property:e,depsCount:t,deps:r}})=>{const n=1===t?"property":"properties";return i.str`must have ${n} ${r} when property ${e} is present`},params:({params:{property:e,depsCount:t,deps:r,missingProperty:n}})=>i._`{property: ${e}, + missingProperty: ${n}, + depsCount: ${t}, + deps: ${r}}`};const o={keyword:"dependencies",type:"object",schemaType:"object",error:t.error,code(e){const[t,r]=a(e);l(e,t),u(e,r)}};function a({schema:e}){const t={},r={};for(const i in e){if("__proto__"===i)continue;const n=Array.isArray(e[i])?t:r;n[i]=e[i]}return[t,r]}function l(e,t=e.schema){const{gen:r,data:n,it:o}=e;if(0===Object.keys(t).length)return;const a=r.let("missing");for(const l in t){const u=t[l];if(0===u.length)continue;const c=(0,s.propertyInData)(r,n,l,o.opts.ownProperties);e.setParams({property:l,depsCount:u.length,deps:u.join(", ")}),o.allErrors?r.if(c,(()=>{for(const t of u)(0,s.checkReportMissingProp)(e,t)})):(r.if(i._`${c} && (${(0,s.checkMissingProp)(e,u,a)})`),(0,s.reportMissingProp)(e,a),r.else())}}function u(e,t=e.schema){const{gen:r,data:i,keyword:o,it:a}=e,l=r.name("valid");for(const u in t)(0,n.alwaysValidSchema)(a,t[u])||(r.if((0,s.propertyInData)(r,i,u,a.opts.ownProperties),(()=>{const t=e.subschema({keyword:o,schemaProp:u},l);e.mergeValidEvaluated(t,l)}),(()=>r.var(l,!0))),e.ok(l))}t.validatePropertyDeps=l,t.validateSchemaDeps=u,t["default"]=o},7567:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(93789),n=r(7083),s={message:({params:e})=>i.str`must match "${e.ifClause}" schema`,params:({params:e})=>i._`{failingKeyword: ${e.ifClause}}`},o={keyword:"if",schemaType:["object","boolean"],trackErrors:!0,error:s,code(e){const{gen:t,parentSchema:r,it:s}=e;void 0===r.then&&void 0===r.else&&(0,n.checkStrictMode)(s,'"if" without "then" and "else" is ignored');const o=a(s,"then"),l=a(s,"else");if(!o&&!l)return;const u=t.let("valid",!0),c=t.name("_valid");if(h(),e.reset(),o&&l){const r=t.let("ifClause");e.setParams({ifClause:r}),t.if(c,d("then",r),d("else",r))}else o?t.if(c,d("then")):t.if((0,i.not)(c),d("else"));function h(){const t=e.subschema({keyword:"if",compositeRule:!0,createErrors:!1,allErrors:!1},c);e.mergeEvaluated(t)}function d(r,n){return()=>{const s=e.subschema({keyword:r},c);t.assign(u,c),e.mergeValidEvaluated(s,u),n?t.assign(n,i._`${r}`):e.setParams({ifClause:r})}}e.pass(u,(()=>e.error(!0)))}};function a(e,t){const r=e.schema[t];return void 0!==r&&!(0,n.alwaysValidSchema)(e,r)}t["default"]=o},52610:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(57065),n=r(47394),s=r(67366),o=r(56166),a=r(96925),l=r(71273),u=r(7705),c=r(90396),h=r(55581),d=r(78013),f=r(6939),p=r(41665),m=r(9259),g=r(66636),v=r(7567),y=r(70866);function b(e=!1){const t=[f.default,p.default,m.default,g.default,v.default,y.default,u.default,c.default,l.default,h.default,d.default];return e?t.push(n.default,o.default):t.push(i.default,s.default),t.push(a.default),t}t["default"]=b},67366:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.validateTuple=void 0;const i=r(93789),n=r(7083),s=r(21085),o={keyword:"items",type:"array",schemaType:["object","array","boolean"],before:"uniqueItems",code(e){const{schema:t,it:r}=e;if(Array.isArray(t))return a(e,"additionalItems",t);r.items=!0,(0,n.alwaysValidSchema)(r,t)||e.ok((0,s.validateArray)(e))}};function a(e,t,r=e.schema){const{gen:s,parentSchema:o,data:a,keyword:l,it:u}=e;d(o),u.opts.unevaluated&&r.length&&!0!==u.items&&(u.items=n.mergeEvaluated.items(s,r.length,u.items));const c=s.name("valid"),h=s.const("len",i._`${a}.length`);function d(e){const{opts:i,errSchemaPath:s}=u,o=r.length,a=o===e.minItems&&(o===e.maxItems||!1===e[t]);if(i.strictTuples&&!a){const e=`"${l}" is ${o}-tuple, but minItems or maxItems/${t} are not specified or different at path "${s}"`;(0,n.checkStrictMode)(u,e,i.strictTuples)}}r.forEach(((t,r)=>{(0,n.alwaysValidSchema)(u,t)||(s.if(i._`${h} > ${r}`,(()=>e.subschema({keyword:l,schemaProp:r,dataProp:r},c))),e.ok(c))}))}t.validateTuple=a,t["default"]=o},56166:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(93789),n=r(7083),s=r(21085),o=r(57065),a={message:({params:{len:e}})=>i.str`must NOT have more than ${e} items`,params:({params:{len:e}})=>i._`{limit: ${e}}`},l={keyword:"items",type:"array",schemaType:["object","boolean"],before:"uniqueItems",error:a,code(e){const{schema:t,parentSchema:r,it:i}=e,{prefixItems:a}=r;i.items=!0,(0,n.alwaysValidSchema)(i,t)||(a?(0,o.validateAdditionalItems)(e,a):e.ok((0,s.validateArray)(e)))}};t["default"]=l},6939:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(7083),n={keyword:"not",schemaType:["object","boolean"],trackErrors:!0,code(e){const{gen:t,schema:r,it:n}=e;if((0,i.alwaysValidSchema)(n,r))return void e.fail();const s=t.name("valid");e.subschema({keyword:"not",compositeRule:!0,createErrors:!1,allErrors:!1},s),e.failResult(s,(()=>e.reset()),(()=>e.error()))},error:{message:"must NOT be valid"}};t["default"]=n},9259:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(93789),n=r(7083),s={message:"must match exactly one schema in oneOf",params:({params:e})=>i._`{passingSchemas: ${e.passing}}`},o={keyword:"oneOf",schemaType:"array",trackErrors:!0,error:s,code(e){const{gen:t,schema:r,parentSchema:s,it:o}=e;if(!Array.isArray(r))throw new Error("ajv implementation error");if(o.opts.discriminator&&s.discriminator)return;const a=r,l=t.let("valid",!1),u=t.let("passing",null),c=t.name("_valid");function h(){a.forEach(((r,s)=>{let a;(0,n.alwaysValidSchema)(o,r)?t.var(c,!0):a=e.subschema({keyword:"oneOf",schemaProp:s,compositeRule:!0},c),s>0&&t.if(i._`${c} && ${l}`).assign(l,!1).assign(u,i._`[${u}, ${s}]`).else(),t.if(c,(()=>{t.assign(l,!0),t.assign(u,s),a&&e.mergeEvaluated(a,i.Name)}))}))}e.setParams({passing:u}),t.block(h),e.result(l,(()=>e.reset()),(()=>e.error(!0)))}};t["default"]=o},78013:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(21085),n=r(93789),s=r(7083),o=r(7083),a={keyword:"patternProperties",type:"object",schemaType:"object",code(e){const{gen:t,schema:r,data:a,parentSchema:l,it:u}=e,{opts:c}=u,h=(0,i.allSchemaProperties)(r),d=h.filter((e=>(0,s.alwaysValidSchema)(u,r[e])));if(0===h.length||d.length===h.length&&(!u.opts.unevaluated||!0===u.props))return;const f=c.strictSchema&&!c.allowMatchingProperties&&l.properties,p=t.name("valid");!0===u.props||u.props instanceof n.Name||(u.props=(0,o.evaluatedPropsToName)(t,u.props));const{props:m}=u;function g(){for(const e of h)f&&v(e),u.allErrors?y(e):(t.var(p,!0),y(e),t.if(p))}function v(e){for(const t in f)new RegExp(e).test(t)&&(0,s.checkStrictMode)(u,`property ${t} matches pattern ${e} (use allowMatchingProperties)`)}function y(r){t.forIn("key",a,(s=>{t.if(n._`${(0,i.usePattern)(e,r)}.test(${s})`,(()=>{const i=d.includes(r);i||e.subschema({keyword:"patternProperties",schemaProp:r,dataProp:s,dataPropType:o.Type.Str},p),u.opts.unevaluated&&!0!==m?t.assign(n._`${m}[${s}]`,!0):i||u.allErrors||t.if((0,n.not)(p),(()=>t.break()))}))}))}g()}};t["default"]=a},47394:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(67366),n={keyword:"prefixItems",type:"array",schemaType:["array"],before:"uniqueItems",code:e=>(0,i.validateTuple)(e,"items")};t["default"]=n},55581:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(69810),n=r(21085),s=r(7083),o=r(90396),a={keyword:"properties",type:"object",schemaType:"object",code(e){const{gen:t,schema:r,parentSchema:a,data:l,it:u}=e;"all"===u.opts.removeAdditional&&void 0===a.additionalProperties&&o.default.code(new i.KeywordCxt(u,o.default,"additionalProperties"));const c=(0,n.allSchemaProperties)(r);for(const i of c)u.definedProperties.add(i);u.opts.unevaluated&&c.length&&!0!==u.props&&(u.props=s.mergeEvaluated.props(t,(0,s.toHash)(c),u.props));const h=c.filter((e=>!(0,s.alwaysValidSchema)(u,r[e])));if(0===h.length)return;const d=t.name("valid");for(const i of h)f(i)?p(i):(t.if((0,n.propertyInData)(t,l,i,u.opts.ownProperties)),p(i),u.allErrors||t.else().var(d,!0),t.endIf()),e.it.definedProperties.add(i),e.ok(d);function f(e){return u.opts.useDefaults&&!u.compositeRule&&void 0!==r[e].default}function p(t){e.subschema({keyword:"properties",schemaProp:t,dataProp:t},d)}}};t["default"]=a},7705:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(93789),n=r(7083),s={message:"property name must be valid",params:({params:e})=>i._`{propertyName: ${e.propertyName}}`},o={keyword:"propertyNames",type:"object",schemaType:["object","boolean"],error:s,code(e){const{gen:t,schema:r,data:s,it:o}=e;if((0,n.alwaysValidSchema)(o,r))return;const a=t.name("valid");t.forIn("key",s,(r=>{e.setParams({propertyName:r}),e.subschema({keyword:"propertyNames",data:r,dataTypes:["string"],propertyName:r,compositeRule:!0},a),t.if((0,i.not)(a),(()=>{e.error(!0),o.allErrors||t.break()}))})),e.ok(a)}};t["default"]=o},70866:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(7083),n={keyword:["then","else"],schemaType:["object","boolean"],code({keyword:e,parentSchema:t,it:r}){void 0===t.if&&(0,i.checkStrictMode)(r,`"${e}" without "if" is ignored`)}};t["default"]=n},21085:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.validateUnion=t.validateArray=t.usePattern=t.callValidateCode=t.schemaProperties=t.allSchemaProperties=t.noPropertyInData=t.propertyInData=t.isOwnProperty=t.hasPropFunc=t.reportMissingProp=t.checkMissingProp=t.checkReportMissingProp=void 0;const i=r(93789),n=r(7083),s=r(66735),o=r(7083);function a(e,t){const{gen:r,data:n,it:s}=e;r.if(f(r,n,t,s.opts.ownProperties),(()=>{e.setParams({missingProperty:i._`${t}`},!0),e.error()}))}function l({gen:e,data:t,it:{opts:r}},n,s){return(0,i.or)(...n.map((n=>(0,i.and)(f(e,t,n,r.ownProperties),i._`${s} = ${n}`))))}function u(e,t){e.setParams({missingProperty:t},!0),e.error()}function c(e){return e.scopeValue("func",{ref:Object.prototype.hasOwnProperty,code:i._`Object.prototype.hasOwnProperty`})}function h(e,t,r){return i._`${c(e)}.call(${t}, ${r})`}function d(e,t,r,n){const s=i._`${t}${(0,i.getProperty)(r)} !== undefined`;return n?i._`${s} && ${h(e,t,r)}`:s}function f(e,t,r,n){const s=i._`${t}${(0,i.getProperty)(r)} === undefined`;return n?(0,i.or)(s,(0,i.not)(h(e,t,r))):s}function p(e){return e?Object.keys(e).filter((e=>"__proto__"!==e)):[]}function m(e,t){return p(t).filter((r=>!(0,n.alwaysValidSchema)(e,t[r])))}function g({schemaCode:e,data:t,it:{gen:r,topSchemaRef:n,schemaPath:o,errorPath:a},it:l},u,c,h){const d=h?i._`${e}, ${t}, ${n}${o}`:t,f=[[s.default.instancePath,(0,i.strConcat)(s.default.instancePath,a)],[s.default.parentData,l.parentData],[s.default.parentDataProperty,l.parentDataProperty],[s.default.rootData,s.default.rootData]];l.opts.dynamicRef&&f.push([s.default.dynamicAnchors,s.default.dynamicAnchors]);const p=i._`${d}, ${r.object(...f)}`;return c!==i.nil?i._`${u}.call(${c}, ${p})`:i._`${u}(${p})`}t.checkReportMissingProp=a,t.checkMissingProp=l,t.reportMissingProp=u,t.hasPropFunc=c,t.isOwnProperty=h,t.propertyInData=d,t.noPropertyInData=f,t.allSchemaProperties=p,t.schemaProperties=m,t.callValidateCode=g;const v=i._`new RegExp`;function y({gen:e,it:{opts:t}},r){const n=t.unicodeRegExp?"u":"",{regExp:s}=t.code,a=s(r,n);return e.scopeValue("pattern",{key:a.toString(),ref:a,code:i._`${"new RegExp"===s.code?v:(0,o.useFunc)(e,s)}(${r}, ${n})`})}function b(e){const{gen:t,data:r,keyword:s,it:o}=e,a=t.name("valid");if(o.allErrors){const e=t.let("valid",!0);return l((()=>t.assign(e,!1))),e}return t.var(a,!0),l((()=>t.break())),a;function l(o){const l=t.const("len",i._`${r}.length`);t.forRange("i",0,l,(r=>{e.subschema({keyword:s,dataProp:r,dataPropType:n.Type.Num},a),t.if((0,i.not)(a),o)}))}}function w(e){const{gen:t,schema:r,keyword:s,it:o}=e;if(!Array.isArray(r))throw new Error("ajv implementation error");const a=r.some((e=>(0,n.alwaysValidSchema)(o,e)));if(a&&!o.opts.unevaluated)return;const l=t.let("valid",!1),u=t.name("_valid");t.block((()=>r.forEach(((r,n)=>{const o=e.subschema({keyword:s,schemaProp:n,compositeRule:!0},u);t.assign(l,i._`${l} || ${u}`);const a=e.mergeValidEvaluated(o,u);a||t.if((0,i.not)(l))})))),e.result(l,(()=>e.reset()),(()=>e.error(!0)))}t.usePattern=y,t.validateArray=b,t.validateUnion=w},47103:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r={keyword:"id",code(){throw new Error('NOT SUPPORTED: keyword "id", use "$id" for schema ID')}};t["default"]=r},90344:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(47103),n=r(29045),s=["$schema","$id","$defs","$vocabulary",{keyword:"$comment"},"definitions",i.default,n.default];t["default"]=s},29045:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.callRef=t.getValidate=void 0;const i=r(70303),n=r(21085),s=r(93789),o=r(66735),a=r(65219),l=r(7083),u={keyword:"$ref",schemaType:"string",code(e){const{gen:t,schema:r,it:n}=e,{baseId:o,schemaEnv:l,validateName:u,opts:d,self:f}=n,{root:p}=l;if(("#"===r||"#/"===r)&&o===p.baseId)return g();const m=a.resolveRef.call(f,p,o,r);if(void 0===m)throw new i.default(n.opts.uriResolver,o,r);return m instanceof a.SchemaEnv?v(m):y(m);function g(){if(l===p)return h(e,u,l,l.$async);const r=t.scopeValue("root",{ref:p});return h(e,s._`${r}.validate`,p,p.$async)}function v(t){const r=c(e,t);h(e,r,t,t.$async)}function y(i){const n=t.scopeValue("schema",!0===d.code.source?{ref:i,code:(0,s.stringify)(i)}:{ref:i}),o=t.name("valid"),a=e.subschema({schema:i,dataTypes:[],schemaPath:s.nil,topSchemaRef:n,errSchemaPath:r},o);e.mergeEvaluated(a),e.ok(o)}}};function c(e,t){const{gen:r}=e;return t.validate?r.scopeValue("validate",{ref:t.validate}):s._`${r.scopeValue("wrapper",{ref:t})}.validate`}function h(e,t,r,i){const{gen:a,it:u}=e,{allErrors:c,schemaEnv:h,opts:d}=u,f=d.passContext?o.default.this:s.nil;function p(){if(!h.$async)throw new Error("async schema referenced by sync schema");const r=a.let("valid");a.try((()=>{a.code(s._`await ${(0,n.callValidateCode)(e,t,f)}`),v(t),c||a.assign(r,!0)}),(e=>{a.if(s._`!(${e} instanceof ${u.ValidationError})`,(()=>a.throw(e))),g(e),c||a.assign(r,!1)})),e.ok(r)}function m(){e.result((0,n.callValidateCode)(e,t,f),(()=>v(t)),(()=>g(t)))}function g(e){const t=s._`${e}.errors`;a.assign(o.default.vErrors,s._`${o.default.vErrors} === null ? ${t} : ${o.default.vErrors}.concat(${t})`),a.assign(o.default.errors,s._`${o.default.vErrors}.length`)}function v(e){var t;if(!u.opts.unevaluated)return;const i=null===(t=null===r||void 0===r?void 0:r.validate)||void 0===t?void 0:t.evaluated;if(!0!==u.props)if(i&&!i.dynamicProps)void 0!==i.props&&(u.props=l.mergeEvaluated.props(a,i.props,u.props));else{const t=a.var("props",s._`${e}.evaluated.props`);u.props=l.mergeEvaluated.props(a,t,u.props,s.Name)}if(!0!==u.items)if(i&&!i.dynamicItems)void 0!==i.items&&(u.items=l.mergeEvaluated.items(a,i.items,u.items));else{const t=a.var("items",s._`${e}.evaluated.items`);u.items=l.mergeEvaluated.items(a,t,u.items,s.Name)}}i?p():m()}t.getValidate=c,t.callRef=h,t["default"]=u},77013:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(93789),n=r(27420),s=r(65219),o=r(70303),a=r(7083),l={message:({params:{discrError:e,tagName:t}})=>e===n.DiscrError.Tag?`tag "${t}" must be string`:`value of tag "${t}" must be in oneOf`,params:({params:{discrError:e,tag:t,tagName:r}})=>i._`{error: ${e}, tag: ${r}, tagValue: ${t}}`},u={keyword:"discriminator",type:"object",schemaType:"object",error:l,code(e){const{gen:t,data:r,schema:l,parentSchema:u,it:c}=e,{oneOf:h}=u;if(!c.opts.discriminator)throw new Error("discriminator: requires discriminator option");const d=l.propertyName;if("string"!=typeof d)throw new Error("discriminator: requires propertyName");if(l.mapping)throw new Error("discriminator: mapping is not supported");if(!h)throw new Error("discriminator: requires oneOf keyword");const f=t.let("valid",!1),p=t.const("tag",i._`${r}${(0,i.getProperty)(d)}`);function m(){const r=v();t.if(!1);for(const e in r)t.elseIf(i._`${p} === ${e}`),t.assign(f,g(r[e]));t.else(),e.error(!1,{discrError:n.DiscrError.Mapping,tag:p,tagName:d}),t.endIf()}function g(r){const n=t.name("valid"),s=e.subschema({keyword:"oneOf",schemaProp:r},n);return e.mergeEvaluated(s,i.Name),n}function v(){var e;const t={},r=n(u);let i=!0;for(let u=0;um()),(()=>e.error(!1,{discrError:n.DiscrError.Tag,tag:p,tagName:d}))),e.ok(f)}};t["default"]=u},27420:function(e,t){"use strict";var r;Object.defineProperty(t,"__esModule",{value:!0}),t.DiscrError=void 0,function(e){e["Tag"]="tag",e["Mapping"]="mapping"}(r||(t.DiscrError=r={}))},4824:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(90344),n=r(92348),s=r(52610),o=r(32884),a=r(73929),l=[i.default,n.default,(0,s.default)(),o.default,a.metadataVocabulary,a.contentVocabulary];t["default"]=l},40329:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(93789),n={message:({schemaCode:e})=>i.str`must match format "${e}"`,params:({schemaCode:e})=>i._`{format: ${e}}`},s={keyword:"format",type:["number","string"],schemaType:"string",$data:!0,error:n,code(e,t){const{gen:r,data:n,$data:s,schema:o,schemaCode:a,it:l}=e,{opts:u,errSchemaPath:c,schemaEnv:h,self:d}=l;function f(){const s=r.scopeValue("formats",{ref:d.formats,code:u.code.formats}),o=r.const("fDef",i._`${s}[${a}]`),l=r.let("fType"),c=r.let("format");function f(){return!1===u.strictSchema?i.nil:i._`${a} && !${c}`}function p(){const e=h.$async?i._`(${o}.async ? await ${c}(${n}) : ${c}(${n}))`:i._`${c}(${n})`,r=i._`(typeof ${c} == "function" ? ${e} : ${c}.test(${n}))`;return i._`${c} && ${c} !== true && ${l} === ${t} && !${r}`}r.if(i._`typeof ${o} == "object" && !(${o} instanceof RegExp)`,(()=>r.assign(l,i._`${o}.type || "string"`).assign(c,i._`${o}.validate`)),(()=>r.assign(l,i._`"string"`).assign(c,o))),e.fail$data((0,i.or)(f(),p()))}function p(){const s=d.formats[o];if(!s)return void p();if(!0===s)return;const[a,l,f]=m(s);function p(){if(!1!==u.strictSchema)throw new Error(e());function e(){return`unknown format "${o}" ignored in schema at path "${c}"`}d.logger.warn(e())}function m(e){const t=e instanceof RegExp?(0,i.regexpCode)(e):u.code.formats?i._`${u.code.formats}${(0,i.getProperty)(o)}`:void 0,n=r.scopeValue("formats",{key:o,ref:e,code:t});return"object"!=typeof e||e instanceof RegExp?["string",e,n]:[e.type||"string",e.validate,i._`${n}.validate`]}function g(){if("object"==typeof s&&!(s instanceof RegExp)&&s.async){if(!h.$async)throw new Error("async format in sync schema");return i._`await ${f}(${n})`}return"function"==typeof l?i._`${f}(${n})`:i._`${f}.test(${n})`}a===t&&e.pass(g())}u.validateFormats&&(s?f():p())}};t["default"]=s},32884:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(40329),n=[i.default];t["default"]=n},73929:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.contentVocabulary=t.metadataVocabulary=void 0,t.metadataVocabulary=["title","description","default","deprecated","readOnly","writeOnly","examples"],t.contentVocabulary=["contentMediaType","contentEncoding","contentSchema"]},3767:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(93789),n=r(7083),s=r(72482),o={message:"must be equal to constant",params:({schemaCode:e})=>i._`{allowedValue: ${e}}`},a={keyword:"const",$data:!0,error:o,code(e){const{gen:t,data:r,$data:o,schemaCode:a,schema:l}=e;o||l&&"object"==typeof l?e.fail$data(i._`!${(0,n.useFunc)(t,s.default)}(${r}, ${a})`):e.fail(i._`${l} !== ${r}`)}};t["default"]=a},64715:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(93789),n=r(7083),s=r(72482),o={message:"must be equal to one of the allowed values",params:({schemaCode:e})=>i._`{allowedValues: ${e}}`},a={keyword:"enum",schemaType:"array",$data:!0,error:o,code(e){const{gen:t,data:r,$data:o,schema:a,schemaCode:l,it:u}=e;if(!o&&0===a.length)throw new Error("enum must have non-empty array");const c=a.length>=u.opts.loopEnum;let h;const d=()=>null!==h&&void 0!==h?h:h=(0,n.useFunc)(t,s.default);let f;if(c||o)f=t.let("valid"),e.block$data(f,p);else{if(!Array.isArray(a))throw new Error("ajv implementation error");const e=t.const("vSchema",l);f=(0,i.or)(...a.map(((t,r)=>m(e,r))))}function p(){t.assign(f,!1),t.forOf("v",l,(e=>t.if(i._`${d()}(${r}, ${e})`,(()=>t.assign(f,!0).break()))))}function m(e,t){const n=a[t];return"object"===typeof n&&null!==n?i._`${d()}(${r}, ${e}[${t}])`:i._`${r} === ${n}`}e.pass(f)}};t["default"]=a},92348:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(80450),n=r(56711),s=r(83875),o=r(50302),a=r(38094),l=r(4267),u=r(99347),c=r(42785),h=r(3767),d=r(64715),f=[i.default,n.default,s.default,o.default,a.default,l.default,u.default,c.default,{keyword:"type",schemaType:["string","array"]},{keyword:"nullable",schemaType:"boolean"},h.default,d.default];t["default"]=f},99347:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(93789),n={message({keyword:e,schemaCode:t}){const r="maxItems"===e?"more":"fewer";return i.str`must NOT have ${r} than ${t} items`},params:({schemaCode:e})=>i._`{limit: ${e}}`},s={keyword:["maxItems","minItems"],type:"array",schemaType:"number",$data:!0,error:n,code(e){const{keyword:t,data:r,schemaCode:n}=e,s="maxItems"===t?i.operators.GT:i.operators.LT;e.fail$data(i._`${r}.length ${s} ${n}`)}};t["default"]=s},83875:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(93789),n=r(7083),s=r(82261),o={message({keyword:e,schemaCode:t}){const r="maxLength"===e?"more":"fewer";return i.str`must NOT have ${r} than ${t} characters`},params:({schemaCode:e})=>i._`{limit: ${e}}`},a={keyword:["maxLength","minLength"],type:"string",schemaType:"number",$data:!0,error:o,code(e){const{keyword:t,data:r,schemaCode:o,it:a}=e,l="maxLength"===t?i.operators.GT:i.operators.LT,u=!1===a.opts.unicode?i._`${r}.length`:i._`${(0,n.useFunc)(e.gen,s.default)}(${r})`;e.fail$data(i._`${u} ${l} ${o}`)}};t["default"]=a},80450:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(93789),n=i.operators,s={maximum:{okStr:"<=",ok:n.LTE,fail:n.GT},minimum:{okStr:">=",ok:n.GTE,fail:n.LT},exclusiveMaximum:{okStr:"<",ok:n.LT,fail:n.GTE},exclusiveMinimum:{okStr:">",ok:n.GT,fail:n.LTE}},o={message:({keyword:e,schemaCode:t})=>i.str`must be ${s[e].okStr} ${t}`,params:({keyword:e,schemaCode:t})=>i._`{comparison: ${s[e].okStr}, limit: ${t}}`},a={keyword:Object.keys(s),type:"number",schemaType:"number",$data:!0,error:o,code(e){const{keyword:t,data:r,schemaCode:n}=e;e.fail$data(i._`${r} ${s[t].fail} ${n} || isNaN(${r})`)}};t["default"]=a},38094:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(93789),n={message({keyword:e,schemaCode:t}){const r="maxProperties"===e?"more":"fewer";return i.str`must NOT have ${r} than ${t} properties`},params:({schemaCode:e})=>i._`{limit: ${e}}`},s={keyword:["maxProperties","minProperties"],type:"object",schemaType:"number",$data:!0,error:n,code(e){const{keyword:t,data:r,schemaCode:n}=e,s="maxProperties"===t?i.operators.GT:i.operators.LT;e.fail$data(i._`Object.keys(${r}).length ${s} ${n}`)}};t["default"]=s},56711:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(93789),n={message:({schemaCode:e})=>i.str`must be multiple of ${e}`,params:({schemaCode:e})=>i._`{multipleOf: ${e}}`},s={keyword:"multipleOf",type:"number",schemaType:"number",$data:!0,error:n,code(e){const{gen:t,data:r,schemaCode:n,it:s}=e,o=s.opts.multipleOfPrecision,a=t.let("res"),l=o?i._`Math.abs(Math.round(${a}) - ${a}) > 1e-${o}`:i._`${a} !== parseInt(${a})`;e.fail$data(i._`(${n} === 0 || (${a} = ${r}/${n}, ${l}))`)}};t["default"]=s},50302:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(21085),n=r(93789),s={message:({schemaCode:e})=>n.str`must match pattern "${e}"`,params:({schemaCode:e})=>n._`{pattern: ${e}}`},o={keyword:"pattern",type:"string",schemaType:"string",$data:!0,error:s,code(e){const{data:t,$data:r,schema:s,schemaCode:o,it:a}=e,l=a.opts.unicodeRegExp?"u":"",u=r?n._`(new RegExp(${o}, ${l}))`:(0,i.usePattern)(e,s);e.fail$data(n._`!${u}.test(${t})`)}};t["default"]=o},4267:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(21085),n=r(93789),s=r(7083),o={message:({params:{missingProperty:e}})=>n.str`must have required property '${e}'`,params:({params:{missingProperty:e}})=>n._`{missingProperty: ${e}}`},a={keyword:"required",type:"object",schemaType:"array",$data:!0,error:o,code(e){const{gen:t,schema:r,schemaCode:o,data:a,$data:l,it:u}=e,{opts:c}=u;if(!l&&0===r.length)return;const h=r.length>=c.loopRequired;if(u.allErrors?d():f(),c.strictRequired){const t=e.parentSchema.properties,{definedProperties:i}=e.it;for(const e of r)if(void 0===(null===t||void 0===t?void 0:t[e])&&!i.has(e)){const t=u.schemaEnv.baseId+u.errSchemaPath,r=`required property "${e}" is not defined at "${t}" (strictRequired)`;(0,s.checkStrictMode)(u,r,u.opts.strictRequired)}}function d(){if(h||l)e.block$data(n.nil,p);else for(const t of r)(0,i.checkReportMissingProp)(e,t)}function f(){const n=t.let("missing");if(h||l){const r=t.let("valid",!0);e.block$data(r,(()=>m(n,r))),e.ok(r)}else t.if((0,i.checkMissingProp)(e,r,n)),(0,i.reportMissingProp)(e,n),t.else()}function p(){t.forOf("prop",o,(r=>{e.setParams({missingProperty:r}),t.if((0,i.noPropertyInData)(t,a,r,c.ownProperties),(()=>e.error()))}))}function m(r,s){e.setParams({missingProperty:r}),t.forOf(r,o,(()=>{t.assign(s,(0,i.propertyInData)(t,a,r,c.ownProperties)),t.if((0,n.not)(s),(()=>{e.error(),t.break()}))}),n.nil)}}};t["default"]=a},42785:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const i=r(28840),n=r(93789),s=r(7083),o=r(72482),a={message:({params:{i:e,j:t}})=>n.str`must NOT have duplicate items (items ## ${t} and ${e} are identical)`,params:({params:{i:e,j:t}})=>n._`{i: ${e}, j: ${t}}`},l={keyword:"uniqueItems",type:"array",schemaType:"boolean",$data:!0,error:a,code(e){const{gen:t,data:r,$data:a,schema:l,parentSchema:u,schemaCode:c,it:h}=e;if(!a&&!l)return;const d=t.let("valid"),f=u.items?(0,i.getSchemaTypes)(u.items):[];function p(){const i=t.let("i",n._`${r}.length`),s=t.let("j");e.setParams({i:i,j:s}),t.assign(d,!0),t.if(n._`${i} > 1`,(()=>(m()?g:v)(i,s)))}function m(){return f.length>0&&!f.some((e=>"object"===e||"array"===e))}function g(s,o){const a=t.name("item"),l=(0,i.checkDataTypes)(f,a,h.opts.strictNumbers,i.DataType.Wrong),u=t.const("indices",n._`{}`);t.for(n._`;${s}--;`,(()=>{t.let(a,n._`${r}[${s}]`),t.if(l,n._`continue`),f.length>1&&t.if(n._`typeof ${a} == "string"`,n._`${a} += "_"`),t.if(n._`typeof ${u}[${a}] == "number"`,(()=>{t.assign(o,n._`${u}[${a}]`),e.error(),t.assign(d,!1).break()})).code(n._`${u}[${a}] = ${s}`)}))}function v(i,a){const l=(0,s.useFunc)(t,o.default),u=t.name("outer");t.label(u).for(n._`;${i}--;`,(()=>t.for(n._`${a} = ${i}; ${a}--;`,(()=>t.if(n._`${l}(${r}[${i}], ${r}[${a}])`,(()=>{e.error(),t.assign(d,!1).break(u)}))))))}e.block$data(d,p,n._`${c} === false`),e.ok(d)}};t["default"]=l},67242:function(e){"use strict";var t=e.exports=function(e,t,i){"function"==typeof t&&(i=t,t={}),i=t.cb||i;var n="function"==typeof i?i:i.pre||function(){},s=i.post||function(){};r(t,n,s,e,"",e)};function r(e,n,s,o,a,l,u,c,h,d){if(o&&"object"==typeof o&&!Array.isArray(o)){for(var f in n(o,a,l,u,c,h,d),o){var p=o[f];if(Array.isArray(p)){if(f in t.arrayKeywords)for(var m=0;m%\\^`{|}]|%[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,h=/^(?:(?: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-9a-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+-)*(?:[0-9a-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+)(?:\.(?:(?:[0-9a-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+-)*(?:[0-9a-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+)*(?:\.(?:(?:[a-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,d=/^(?:urn:uuid:)?[0-9a-f]{8}-(?:[0-9a-f]{4}-){3}[0-9a-f]{12}$/i,f=/^(?:\/(?:[^~/]|~0|~1)*)*$/,p=/^#(?:\/(?:[a-z0-9_\-.!$&'()*+,;:=@]|%[0-9a-f]{2}|~0|~1)*)*$/i,m=/^(?:0|[1-9][0-9]*)(?:#|(?:\/(?:[^~/]|~0|~1)*)*)$/;function g(e){return e="full"==e?"full":"fast",i.copy(g[e])}function v(e){return e%4===0&&(e%100!==0||e%400===0)}function y(e){var t=e.match(n);if(!t)return!1;var r=+t[1],i=+t[2],o=+t[3];return i>=1&&i<=12&&o>=1&&o<=(2==i&&v(r)?29:s[i])}function b(e,t){var r=e.match(o);if(!r)return!1;var i=r[1],n=r[2],s=r[3],a=r[5];return(i<=23&&n<=59&&s<=59||23==i&&59==n&&60==s)&&(!t||a)}e.exports=g,g.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":c,url:h,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:a,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:M,uuid:d,"json-pointer":f,"json-pointer-uri-fragment":p,"relative-json-pointer":m},g.full={date:y,time:b,"date-time":_,uri:x,"uri-reference":u,"uri-template":c,url:h,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:a,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:M,uuid:d,"json-pointer":f,"json-pointer-uri-fragment":p,"relative-json-pointer":m};var w=/t|\s/i;function _(e){var t=e.split(w);return 2==t.length&&y(t[0])&&b(t[1],!0)}var k=/\/|:/;function x(e){return k.test(e)&&l.test(e)}var S=/[^\\]\\Z/;function M(e){if(S.test(e))return!1;try{return new RegExp(e),!0}catch(t){return!1}}},7354:function(e,t,r){"use strict";var i=r(91030),n=r(96740),s=r(64551),o=r(72492),a=r(51873),l=n.ucs2length,u=r(32017),c=s.Validation;function h(e,t,r,p){var w=this,_=this._opts,k=[void 0],x={},S=[],M={},E=[],A={},C=[];t=t||{schema:e,refVal:k,refs:x};var $=d.call(this,e,t,p),O=this._compilations[$.index];if($.compiling)return O.callValidate=L;var P=this._formats,T=this.RULES;try{var I=N(e,t,r,p);O.validate=I;var D=O.callValidate;return D&&(D.schema=I.schema,D.errors=null,D.refs=I.refs,D.refVal=I.refVal,D.root=I.root,D.$async=I.$async,_.sourceCode&&(D.source=I.source)),I}finally{f.call(this,e,t,p)}function L(){var e=O.validate,t=e.apply(this,arguments);return L.errors=e.errors,t}function N(e,r,o,d){var f=!r||r&&r.schema==e;if(r.schema!=t.schema)return h.call(w,e,r,o,d);var p,M=!0===e.$async,A=a({isTop:!0,schema:e,isRoot:f,baseId:d,root:r,schemaPath:"",errSchemaPath:"#",errorPath:'""',MissingRefError:s.MissingRef,RULES:T,validate:a,util:n,resolve:i,resolveRef:R,usePattern:V,useDefault:q,useCustomRule:U,opts:_,formats:P,logger:w.logger,self:w});A=b(k,v)+b(S,m)+b(E,g)+b(C,y)+A,_.processCode&&(A=_.processCode(A,e));try{var $=new Function("self","RULES","formats","root","refVal","defaults","customRules","equal","ucs2length","ValidationError",A);p=$(w,T,P,t,k,E,C,u,l,c),k[0]=p}catch(O){throw w.logger.error("Error compiling schema, function code:",A),O}return p.schema=e,p.errors=null,p.refs=x,p.refVal=k,p.root=f?p:r,M&&(p.$async=!0),!0===_.sourceCode&&(p.source={code:A,patterns:S,defaults:E}),p}function R(e,n,s){n=i.url(e,n);var o,a,l=x[n];if(void 0!==l)return o=k[l],a="refVal["+l+"]",z(o,a);if(!s&&t.refs){var u=t.refs[n];if(void 0!==u)return o=t.refVal[u],a=j(n,o),z(o,a)}a=j(n);var c=i.call(w,N,t,n);if(void 0===c){var d=r&&r[n];d&&(c=i.inlineRef(d,_.inlineRefs)?d:h.call(w,d,t,r,e))}if(void 0!==c)return F(n,c),z(c,a);B(n)}function j(e,t){var r=k.length;return k[r]=t,x[e]=r,"refVal"+r}function B(e){delete x[e]}function F(e,t){var r=x[e];k[r]=t}function z(e,t){return"object"==typeof e||"boolean"==typeof e?{code:t,schema:e,inline:!0}:{code:t,$async:e&&!!e.$async}}function V(e){var t=M[e];return void 0===t&&(t=M[e]=S.length,S[t]=e),"pattern"+t}function q(e){switch(typeof e){case"boolean":case"number":return""+e;case"string":return n.toQuotedString(e);case"object":if(null===e)return"null";var t=o(e),r=A[t];return void 0===r&&(r=A[t]=E.length,E[r]=e),"default"+r}}function U(e,t,r,i){if(!1!==w._opts.validateSchema){var n=e.definition.dependencies;if(n&&!n.every((function(e){return Object.prototype.hasOwnProperty.call(r,e)})))throw new Error("parent schema must have all required keywords: "+n.join(","));var s=e.definition.validateSchema;if(s){var o=s(t);if(!o){var a="keyword schema is invalid: "+w.errorsText(s.errors);if("log"!=w._opts.validateSchema)throw new Error(a);w.logger.error(a)}}}var l,u=e.definition.compile,c=e.definition.inline,h=e.definition.macro;if(u)l=u.call(w,t,r,i);else if(h)l=h.call(w,t,r,i),!1!==_.validateSchema&&w.validateSchema(l,!0);else if(c)l=c.call(w,i,e.keyword,t,r);else if(l=e.definition.validate,!l)return;if(void 0===l)throw new Error('custom keyword "'+e.keyword+'"failed to compile');var d=C.length;return C[d]=l,{code:"customRule"+d,validate:l}}}function d(e,t,r){var i=p.call(this,e,t,r);return i>=0?{index:i,compiling:!0}:(i=this._compilations.length,this._compilations[i]={schema:e,root:t,baseId:r},{index:i,compiling:!1})}function f(e,t,r){var i=p.call(this,e,t,r);i>=0&&this._compilations.splice(i,1)}function p(e,t,r){for(var i=0;i=55296&&t<=56319&&n=t)throw new Error("Cannot access property/index "+i+" levels up, current level is "+t);return r[t-i]}if(i>t)throw new Error("Cannot access data "+i+" levels up, current level is "+t);if(s="data"+(t-i||""),!n)return s}for(var a=s,l=n.split("/"),u=0;u",y=f?">":"<",b=void 0;if(!d&&"number"!=typeof a&&void 0!==a)throw new Error(t+" must be number");if(!g&&void 0!==m&&"number"!=typeof m&&"boolean"!=typeof m)throw new Error(p+" must be number or boolean");if(g){var w=e.util.getData(m.$data,o,e.dataPathArr),_="exclusive"+s,k="exclType"+s,x="exclIsNumber"+s,S="op"+s,M="' + "+S+" + '";n+=" var schemaExcl"+s+" = "+w+"; ",w="schemaExcl"+s,n+=" var "+_+"; var "+k+" = typeof "+w+"; if ("+k+" != 'boolean' && "+k+" != 'undefined' && "+k+" != 'number') { ";b=p;var E=E||[];E.push(n),n="",!1!==e.createErrors?(n+=" { keyword: '"+(b||"_exclusiveLimit")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(u)+" , params: {} ",!1!==e.opts.messages&&(n+=" , message: '"+p+" should be boolean' "),e.opts.verbose&&(n+=" , schema: validate.schema"+l+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+h+" "),n+=" } "):n+=" {} ";var A=n;n=E.pop(),!e.compositeRule&&c?e.async?n+=" throw new ValidationError(["+A+"]); ":n+=" validate.errors = ["+A+"]; return false; ":n+=" var err = "+A+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",n+=" } else if ( ",d&&(n+=" ("+i+" !== undefined && typeof "+i+" != 'number') || "),n+=" "+k+" == 'number' ? ( ("+_+" = "+i+" === undefined || "+w+" "+v+"= "+i+") ? "+h+" "+y+"= "+w+" : "+h+" "+y+" "+i+" ) : ( ("+_+" = "+w+" === true) ? "+h+" "+y+"= "+i+" : "+h+" "+y+" "+i+" ) || "+h+" !== "+h+") { var op"+s+" = "+_+" ? '"+v+"' : '"+v+"='; ",void 0===a&&(b=p,u=e.errSchemaPath+"/"+p,i=w,d=g)}else{x="number"==typeof m,M=v;if(x&&d){S="'"+M+"'";n+=" if ( ",d&&(n+=" ("+i+" !== undefined && typeof "+i+" != 'number') || "),n+=" ( "+i+" === undefined || "+m+" "+v+"= "+i+" ? "+h+" "+y+"= "+m+" : "+h+" "+y+" "+i+" ) || "+h+" !== "+h+") { "}else{x&&void 0===a?(_=!0,b=p,u=e.errSchemaPath+"/"+p,i=m,y+="="):(x&&(i=Math[f?"min":"max"](m,a)),m===(!x||i)?(_=!0,b=p,u=e.errSchemaPath+"/"+p,y+="="):(_=!1,M+="="));S="'"+M+"'";n+=" if ( ",d&&(n+=" ("+i+" !== undefined && typeof "+i+" != 'number') || "),n+=" "+h+" "+y+" "+i+" || "+h+" !== "+h+") { "}}b=b||t;E=E||[];E.push(n),n="",!1!==e.createErrors?(n+=" { keyword: '"+(b||"_limit")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(u)+" , params: { comparison: "+S+", limit: "+i+", exclusive: "+_+" } ",!1!==e.opts.messages&&(n+=" , message: 'should be "+M+" ",n+=d?"' + "+i:i+"'"),e.opts.verbose&&(n+=" , schema: ",n+=d?"validate.schema"+l:""+a,n+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+h+" "),n+=" } "):n+=" {} ";A=n;return n=E.pop(),!e.compositeRule&&c?e.async?n+=" throw new ValidationError(["+A+"]); ":n+=" validate.errors = ["+A+"]; return false; ":n+=" var err = "+A+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",n+=" } ",c&&(n+=" else { "),n}},52119:function(e){"use strict";e.exports=function(e,t,r){var i,n=" ",s=e.level,o=e.dataLevel,a=e.schema[t],l=e.schemaPath+e.util.getProperty(t),u=e.errSchemaPath+"/"+t,c=!e.opts.allErrors,h="data"+(o||""),d=e.opts.$data&&a&&a.$data;if(d?(n+=" var schema"+s+" = "+e.util.getData(a.$data,o,e.dataPathArr)+"; ",i="schema"+s):i=a,!d&&"number"!=typeof a)throw new Error(t+" must be number");var f="maxItems"==t?">":"<";n+="if ( ",d&&(n+=" ("+i+" !== undefined && typeof "+i+" != 'number') || "),n+=" "+h+".length "+f+" "+i+") { ";var p=t,m=m||[];m.push(n),n="",!1!==e.createErrors?(n+=" { keyword: '"+(p||"_limitItems")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(u)+" , params: { limit: "+i+" } ",!1!==e.opts.messages&&(n+=" , message: 'should NOT have ",n+="maxItems"==t?"more":"fewer",n+=" than ",n+=d?"' + "+i+" + '":""+a,n+=" items' "),e.opts.verbose&&(n+=" , schema: ",n+=d?"validate.schema"+l:""+a,n+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+h+" "),n+=" } "):n+=" {} ";var g=n;return n=m.pop(),!e.compositeRule&&c?e.async?n+=" throw new ValidationError(["+g+"]); ":n+=" validate.errors = ["+g+"]; return false; ":n+=" var err = "+g+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",n+="} ",c&&(n+=" else { "),n}},47935:function(e){"use strict";e.exports=function(e,t,r){var i,n=" ",s=e.level,o=e.dataLevel,a=e.schema[t],l=e.schemaPath+e.util.getProperty(t),u=e.errSchemaPath+"/"+t,c=!e.opts.allErrors,h="data"+(o||""),d=e.opts.$data&&a&&a.$data;if(d?(n+=" var schema"+s+" = "+e.util.getData(a.$data,o,e.dataPathArr)+"; ",i="schema"+s):i=a,!d&&"number"!=typeof a)throw new Error(t+" must be number");var f="maxLength"==t?">":"<";n+="if ( ",d&&(n+=" ("+i+" !== undefined && typeof "+i+" != 'number') || "),!1===e.opts.unicode?n+=" "+h+".length ":n+=" ucs2length("+h+") ",n+=" "+f+" "+i+") { ";var p=t,m=m||[];m.push(n),n="",!1!==e.createErrors?(n+=" { keyword: '"+(p||"_limitLength")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(u)+" , params: { limit: "+i+" } ",!1!==e.opts.messages&&(n+=" , message: 'should NOT be ",n+="maxLength"==t?"longer":"shorter",n+=" than ",n+=d?"' + "+i+" + '":""+a,n+=" characters' "),e.opts.verbose&&(n+=" , schema: ",n+=d?"validate.schema"+l:""+a,n+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+h+" "),n+=" } "):n+=" {} ";var g=n;return n=m.pop(),!e.compositeRule&&c?e.async?n+=" throw new ValidationError(["+g+"]); ":n+=" validate.errors = ["+g+"]; return false; ":n+=" var err = "+g+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",n+="} ",c&&(n+=" else { "),n}},51298:function(e){"use strict";e.exports=function(e,t,r){var i,n=" ",s=e.level,o=e.dataLevel,a=e.schema[t],l=e.schemaPath+e.util.getProperty(t),u=e.errSchemaPath+"/"+t,c=!e.opts.allErrors,h="data"+(o||""),d=e.opts.$data&&a&&a.$data;if(d?(n+=" var schema"+s+" = "+e.util.getData(a.$data,o,e.dataPathArr)+"; ",i="schema"+s):i=a,!d&&"number"!=typeof a)throw new Error(t+" must be number");var f="maxProperties"==t?">":"<";n+="if ( ",d&&(n+=" ("+i+" !== undefined && typeof "+i+" != 'number') || "),n+=" Object.keys("+h+").length "+f+" "+i+") { ";var p=t,m=m||[];m.push(n),n="",!1!==e.createErrors?(n+=" { keyword: '"+(p||"_limitProperties")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(u)+" , params: { limit: "+i+" } ",!1!==e.opts.messages&&(n+=" , message: 'should NOT have ",n+="maxProperties"==t?"more":"fewer",n+=" than ",n+=d?"' + "+i+" + '":""+a,n+=" properties' "),e.opts.verbose&&(n+=" , schema: ",n+=d?"validate.schema"+l:""+a,n+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+h+" "),n+=" } "):n+=" {} ";var g=n;return n=m.pop(),!e.compositeRule&&c?e.async?n+=" throw new ValidationError(["+g+"]); ":n+=" validate.errors = ["+g+"]; return false; ":n+=" var err = "+g+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",n+="} ",c&&(n+=" else { "),n}},80353:function(e){"use strict";e.exports=function(e,t,r){var i=" ",n=e.schema[t],s=e.schemaPath+e.util.getProperty(t),o=e.errSchemaPath+"/"+t,a=!e.opts.allErrors,l=e.util.copy(e),u="";l.level++;var c="valid"+l.level,h=l.baseId,d=!0,f=n;if(f){var p,m=-1,g=f.length-1;while(m0||!1===p:e.util.schemaHasRules(p,e.RULES.all))&&(d=!1,l.schema=p,l.schemaPath=s+"["+m+"]",l.errSchemaPath=o+"/"+m,i+=" "+e.validate(l)+" ",l.baseId=h,a&&(i+=" if ("+c+") { ",u+="}"))}return a&&(i+=d?" if (true) { ":" "+u.slice(0,-1)+" "),i}},29480:function(e){"use strict";e.exports=function(e,t,r){var i=" ",n=e.level,s=e.dataLevel,o=e.schema[t],a=e.schemaPath+e.util.getProperty(t),l=e.errSchemaPath+"/"+t,u=!e.opts.allErrors,c="data"+(s||""),h="valid"+n,d="errs__"+n,f=e.util.copy(e),p="";f.level++;var m="valid"+f.level,g=o.every((function(t){return e.opts.strictKeywords?"object"==typeof t&&Object.keys(t).length>0||!1===t:e.util.schemaHasRules(t,e.RULES.all)}));if(g){var v=f.baseId;i+=" var "+d+" = errors; var "+h+" = false; ";var y=e.compositeRule;e.compositeRule=f.compositeRule=!0;var b=o;if(b){var w,_=-1,k=b.length-1;while(_0||!1===o:e.util.schemaHasRules(o,e.RULES.all);if(i+="var "+d+" = errors;var "+h+";",w){var _=e.compositeRule;e.compositeRule=f.compositeRule=!0,f.schema=o,f.schemaPath=a,f.errSchemaPath=l,i+=" var "+m+" = false; for (var "+g+" = 0; "+g+" < "+c+".length; "+g+"++) { ",f.errorPath=e.util.getPathExpr(e.errorPath,g,e.opts.jsonPointers,!0);var k=c+"["+g+"]";f.dataPathArr[v]=g;var x=e.validate(f);f.baseId=b,e.util.varOccurences(x,y)<2?i+=" "+e.util.varReplace(x,y,k)+" ":i+=" var "+y+" = "+k+"; "+x+" ",i+=" if ("+m+") break; } ",e.compositeRule=f.compositeRule=_,i+=" "+p+" if (!"+m+") {"}else i+=" if ("+c+".length == 0) {";var S=S||[];S.push(i),i="",!1!==e.createErrors?(i+=" { keyword: 'contains' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(l)+" , params: {} ",!1!==e.opts.messages&&(i+=" , message: 'should contain a valid item' "),e.opts.verbose&&(i+=" , schema: validate.schema"+a+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+c+" "),i+=" } "):i+=" {} ";var M=i;return i=S.pop(),!e.compositeRule&&u?e.async?i+=" throw new ValidationError(["+M+"]); ":i+=" validate.errors = ["+M+"]; return false; ":i+=" var err = "+M+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",i+=" } else { ",w&&(i+=" errors = "+d+"; if (vErrors !== null) { if ("+d+") vErrors.length = "+d+"; else vErrors = null; } "),e.opts.allErrors&&(i+=" } "),i}},7992:function(e){"use strict";e.exports=function(e,t,r){var i,n,s=" ",o=e.level,a=e.dataLevel,l=e.schema[t],u=e.schemaPath+e.util.getProperty(t),c=e.errSchemaPath+"/"+t,h=!e.opts.allErrors,d="data"+(a||""),f="valid"+o,p="errs__"+o,m=e.opts.$data&&l&&l.$data;m?(s+=" var schema"+o+" = "+e.util.getData(l.$data,a,e.dataPathArr)+"; ",n="schema"+o):n=l;var g,v,y,b,w,_=this,k="definition"+o,x=_.definition,S="";if(m&&x.$data){w="keywordValidate"+o;var M=x.validateSchema;s+=" var "+k+" = RULES.custom['"+t+"'].definition; var "+w+" = "+k+".validate;"}else{if(b=e.useCustomRule(_,l,e.schema,e),!b)return;n="validate.schema"+u,w=b.code,g=x.compile,v=x.inline,y=x.macro}var E=w+".errors",A="i"+o,C="ruleErr"+o,$=x.async;if($&&!e.async)throw new Error("async keyword in sync schema");if(v||y||(s+=E+" = null;"),s+="var "+p+" = errors;var "+f+";",m&&x.$data&&(S+="}",s+=" if ("+n+" === undefined) { "+f+" = true; } else { ",M&&(S+="}",s+=" "+f+" = "+k+".validateSchema("+n+"); if ("+f+") { ")),v)x.statements?s+=" "+b.validate+" ":s+=" "+f+" = "+b.validate+"; ";else if(y){var O=e.util.copy(e);S="";O.level++;var P="valid"+O.level;O.schema=b.validate,O.schemaPath="";var T=e.compositeRule;e.compositeRule=O.compositeRule=!0;var I=e.validate(O).replace(/validate\.schema/g,w);e.compositeRule=O.compositeRule=T,s+=" "+I}else{var D=D||[];D.push(s),s="",s+=" "+w+".call( ",e.opts.passContext?s+="this":s+="self",g||!1===x.schema?s+=" , "+d+" ":s+=" , "+n+" , "+d+" , validate.schema"+e.schemaPath+" ",s+=" , (dataPath || '')",'""'!=e.errorPath&&(s+=" + "+e.errorPath);var L=a?"data"+(a-1||""):"parentData",N=a?e.dataPathArr[a]:"parentDataProperty";s+=" , "+L+" , "+N+" , rootData ) ";var R=s;s=D.pop(),!1===x.errors?(s+=" "+f+" = ",$&&(s+="await "),s+=R+"; "):$?(E="customErrors"+o,s+=" var "+E+" = null; try { "+f+" = await "+R+"; } catch (e) { "+f+" = false; if (e instanceof ValidationError) "+E+" = e.errors; else throw e; } "):s+=" "+E+" = null; "+f+" = "+R+"; "}if(x.modifying&&(s+=" if ("+L+") "+d+" = "+L+"["+N+"];"),s+=""+S,x.valid)h&&(s+=" if (true) { ");else{s+=" if ( ",void 0===x.valid?(s+=" !",s+=y?""+P:""+f):s+=" "+!x.valid+" ",s+=") { ",i=_.keyword;D=D||[];D.push(s),s="";D=D||[];D.push(s),s="",!1!==e.createErrors?(s+=" { keyword: '"+(i||"custom")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: { keyword: '"+_.keyword+"' } ",!1!==e.opts.messages&&(s+=" , message: 'should pass \""+_.keyword+"\" keyword validation' "),e.opts.verbose&&(s+=" , schema: validate.schema"+u+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+d+" "),s+=" } "):s+=" {} ";var j=s;s=D.pop(),!e.compositeRule&&h?e.async?s+=" throw new ValidationError(["+j+"]); ":s+=" validate.errors = ["+j+"]; return false; ":s+=" var err = "+j+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ";var B=s;s=D.pop(),v?x.errors?"full"!=x.errors&&(s+=" for (var "+A+"="+p+"; "+A+"0||!1===y:e.util.schemaHasRules(y,e.RULES.all))&&(i+=" "+p+" = true; if ( "+c+e.util.getProperty(_)+" !== undefined ",v&&(i+=" && Object.prototype.hasOwnProperty.call("+c+", '"+e.util.escapeQuotes(_)+"') "),i+=") { ",d.schema=y,d.schemaPath=a+e.util.getProperty(_),d.errSchemaPath=l+"/"+e.util.escapeFragment(_),i+=" "+e.validate(d)+" ",d.baseId=L,i+=" } ",u&&(i+=" if ("+p+") { ",f+="}"))}return u&&(i+=" "+f+" if ("+h+" == errors) {"),i}},80598:function(e){"use strict";e.exports=function(e,t,r){var i=" ",n=e.level,s=e.dataLevel,o=e.schema[t],a=e.schemaPath+e.util.getProperty(t),l=e.errSchemaPath+"/"+t,u=!e.opts.allErrors,c="data"+(s||""),h="valid"+n,d=e.opts.$data&&o&&o.$data;d&&(i+=" var schema"+n+" = "+e.util.getData(o.$data,s,e.dataPathArr)+"; ");var f="i"+n,p="schema"+n;d||(i+=" var "+p+" = validate.schema"+a+";"),i+="var "+h+";",d&&(i+=" if (schema"+n+" === undefined) "+h+" = true; else if (!Array.isArray(schema"+n+")) "+h+" = false; else {"),i+=h+" = false;for (var "+f+"=0; "+f+"<"+p+".length; "+f+"++) if (equal("+c+", "+p+"["+f+"])) { "+h+" = true; break; }",d&&(i+=" } "),i+=" if (!"+h+") { ";var m=m||[];m.push(i),i="",!1!==e.createErrors?(i+=" { keyword: 'enum' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(l)+" , params: { allowedValues: schema"+n+" } ",!1!==e.opts.messages&&(i+=" , message: 'should be equal to one of the allowed values' "),e.opts.verbose&&(i+=" , schema: validate.schema"+a+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+c+" "),i+=" } "):i+=" {} ";var g=i;return i=m.pop(),!e.compositeRule&&u?e.async?i+=" throw new ValidationError(["+g+"]); ":i+=" validate.errors = ["+g+"]; return false; ":i+=" var err = "+g+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",i+=" }",u&&(i+=" else { "),i}},80400:function(e){"use strict";e.exports=function(e,t,r){var i=" ",n=e.level,s=e.dataLevel,o=e.schema[t],a=e.schemaPath+e.util.getProperty(t),l=e.errSchemaPath+"/"+t,u=!e.opts.allErrors,c="data"+(s||"");if(!1===e.opts.format)return u&&(i+=" if (true) { "),i;var h,d=e.opts.$data&&o&&o.$data;d?(i+=" var schema"+n+" = "+e.util.getData(o.$data,s,e.dataPathArr)+"; ",h="schema"+n):h=o;var f=e.opts.unknownFormats,p=Array.isArray(f);if(d){var m="format"+n,g="isObject"+n,v="formatType"+n;i+=" var "+m+" = formats["+h+"]; var "+g+" = typeof "+m+" == 'object' && !("+m+" instanceof RegExp) && "+m+".validate; var "+v+" = "+g+" && "+m+".type || 'string'; if ("+g+") { ",e.async&&(i+=" var async"+n+" = "+m+".async; "),i+=" "+m+" = "+m+".validate; } if ( ",d&&(i+=" ("+h+" !== undefined && typeof "+h+" != 'string') || "),i+=" (","ignore"!=f&&(i+=" ("+h+" && !"+m+" ",p&&(i+=" && self._opts.unknownFormats.indexOf("+h+") == -1 "),i+=") || "),i+=" ("+m+" && "+v+" == '"+r+"' && !(typeof "+m+" == 'function' ? ",e.async?i+=" (async"+n+" ? await "+m+"("+c+") : "+m+"("+c+")) ":i+=" "+m+"("+c+") ",i+=" : "+m+".test("+c+"))))) {"}else{m=e.formats[o];if(!m){if("ignore"==f)return e.logger.warn('unknown format "'+o+'" ignored in schema at path "'+e.errSchemaPath+'"'),u&&(i+=" if (true) { "),i;if(p&&f.indexOf(o)>=0)return u&&(i+=" if (true) { "),i;throw new Error('unknown format "'+o+'" is used in schema at path "'+e.errSchemaPath+'"')}g="object"==typeof m&&!(m instanceof RegExp)&&m.validate,v=g&&m.type||"string";if(g){var y=!0===m.async;m=m.validate}if(v!=r)return u&&(i+=" if (true) { "),i;if(y){if(!e.async)throw new Error("async format in sync schema");var b="formats"+e.util.getProperty(o)+".validate";i+=" if (!(await "+b+"("+c+"))) { "}else{i+=" if (! ";b="formats"+e.util.getProperty(o);g&&(b+=".validate"),i+="function"==typeof m?" "+b+"("+c+") ":" "+b+".test("+c+") ",i+=") { "}}var w=w||[];w.push(i),i="",!1!==e.createErrors?(i+=" { keyword: 'format' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(l)+" , params: { format: ",i+=d?""+h:""+e.util.toQuotedString(o),i+=" } ",!1!==e.opts.messages&&(i+=" , message: 'should match format \"",i+=d?"' + "+h+" + '":""+e.util.escapeQuotes(o),i+="\"' "),e.opts.verbose&&(i+=" , schema: ",i+=d?"validate.schema"+a:""+e.util.toQuotedString(o),i+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+c+" "),i+=" } "):i+=" {} ";var _=i;return i=w.pop(),!e.compositeRule&&u?e.async?i+=" throw new ValidationError(["+_+"]); ":i+=" validate.errors = ["+_+"]; return false; ":i+=" var err = "+_+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",i+=" } ",u&&(i+=" else { "),i}},88532:function(e){"use strict";e.exports=function(e,t,r){var i=" ",n=e.level,s=e.dataLevel,o=e.schema[t],a=e.schemaPath+e.util.getProperty(t),l=e.errSchemaPath+"/"+t,u=!e.opts.allErrors,c="data"+(s||""),h="valid"+n,d="errs__"+n,f=e.util.copy(e);f.level++;var p="valid"+f.level,m=e.schema["then"],g=e.schema["else"],v=void 0!==m&&(e.opts.strictKeywords?"object"==typeof m&&Object.keys(m).length>0||!1===m:e.util.schemaHasRules(m,e.RULES.all)),y=void 0!==g&&(e.opts.strictKeywords?"object"==typeof g&&Object.keys(g).length>0||!1===g:e.util.schemaHasRules(g,e.RULES.all)),b=f.baseId;if(v||y){var w;f.createErrors=!1,f.schema=o,f.schemaPath=a,f.errSchemaPath=l,i+=" var "+d+" = errors; var "+h+" = true; ";var _=e.compositeRule;e.compositeRule=f.compositeRule=!0,i+=" "+e.validate(f)+" ",f.baseId=b,f.createErrors=!0,i+=" errors = "+d+"; if (vErrors !== null) { if ("+d+") vErrors.length = "+d+"; else vErrors = null; } ",e.compositeRule=f.compositeRule=_,v?(i+=" if ("+p+") { ",f.schema=e.schema["then"],f.schemaPath=e.schemaPath+".then",f.errSchemaPath=e.errSchemaPath+"/then",i+=" "+e.validate(f)+" ",f.baseId=b,i+=" "+h+" = "+p+"; ",v&&y?(w="ifClause"+n,i+=" var "+w+" = 'then'; "):w="'then'",i+=" } ",y&&(i+=" else { ")):i+=" if (!"+p+") { ",y&&(f.schema=e.schema["else"],f.schemaPath=e.schemaPath+".else",f.errSchemaPath=e.errSchemaPath+"/else",i+=" "+e.validate(f)+" ",f.baseId=b,i+=" "+h+" = "+p+"; ",v&&y?(w="ifClause"+n,i+=" var "+w+" = 'else'; "):w="'else'",i+=" } "),i+=" if (!"+h+") { var err = ",!1!==e.createErrors?(i+=" { keyword: 'if' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(l)+" , params: { failingKeyword: "+w+" } ",!1!==e.opts.messages&&(i+=" , message: 'should match \"' + "+w+" + '\" schema' "),e.opts.verbose&&(i+=" , schema: validate.schema"+a+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+c+" "),i+=" } "):i+=" {} ",i+="; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",!e.compositeRule&&u&&(e.async?i+=" throw new ValidationError(vErrors); ":i+=" validate.errors = vErrors; return false; "),i+=" } ",u&&(i+=" else { ")}else u&&(i+=" if (true) { ");return i}},27403:function(e,t,r){"use strict";e.exports={$ref:r(6990),allOf:r(80353),anyOf:r(29480),$comment:r(14278),const:r(10224),contains:r(35674),dependencies:r(41926),enum:r(80598),format:r(80400),if:r(88532),items:r(54371),maximum:r(74667),minimum:r(74667),maxItems:r(52119),minItems:r(52119),maxLength:r(47935),minLength:r(47935),maxProperties:r(51298),minProperties:r(51298),multipleOf:r(99294),not:r(48914),oneOf:r(95326),pattern:r(8317),properties:r(41374),propertyNames:r(23032),required:r(47850),uniqueItems:r(85898),validate:r(51873)}},54371:function(e){"use strict";e.exports=function(e,t,r){var i=" ",n=e.level,s=e.dataLevel,o=e.schema[t],a=e.schemaPath+e.util.getProperty(t),l=e.errSchemaPath+"/"+t,u=!e.opts.allErrors,c="data"+(s||""),h="valid"+n,d="errs__"+n,f=e.util.copy(e),p="";f.level++;var m="valid"+f.level,g="i"+n,v=f.dataLevel=e.dataLevel+1,y="data"+v,b=e.baseId;if(i+="var "+d+" = errors;var "+h+";",Array.isArray(o)){var w=e.schema.additionalItems;if(!1===w){i+=" "+h+" = "+c+".length <= "+o.length+"; ";var _=l;l=e.errSchemaPath+"/additionalItems",i+=" if (!"+h+") { ";var k=k||[];k.push(i),i="",!1!==e.createErrors?(i+=" { keyword: 'additionalItems' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(l)+" , params: { limit: "+o.length+" } ",!1!==e.opts.messages&&(i+=" , message: 'should NOT have more than "+o.length+" items' "),e.opts.verbose&&(i+=" , schema: false , parentSchema: validate.schema"+e.schemaPath+" , data: "+c+" "),i+=" } "):i+=" {} ";var x=i;i=k.pop(),!e.compositeRule&&u?e.async?i+=" throw new ValidationError(["+x+"]); ":i+=" validate.errors = ["+x+"]; return false; ":i+=" var err = "+x+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",i+=" } ",l=_,u&&(p+="}",i+=" else { ")}var S=o;if(S){var M,E=-1,A=S.length-1;while(E0||!1===M:e.util.schemaHasRules(M,e.RULES.all)){i+=" "+m+" = true; if ("+c+".length > "+E+") { ";var C=c+"["+E+"]";f.schema=M,f.schemaPath=a+"["+E+"]",f.errSchemaPath=l+"/"+E,f.errorPath=e.util.getPathExpr(e.errorPath,E,e.opts.jsonPointers,!0),f.dataPathArr[v]=E;var $=e.validate(f);f.baseId=b,e.util.varOccurences($,y)<2?i+=" "+e.util.varReplace($,y,C)+" ":i+=" var "+y+" = "+C+"; "+$+" ",i+=" } ",u&&(i+=" if ("+m+") { ",p+="}")}}if("object"==typeof w&&(e.opts.strictKeywords?"object"==typeof w&&Object.keys(w).length>0||!1===w:e.util.schemaHasRules(w,e.RULES.all))){f.schema=w,f.schemaPath=e.schemaPath+".additionalItems",f.errSchemaPath=e.errSchemaPath+"/additionalItems",i+=" "+m+" = true; if ("+c+".length > "+o.length+") { for (var "+g+" = "+o.length+"; "+g+" < "+c+".length; "+g+"++) { ",f.errorPath=e.util.getPathExpr(e.errorPath,g,e.opts.jsonPointers,!0);C=c+"["+g+"]";f.dataPathArr[v]=g;$=e.validate(f);f.baseId=b,e.util.varOccurences($,y)<2?i+=" "+e.util.varReplace($,y,C)+" ":i+=" var "+y+" = "+C+"; "+$+" ",u&&(i+=" if (!"+m+") break; "),i+=" } } ",u&&(i+=" if ("+m+") { ",p+="}")}}else if(e.opts.strictKeywords?"object"==typeof o&&Object.keys(o).length>0||!1===o:e.util.schemaHasRules(o,e.RULES.all)){f.schema=o,f.schemaPath=a,f.errSchemaPath=l,i+=" for (var "+g+" = 0; "+g+" < "+c+".length; "+g+"++) { ",f.errorPath=e.util.getPathExpr(e.errorPath,g,e.opts.jsonPointers,!0);C=c+"["+g+"]";f.dataPathArr[v]=g;$=e.validate(f);f.baseId=b,e.util.varOccurences($,y)<2?i+=" "+e.util.varReplace($,y,C)+" ":i+=" var "+y+" = "+C+"; "+$+" ",u&&(i+=" if (!"+m+") break; "),i+=" }"}return u&&(i+=" "+p+" if ("+d+" == errors) {"),i}},99294:function(e){"use strict";e.exports=function(e,t,r){var i,n=" ",s=e.level,o=e.dataLevel,a=e.schema[t],l=e.schemaPath+e.util.getProperty(t),u=e.errSchemaPath+"/"+t,c=!e.opts.allErrors,h="data"+(o||""),d=e.opts.$data&&a&&a.$data;if(d?(n+=" var schema"+s+" = "+e.util.getData(a.$data,o,e.dataPathArr)+"; ",i="schema"+s):i=a,!d&&"number"!=typeof a)throw new Error(t+" must be number");n+="var division"+s+";if (",d&&(n+=" "+i+" !== undefined && ( typeof "+i+" != 'number' || "),n+=" (division"+s+" = "+h+" / "+i+", ",e.opts.multipleOfPrecision?n+=" Math.abs(Math.round(division"+s+") - division"+s+") > 1e-"+e.opts.multipleOfPrecision+" ":n+=" division"+s+" !== parseInt(division"+s+") ",n+=" ) ",d&&(n+=" ) "),n+=" ) { ";var f=f||[];f.push(n),n="",!1!==e.createErrors?(n+=" { keyword: 'multipleOf' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(u)+" , params: { multipleOf: "+i+" } ",!1!==e.opts.messages&&(n+=" , message: 'should be multiple of ",n+=d?"' + "+i:i+"'"),e.opts.verbose&&(n+=" , schema: ",n+=d?"validate.schema"+l:""+a,n+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+h+" "),n+=" } "):n+=" {} ";var p=n;return n=f.pop(),!e.compositeRule&&c?e.async?n+=" throw new ValidationError(["+p+"]); ":n+=" validate.errors = ["+p+"]; return false; ":n+=" var err = "+p+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",n+="} ",c&&(n+=" else { "),n}},48914:function(e){"use strict";e.exports=function(e,t,r){var i=" ",n=e.level,s=e.dataLevel,o=e.schema[t],a=e.schemaPath+e.util.getProperty(t),l=e.errSchemaPath+"/"+t,u=!e.opts.allErrors,c="data"+(s||""),h="errs__"+n,d=e.util.copy(e);d.level++;var f="valid"+d.level;if(e.opts.strictKeywords?"object"==typeof o&&Object.keys(o).length>0||!1===o:e.util.schemaHasRules(o,e.RULES.all)){d.schema=o,d.schemaPath=a,d.errSchemaPath=l,i+=" 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),i+=" "+e.validate(d)+" ",d.createErrors=!0,p&&(d.opts.allErrors=p),e.compositeRule=d.compositeRule=m,i+=" if ("+f+") { ";var g=g||[];g.push(i),i="",!1!==e.createErrors?(i+=" { keyword: 'not' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(l)+" , params: {} ",!1!==e.opts.messages&&(i+=" , message: 'should NOT be valid' "),e.opts.verbose&&(i+=" , schema: validate.schema"+a+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+c+" "),i+=" } "):i+=" {} ";var v=i;i=g.pop(),!e.compositeRule&&u?e.async?i+=" throw new ValidationError(["+v+"]); ":i+=" validate.errors = ["+v+"]; return false; ":i+=" var err = "+v+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",i+=" } else { errors = "+h+"; if (vErrors !== null) { if ("+h+") vErrors.length = "+h+"; else vErrors = null; } ",e.opts.allErrors&&(i+=" } ")}else i+=" var err = ",!1!==e.createErrors?(i+=" { keyword: 'not' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(l)+" , params: {} ",!1!==e.opts.messages&&(i+=" , message: 'should NOT be valid' "),e.opts.verbose&&(i+=" , schema: validate.schema"+a+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+c+" "),i+=" } "):i+=" {} ",i+="; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",u&&(i+=" if (false) { ");return i}},95326:function(e){"use strict";e.exports=function(e,t,r){var i=" ",n=e.level,s=e.dataLevel,o=e.schema[t],a=e.schemaPath+e.util.getProperty(t),l=e.errSchemaPath+"/"+t,u=!e.opts.allErrors,c="data"+(s||""),h="valid"+n,d="errs__"+n,f=e.util.copy(e),p="";f.level++;var m="valid"+f.level,g=f.baseId,v="prevValid"+n,y="passingSchemas"+n;i+="var "+d+" = errors , "+v+" = false , "+h+" = false , "+y+" = null; ";var b=e.compositeRule;e.compositeRule=f.compositeRule=!0;var w=o;if(w){var _,k=-1,x=w.length-1;while(k0||!1===_:e.util.schemaHasRules(_,e.RULES.all))?(f.schema=_,f.schemaPath=a+"["+k+"]",f.errSchemaPath=l+"/"+k,i+=" "+e.validate(f)+" ",f.baseId=g):i+=" var "+m+" = true; ",k&&(i+=" if ("+m+" && "+v+") { "+h+" = false; "+y+" = ["+y+", "+k+"]; } else { ",p+="}"),i+=" if ("+m+") { "+h+" = "+v+" = true; "+y+" = "+k+"; }"}return e.compositeRule=f.compositeRule=b,i+=p+"if (!"+h+") { var err = ",!1!==e.createErrors?(i+=" { keyword: 'oneOf' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(l)+" , params: { passingSchemas: "+y+" } ",!1!==e.opts.messages&&(i+=" , message: 'should match exactly one schema in oneOf' "),e.opts.verbose&&(i+=" , schema: validate.schema"+a+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+c+" "),i+=" } "):i+=" {} ",i+="; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",!e.compositeRule&&u&&(e.async?i+=" throw new ValidationError(vErrors); ":i+=" validate.errors = vErrors; return false; "),i+="} else { errors = "+d+"; if (vErrors !== null) { if ("+d+") vErrors.length = "+d+"; else vErrors = null; }",e.opts.allErrors&&(i+=" } "),i}},8317:function(e){"use strict";e.exports=function(e,t,r){var i,n=" ",s=e.level,o=e.dataLevel,a=e.schema[t],l=e.schemaPath+e.util.getProperty(t),u=e.errSchemaPath+"/"+t,c=!e.opts.allErrors,h="data"+(o||""),d=e.opts.$data&&a&&a.$data;d?(n+=" var schema"+s+" = "+e.util.getData(a.$data,o,e.dataPathArr)+"; ",i="schema"+s):i=a;var f=d?"(new RegExp("+i+"))":e.usePattern(a);n+="if ( ",d&&(n+=" ("+i+" !== undefined && typeof "+i+" != 'string') || "),n+=" !"+f+".test("+h+") ) { ";var p=p||[];p.push(n),n="",!1!==e.createErrors?(n+=" { keyword: 'pattern' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(u)+" , params: { pattern: ",n+=d?""+i:""+e.util.toQuotedString(a),n+=" } ",!1!==e.opts.messages&&(n+=" , message: 'should match pattern \"",n+=d?"' + "+i+" + '":""+e.util.escapeQuotes(a),n+="\"' "),e.opts.verbose&&(n+=" , schema: ",n+=d?"validate.schema"+l:""+e.util.toQuotedString(a),n+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+h+" "),n+=" } "):n+=" {} ";var m=n;return n=p.pop(),!e.compositeRule&&c?e.async?n+=" throw new ValidationError(["+m+"]); ":n+=" validate.errors = ["+m+"]; return false; ":n+=" var err = "+m+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",n+="} ",c&&(n+=" else { "),n}},41374:function(e){"use strict";e.exports=function(e,t,r){var i=" ",n=e.level,s=e.dataLevel,o=e.schema[t],a=e.schemaPath+e.util.getProperty(t),l=e.errSchemaPath+"/"+t,u=!e.opts.allErrors,c="data"+(s||""),h="errs__"+n,d=e.util.copy(e),f="";d.level++;var p="valid"+d.level,m="key"+n,g="idx"+n,v=d.dataLevel=e.dataLevel+1,y="data"+v,b="dataProperties"+n,w=Object.keys(o||{}).filter(I),_=e.schema.patternProperties||{},k=Object.keys(_).filter(I),x=e.schema.additionalProperties,S=w.length||k.length,M=!1===x,E="object"==typeof x&&Object.keys(x).length,A=e.opts.removeAdditional,C=M||E||A,$=e.opts.ownProperties,O=e.baseId,P=e.schema.required;if(P&&(!e.opts.$data||!P.$data)&&P.length8)i+=" || validate.schema"+a+".hasOwnProperty("+m+") ";else{var D=w;if(D){var L=-1,N=D.length-1;while(L0||!1===Q:e.util.schemaHasRules(Q,e.RULES.all)){var ee=e.util.getProperty(Z),te=(W=c+ee,Y&&void 0!==Q.default);d.schema=Q,d.schemaPath=a+ee,d.errSchemaPath=l+"/"+e.util.escapeFragment(Z),d.errorPath=e.util.getPath(e.errorPath,Z,e.opts.jsonPointers),d.dataPathArr[v]=e.util.toQuotedString(Z);K=e.validate(d);if(d.baseId=O,e.util.varOccurences(K,y)<2){K=e.util.varReplace(K,y,W);var re=W}else{re=y;i+=" var "+y+" = "+W+"; "}if(te)i+=" "+K+" ";else{if(T&&T[Z]){i+=" if ( "+re+" === undefined ",$&&(i+=" || ! Object.prototype.hasOwnProperty.call("+c+", '"+e.util.escapeQuotes(Z)+"') "),i+=") { "+p+" = false; ";F=e.errorPath,V=l;var ie=e.util.escapeQuotes(Z);e.opts._errorDataPathProperty&&(e.errorPath=e.util.getPath(F,Z,e.opts.jsonPointers)),l=e.errSchemaPath+"/required";q=q||[];q.push(i),i="",!1!==e.createErrors?(i+=" { keyword: 'required' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(l)+" , params: { missingProperty: '"+ie+"' } ",!1!==e.opts.messages&&(i+=" , message: '",e.opts._errorDataPathProperty?i+="is a required property":i+="should have required property \\'"+ie+"\\'",i+="' "),e.opts.verbose&&(i+=" , schema: validate.schema"+a+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+c+" "),i+=" } "):i+=" {} ";U=i;i=q.pop(),!e.compositeRule&&u?e.async?i+=" throw new ValidationError(["+U+"]); ":i+=" validate.errors = ["+U+"]; return false; ":i+=" var err = "+U+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",l=V,e.errorPath=F,i+=" } else { "}else u?(i+=" if ( "+re+" === undefined ",$&&(i+=" || ! Object.prototype.hasOwnProperty.call("+c+", '"+e.util.escapeQuotes(Z)+"') "),i+=") { "+p+" = true; } else { "):(i+=" if ("+re+" !== undefined ",$&&(i+=" && Object.prototype.hasOwnProperty.call("+c+", '"+e.util.escapeQuotes(Z)+"') "),i+=" ) { ");i+=" "+K+" } "}}u&&(i+=" if ("+p+") { ",f+="}")}}}if(k.length){var ne=k;if(ne){var se,oe=-1,ae=ne.length-1;while(oe0||!1===Q:e.util.schemaHasRules(Q,e.RULES.all)){d.schema=Q,d.schemaPath=e.schemaPath+".patternProperties"+e.util.getProperty(se),d.errSchemaPath=e.errSchemaPath+"/patternProperties/"+e.util.escapeFragment(se),i+=$?" "+b+" = "+b+" || Object.keys("+c+"); for (var "+g+"=0; "+g+"<"+b+".length; "+g+"++) { var "+m+" = "+b+"["+g+"]; ":" for (var "+m+" in "+c+") { ",i+=" if ("+e.usePattern(se)+".test("+m+")) { ",d.errorPath=e.util.getPathExpr(e.errorPath,m,e.opts.jsonPointers);W=c+"["+m+"]";d.dataPathArr[v]=m;K=e.validate(d);d.baseId=O,e.util.varOccurences(K,y)<2?i+=" "+e.util.varReplace(K,y,W)+" ":i+=" var "+y+" = "+W+"; "+K+" ",u&&(i+=" if (!"+p+") break; "),i+=" } ",u&&(i+=" else "+p+" = true; "),i+=" } ",u&&(i+=" if ("+p+") { ",f+="}")}}}}return u&&(i+=" "+f+" if ("+h+" == errors) {"),i}},23032:function(e){"use strict";e.exports=function(e,t,r){var i=" ",n=e.level,s=e.dataLevel,o=e.schema[t],a=e.schemaPath+e.util.getProperty(t),l=e.errSchemaPath+"/"+t,u=!e.opts.allErrors,c="data"+(s||""),h="errs__"+n,d=e.util.copy(e),f="";d.level++;var p="valid"+d.level;if(i+="var "+h+" = errors;",e.opts.strictKeywords?"object"==typeof o&&Object.keys(o).length>0||!1===o:e.util.schemaHasRules(o,e.RULES.all)){d.schema=o,d.schemaPath=a,d.errSchemaPath=l;var m="key"+n,g="idx"+n,v="i"+n,y="' + "+m+" + '",b=d.dataLevel=e.dataLevel+1,w="data"+b,_="dataProperties"+n,k=e.opts.ownProperties,x=e.baseId;k&&(i+=" var "+_+" = undefined; "),i+=k?" "+_+" = "+_+" || Object.keys("+c+"); for (var "+g+"=0; "+g+"<"+_+".length; "+g+"++) { var "+m+" = "+_+"["+g+"]; ":" for (var "+m+" in "+c+") { ",i+=" var startErrs"+n+" = errors; ";var S=m,M=e.compositeRule;e.compositeRule=d.compositeRule=!0;var E=e.validate(d);d.baseId=x,e.util.varOccurences(E,w)<2?i+=" "+e.util.varReplace(E,w,S)+" ":i+=" var "+w+" = "+S+"; "+E+" ",e.compositeRule=d.compositeRule=M,i+=" if (!"+p+") { for (var "+v+"=startErrs"+n+"; "+v+"0||!1===b:e.util.schemaHasRules(b,e.RULES.all))||(p[p.length]=g)}}}else p=o;if(d||p.length){var w=e.errorPath,_=d||p.length>=e.opts.loopRequired,k=e.opts.ownProperties;if(u)if(i+=" var missing"+n+"; ",_){d||(i+=" var "+f+" = validate.schema"+a+"; ");var x="i"+n,S="schema"+n+"["+x+"]",M="' + "+S+" + '";e.opts._errorDataPathProperty&&(e.errorPath=e.util.getPathExpr(w,S,e.opts.jsonPointers)),i+=" var "+h+" = true; ",d&&(i+=" if (schema"+n+" === undefined) "+h+" = true; else if (!Array.isArray(schema"+n+")) "+h+" = false; else {"),i+=" for (var "+x+" = 0; "+x+" < "+f+".length; "+x+"++) { "+h+" = "+c+"["+f+"["+x+"]] !== undefined ",k&&(i+=" && Object.prototype.hasOwnProperty.call("+c+", "+f+"["+x+"]) "),i+="; if (!"+h+") break; } ",d&&(i+=" } "),i+=" if (!"+h+") { ";var E=E||[];E.push(i),i="",!1!==e.createErrors?(i+=" { keyword: 'required' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(l)+" , params: { missingProperty: '"+M+"' } ",!1!==e.opts.messages&&(i+=" , message: '",e.opts._errorDataPathProperty?i+="is a required property":i+="should have required property \\'"+M+"\\'",i+="' "),e.opts.verbose&&(i+=" , schema: validate.schema"+a+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+c+" "),i+=" } "):i+=" {} ";var A=i;i=E.pop(),!e.compositeRule&&u?e.async?i+=" throw new ValidationError(["+A+"]); ":i+=" validate.errors = ["+A+"]; return false; ":i+=" var err = "+A+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",i+=" } else { "}else{i+=" if ( ";var C=p;if(C){x=-1;var $=C.length-1;while(x<$){I=C[x+=1],x&&(i+=" || ");var O=e.util.getProperty(I),P=c+O;i+=" ( ( "+P+" === undefined ",k&&(i+=" || ! Object.prototype.hasOwnProperty.call("+c+", '"+e.util.escapeQuotes(I)+"') "),i+=") && (missing"+n+" = "+e.util.toQuotedString(e.opts.jsonPointers?I:O)+") ) "}}i+=") { ";S="missing"+n,M="' + "+S+" + '";e.opts._errorDataPathProperty&&(e.errorPath=e.opts.jsonPointers?e.util.getPathExpr(w,S,!0):w+" + "+S);E=E||[];E.push(i),i="",!1!==e.createErrors?(i+=" { keyword: 'required' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(l)+" , params: { missingProperty: '"+M+"' } ",!1!==e.opts.messages&&(i+=" , message: '",e.opts._errorDataPathProperty?i+="is a required property":i+="should have required property \\'"+M+"\\'",i+="' "),e.opts.verbose&&(i+=" , schema: validate.schema"+a+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+c+" "),i+=" } "):i+=" {} ";A=i;i=E.pop(),!e.compositeRule&&u?e.async?i+=" throw new ValidationError(["+A+"]); ":i+=" validate.errors = ["+A+"]; return false; ":i+=" var err = "+A+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",i+=" } else { "}else if(_){d||(i+=" var "+f+" = validate.schema"+a+"; ");x="i"+n,S="schema"+n+"["+x+"]",M="' + "+S+" + '";e.opts._errorDataPathProperty&&(e.errorPath=e.util.getPathExpr(w,S,e.opts.jsonPointers)),d&&(i+=" if ("+f+" && !Array.isArray("+f+")) { var err = ",!1!==e.createErrors?(i+=" { keyword: 'required' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(l)+" , params: { missingProperty: '"+M+"' } ",!1!==e.opts.messages&&(i+=" , message: '",e.opts._errorDataPathProperty?i+="is a required property":i+="should have required property \\'"+M+"\\'",i+="' "),e.opts.verbose&&(i+=" , schema: validate.schema"+a+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+c+" "),i+=" } "):i+=" {} ",i+="; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; } else if ("+f+" !== undefined) { "),i+=" for (var "+x+" = 0; "+x+" < "+f+".length; "+x+"++) { if ("+c+"["+f+"["+x+"]] === undefined ",k&&(i+=" || ! Object.prototype.hasOwnProperty.call("+c+", "+f+"["+x+"]) "),i+=") { var err = ",!1!==e.createErrors?(i+=" { keyword: 'required' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(l)+" , params: { missingProperty: '"+M+"' } ",!1!==e.opts.messages&&(i+=" , message: '",e.opts._errorDataPathProperty?i+="is a required property":i+="should have required property \\'"+M+"\\'",i+="' "),e.opts.verbose&&(i+=" , schema: validate.schema"+a+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+c+" "),i+=" } "):i+=" {} ",i+="; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; } } ",d&&(i+=" } ")}else{var T=p;if(T){var I,D=-1,L=T.length-1;while(D 1) { ";var p=e.schema.items&&e.schema.items.type,m=Array.isArray(p);if(!p||"object"==p||"array"==p||m&&(p.indexOf("object")>=0||p.indexOf("array")>=0))n+=" outer: for (;i--;) { for (j = i; j--;) { if (equal("+h+"[i], "+h+"[j])) { "+d+" = false; break outer; } } } ";else{n+=" var itemIndices = {}, item; for (;i--;) { var item = "+h+"[i]; ";var g="checkDataType"+(m?"s":"");n+=" if ("+e.util[g](p,"item",e.opts.strictNumbers,!0)+") continue; ",m&&(n+=" if (typeof item == 'string') item = '\"' + item; "),n+=" if (typeof itemIndices[item] == 'number') { "+d+" = false; j = itemIndices[item]; break; } itemIndices[item] = i; } "}n+=" } ",f&&(n+=" } "),n+=" if (!"+d+") { ";var v=v||[];v.push(n),n="",!1!==e.createErrors?(n+=" { keyword: 'uniqueItems' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(u)+" , params: { i: i, j: j } ",!1!==e.opts.messages&&(n+=" , message: 'should NOT have duplicate items (items ## ' + j + ' and ' + i + ' are identical)' "),e.opts.verbose&&(n+=" , schema: ",n+=f?"validate.schema"+l:""+a,n+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+h+" "),n+=" } "):n+=" {} ";var y=n;n=v.pop(),!e.compositeRule&&c?e.async?n+=" throw new ValidationError(["+y+"]); ":n+=" validate.errors = ["+y+"]; return false; ":n+=" var err = "+y+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",n+=" } ",c&&(n+=" else { ")}else c&&(n+=" if (true) { ");return n}},51873:function(e){"use strict";e.exports=function(e,t,r){var i="",n=!0===e.schema.$async,s=e.util.schemaHasRulesExcept(e.schema,e.RULES.all,"$ref"),o=e.self._getId(e.schema);if(e.opts.strictKeywords){var a=e.util.schemaUnknownRules(e.schema,e.RULES.keywords);if(a){var l="unknown keyword: "+a;if("log"!==e.opts.strictKeywords)throw new Error(l);e.logger.warn(l)}}if(e.isTop&&(i+=" var validate = ",n&&(e.async=!0,i+="async "),i+="function(data, dataPath, parentData, parentDataProperty, rootData) { 'use strict'; ",o&&(e.opts.sourceCode||e.opts.processCode)&&(i+=" /*# sourceURL="+o+" */ ")),"boolean"==typeof e.schema||!s&&!e.schema.$ref){t="false schema";var u=e.level,c=e.dataLevel,h=e.schema[t],d=e.schemaPath+e.util.getProperty(t),f=e.errSchemaPath+"/"+t,p=!e.opts.allErrors,m="data"+(c||""),g="valid"+u;if(!1===e.schema){e.isTop?p=!0:i+=" var "+g+" = false; ";var v=v||[];v.push(i),i="",!1!==e.createErrors?(i+=" { keyword: '"+(_||"false schema")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(f)+" , params: {} ",!1!==e.opts.messages&&(i+=" , message: 'boolean schema is false' "),e.opts.verbose&&(i+=" , schema: false , parentSchema: validate.schema"+e.schemaPath+" , data: "+m+" "),i+=" } "):i+=" {} ";var y=i;i=v.pop(),!e.compositeRule&&p?e.async?i+=" throw new ValidationError(["+y+"]); ":i+=" validate.errors = ["+y+"]; return false; ":i+=" var err = "+y+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}else e.isTop?i+=n?" return data; ":" validate.errors = null; return true; ":i+=" var "+g+" = true; ";return e.isTop&&(i+=" }; return validate; "),i}if(e.isTop){var b=e.isTop;u=e.level=0,c=e.dataLevel=0,m="data";if(e.rootId=e.resolve.fullPath(e.self._getId(e.root.schema)),e.baseId=e.baseId||e.rootId,delete e.isTop,e.dataPathArr=[""],void 0!==e.schema.default&&e.opts.useDefaults&&e.opts.strictDefaults){var w="default is ignored in the schema root";if("log"!==e.opts.strictDefaults)throw new Error(w);e.logger.warn(w)}i+=" var vErrors = null; ",i+=" var errors = 0; ",i+=" if (rootData === undefined) rootData = data; "}else{u=e.level,c=e.dataLevel,m="data"+(c||"");if(o&&(e.baseId=e.resolve.url(e.baseId,o)),n&&!e.async)throw new Error("async schema in sync schema");i+=" var errs_"+u+" = errors;"}g="valid"+u,p=!e.opts.allErrors;var _,k="",x="",S=e.schema.type,M=Array.isArray(S);if(S&&e.opts.nullable&&!0===e.schema.nullable&&(M?-1==S.indexOf("null")&&(S=S.concat("null")):"null"!=S&&(S=[S,"null"],M=!0)),M&&1==S.length&&(S=S[0],M=!1),e.schema.$ref&&s){if("fail"==e.opts.extendRefs)throw new Error('$ref: validation keywords used in schema at path "'+e.errSchemaPath+'" (see option extendRefs)');!0!==e.opts.extendRefs&&(s=!1,e.logger.warn('$ref: keywords ignored in schema at path "'+e.errSchemaPath+'"'))}if(e.schema.$comment&&e.opts.$comment&&(i+=" "+e.RULES.all.$comment.code(e,"$comment")),S){if(e.opts.coerceTypes)var E=e.util.coerceToTypes(e.opts.coerceTypes,S);var A=e.RULES.types[S];if(E||M||!0===A||A&&!ee(A)){d=e.schemaPath+".type",f=e.errSchemaPath+"/type",d=e.schemaPath+".type",f=e.errSchemaPath+"/type";var C=M?"checkDataTypes":"checkDataType";if(i+=" if ("+e.util[C](S,m,e.opts.strictNumbers,!0)+") { ",E){var $="dataType"+u,O="coerced"+u;i+=" var "+$+" = typeof "+m+"; var "+O+" = undefined; ","array"==e.opts.coerceTypes&&(i+=" if ("+$+" == 'object' && Array.isArray("+m+") && "+m+".length == 1) { "+m+" = "+m+"[0]; "+$+" = typeof "+m+"; if ("+e.util.checkDataType(e.schema.type,m,e.opts.strictNumbers)+") "+O+" = "+m+"; } "),i+=" if ("+O+" !== undefined) ; ";var P=E;if(P){var T,I=-1,D=P.length-1;while(I>6],n=0===(32&r);if(31===(31&r)){var s=r;r=0;while(128===(128&s)){if(s=e.readUInt8(t),e.isError(s))return s;r<<=7,r|=127&s}}else r&=31;var o=a.tag[r];return{cls:i,primitive:n,tag:r,tagStr:o}}function h(e,t,r){var i=e.readUInt8(r);if(e.isError(i))return i;if(!t&&128===i)return null;if(0===(128&i))return i;var n=127&i;if(n>4)return e.error("length octect is too long");i=0;for(var s=0;s=31?i.error("Multi-octet tag encoding unsupported"):(t||(n|=32),n|=a.tagClassByName[r||"universal"]<<6,n)}e.exports=l,l.prototype.encode=function(e,t){return this.tree._encode(e,t).join()},i(u,o.Node),u.prototype._encodeComposite=function(e,t,r,i){var s=h(e,t,r,this.reporter);if(i.length<128){var o=new n(2);return o[0]=s,o[1]=i.length,this._createEncoderBuffer([o,i])}for(var a=1,l=i.length;l>=256;l>>=8)a++;o=new n(2+a);o[0]=s,o[1]=128|a;l=1+a;for(var u=i.length;u>0;l--,u>>=8)o[l]=255&u;return this._createEncoderBuffer([o,i])},u.prototype._encodeStr=function(e,t){if("bitstr"===t)return this._createEncoderBuffer([0|e.unused,e.data]);if("bmpstr"===t){for(var r=new n(2*e.length),i=0;i=40)return this.reporter.error("Second objid identifier OOB");e.splice(0,2,40*e[0]+e[1])}var s=0;for(i=0;i=128;o>>=7)s++}var a=new n(s),l=a.length-1;for(i=e.length-1;i>=0;i--){o=e[i];a[l--]=127&o;while((o>>=7)>0)a[l--]=128|127&o}return this._createEncoderBuffer(a)},u.prototype._encodeTime=function(e,t){var r,i=new Date(e);return"gentime"===t?r=[c(i.getFullYear()),c(i.getUTCMonth()+1),c(i.getUTCDate()),c(i.getUTCHours()),c(i.getUTCMinutes()),c(i.getUTCSeconds()),"Z"].join(""):"utctime"===t?r=[c(i.getFullYear()%100),c(i.getUTCMonth()+1),c(i.getUTCDate()),c(i.getUTCHours()),c(i.getUTCMinutes()),c(i.getUTCSeconds()),"Z"].join(""):this.reporter.error("Encoding "+t+" time is not supported yet"),this._encodeStr(r,"octstr")},u.prototype._encodeNull=function(){return this._createEncoderBuffer("")},u.prototype._encodeInt=function(e,t){if("string"===typeof e){if(!t)return this.reporter.error("String int or enum given, but no values map");if(!t.hasOwnProperty(e))return this.reporter.error("Values map doesn't contain: "+JSON.stringify(e));e=t[e]}if("number"!==typeof e&&!n.isBuffer(e)){var r=e.toArray();!e.sign&&128&r[0]&&r.unshift(0),e=new n(r)}if(n.isBuffer(e)){var i=e.length;0===e.length&&i++;var s=new n(i);return e.copy(s),0===e.length&&(s[0]=0),this._createEncoderBuffer(s)}if(e<128)return this._createEncoderBuffer(e);if(e<256)return this._createEncoderBuffer([0,e]);i=1;for(var o=e;o>=256;o>>=8)i++;for(s=new Array(i),o=s.length-1;o>=0;o--)s[o]=255&e,e>>=8;return 128&s[0]&&s.unshift(0),this._createEncoderBuffer(new n(s))},u.prototype._encodeBool=function(e){return this._createEncoderBuffer(e?255:0)},u.prototype._use=function(e,t){return"function"===typeof e&&(e=e(t)),e._getEncoder("der").tree},u.prototype._skipDefault=function(e,t,r){var i,n=this._baseState;if(null===n["default"])return!1;var s=e.join();if(void 0===n.defaultBuffer&&(n.defaultBuffer=this._encodeValue(n["default"],t,r).join()),s.length!==n.defaultBuffer.length)return!1;for(i=0;i=65&&r<=70?r-55:r>=97&&r<=102?r-87:r-48&15}function l(e,t,r){var i=a(e,r);return r-1>=t&&(i|=a(e,r-1)<<4),i}function u(e,t,r,i){for(var n=0,s=Math.min(e.length,r),o=t;o=49?a-49+10:a>=17?a-17+10:a}return n}s.isBN=function(e){return e instanceof s||null!==e&&"object"===typeof e&&e.constructor.wordSize===s.wordSize&&Array.isArray(e.words)},s.max=function(e,t){return e.cmp(t)>0?e:t},s.min=function(e,t){return e.cmp(t)<0?e:t},s.prototype._init=function(e,t,r){if("number"===typeof e)return this._initNumber(e,t,r);if("object"===typeof e)return this._initArray(e,t,r);"hex"===t&&(t=16),i(t===(0|t)&&t>=2&&t<=36),e=e.toString().replace(/\s+/g,"");var n=0;"-"===e[0]&&(n++,this.negative=1),n=0;n-=3)o=e[n]|e[n-1]<<8|e[n-2]<<16,this.words[s]|=o<>>26-a&67108863,a+=24,a>=26&&(a-=26,s++);else if("le"===r)for(n=0,s=0;n>>26-a&67108863,a+=24,a>=26&&(a-=26,s++);return this.strip()},s.prototype._parseHex=function(e,t,r){this.length=Math.ceil((e.length-t)/6),this.words=new Array(this.length);for(var i=0;i=t;i-=2)n=l(e,t,i)<=18?(s-=18,o+=1,this.words[o]|=n>>>26):s+=8;else{var a=e.length-t;for(i=a%2===0?t+1:t;i=18?(s-=18,o+=1,this.words[o]|=n>>>26):s+=8}this.strip()},s.prototype._parseBase=function(e,t,r){this.words=[0],this.length=1;for(var i=0,n=1;n<=67108863;n*=t)i++;i--,n=n/t|0;for(var s=e.length-r,o=s%i,a=Math.min(s,s-o)+r,l=0,c=r;c1&&0===this.words[this.length-1])this.length--;return this._normSign()},s.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},s.prototype.inspect=function(){return(this.red?""};var c=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],h=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],d=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function f(e){for(var t=new Array(e.bitLength()),r=0;r>>n}return t}function p(e,t,r){r.negative=t.negative^e.negative;var i=e.length+t.length|0;r.length=i,i=i-1|0;var n=0|e.words[0],s=0|t.words[0],o=n*s,a=67108863&o,l=o/67108864|0;r.words[0]=a;for(var u=1;u>>26,h=67108863&l,d=Math.min(u,t.length-1),f=Math.max(0,u-e.length+1);f<=d;f++){var p=u-f|0;n=0|e.words[p],s=0|t.words[f],o=n*s+h,c+=o/67108864|0,h=67108863&o}r.words[u]=0|h,l=0|c}return 0!==l?r.words[u]=0|l:r.length--,r.strip()}s.prototype.toString=function(e,t){var r;if(e=e||10,t=0|t||1,16===e||"hex"===e){r="";for(var n=0,s=0,o=0;o>>24-n&16777215,r=0!==s||o!==this.length-1?c[6-l.length]+l+r:l+r,n+=2,n>=26&&(n-=26,o--)}0!==s&&(r=s.toString(16)+r);while(r.length%t!==0)r="0"+r;return 0!==this.negative&&(r="-"+r),r}if(e===(0|e)&&e>=2&&e<=36){var u=h[e],f=d[e];r="";var p=this.clone();p.negative=0;while(!p.isZero()){var m=p.modn(f).toString(e);p=p.idivn(f),r=p.isZero()?m+r:c[u-m.length]+m+r}this.isZero()&&(r="0"+r);while(r.length%t!==0)r="0"+r;return 0!==this.negative&&(r="-"+r),r}i(!1,"Base should be between 2 and 36")},s.prototype.toNumber=function(){var e=this.words[0];return 2===this.length?e+=67108864*this.words[1]:3===this.length&&1===this.words[2]?e+=4503599627370496+67108864*this.words[1]:this.length>2&&i(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-e:e},s.prototype.toJSON=function(){return this.toString(16)},s.prototype.toBuffer=function(e,t){return i("undefined"!==typeof o),this.toArrayLike(o,e,t)},s.prototype.toArray=function(e,t){return this.toArrayLike(Array,e,t)},s.prototype.toArrayLike=function(e,t,r){var n=this.byteLength(),s=r||Math.max(1,n);i(n<=s,"byte array longer than desired length"),i(s>0,"Requested array length <= 0"),this.strip();var o,a,l="le"===t,u=new e(s),c=this.clone();if(l){for(a=0;!c.isZero();a++)o=c.andln(255),c.iushrn(8),u[a]=o;for(;a=4096&&(r+=13,t>>>=13),t>=64&&(r+=7,t>>>=7),t>=8&&(r+=4,t>>>=4),t>=2&&(r+=2,t>>>=2),r+t},s.prototype._zeroBits=function(e){if(0===e)return 26;var t=e,r=0;return 0===(8191&t)&&(r+=13,t>>>=13),0===(127&t)&&(r+=7,t>>>=7),0===(15&t)&&(r+=4,t>>>=4),0===(3&t)&&(r+=2,t>>>=2),0===(1&t)&&r++,r},s.prototype.bitLength=function(){var e=this.words[this.length-1],t=this._countBits(e);return 26*(this.length-1)+t},s.prototype.zeroBits=function(){if(this.isZero())return 0;for(var e=0,t=0;te.length?this.clone().ior(e):e.clone().ior(this)},s.prototype.uor=function(e){return this.length>e.length?this.clone().iuor(e):e.clone().iuor(this)},s.prototype.iuand=function(e){var t;t=this.length>e.length?e:this;for(var r=0;re.length?this.clone().iand(e):e.clone().iand(this)},s.prototype.uand=function(e){return this.length>e.length?this.clone().iuand(e):e.clone().iuand(this)},s.prototype.iuxor=function(e){var t,r;this.length>e.length?(t=this,r=e):(t=e,r=this);for(var i=0;ie.length?this.clone().ixor(e):e.clone().ixor(this)},s.prototype.uxor=function(e){return this.length>e.length?this.clone().iuxor(e):e.clone().iuxor(this)},s.prototype.inotn=function(e){i("number"===typeof e&&e>=0);var t=0|Math.ceil(e/26),r=e%26;this._expand(t),r>0&&t--;for(var n=0;n0&&(this.words[n]=~this.words[n]&67108863>>26-r),this.strip()},s.prototype.notn=function(e){return this.clone().inotn(e)},s.prototype.setn=function(e,t){i("number"===typeof e&&e>=0);var r=e/26|0,n=e%26;return this._expand(r+1),this.words[r]=t?this.words[r]|1<e.length?(r=this,i=e):(r=e,i=this);for(var n=0,s=0;s>>26;for(;0!==n&&s>>26;if(this.length=r.length,0!==n)this.words[this.length]=n,this.length++;else if(r!==this)for(;se.length?this.clone().iadd(e):e.clone().iadd(this)},s.prototype.isub=function(e){if(0!==e.negative){e.negative=0;var t=this.iadd(e);return e.negative=1,t._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(e),this.negative=1,this._normSign();var r,i,n=this.cmp(e);if(0===n)return this.negative=0,this.length=1,this.words[0]=0,this;n>0?(r=this,i=e):(r=e,i=this);for(var s=0,o=0;o>26,this.words[o]=67108863&t;for(;0!==s&&o>26,this.words[o]=67108863&t;if(0===s&&o>>13,f=0|o[1],p=8191&f,m=f>>>13,g=0|o[2],v=8191&g,y=g>>>13,b=0|o[3],w=8191&b,_=b>>>13,k=0|o[4],x=8191&k,S=k>>>13,M=0|o[5],E=8191&M,A=M>>>13,C=0|o[6],$=8191&C,O=C>>>13,P=0|o[7],T=8191&P,I=P>>>13,D=0|o[8],L=8191&D,N=D>>>13,R=0|o[9],j=8191&R,B=R>>>13,F=0|a[0],z=8191&F,V=F>>>13,q=0|a[1],U=8191&q,H=q>>>13,W=0|a[2],K=8191&W,Y=W>>>13,G=0|a[3],Z=8191&G,J=G>>>13,X=0|a[4],Q=8191&X,ee=X>>>13,te=0|a[5],re=8191&te,ie=te>>>13,ne=0|a[6],se=8191&ne,oe=ne>>>13,ae=0|a[7],le=8191&ae,ue=ae>>>13,ce=0|a[8],he=8191&ce,de=ce>>>13,fe=0|a[9],pe=8191&fe,me=fe>>>13;r.negative=e.negative^t.negative,r.length=19,i=Math.imul(h,z),n=Math.imul(h,V),n=n+Math.imul(d,z)|0,s=Math.imul(d,V);var ge=(u+i|0)+((8191&n)<<13)|0;u=(s+(n>>>13)|0)+(ge>>>26)|0,ge&=67108863,i=Math.imul(p,z),n=Math.imul(p,V),n=n+Math.imul(m,z)|0,s=Math.imul(m,V),i=i+Math.imul(h,U)|0,n=n+Math.imul(h,H)|0,n=n+Math.imul(d,U)|0,s=s+Math.imul(d,H)|0;var ve=(u+i|0)+((8191&n)<<13)|0;u=(s+(n>>>13)|0)+(ve>>>26)|0,ve&=67108863,i=Math.imul(v,z),n=Math.imul(v,V),n=n+Math.imul(y,z)|0,s=Math.imul(y,V),i=i+Math.imul(p,U)|0,n=n+Math.imul(p,H)|0,n=n+Math.imul(m,U)|0,s=s+Math.imul(m,H)|0,i=i+Math.imul(h,K)|0,n=n+Math.imul(h,Y)|0,n=n+Math.imul(d,K)|0,s=s+Math.imul(d,Y)|0;var ye=(u+i|0)+((8191&n)<<13)|0;u=(s+(n>>>13)|0)+(ye>>>26)|0,ye&=67108863,i=Math.imul(w,z),n=Math.imul(w,V),n=n+Math.imul(_,z)|0,s=Math.imul(_,V),i=i+Math.imul(v,U)|0,n=n+Math.imul(v,H)|0,n=n+Math.imul(y,U)|0,s=s+Math.imul(y,H)|0,i=i+Math.imul(p,K)|0,n=n+Math.imul(p,Y)|0,n=n+Math.imul(m,K)|0,s=s+Math.imul(m,Y)|0,i=i+Math.imul(h,Z)|0,n=n+Math.imul(h,J)|0,n=n+Math.imul(d,Z)|0,s=s+Math.imul(d,J)|0;var be=(u+i|0)+((8191&n)<<13)|0;u=(s+(n>>>13)|0)+(be>>>26)|0,be&=67108863,i=Math.imul(x,z),n=Math.imul(x,V),n=n+Math.imul(S,z)|0,s=Math.imul(S,V),i=i+Math.imul(w,U)|0,n=n+Math.imul(w,H)|0,n=n+Math.imul(_,U)|0,s=s+Math.imul(_,H)|0,i=i+Math.imul(v,K)|0,n=n+Math.imul(v,Y)|0,n=n+Math.imul(y,K)|0,s=s+Math.imul(y,Y)|0,i=i+Math.imul(p,Z)|0,n=n+Math.imul(p,J)|0,n=n+Math.imul(m,Z)|0,s=s+Math.imul(m,J)|0,i=i+Math.imul(h,Q)|0,n=n+Math.imul(h,ee)|0,n=n+Math.imul(d,Q)|0,s=s+Math.imul(d,ee)|0;var we=(u+i|0)+((8191&n)<<13)|0;u=(s+(n>>>13)|0)+(we>>>26)|0,we&=67108863,i=Math.imul(E,z),n=Math.imul(E,V),n=n+Math.imul(A,z)|0,s=Math.imul(A,V),i=i+Math.imul(x,U)|0,n=n+Math.imul(x,H)|0,n=n+Math.imul(S,U)|0,s=s+Math.imul(S,H)|0,i=i+Math.imul(w,K)|0,n=n+Math.imul(w,Y)|0,n=n+Math.imul(_,K)|0,s=s+Math.imul(_,Y)|0,i=i+Math.imul(v,Z)|0,n=n+Math.imul(v,J)|0,n=n+Math.imul(y,Z)|0,s=s+Math.imul(y,J)|0,i=i+Math.imul(p,Q)|0,n=n+Math.imul(p,ee)|0,n=n+Math.imul(m,Q)|0,s=s+Math.imul(m,ee)|0,i=i+Math.imul(h,re)|0,n=n+Math.imul(h,ie)|0,n=n+Math.imul(d,re)|0,s=s+Math.imul(d,ie)|0;var _e=(u+i|0)+((8191&n)<<13)|0;u=(s+(n>>>13)|0)+(_e>>>26)|0,_e&=67108863,i=Math.imul($,z),n=Math.imul($,V),n=n+Math.imul(O,z)|0,s=Math.imul(O,V),i=i+Math.imul(E,U)|0,n=n+Math.imul(E,H)|0,n=n+Math.imul(A,U)|0,s=s+Math.imul(A,H)|0,i=i+Math.imul(x,K)|0,n=n+Math.imul(x,Y)|0,n=n+Math.imul(S,K)|0,s=s+Math.imul(S,Y)|0,i=i+Math.imul(w,Z)|0,n=n+Math.imul(w,J)|0,n=n+Math.imul(_,Z)|0,s=s+Math.imul(_,J)|0,i=i+Math.imul(v,Q)|0,n=n+Math.imul(v,ee)|0,n=n+Math.imul(y,Q)|0,s=s+Math.imul(y,ee)|0,i=i+Math.imul(p,re)|0,n=n+Math.imul(p,ie)|0,n=n+Math.imul(m,re)|0,s=s+Math.imul(m,ie)|0,i=i+Math.imul(h,se)|0,n=n+Math.imul(h,oe)|0,n=n+Math.imul(d,se)|0,s=s+Math.imul(d,oe)|0;var ke=(u+i|0)+((8191&n)<<13)|0;u=(s+(n>>>13)|0)+(ke>>>26)|0,ke&=67108863,i=Math.imul(T,z),n=Math.imul(T,V),n=n+Math.imul(I,z)|0,s=Math.imul(I,V),i=i+Math.imul($,U)|0,n=n+Math.imul($,H)|0,n=n+Math.imul(O,U)|0,s=s+Math.imul(O,H)|0,i=i+Math.imul(E,K)|0,n=n+Math.imul(E,Y)|0,n=n+Math.imul(A,K)|0,s=s+Math.imul(A,Y)|0,i=i+Math.imul(x,Z)|0,n=n+Math.imul(x,J)|0,n=n+Math.imul(S,Z)|0,s=s+Math.imul(S,J)|0,i=i+Math.imul(w,Q)|0,n=n+Math.imul(w,ee)|0,n=n+Math.imul(_,Q)|0,s=s+Math.imul(_,ee)|0,i=i+Math.imul(v,re)|0,n=n+Math.imul(v,ie)|0,n=n+Math.imul(y,re)|0,s=s+Math.imul(y,ie)|0,i=i+Math.imul(p,se)|0,n=n+Math.imul(p,oe)|0,n=n+Math.imul(m,se)|0,s=s+Math.imul(m,oe)|0,i=i+Math.imul(h,le)|0,n=n+Math.imul(h,ue)|0,n=n+Math.imul(d,le)|0,s=s+Math.imul(d,ue)|0;var xe=(u+i|0)+((8191&n)<<13)|0;u=(s+(n>>>13)|0)+(xe>>>26)|0,xe&=67108863,i=Math.imul(L,z),n=Math.imul(L,V),n=n+Math.imul(N,z)|0,s=Math.imul(N,V),i=i+Math.imul(T,U)|0,n=n+Math.imul(T,H)|0,n=n+Math.imul(I,U)|0,s=s+Math.imul(I,H)|0,i=i+Math.imul($,K)|0,n=n+Math.imul($,Y)|0,n=n+Math.imul(O,K)|0,s=s+Math.imul(O,Y)|0,i=i+Math.imul(E,Z)|0,n=n+Math.imul(E,J)|0,n=n+Math.imul(A,Z)|0,s=s+Math.imul(A,J)|0,i=i+Math.imul(x,Q)|0,n=n+Math.imul(x,ee)|0,n=n+Math.imul(S,Q)|0,s=s+Math.imul(S,ee)|0,i=i+Math.imul(w,re)|0,n=n+Math.imul(w,ie)|0,n=n+Math.imul(_,re)|0,s=s+Math.imul(_,ie)|0,i=i+Math.imul(v,se)|0,n=n+Math.imul(v,oe)|0,n=n+Math.imul(y,se)|0,s=s+Math.imul(y,oe)|0,i=i+Math.imul(p,le)|0,n=n+Math.imul(p,ue)|0,n=n+Math.imul(m,le)|0,s=s+Math.imul(m,ue)|0,i=i+Math.imul(h,he)|0,n=n+Math.imul(h,de)|0,n=n+Math.imul(d,he)|0,s=s+Math.imul(d,de)|0;var Se=(u+i|0)+((8191&n)<<13)|0;u=(s+(n>>>13)|0)+(Se>>>26)|0,Se&=67108863,i=Math.imul(j,z),n=Math.imul(j,V),n=n+Math.imul(B,z)|0,s=Math.imul(B,V),i=i+Math.imul(L,U)|0,n=n+Math.imul(L,H)|0,n=n+Math.imul(N,U)|0,s=s+Math.imul(N,H)|0,i=i+Math.imul(T,K)|0,n=n+Math.imul(T,Y)|0,n=n+Math.imul(I,K)|0,s=s+Math.imul(I,Y)|0,i=i+Math.imul($,Z)|0,n=n+Math.imul($,J)|0,n=n+Math.imul(O,Z)|0,s=s+Math.imul(O,J)|0,i=i+Math.imul(E,Q)|0,n=n+Math.imul(E,ee)|0,n=n+Math.imul(A,Q)|0,s=s+Math.imul(A,ee)|0,i=i+Math.imul(x,re)|0,n=n+Math.imul(x,ie)|0,n=n+Math.imul(S,re)|0,s=s+Math.imul(S,ie)|0,i=i+Math.imul(w,se)|0,n=n+Math.imul(w,oe)|0,n=n+Math.imul(_,se)|0,s=s+Math.imul(_,oe)|0,i=i+Math.imul(v,le)|0,n=n+Math.imul(v,ue)|0,n=n+Math.imul(y,le)|0,s=s+Math.imul(y,ue)|0,i=i+Math.imul(p,he)|0,n=n+Math.imul(p,de)|0,n=n+Math.imul(m,he)|0,s=s+Math.imul(m,de)|0,i=i+Math.imul(h,pe)|0,n=n+Math.imul(h,me)|0,n=n+Math.imul(d,pe)|0,s=s+Math.imul(d,me)|0;var Me=(u+i|0)+((8191&n)<<13)|0;u=(s+(n>>>13)|0)+(Me>>>26)|0,Me&=67108863,i=Math.imul(j,U),n=Math.imul(j,H),n=n+Math.imul(B,U)|0,s=Math.imul(B,H),i=i+Math.imul(L,K)|0,n=n+Math.imul(L,Y)|0,n=n+Math.imul(N,K)|0,s=s+Math.imul(N,Y)|0,i=i+Math.imul(T,Z)|0,n=n+Math.imul(T,J)|0,n=n+Math.imul(I,Z)|0,s=s+Math.imul(I,J)|0,i=i+Math.imul($,Q)|0,n=n+Math.imul($,ee)|0,n=n+Math.imul(O,Q)|0,s=s+Math.imul(O,ee)|0,i=i+Math.imul(E,re)|0,n=n+Math.imul(E,ie)|0,n=n+Math.imul(A,re)|0,s=s+Math.imul(A,ie)|0,i=i+Math.imul(x,se)|0,n=n+Math.imul(x,oe)|0,n=n+Math.imul(S,se)|0,s=s+Math.imul(S,oe)|0,i=i+Math.imul(w,le)|0,n=n+Math.imul(w,ue)|0,n=n+Math.imul(_,le)|0,s=s+Math.imul(_,ue)|0,i=i+Math.imul(v,he)|0,n=n+Math.imul(v,de)|0,n=n+Math.imul(y,he)|0,s=s+Math.imul(y,de)|0,i=i+Math.imul(p,pe)|0,n=n+Math.imul(p,me)|0,n=n+Math.imul(m,pe)|0,s=s+Math.imul(m,me)|0;var Ee=(u+i|0)+((8191&n)<<13)|0;u=(s+(n>>>13)|0)+(Ee>>>26)|0,Ee&=67108863,i=Math.imul(j,K),n=Math.imul(j,Y),n=n+Math.imul(B,K)|0,s=Math.imul(B,Y),i=i+Math.imul(L,Z)|0,n=n+Math.imul(L,J)|0,n=n+Math.imul(N,Z)|0,s=s+Math.imul(N,J)|0,i=i+Math.imul(T,Q)|0,n=n+Math.imul(T,ee)|0,n=n+Math.imul(I,Q)|0,s=s+Math.imul(I,ee)|0,i=i+Math.imul($,re)|0,n=n+Math.imul($,ie)|0,n=n+Math.imul(O,re)|0,s=s+Math.imul(O,ie)|0,i=i+Math.imul(E,se)|0,n=n+Math.imul(E,oe)|0,n=n+Math.imul(A,se)|0,s=s+Math.imul(A,oe)|0,i=i+Math.imul(x,le)|0,n=n+Math.imul(x,ue)|0,n=n+Math.imul(S,le)|0,s=s+Math.imul(S,ue)|0,i=i+Math.imul(w,he)|0,n=n+Math.imul(w,de)|0,n=n+Math.imul(_,he)|0,s=s+Math.imul(_,de)|0,i=i+Math.imul(v,pe)|0,n=n+Math.imul(v,me)|0,n=n+Math.imul(y,pe)|0,s=s+Math.imul(y,me)|0;var Ae=(u+i|0)+((8191&n)<<13)|0;u=(s+(n>>>13)|0)+(Ae>>>26)|0,Ae&=67108863,i=Math.imul(j,Z),n=Math.imul(j,J),n=n+Math.imul(B,Z)|0,s=Math.imul(B,J),i=i+Math.imul(L,Q)|0,n=n+Math.imul(L,ee)|0,n=n+Math.imul(N,Q)|0,s=s+Math.imul(N,ee)|0,i=i+Math.imul(T,re)|0,n=n+Math.imul(T,ie)|0,n=n+Math.imul(I,re)|0,s=s+Math.imul(I,ie)|0,i=i+Math.imul($,se)|0,n=n+Math.imul($,oe)|0,n=n+Math.imul(O,se)|0,s=s+Math.imul(O,oe)|0,i=i+Math.imul(E,le)|0,n=n+Math.imul(E,ue)|0,n=n+Math.imul(A,le)|0,s=s+Math.imul(A,ue)|0,i=i+Math.imul(x,he)|0,n=n+Math.imul(x,de)|0,n=n+Math.imul(S,he)|0,s=s+Math.imul(S,de)|0,i=i+Math.imul(w,pe)|0,n=n+Math.imul(w,me)|0,n=n+Math.imul(_,pe)|0,s=s+Math.imul(_,me)|0;var Ce=(u+i|0)+((8191&n)<<13)|0;u=(s+(n>>>13)|0)+(Ce>>>26)|0,Ce&=67108863,i=Math.imul(j,Q),n=Math.imul(j,ee),n=n+Math.imul(B,Q)|0,s=Math.imul(B,ee),i=i+Math.imul(L,re)|0,n=n+Math.imul(L,ie)|0,n=n+Math.imul(N,re)|0,s=s+Math.imul(N,ie)|0,i=i+Math.imul(T,se)|0,n=n+Math.imul(T,oe)|0,n=n+Math.imul(I,se)|0,s=s+Math.imul(I,oe)|0,i=i+Math.imul($,le)|0,n=n+Math.imul($,ue)|0,n=n+Math.imul(O,le)|0,s=s+Math.imul(O,ue)|0,i=i+Math.imul(E,he)|0,n=n+Math.imul(E,de)|0,n=n+Math.imul(A,he)|0,s=s+Math.imul(A,de)|0,i=i+Math.imul(x,pe)|0,n=n+Math.imul(x,me)|0,n=n+Math.imul(S,pe)|0,s=s+Math.imul(S,me)|0;var $e=(u+i|0)+((8191&n)<<13)|0;u=(s+(n>>>13)|0)+($e>>>26)|0,$e&=67108863,i=Math.imul(j,re),n=Math.imul(j,ie),n=n+Math.imul(B,re)|0,s=Math.imul(B,ie),i=i+Math.imul(L,se)|0,n=n+Math.imul(L,oe)|0,n=n+Math.imul(N,se)|0,s=s+Math.imul(N,oe)|0,i=i+Math.imul(T,le)|0,n=n+Math.imul(T,ue)|0,n=n+Math.imul(I,le)|0,s=s+Math.imul(I,ue)|0,i=i+Math.imul($,he)|0,n=n+Math.imul($,de)|0,n=n+Math.imul(O,he)|0,s=s+Math.imul(O,de)|0,i=i+Math.imul(E,pe)|0,n=n+Math.imul(E,me)|0,n=n+Math.imul(A,pe)|0,s=s+Math.imul(A,me)|0;var Oe=(u+i|0)+((8191&n)<<13)|0;u=(s+(n>>>13)|0)+(Oe>>>26)|0,Oe&=67108863,i=Math.imul(j,se),n=Math.imul(j,oe),n=n+Math.imul(B,se)|0,s=Math.imul(B,oe),i=i+Math.imul(L,le)|0,n=n+Math.imul(L,ue)|0,n=n+Math.imul(N,le)|0,s=s+Math.imul(N,ue)|0,i=i+Math.imul(T,he)|0,n=n+Math.imul(T,de)|0,n=n+Math.imul(I,he)|0,s=s+Math.imul(I,de)|0,i=i+Math.imul($,pe)|0,n=n+Math.imul($,me)|0,n=n+Math.imul(O,pe)|0,s=s+Math.imul(O,me)|0;var Pe=(u+i|0)+((8191&n)<<13)|0;u=(s+(n>>>13)|0)+(Pe>>>26)|0,Pe&=67108863,i=Math.imul(j,le),n=Math.imul(j,ue),n=n+Math.imul(B,le)|0,s=Math.imul(B,ue),i=i+Math.imul(L,he)|0,n=n+Math.imul(L,de)|0,n=n+Math.imul(N,he)|0,s=s+Math.imul(N,de)|0,i=i+Math.imul(T,pe)|0,n=n+Math.imul(T,me)|0,n=n+Math.imul(I,pe)|0,s=s+Math.imul(I,me)|0;var Te=(u+i|0)+((8191&n)<<13)|0;u=(s+(n>>>13)|0)+(Te>>>26)|0,Te&=67108863,i=Math.imul(j,he),n=Math.imul(j,de),n=n+Math.imul(B,he)|0,s=Math.imul(B,de),i=i+Math.imul(L,pe)|0,n=n+Math.imul(L,me)|0,n=n+Math.imul(N,pe)|0,s=s+Math.imul(N,me)|0;var Ie=(u+i|0)+((8191&n)<<13)|0;u=(s+(n>>>13)|0)+(Ie>>>26)|0,Ie&=67108863,i=Math.imul(j,pe),n=Math.imul(j,me),n=n+Math.imul(B,pe)|0,s=Math.imul(B,me);var De=(u+i|0)+((8191&n)<<13)|0;return u=(s+(n>>>13)|0)+(De>>>26)|0,De&=67108863,l[0]=ge,l[1]=ve,l[2]=ye,l[3]=be,l[4]=we,l[5]=_e,l[6]=ke,l[7]=xe,l[8]=Se,l[9]=Me,l[10]=Ee,l[11]=Ae,l[12]=Ce,l[13]=$e,l[14]=Oe,l[15]=Pe,l[16]=Te,l[17]=Ie,l[18]=De,0!==u&&(l[19]=u,r.length++),r};function g(e,t,r){r.negative=t.negative^e.negative,r.length=e.length+t.length;for(var i=0,n=0,s=0;s>>26)|0,n+=o>>>26,o&=67108863}r.words[s]=a,i=o,o=n}return 0!==i?r.words[s]=i:r.length--,r.strip()}function v(e,t,r){var i=new y;return i.mulp(e,t,r)}function y(e,t){this.x=e,this.y=t}Math.imul||(m=p),s.prototype.mulTo=function(e,t){var r,i=this.length+e.length;return r=10===this.length&&10===e.length?m(this,e,t):i<63?p(this,e,t):i<1024?g(this,e,t):v(this,e,t),r},y.prototype.makeRBT=function(e){for(var t=new Array(e),r=s.prototype._countBits(e)-1,i=0;i>=1;return i},y.prototype.permute=function(e,t,r,i,n,s){for(var o=0;o>>=1)n++;return 1<>>=13,r[2*o+1]=8191&s,s>>>=13;for(o=2*t;o>=26,t+=n/67108864|0,t+=s>>>26,this.words[r]=67108863&s}return 0!==t&&(this.words[r]=t,this.length++),this},s.prototype.muln=function(e){return this.clone().imuln(e)},s.prototype.sqr=function(){return this.mul(this)},s.prototype.isqr=function(){return this.imul(this.clone())},s.prototype.pow=function(e){var t=f(e);if(0===t.length)return new s(1);for(var r=this,i=0;i=0);var t,r=e%26,n=(e-r)/26,s=67108863>>>26-r<<26-r;if(0!==r){var o=0;for(t=0;t>>26-r}o&&(this.words[t]=o,this.length++)}if(0!==n){for(t=this.length-1;t>=0;t--)this.words[t+n]=this.words[t];for(t=0;t=0),n=t?(t-t%26)/26:0;var s=e%26,o=Math.min((e-s)/26,this.length),a=67108863^67108863>>>s<o)for(this.length-=o,u=0;u=0&&(0!==c||u>=n);u--){var h=0|this.words[u];this.words[u]=c<<26-s|h>>>s,c=h&a}return l&&0!==c&&(l.words[l.length++]=c),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},s.prototype.ishrn=function(e,t,r){return i(0===this.negative),this.iushrn(e,t,r)},s.prototype.shln=function(e){return this.clone().ishln(e)},s.prototype.ushln=function(e){return this.clone().iushln(e)},s.prototype.shrn=function(e){return this.clone().ishrn(e)},s.prototype.ushrn=function(e){return this.clone().iushrn(e)},s.prototype.testn=function(e){i("number"===typeof e&&e>=0);var t=e%26,r=(e-t)/26,n=1<=0);var t=e%26,r=(e-t)/26;if(i(0===this.negative,"imaskn works only with positive numbers"),this.length<=r)return this;if(0!==t&&r++,this.length=Math.min(r,this.length),0!==t){var n=67108863^67108863>>>t<=67108864;t++)this.words[t]-=67108864,t===this.length-1?this.words[t+1]=1:this.words[t+1]++;return this.length=Math.max(this.length,t+1),this},s.prototype.isubn=function(e){if(i("number"===typeof e),i(e<67108864),e<0)return this.iaddn(-e);if(0!==this.negative)return this.negative=0,this.iaddn(e),this.negative=1,this;if(this.words[0]-=e,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var t=0;t>26)-(l/67108864|0),this.words[n+r]=67108863&s}for(;n>26,this.words[n+r]=67108863&s;if(0===a)return this.strip();for(i(-1===a),a=0,n=0;n>26,this.words[n]=67108863&s;return this.negative=1,this.strip()},s.prototype._wordDiv=function(e,t){var r=this.length-e.length,i=this.clone(),n=e,o=0|n.words[n.length-1],a=this._countBits(o);r=26-a,0!==r&&(n=n.ushln(r),i.iushln(r),o=0|n.words[n.length-1]);var l,u=i.length-n.length;if("mod"!==t){l=new s(null),l.length=u+1,l.words=new Array(l.length);for(var c=0;c=0;d--){var f=67108864*(0|i.words[n.length+d])+(0|i.words[n.length+d-1]);f=Math.min(f/o|0,67108863),i._ishlnsubmul(n,f,d);while(0!==i.negative)f--,i.negative=0,i._ishlnsubmul(n,1,d),i.isZero()||(i.negative^=1);l&&(l.words[d]=f)}return l&&l.strip(),i.strip(),"div"!==t&&0!==r&&i.iushrn(r),{div:l||null,mod:i}},s.prototype.divmod=function(e,t,r){return i(!e.isZero()),this.isZero()?{div:new s(0),mod:new s(0)}:0!==this.negative&&0===e.negative?(a=this.neg().divmod(e,t),"mod"!==t&&(n=a.div.neg()),"div"!==t&&(o=a.mod.neg(),r&&0!==o.negative&&o.iadd(e)),{div:n,mod:o}):0===this.negative&&0!==e.negative?(a=this.divmod(e.neg(),t),"mod"!==t&&(n=a.div.neg()),{div:n,mod:a.mod}):0!==(this.negative&e.negative)?(a=this.neg().divmod(e.neg(),t),"div"!==t&&(o=a.mod.neg(),r&&0!==o.negative&&o.isub(e)),{div:a.div,mod:o}):e.length>this.length||this.cmp(e)<0?{div:new s(0),mod:this}:1===e.length?"div"===t?{div:this.divn(e.words[0]),mod:null}:"mod"===t?{div:null,mod:new s(this.modn(e.words[0]))}:{div:this.divn(e.words[0]),mod:new s(this.modn(e.words[0]))}:this._wordDiv(e,t);var n,o,a},s.prototype.div=function(e){return this.divmod(e,"div",!1).div},s.prototype.mod=function(e){return this.divmod(e,"mod",!1).mod},s.prototype.umod=function(e){return this.divmod(e,"mod",!0).mod},s.prototype.divRound=function(e){var t=this.divmod(e);if(t.mod.isZero())return t.div;var r=0!==t.div.negative?t.mod.isub(e):t.mod,i=e.ushrn(1),n=e.andln(1),s=r.cmp(i);return s<0||1===n&&0===s?t.div:0!==t.div.negative?t.div.isubn(1):t.div.iaddn(1)},s.prototype.modn=function(e){i(e<=67108863);for(var t=(1<<26)%e,r=0,n=this.length-1;n>=0;n--)r=(t*r+(0|this.words[n]))%e;return r},s.prototype.idivn=function(e){i(e<=67108863);for(var t=0,r=this.length-1;r>=0;r--){var n=(0|this.words[r])+67108864*t;this.words[r]=n/e|0,t=n%e}return this.strip()},s.prototype.divn=function(e){return this.clone().idivn(e)},s.prototype.egcd=function(e){i(0===e.negative),i(!e.isZero());var t=this,r=e.clone();t=0!==t.negative?t.umod(e):t.clone();var n=new s(1),o=new s(0),a=new s(0),l=new s(1),u=0;while(t.isEven()&&r.isEven())t.iushrn(1),r.iushrn(1),++u;var c=r.clone(),h=t.clone();while(!t.isZero()){for(var d=0,f=1;0===(t.words[0]&f)&&d<26;++d,f<<=1);if(d>0){t.iushrn(d);while(d-- >0)(n.isOdd()||o.isOdd())&&(n.iadd(c),o.isub(h)),n.iushrn(1),o.iushrn(1)}for(var p=0,m=1;0===(r.words[0]&m)&&p<26;++p,m<<=1);if(p>0){r.iushrn(p);while(p-- >0)(a.isOdd()||l.isOdd())&&(a.iadd(c),l.isub(h)),a.iushrn(1),l.iushrn(1)}t.cmp(r)>=0?(t.isub(r),n.isub(a),o.isub(l)):(r.isub(t),a.isub(n),l.isub(o))}return{a:a,b:l,gcd:r.iushln(u)}},s.prototype._invmp=function(e){i(0===e.negative),i(!e.isZero());var t=this,r=e.clone();t=0!==t.negative?t.umod(e):t.clone();var n,o=new s(1),a=new s(0),l=r.clone();while(t.cmpn(1)>0&&r.cmpn(1)>0){for(var u=0,c=1;0===(t.words[0]&c)&&u<26;++u,c<<=1);if(u>0){t.iushrn(u);while(u-- >0)o.isOdd()&&o.iadd(l),o.iushrn(1)}for(var h=0,d=1;0===(r.words[0]&d)&&h<26;++h,d<<=1);if(h>0){r.iushrn(h);while(h-- >0)a.isOdd()&&a.iadd(l),a.iushrn(1)}t.cmp(r)>=0?(t.isub(r),o.isub(a)):(r.isub(t),a.isub(o))}return n=0===t.cmpn(1)?o:a,n.cmpn(0)<0&&n.iadd(e),n},s.prototype.gcd=function(e){if(this.isZero())return e.abs();if(e.isZero())return this.abs();var t=this.clone(),r=e.clone();t.negative=0,r.negative=0;for(var i=0;t.isEven()&&r.isEven();i++)t.iushrn(1),r.iushrn(1);do{while(t.isEven())t.iushrn(1);while(r.isEven())r.iushrn(1);var n=t.cmp(r);if(n<0){var s=t;t=r,r=s}else if(0===n||0===r.cmpn(1))break;t.isub(r)}while(1);return r.iushln(i)},s.prototype.invm=function(e){return this.egcd(e).a.umod(e)},s.prototype.isEven=function(){return 0===(1&this.words[0])},s.prototype.isOdd=function(){return 1===(1&this.words[0])},s.prototype.andln=function(e){return this.words[0]&e},s.prototype.bincn=function(e){i("number"===typeof e);var t=e%26,r=(e-t)/26,n=1<>>26,a&=67108863,this.words[o]=a}return 0!==s&&(this.words[o]=s,this.length++),this},s.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},s.prototype.cmpn=function(e){var t,r=e<0;if(0!==this.negative&&!r)return-1;if(0===this.negative&&r)return 1;if(this.strip(),this.length>1)t=1;else{r&&(e=-e),i(e<=67108863,"Number is too big");var n=0|this.words[0];t=n===e?0:ne.length)return 1;if(this.length=0;r--){var i=0|this.words[r],n=0|e.words[r];if(i!==n){in&&(t=1);break}}return t},s.prototype.gtn=function(e){return 1===this.cmpn(e)},s.prototype.gt=function(e){return 1===this.cmp(e)},s.prototype.gten=function(e){return this.cmpn(e)>=0},s.prototype.gte=function(e){return this.cmp(e)>=0},s.prototype.ltn=function(e){return-1===this.cmpn(e)},s.prototype.lt=function(e){return-1===this.cmp(e)},s.prototype.lten=function(e){return this.cmpn(e)<=0},s.prototype.lte=function(e){return this.cmp(e)<=0},s.prototype.eqn=function(e){return 0===this.cmpn(e)},s.prototype.eq=function(e){return 0===this.cmp(e)},s.red=function(e){return new M(e)},s.prototype.toRed=function(e){return i(!this.red,"Already a number in reduction context"),i(0===this.negative,"red works only with positives"),e.convertTo(this)._forceRed(e)},s.prototype.fromRed=function(){return i(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},s.prototype._forceRed=function(e){return this.red=e,this},s.prototype.forceRed=function(e){return i(!this.red,"Already a number in reduction context"),this._forceRed(e)},s.prototype.redAdd=function(e){return i(this.red,"redAdd works only with red numbers"),this.red.add(this,e)},s.prototype.redIAdd=function(e){return i(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,e)},s.prototype.redSub=function(e){return i(this.red,"redSub works only with red numbers"),this.red.sub(this,e)},s.prototype.redISub=function(e){return i(this.red,"redISub works only with red numbers"),this.red.isub(this,e)},s.prototype.redShl=function(e){return i(this.red,"redShl works only with red numbers"),this.red.shl(this,e)},s.prototype.redMul=function(e){return i(this.red,"redMul works only with red numbers"),this.red._verify2(this,e),this.red.mul(this,e)},s.prototype.redIMul=function(e){return i(this.red,"redMul works only with red numbers"),this.red._verify2(this,e),this.red.imul(this,e)},s.prototype.redSqr=function(){return i(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},s.prototype.redISqr=function(){return i(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},s.prototype.redSqrt=function(){return i(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},s.prototype.redInvm=function(){return i(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},s.prototype.redNeg=function(){return i(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},s.prototype.redPow=function(e){return i(this.red&&!e.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,e)};var b={k256:null,p224:null,p192:null,p25519:null};function w(e,t){this.name=e,this.p=new s(t,16),this.n=this.p.bitLength(),this.k=new s(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function _(){w.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function k(){w.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function x(){w.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function S(){w.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function M(e){if("string"===typeof e){var t=s._prime(e);this.m=t.p,this.prime=t}else i(e.gtn(1),"modulus must be greater than 1"),this.m=e,this.prime=null}function E(e){M.call(this,e),this.shift=this.m.bitLength(),this.shift%26!==0&&(this.shift+=26-this.shift%26),this.r=new s(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}w.prototype._tmp=function(){var e=new s(null);return e.words=new Array(Math.ceil(this.n/13)),e},w.prototype.ireduce=function(e){var t,r=e;do{this.split(r,this.tmp),r=this.imulK(r),r=r.iadd(this.tmp),t=r.bitLength()}while(t>this.n);var i=t0?r.isub(this.p):void 0!==r.strip?r.strip():r._strip(),r},w.prototype.split=function(e,t){e.iushrn(this.n,0,t)},w.prototype.imulK=function(e){return e.imul(this.k)},n(_,w),_.prototype.split=function(e,t){for(var r=4194303,i=Math.min(e.length,9),n=0;n>>22,s=o}s>>>=22,e.words[n-10]=s,0===s&&e.length>10?e.length-=10:e.length-=9},_.prototype.imulK=function(e){e.words[e.length]=0,e.words[e.length+1]=0,e.length+=2;for(var t=0,r=0;r>>=26,e.words[r]=n,t=i}return 0!==t&&(e.words[e.length++]=t),e},s._prime=function(e){if(b[e])return b[e];var t;if("k256"===e)t=new _;else if("p224"===e)t=new k;else if("p192"===e)t=new x;else{if("p25519"!==e)throw new Error("Unknown prime "+e);t=new S}return b[e]=t,t},M.prototype._verify1=function(e){i(0===e.negative,"red works only with positives"),i(e.red,"red works only with red numbers")},M.prototype._verify2=function(e,t){i(0===(e.negative|t.negative),"red works only with positives"),i(e.red&&e.red===t.red,"red works only with red numbers")},M.prototype.imod=function(e){return this.prime?this.prime.ireduce(e)._forceRed(this):e.umod(this.m)._forceRed(this)},M.prototype.neg=function(e){return e.isZero()?e.clone():this.m.sub(e)._forceRed(this)},M.prototype.add=function(e,t){this._verify2(e,t);var r=e.add(t);return r.cmp(this.m)>=0&&r.isub(this.m),r._forceRed(this)},M.prototype.iadd=function(e,t){this._verify2(e,t);var r=e.iadd(t);return r.cmp(this.m)>=0&&r.isub(this.m),r},M.prototype.sub=function(e,t){this._verify2(e,t);var r=e.sub(t);return r.cmpn(0)<0&&r.iadd(this.m),r._forceRed(this)},M.prototype.isub=function(e,t){this._verify2(e,t);var r=e.isub(t);return r.cmpn(0)<0&&r.iadd(this.m),r},M.prototype.shl=function(e,t){return this._verify1(e),this.imod(e.ushln(t))},M.prototype.imul=function(e,t){return this._verify2(e,t),this.imod(e.imul(t))},M.prototype.mul=function(e,t){return this._verify2(e,t),this.imod(e.mul(t))},M.prototype.isqr=function(e){return this.imul(e,e.clone())},M.prototype.sqr=function(e){return this.mul(e,e)},M.prototype.sqrt=function(e){if(e.isZero())return e.clone();var t=this.m.andln(3);if(i(t%2===1),3===t){var r=this.m.add(new s(1)).iushrn(2);return this.pow(e,r)}var n=this.m.subn(1),o=0;while(!n.isZero()&&0===n.andln(1))o++,n.iushrn(1);i(!n.isZero());var a=new s(1).toRed(this),l=a.redNeg(),u=this.m.subn(1).iushrn(1),c=this.m.bitLength();c=new s(2*c*c).toRed(this);while(0!==this.pow(c,u).cmp(l))c.redIAdd(l);var h=this.pow(c,n),d=this.pow(e,n.addn(1).iushrn(1)),f=this.pow(e,n),p=o;while(0!==f.cmp(a)){for(var m=f,g=0;0!==m.cmp(a);g++)m=m.redSqr();i(g=0;n--){for(var c=t.words[n],h=u-1;h>=0;h--){var d=c>>h&1;o!==i[0]&&(o=this.sqr(o)),0!==d||0!==a?(a<<=1,a|=d,l++,(l===r||0===n&&0===h)&&(o=this.mul(o,i[a]),l=0,a=0)):l=0}u=26}return o},M.prototype.convertTo=function(e){var t=e.umod(this.m);return t===e?t.clone():t},M.prototype.convertFrom=function(e){var t=e.clone();return t.red=null,t},s.mont=function(e){return new E(e)},n(E,M),E.prototype.convertTo=function(e){return this.imod(e.ushln(this.shift))},E.prototype.convertFrom=function(e){var t=this.imod(e.mul(this.rinv));return t.red=null,t},E.prototype.imul=function(e,t){if(e.isZero()||t.isZero())return e.words[0]=0,e.length=1,e;var r=e.imul(t),i=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),n=r.isub(i).iushrn(this.shift),s=n;return n.cmp(this.m)>=0?s=n.isub(this.m):n.cmpn(0)<0&&(s=n.iadd(this.m)),s._forceRed(this)},E.prototype.mul=function(e,t){if(e.isZero()||t.isZero())return new s(0)._forceRed(this);var r=e.mul(t),i=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),n=r.isub(i).iushrn(this.shift),o=n;return n.cmp(this.m)>=0?o=n.isub(this.m):n.cmpn(0)<0&&(o=n.iadd(this.m)),o._forceRed(this)},E.prototype.invm=function(e){var t=this.imod(e._invmp(this.m).mul(this.r2));return t._forceRed(this)}}(e,this)},30766:function(e,t,r){"use strict";r.d(t,{A:function(){return Us}});r(44114);var i=r(6044),n=r.n(i),s=r(51548),o=r(73668),a=r.n(o);const l={cache:{},extendtoken:"$extend",reftoken:"$ref",pathtoken:"#",debug:!1,clone:function(e){var t,r;if(null===e||"object"!==typeof e||"function"===typeof e)return e;for(t in r=e.constructor(),e)r[t]=l.clone(e[t]);return r},findIds:function(e,t){var r,i,n,s;for(i in r=!1,n={},e)s=e[i],null!=e.id&&(r=e.id),r&&"id"!==i&&(n[i]=s),"object"===typeof s&&l.findIds(s,t);if(r)return t[r]=n,n},get_json_pointer:function(e,t,r){var i;i=e.replace(/\\\//,"#SLASH#").replace(/\//g,".").replace(/#SLASH#/,"/"),i=i.replace(new RegExp("^"+l.pathtoken),""),"."===i[0]&&(i=i.substr(1,i.length-1));var n,s=[i];Object.keys(r).forEach((e=>{const t=Array.isArray(r[e])?r[e]:[r[e]];t.forEach((t=>{s.forEach((r=>{r.includes(e)&&s.push(r.replace(e,t))}))}))}));for(const u of s){l.debug&&console.log("evaluating '"+i+"'");try{var o=a().getter(u)(t);if(o)return o}catch(err){n=err}}return n&&console.error(n),""},replace:function(e,t,r,i){var n,s,o,a,u,c;for(n in u=[],e)c=e[n],l.debug&&"string"===typeof s&&console.log("checking "+n),null!=c&&null!=c[l.reftoken]?(s=c[l.reftoken],l.debug&&"string"===typeof s&&console.log("checking "+n+" -> "+s),Object.keys(c).length>1&&console.error("json-ref-lite error: object '"+n+"' contains reference as well as other properties..ignoring properties"),Array.isArray(s)?s=l.replace(s,t,r,i):null!=t[s]?e[n]=t[s]:String(s).match(new RegExp("^"+l.pathtoken))&&(l.debug&&console.log("checking "+s+" pathtoken"),e[n]=l.get_json_pointer(s,r,i)),null!=(null!=(o=e[n])?o.length:void 0)&&0===(null!=(a=e[n])?a.length:void 0)&&l.debug?u.push(console.log(s+" reference not found")):u.push(void 0)):"object"===typeof c?u.push(l.replace(c,t,r,i)):u.push(void 0);return u},extend:function(e,t){var r,i,n,s,o,a;if("object"===typeof e){for(r in n=[],e){if(a=e[r],r===l.extendtoken&&null!=a[l.reftoken]){for(s in i=l.get_json_pointer(a[l.reftoken],e,t),a)o=a[s],s!==l.reftoken&&(i[s]=o);delete e[r]}"object"===typeof a?n.push(a=l.extend(a)):n.push(void 0)}return n}},resolve:function(e,t){var r;return r={},l.findIds(e,r),l.debug&&Object.keys(r).length&&console.dir(r),l.replace(e,r,e,t),e},evaluate:function(e,t,r){var i,n,s;for(i in null==r&&(r=l.evaluateStr),n=l.clone(e),n)s=n[i],"string"===typeof s&&(e[i]=r(s,t)),"object"===typeof s&&(e[i]=l.evaluate(s,t));return e},evaluateStr:function(e,t){var r;if("string"!==typeof e)return e;if("{"!==e[0]||"}"!==e[e.length-1])return r=e.replace(/(\{)(.*?)(\})/g,(function(e,r,i){var n;if(n="",null==t||null==i)return n;if(null!=t[i]&&"function"===typeof t[i])n=t[i]();else if(null!=t[i])n=t[i];else{try{i=i.replace(new RegExp("^"+l.pathtoken+"/"),"").replace(/\//g,"."),n=a().getter(i)(t)}catch(s){err=s,n=""}null==n&&(n="")}return l.evaluateStr(n,t),n})),r;try{return a().getter(e.replace(/^{/,"").replace(/}$/,""))(t)}catch(i){return null}}};var u=l;const c={};var h=c;const d=e=>Object.keys(e||{}).map((t=>({...e[t],key:t}))),f=(e,t)=>{const r=t.split(".");for(let i=0;i{e.required=e.required.concat(t.required||[]),e.properties=e.properties.concat(d(t.properties)),t.oneOf&&(e.oneOf=(e.oneOf||[]).concat(t.oneOf)),t.allOf&&(e.allOf=(e.allOf||[]).concat(t.allOf))};c.prepareFullSchema=(e,t,r)=>{const i=n()(e);if(i.pattern&&(i.patternRegexp=new RegExp(i.pattern)),!i.type&&i.properties&&(i.type="object"),!i.type){const e=i.anyOf||i.oneOf||i.allOf,t=e&&e.find((e=>!!e.type));t&&(i.type=t.type)}if(Array.isArray(i.type)&&(i.nullable=i.type.includes("null"),i.type=i.type.find((e=>"null"!==e)),i.nullable&&i.enum&&(i.enum=i.enum.filter((e=>null!==e)))),i.items&&Array.isArray(i.items)&&i.items.forEach(((e,t)=>{e.key=""+t})),i.enum&&1===i.enum.length&&(i.const=i.enum[0],delete i.enum),"object"!==i.type)return i;if(i.properties=d(i.properties),i.required=i.required||[],i.dependencies=i.dependencies||{},i.dependencies&&Object.keys(i.dependencies).forEach((e=>{const r=i.dependencies[e];if(!t)return;const n=f(t,e);[null,void 0,!1].includes(n)||Array.isArray(n)&&0===n.length||"object"===typeof n&&0===Object.keys(n).length||p(i,r)})),i.if)if(r.validator){const e=r.validator(i.if),n=e(t);!n&&i.then&&p(i,i.then),n&&i.else&&p(i,i.else)}else console.error("v-jsf - The conditional if/then/else syntax requires the ajv or other validator option.");return i};var m="M19,19H5V8H19M16,1V3H8V1H6V3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3H18V1M17,12H12V17H17V12Z",g="M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M16.2,16.2L11,13V7H12.5V12.2L17,14.9L16.2,16.2Z",v="M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z",y="M11,17H4A2,2 0 0,1 2,15V3A2,2 0 0,1 4,1H16V3H4V15H11V13L15,16L11,19V17M19,21V7H8V13H6V7A2,2 0 0,1 8,5H19A2,2 0 0,1 21,7V21A2,2 0 0,1 19,23H8A2,2 0 0,1 6,21V19H8V21H19Z",b="M19,20H5V4H7V7H17V4H19M12,2A1,1 0 0,1 13,3A1,1 0 0,1 12,4A1,1 0 0,1 11,3A1,1 0 0,1 12,2M19,2H14.82C14.4,0.84 13.3,0 12,0C10.7,0 9.6,0.84 9.18,2H5A2,2 0 0,0 3,4V20A2,2 0 0,0 5,22H19A2,2 0 0,0 21,20V4A2,2 0 0,0 19,2Z",w="M19,4H15.5L14.5,3H9.5L8.5,4H5V6H19M6,19A2,2 0 0,0 8,21H16A2,2 0 0,0 18,19V7H6V19Z",_="M12,16A2,2 0 0,1 14,18A2,2 0 0,1 12,20A2,2 0 0,1 10,18A2,2 0 0,1 12,16M12,10A2,2 0 0,1 14,12A2,2 0 0,1 12,14A2,2 0 0,1 10,12A2,2 0 0,1 12,10M12,4A2,2 0 0,1 14,6A2,2 0 0,1 12,8A2,2 0 0,1 10,6A2,2 0 0,1 12,4Z",k="M13,9H11V7H13M13,17H11V11H13M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z",x="M20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18,2.9 17.35,2.9 16.96,3.29L15.12,5.12L18.87,8.87M3,17.25V21H6.75L17.81,9.93L14.06,6.18L3,17.25Z",S="M19,13H13V19H11V13H5V11H11V5H13V11H19V13Z";const M={locale:"",defaultLocale:"",rootDisplay:"",objectContainerClass:"",sectionsClass:"pl-2 pt-2",sectionsTitlesClasses:["title","subtitle-1","subtitle-2"],arrayItemsTitlesClasses:["title","subtitle-1","subtitle-2"],childrenClass:"",fieldProps:{},fieldColProps:{cols:12},readOnlyFieldProps:{hideDetails:!0},textFieldProps:{},textareaProps:{filled:!0},numberProps:{},sliderProps:{},checkboxProps:{},switchProps:{},comboboxProps:{},selectProps:{},fileInputProps:{},radioGroupProps:{},radioItemProps:{},tabsProps:{grow:!0},expansionPanelsProps:{mandatory:!0},dialogProps:{maxWidth:500},dialogCardProps:{},colorPickerProps:{},timePickerProps:{},datePickerProps:{scrollable:!0},arrayItemCardProps:{},arrayItemColProps:{cols:12},stepperProps:{},verticalStepperProps:{},tooltipProps:{left:!0,openOnHover:!1,openOnClick:!0},removeAdditionalProperties:!0,disableAll:!1,hideReadOnly:!1,hideReadOnlyLabels:!1,hideReadOnlyEmpty:!1,hideReadOnlyTooltips:!1,deleteReadOnly:!1,hideInArrayItem:!1,filesAsDataUrl:!1,hideTooltips:!1,disableSorting:!1,sortableOptions:{},context:{},rules:{},initialValidation:"defined",idPrefix:"",markdownit:{},editMode:"dialog",arrayOperations:["create","update","duplicate","copy","paste","delete"],autofocus:!1,httpOptions:{},selectAll:!1,autoFixArrayItems:!0,useValidator:!1,evalMethod:"propertyExpr",easyMDEOptions:{},maxLengthCounter:!0},E={en:{required:"This information is required",noData:"No matching value found",search:"Search...",minimum:"The value must be greater than or equal to {minimum}",exclusiveMinimum:"The value must be greater than {exclusiveMinimum}",maximum:"The value must be lower than or equal to {maximum}",exclusiveMaximum:"The value must be lower than {exclusiveMaximum}",minLength:"{minLength} characters minimum",maxLength:"{maxLength} characters maximum",minItems:"No less than {minItems} items",maxItems:"No more than {maxItems} items",pattern:"The expected pattern is not satisfied",mdeLink1:"[Link title",mdeLink2:"](link url)",mdeImg1:"![](",mdeImg2:"image url)",mdeTable1:"",mdeTable2:"\n\n| Column 1 | Column 2 | ColoColumnnne 3 |\n| -------- | -------- | -------- |\n| Text | Text | Text |\n\n",bold:"Bold",italic:"Italic",heading:"Title",quote:"Quote",unorderedList:"Unordered list",orderedList:"Ordered list",createLink:"Create a link",insertImage:"Insert an image",createTable:"Create a table",preview:"Aperçu du rendu",mdeGuide:"Documentation de la syntaxe",undo:"Undo",redo:"Redo",selectAll:"Select all",stepperContinue:"continue",openMenu:"open menu",delete:"delete",duplicate:"duplicate",copy:"copy",paste:"paste"},fr:{required:"Cette information est obligatoire",noData:"Aucun élément correspondant",search:"Recherchez...",minimum:"La valeur doit être supérieure ou égale à {minimum}",exclusiveMinimum:"La valeur doit être supérieure {exclusiveMinimum}",maximum:"La valeur doit être inférieure ou égale à {maximum}",exclusiveMaximum:"La valeur doit être inférieure à {exclusiveMaximum}",minLength:"{minLength} caractères minimum",maxLength:"{maxLength} caractères maximum",minItems:"Au moins {minItems} éléments",maxItems:"Au plus {maxItems} éléments",pattern:"Le format attendu n'est pas respecté",mdeLink1:"[titre du lien",mdeLink2:"](adresse du lien)",mdeImg1:"![](",mdeImg2:"adresse de l'image)",mdeTable1:"",mdeTable2:"\n\n| Colonne 1 | Colonne 2 | Colonne 3 |\n| -------- | -------- | -------- |\n| Texte | Texte | Texte |\n\n",bold:"Gras",italic:"Italique",heading:"Titre",quote:"Citation",unorderedList:"Liste à puce",orderedList:"Liste numérotée",createLink:"Créer un lien",insertImage:"Insérer une image",createTable:"Créer un tableau",preview:"Preview",mdeGuide:"Syntax documentation",undo:"Défaire",redo:"Refaire",selectAll:"Tout sélectionner",stepperContinue:"continuer",openMenu:"ouvrir le menu",delete:"supprimer",duplicate:"dupliquer",copy:"copier",paste:"coller"},es:{required:"Esta información es requerida",noData:"No se encontraron valores coincidentes",search:"Buscar...",minimum:"El valor debe ser mayor o igual que {minimum}",exclusiveMinimum:"El valor debe ser mayor que {exclusiveMinimum}",maximum:"El valor debe ser menor o igual a {maximum}",exclusiveMaximum:"El valor debe ser inferior a {exclusiveMaximum}",minLength:"{minLength} caracteres mínimo",maxLength:"{maxLength} caractères máximo",minItems:"Al menos {minItems} articulos",maxItems:"Hasta {maxItems} articulos",pattern:"El formato esperado no se respeta",selectAll:"Seleccionar todo",stepperContinue:"continuar"},de:{required:"Diese Informationen sind erforderlich",noData:"Keine passenden Artikel",search:"Suche...",minimum:"Der Wert muss größer oder gleich {minimum} sein",exclusiveMinimum:"Der Wert muss größer als {exclusiveMinimum} sein",maximum:"Der Wert muss kleiner oder gleich {maximum} sein",exclusiveMaximum:"Der Wert muss kleiner als {exclusiveMaximum} sein",minLength:"Mindestens {minLength} Zeichen",maxLength:"Maximal {maxLength} Zeichen",minItems:"Mindestens {minItems} Elemente",maxItems:"Bis zu {maxItems} Artikel",pattern:"Das erwartete Format wird nicht eingehalten",selectAll:"Wählen Sie Alle",stepperContinue:"weiter"},ar:{required:"هذه المعلومة مطلوبة",noData:"لم يتم العثور على قيمة",search:"جاري البحث...",minimum:"{exclusiveMinimum} القيمة يجب أن تكون أكبر من",exclusiveMinimum:"{exclusiveMinimum} القيمة يجب أن تكون أكبر من",maximum:"{maximum} القيمة يجب أن تكون أقل من",exclusiveMaximum:"{exclusiveMaximum} القيمة يجب أن تكون أقل من",minLength:"{minLength} الحد الأدنى للحروف المطلوبة هو",maxLength:"{maxLength} الحد الأقصى للحروف المطلوبة هو",minItems:"قطع {minItems} لا يمكن اختيار أقل من ",maxItems:"قطع {maxItems} لا يمكن اختيار أكثر من ",pattern:"لا يوجد تشابه مع النموذج المطلوب",selectAll:"اختر الكل",stepperContinue:"استمر"},tr:{required:"Zorunlu alan",noData:"Bilgi yok",search:"Arıyor...",minimum:"Değer {minimum} dan büyük olmalı",exclusiveMinimum:"Değer {exclusiveMinimum} dan büyük olmalı",maximum:"Değer, {maximum} değerinden küçük veya ona eşit olmalıdır",exclusiveMaximum:"Değer {exclusiveMaximum} dan küçük olmalı",minLength:"{minLength} asgari karakter sayısı",maxLength:"{maxLength} azami karakter sayısı",minItems:"En az seçenek sayısı {minItems}",maxItems:"En çok seçenek sayısı {maxItems}",pattern:"İstenilen paten tutmuyor",selectAll:"Hepsini seç",stepperContinue:"devam et"},nl:{required:"Deze informatie is vereist",noData:"Geen overeenkomstig resultaat gevonden",search:"Zoeken...",minimum:"De waarde moet groter zijn dan of gelijk zijn aan {minimum}",exclusiveMinimum:"Waarde moet meer zijn dan {exclusiveMinimum}",maximum:"De waarde moet lager zijn dan of gelijk zijn aan {maximum}",exclusiveMaximum:"Waarde moet minder zijn dan {exclusiveMaximum}",minLength:"Minimaal {minLength} tekens",maxLength:"Maximaal {maxLength} tekens",minItems:"Minimaal {minItems} antwoorden",maxItems:"Maximaal {maxItems} antwoorden",pattern:"Invoer voldoet niet aan verwachte patroon",selectAll:"Selecteer alles",stepperContinue:"doorgaan"},ja:{required:"この情報は必須です。",noData:"一致する値はありません。",search:"検索...",minimum:"値は{minimum}以上である必要があります。",exclusiveMinimum:"値は{exclusiveMinimum}より大きい必要があります。",maximum:"値は{maximum}以下である必要があります。",exclusiveMaximum:"値は{exclusiveMaximum}より小さい必要があります。",minLength:"最小文字数は{minLength}です。",maxLength:"最大文字数は{maxLength}です。",minItems:"最小項目数は{minItems}です。",maxItems:"最大項目数は{maxItems}です。",pattern:"期待される様式を満たしていません。",mdeTable2:"\n\n| Column 1 | Column 2 | ColoColumnnne 3 |\n| -------- | -------- | -------- |\n| Text | Text | Text |\n\n",bold:"太字",italic:"イタリック",heading:"タイトル",quote:"引用",unorderedList:"順序なしリスト",orderedList:"順序付きリスト",createLink:"リンクを生成",insertImage:"画像を挿入",createTable:"テーブル作成",preview:"プレビュー",mdeGuide:"構文に関するドキュメント",undo:"元に戻す",redo:"やり直し",selectAll:"全選択",stepperContinue:"コンティニュー",openMenu:"メニューを開く",delete:"削除",duplicate:"重複",copy:"コーピー",paste:"ペースト"}},A={time:(e,t)=>{const r=new Date(`${(new Date).toISOString().split("T")[0]}T${e}`);return new Date(r.getTime()+6e4*r.getTimezoneOffset()).toLocaleTimeString(t)},date:(e,t)=>{const r=new Date(e);return new Date(r.getTime()+6e4*r.getTimezoneOffset()).toLocaleDateString(t)},"date-time":(e,t)=>new Date(e).toLocaleString(t)},C={mdiSvg:{calendar:m,clock:g,info:k,add:S,edit:x,delete:w,arrayMenu:_,duplicate:y,copy:v,paste:b},mdi:{calendar:"mdi-calendar",clock:"mdi-clock",info:"mdi-information",add:"mdi-plus",edit:"mdi-pencil",delete:"mdi-delete",arrayMenu:"mdi-dots-vertical",duplicate:"mdi-plus-circle-multiple-outline",copy:"mdi-content-copy",paste:"mdi-content-paste"},md:{calendar:"event",clock:"clock",info:"info",add:"add",edit:"create",delete:"delete",arrayMenu:"more_vert",duplicate:"control_point_duplicate",copy:"copy",paste:"paste"},fa:{calendar:"fa-calendar",clock:"fa-clock",info:"fa-info",add:"fa-plus",edit:"fa-edit",delete:"fa-trash",arrayMenu:"fa-ellipsis-vertical",duplicate:"fa-layer-plus",copy:"fa-copy",paste:"fa-paste"}},$=(e,t,r,i,n)=>{const o=[];if(i&&o.push((e=>void 0!==e&&null!==e&&""!==e||r.messages.required)),"array"===t.type&&void 0!==t.minItems){const e=r.messages.minItems.replace("{minItems}",t.minItems.toLocaleString(r.locale));o.push((r=>!r||r.length>=t.minItems||e))}if("array"===t.type&&void 0!==t.maxItems){const e=r.messages.maxItems.replace("{maxItems}",t.maxItems.toLocaleString(r.locale));o.push((r=>!r||r.length<=t.maxItems||e))}if("string"===t.type&&void 0!==t.minLength){const e=r.messages.minLength.replace("{minLength}",t.minLength.toLocaleString(r.locale));o.push((r=>void 0===r||null===r||!i&&""===r||r.length>=t.minLength||e))}if("string"===t.type&&void 0!==t.maxLength){const e=r.messages.maxLength.replace("{maxLength}",t.maxLength.toLocaleString(r.locale));o.push((r=>void 0===r||null===r||r.length<=t.maxLength||e))}if("string"===t.type&&void 0!==t.patternRegexp){const e=r.messages.pattern.replace("{pattern}",t.pattern);o.push((r=>void 0===r||null===r||""===r||!!r.match(t.patternRegexp)||e))}if(["number","integer"].includes(t.type)&&void 0!==t.maximum){const e=r.messages.maximum.replace("{maximum}",t.maximum.toLocaleString(r.locale));o.push((r=>void 0===r||null===r||r<=t.maximum||e))}if(["number","integer"].includes(t.type)&&void 0!==t.exclusiveMaximum){const e=r.messages.exclusiveMaximum.replace("{exclusiveMaximum}",t.exclusiveMaximum.toLocaleString(r.locale));o.push((r=>void 0===r||null===r||rvoid 0===r||null===r||r>=t.minimum||e))}if(["number","integer"].includes(t.type)&&void 0!==t.exclusiveMinimum){const e=r.messages.exclusiveMinimum.replace("{exclusiveMinimum}",t.exclusiveMinimum.toLocaleString(r.locale));o.push((r=>void 0===r||null===r||r>t.exclusiveMinimum||e))}t.enum&&o.push((e=>void 0===e||null===e||!!t.enum.find((t=>(0,s.deepEqual)(t,e)))||"")),"array"===t.type&&t.items.enum&&o.push((e=>void 0===e||null===e||!e.find((e=>!t.items.enum.find((t=>(0,s.deepEqual)(t,e)))))||"")),n&&"array"!==t.type&&o.push((e=>void 0===e||null===e||!!t.oneOf.find((t=>(0,s.deepEqual)(t.const,e)))||"")),n&&"array"===t.type&&o.push((e=>void 0===e||null===e||!e.find((e=>!t.items.oneOf.find((t=>(0,s.deepEqual)(t.const,e)))))||"")),r.validator&&r.useValidator&&o.push(O(e,r.validator));const a=(t["x-rules"]||[]).map((e=>{if("string"===typeof e){const t=r.rules&&r.rules[e];return t||console.error(`rule ${e} is referenced but not define in options`),t}console.error("rule should be a string, received "+typeof e)})).filter((e=>!!e));return o.concat(a)},O=(e,t,r)=>{const i=t(e);return e=>{if(null===e||void 0===e)return!0;const t=i(e);return!t||t}};var P={data(){return{currentOneOf:null,currentTab:null,showCurrentOneOf:!0,subModels:{},currentStep:1,steps:[]}},computed:{isObjectContainer(){if(this.fullSchema)return!("object"!==this.fullSchema.type&&!Array.isArray(this.fullSchema.items))&&(!this.isSelectProp&&!this.isFileProp)},subSchemas(){if(this.fullSchema)return this.fullSchema.oneOf||this.fullSchema.anyOf},subSchemasConstProp(){if(!this.subSchemas)return;const e=this.subSchemas[0].properties,t=Object.keys(e).find((t=>!!e[t].const));return t?{...e[t],key:t,htmlDescription:this.fullOptions.memMarkdown(e[t].description)}:void 0},subSchemasRequired(){return!(!this.subSchemas||!this.subSchemasConstProp)&&(!!this.fullSchema.oneOf||(!!(this.fullSchema.anyOf&&this.fullSchema.required&&this.fullSchema.required.find((e=>e===this.oneOfConstProp.key)))||void 0))},subSchemasRules(){if(!this.fullSchema)return;const e=[];return this.subSchemasRequired&&e.push((e=>void 0!==e&&null!==e&&""!==e||this.fullOptions.messages.required)),e}},watch:{currentOneOf(e,t){this.showCurrentOneOf=!1,this.$nextTick((()=>{this.showCurrentOneOf=!0,this.currentOneOf?this.input(this.fixProperties(this.value),!1,!1):this.$set(this.subModels,"currentOneOf",{}),this.triggerChangeCurrentOneOf&&this.$nextTick((()=>{this.triggerChangeCurrentOneOf=!1,this.change()}))}))},subModels:{handler(){this.input(this.fixProperties(this.value),!1,!1)},deep:!0}},methods:{isSection(e,t){return!!e&&(!!e.title&&(!(e["x-fromUrl"]||e["x-fromData"]||e["contentMediaType"]||"file"===e["x-display"])&&(!!e.allOf||(!(!t||!e.anyOf&&!e.oneOf)||!(!e.properties&&!Array.isArray(e.items))))))},initObjectContainer(e){"object"===this.fullSchema.type&&(this.fullSchema.allOf&&this.fullSchema.allOf.forEach(((t,r)=>{this.$set(this.subModels,"allOf-"+r,n()(e))})),this.currentOneOf=null,this.subSchemas&&!this.currentOneOf&&this.subSchemasConstProp&&(e&&e[this.subSchemasConstProp.key]?this.currentOneOf=this.subSchemas.find((t=>t.properties[this.subSchemasConstProp.key].const===e[this.subSchemasConstProp.key])):this.fullSchema.default&&(this.currentOneOf=this.subSchemas.find((e=>e.properties[this.subSchemasConstProp.key].const===this.fullSchema.default[this.subSchemasConstProp.key])))),this.currentOneOf?this.$set(this.subModels,"currentOneOf",n()(e)):this.$set(this.subModels,"currentOneOf",{}))},renderStepperStep(e,t,r,i,n,s){if(!i)return;const o=r||t.key,a=this.dedupChildrenWithValidatedErrors.includes(o),l={step:n,editable:n!a]};return[e("v-stepper-step",{props:l},[t.title]),s?null:e("v-divider")]},renderSection(e,t,r,i,n,s){if(!i)return;const o=r||t.key,a="section-"+o;return"hidden"===t["x-display"]||t.readOnly&&this.fullOptions.hideReadOnly?[i]:"expansion-panels"===this.display?[e("v-expansion-panel",{key:a},[e("v-expansion-panel-header",{class:{"error--text":this.dedupChildrenWithValidatedErrors.includes(o)}},[t.title]),e("v-expansion-panel-content",{props:{eager:!0}},[i])])]:"tabs"===this.display?[e("v-tab",{key:a,props:{href:`#tab-${this.fullOptions.idPrefix}${this.dashKey}-${o}`}},[e("span",{class:{"error--text":this.dedupChildrenWithValidatedErrors.includes(o)}},[t.title])]),e("v-tab-item",{key:a,props:{value:`tab-${this.fullOptions.idPrefix}${this.dashKey}-${o}`,eager:!0}},[e("v-card",{props:{tile:!0,flat:!0}},[e("v-card-text",[i])])])]:"stepper"===this.display||"vertical-stepper"===this.display?[e("v-stepper-content",{key:a,props:{step:n,eager:!0}},[e("v-card",{props:{tile:!0,flat:!0}},[e("v-card-text",{class:{"pa-0":!0}},[i]),s?null:e("v-card-actions",{class:{"px-0":!0}},[e("v-btn",{props:{color:"primary"},on:{click:()=>{i.componentInstance.validate(!0)&&(this.currentStep+=1)}}},this.fullOptions.messages.stepperContinue)])])])]:void 0},renderChildProp(e,t,r,i,s,o){let a;this.objectContainerChildrenCount+=1,a=r?this.subModels:Array.isArray(this.value)?[...this.value]:{...this.value};const l=r||t.key;let u=a[l];return u=this.fixValueType(u,t),void 0===u&&(u=this.defaultValue(t),void 0!==t.default&&(u=n()(t.default)),void 0!==u&&null!==u&&(this.$set(a,l,u),r||this.input(a,!1,!1))),e("v-jsf",{props:{schema:{readOnly:this.fullSchema.readOnly,...t},value:u,modelRoot:this.modelRoot||this.value,modelKey:l,parentKey:`${this.fullKey}.`,required:s||!(!this.fullSchema.required||!this.fullSchema.required.includes(t.key)),options:{...this.fullOptions,autofocus:this.fullOptions.autofocus&&1===this.objectContainerChildrenCount},optionsRoot:this.initialOptions,sectionDepth:i,sharedData:this.sharedData,showSectionTitle:o},class:this.fullOptions.childrenClass,scopedSlots:this.childScopedSlots(l),key:l,on:{error:e=>this.$emit("error",e),input:e=>{void 0===e?Array.isArray(a)&&parseInt(l)this.change(!1)}},this.childSlots(e,t.key))},renderObjectContainer(e){if(!this.isObjectContainer)return;if([void 0,null].includes(this.value))return[];const t=[];this.objectContainerChildrenCount=0;const r=[];this.fullSchema.properties&&this.fullSchema.properties.forEach((i=>{this.isSection(i)?r.push({schema:i,subModelKey:null,forceRequired:!1}):t.push(this.renderChildProp(e,i,null,this.sectionDepth,!1,!1))})),Array.isArray(this.fullSchema.items)&&this.fullSchema.items.forEach(((i,n)=>{const s=this.value.length>n||this.fullSchema.minItems&&this.fullSchema.minItems>n;this.isSection(i)?r.push({schema:i,subModelKey:null,forceRequired:s}):t.push(this.renderChildProp(e,i,null,this.sectionDepth,s,!1))})),this.fullSchema.allOf&&this.fullSchema.allOf.forEach(((i,n)=>{const s={...i,type:"object",key:""+n};this.isSection(i,!0)?r.push({schema:s,subModelKey:"allOf-"+n,forceRequired:!1}):t.push(this.renderChildProp(e,s,"allOf-"+n,this.sectionDepth,!1,!1))}));let i=[],n=[];if(r.forEach(((t,s)=>{const o=!["expansion-panels","tabs","stepper","vertical-stepper"].includes(this.display),a=this.renderChildProp(e,t.schema,t.subModelKey,this.sectionDepth+1,t.forceRequired,o);o?i.push(a):i=i.concat(this.renderSection(e,t.schema,t.subModelKey,a,s+1,s===r.length-1)),"stepper"!==this.display&&"vertical-stepper"!==this.display||(n=n.concat(this.renderStepperStep(e,t.schema,t.subModelKey,a,s+1,s===r.length-1)))})),"expansion-panels"===this.display&&i.length){const t={...this.fullOptions.expansionPanelsProps,...this.fullSchema["x-props"]};i=[e("v-expansion-panels",{props:t},i)]}if("tabs"===this.display&&i.length){const t={...this.fullOptions.tabsProps,...this.fullSchema["x-props"]};this.currentTab&&this.dedupChildrenWithValidatedErrors.includes(this.currentTab)&&(t.sliderColor="error"),i=[e("v-tabs",{props:t,on:{change:e=>{this.currentTab=e.split("-").pop()}}},i)]}if("stepper"===this.display&&i.length){const t={...this.fullOptions.stepperProps,...this.fullSchema["x-props"],value:this.currentStep};i=[e("v-stepper",{props:t,style:"width: 100%;",on:{change:e=>{this.currentStep=e}}},[e("v-stepper-header",{},n),e("v-stepper-items",{},i)])]}if("vertical-stepper"===this.display&&i.length){const t={...this.fullOptions.verticalStepperProps,...this.fullSchema["x-props"],vertical:!0,value:this.currentStep},r=[];for(let e=0;e{this.currentStep=e}}},r)]}if(this.subSchemas&&this.subSchemas.length){const r={...this.commonFieldProps,...this.subSchemasConstProp&&this.subSchemasConstProp["x-props"]||{},disabled:this.disabled||this.subSchemasConstProp&&this.subSchemasConstProp.readOnly,value:this.currentOneOf,label:this.subSchemasConstProp&&this.subSchemasConstProp.title||this.fullSchema.title,items:this.subSchemas.filter((e=>!e["x-if"]||!!this.getFromExpr(e["x-if"]))).filter((e=>e.properties&&e.properties[this.subSchemasConstProp.key])),required:this.subSchemasRequired,clearable:!this.subSchemasRequired,itemValue:e=>e.properties[this.subSchemasConstProp.key].const,itemText:e=>e.title||e.properties[this.subSchemasConstProp.key].const,rules:this.subSchemasRules,returnObject:!0},i={input:e=>{this.currentOneOf=e,this.triggerChangeCurrentOneOf=!0}};t.push(e("v-select",{props:r,on:i,style:this.subSchemasConstProp&&this.subSchemasConstProp["x-style"]||""},[this.renderTooltip(e,"append-outer")])),this.currentOneOf&&this.showCurrentOneOf&&t.push(this.renderChildProp(e,{...this.currentOneOf,type:"object",title:null},"currentOneOf",this.sectionDepth+1))}return[e("v-row",{class:`ma-0 ${this.fullOptions.objectContainerClass}`},[this.showSectionTitle&&e("v-col",{props:{cols:12},class:"pa-0"},[e("span",{class:"py-2 "+(this.fullOptions.sectionsTitlesClasses[this.sectionDepth-1]||this.fullOptions.sectionsTitlesClasses[this.fullOptions.sectionsTitlesClasses.length-1])},[`${this.fullSchema.title} `])]),this.localRuleError&&!this.dedupChildrenWithValidatedErrors.length&&e("v-col",{props:{cols:12},class:{"px-0":!0,"error--text":!0}},this.localRuleError),this.fullSchema.description&&!this.subSchemasConstProp&&e("v-col",{props:{cols:12},class:{"pa-0":!0},domProps:{innerHTML:this.htmlDescription}})].concat(t).concat(i))]},childSlots(e,t){return Object.keys(this.$slots).filter((e=>e.startsWith(`${t}.`)||e.startsWith(`${t}-`))).map((r=>{const i=r.startsWith(`${t}.`)?r.replace(`${t}.`,""):r.replace(`${t}-`,"");return e("template",{slot:i},this.$slots[r])}))},childScopedSlots(e){return Object.keys(this.$scopedSlots).filter((t=>t.startsWith("custom-")||t.startsWith(`${e}.`)||t.startsWith(`${e}-`)||t===e)).reduce(((t,r)=>{let i="default";return r.startsWith(`${e}.`)&&(i=r.replace(`${e}.`,"")),r.startsWith(`${e}-`)&&(i=r.replace(`${e}-`,"")),r.startsWith("custom-")&&(i=r),t[i]=this.$scopedSlots[r],t}),{})}}};const T=e=>{const t=""+e;return 1===t.length?"0"+t:t},I=e=>{const t=e.getTimezoneOffset(),r=`${T(parseInt(Math.abs(t/60)))}:${T(Math.abs(t%60))}`;let i;return i=t<0?`+${r}`:t>0?`-${r}`:"Z",`${e.getFullYear()}-${T(e.getMonth()+1)}-${T(e.getDate())}T${T(e.getHours())}:${T(e.getMinutes())}:${T(e.getSeconds())}${i}`},D=e=>[`${e.getFullYear()}-${T(e.getMonth()+1)}-${T(e.getDate())}`,`${T(e.getHours())}:${T(e.getMinutes())}`],L=e=>{const t=new Date,r=e[0].split("-");t.setFullYear(Number(r[0])),t.setMonth(Number(r[1])-1),t.setDate(Number(r[2]));const i=e[1].split(":");return t.setHours(Number(i[0]||"00")),t.setMinutes(Number(i[1]||"00")),t.setSeconds(0),I(t)},N=e=>e?e.slice(0,5):"",R=e=>e+":00Z";var j={data(){return{dateProp:{tab:"tab-date",menu:!1,parts:[null,null],lastValue:null}}},methods:{renderDateProp(e){if("string"!==this.fullSchema.type||!["date","date-time","time"].includes(this.fullSchema.format))return;let t,r=this.fullOptions.icons.calendar;if("time"===this.fullSchema.format)t=e("v-time-picker",{props:{...this.fullOptions.timePickerProps,locale:this.fullOptions.locale,value:N(this.value)},on:{input:e=>this.input(R(e)),change:()=>this.change()}}),r=this.fullOptions.icons.clock;else if("date"===this.fullSchema.format)t=e("v-date-picker",{props:{...this.fullOptions.datePickerProps,locale:this.fullOptions.locale,value:this.value},on:{input:e=>{this.input(e),this.dateProp.menu=!1},change:()=>this.change()}});else{this.value!==this.dateProp.lastValue&&(this.dateProp.parts=D(new Date(this.value))),this.dateProp.lastValue=this.value;const r=()=>{if(this.dateProp.parts[1]){const e=L(this.dateProp.parts);this.input(e),this.change()}},i=[e("v-tab",{props:{href:"#tab-date"}},[e("v-icon",[this.fullOptions.icons.calendar])]),e("v-tab",{props:{href:"#tab-time",disabled:!this.dateProp.parts[0]}},[e("v-icon",[this.fullOptions.icons.clock])]),e("v-tab-item",{props:{value:"tab-date"}},[e("v-date-picker",{props:{...this.fullOptions.datePickerProps,locale:this.fullOptions.locale,value:this.dateProp.parts[0]},on:{input:e=>{this.dateProp.parts[0]=e,this.dateProp.tab="tab-time",r()}}})]),e("v-tab-item",{props:{value:"tab-time"}},[e("v-time-picker",{props:{...this.fullOptions.timePickerProps,locale:this.fullOptions.locale,value:this.dateProp.parts[1]},on:{input:e=>{this.dateProp.parts[1]=e,r()}}})])];t=e("v-tabs",{props:{grow:!0,value:this.dateProp.tab},on:{input:e=>{this.dateProp.tab=e}},class:"vjsf-date-time"},i)}const i={};return i.activator=({on:t})=>e("v-text-field",{props:{...this.commonFieldProps,value:this.formattedValue,clearable:!this.required,readonly:!0,prependIcon:r},on:{...t,input:e=>this.input(e),change:e=>this.change()}},[this.renderTooltip(e,"append-outer")]),[e("v-menu",{scopedSlots:i,props:{value:this.dateProp.menu,disabled:this.disabled,closeOnContentClick:!1,nudgeRight:40,transition:"scale-transition",offsetY:!0,fullWidth:!0,minWidth:"290px"},on:{input:e=>{this.dateProp.menu=e,this.dateProp.tab="tab-date"}}},[t])]}}},B={computed:{isSimpleProp(){return"string"===this.fullSchema.type||["number","integer"].includes(this.fullSchema.type)||"boolean"===this.fullSchema.type||"array"===this.fullSchema.type&&this.fullSchema.items&&["string","number","integer"].includes(this.fullSchema.items.type)}},methods:{parseNumber(e,t){return t+="",t?"-"===t?null:"integer"===this.fullSchema.type?parseInt(t,10):parseFloat(t):null},renderSimpleProp(e){if(!this.isSimpleProp)return;let t;const r={...this.commonFieldProps},i={},n={},s=[...this.renderPropSlots(e)],o={input:e=>this.input(e),change:e=>this.change()},a={};let l="append-outer";if("string"!==this.fullSchema.type||this.separator||("textarea"===this.display||this.fullSchema.maxLength&&this.fullSchema.maxLength>1e3&&"single-line"!==this.display?(t="v-textarea",Object.assign(r,this.fullOptions.textareaProps),i.class="v-text-field--box v-text-field--enclosed"):(t="v-text-field",Object.assign(r,this.fullOptions.textFieldProps),"password"===this.display&&(r.type="password",n.autocomplete="new-password")),this.fullOptions.maxLengthCounter&&this.fullSchema.maxLength&&(r.counter=this.fullSchema.maxLength)),"string"===this.fullSchema.type&&this.separator&&(t="v-combobox",Object.assign(r,this.fullOptions.comboboxProps),r.chips=!0,r.multiple=!0,r.appendIcon="",r.type="string",r.validateOnBlur=!0,a.selection=t=>{const r=()=>{const e=this.value?this.value.split(this.separator):[];e.splice(t.index,1),this.input(e),this.change()};return e("v-chip",{props:{close:!0},on:{"click:close":r}},t.item)}),["number","integer"].includes(this.fullSchema.type)&&("slider"===this.display?(t="v-slider",Object.assign(r,this.fullOptions.sliderProps)):(t="v-text-field",Object.assign(r,this.fullOptions.textFieldProps),Object.assign(r,this.fullOptions.numberProps)),r.type="number",void 0!==this.fullSchema.minimum&&(r.min=this.fullSchema.minimum),void 0!==this.fullSchema.maximum&&(r.max=this.fullSchema.maximum),r.step=this.fullSchema["x-step"]||("integer"===this.fullSchema.type?1:.01),o.input=e=>this.input(this.parseNumber(this.fullSchema.type,e))),"boolean"===this.fullSchema.type&&(l="append","switch"===this.display?(t="v-switch",Object.assign(r,this.fullOptions.switchProps)):(t="v-checkbox",Object.assign(r,this.fullOptions.checkboxProps)),o.change=e=>{this.input(e||!1),this.change()}),"array"===this.fullSchema.type&&["string","number","integer"].includes(this.fullSchema.items.type)){t="v-combobox",Object.assign(r,this.fullOptions.comboboxProps),r.chips=!0,r.multiple=!0,r.appendIcon="",r.type="string",r.validateOnBlur=!0;const i=$(this.fullSchema.items,h.prepareFullSchema(this.fullSchema.items,null,this.fullOptions),this.fullOptions);r.rules=r.rules.concat([e=>{const t=e.map((e=>{const t=i.find((t=>"string"===typeof t(e)));return t&&t(e)})),r=t.find((e=>!!e));return r||!0}]),"string"!==this.fullSchema.items.type&&(r.type="number",o.input=e=>{const t=e.map((e=>this.parseNumber(this.fullSchema.items.type,e))).filter((e=>!isNaN(e)));this.input(t)}),a.selection=t=>{const r=()=>{const e=[...this.value];e.splice(t.index,1),this.input(e),this.change()},n=i.find((e=>"string"===typeof e(t.item)));return e("v-chip",{props:{close:!0,color:n?"error":"default"},on:{"click:close":r}},t.item)}}return this.htmlDescription&&s.push(this.renderTooltip(e,l)),t=this.customTag?this.customTag:t,t?[e(t,{props:r,domProps:i,attrs:n,on:o,scopedSlots:a,directives:this.directives},s)]:null}}};const F=e=>new Promise((t=>{const r=new FileReader;r.onload=()=>t(r.result),r.readAsDataURL(e)})),z=async(e,t,r)=>{let i=e;if("string"===t.type||t.properties&&t.properties.data&&"string"===t.properties.data.type){const t=await F(e);i=r?t:t.split(";base64,")[1]}return"string"===t.type?i:{name:e.name,lastModified:new Date(e.lastModified).toISOString(),size:e.size,type:e.type,data:i}};var V={computed:{isFileProp(){if(this.fullSchema)return!("string"!==this.fullSchema.type||!this.fullSchema.contentMediaType&&"file"!==this.display)||(!("array"!==this.fullSchema.type||!this.fullSchema.items||"string"!==this.fullSchema.items.type||!this.fullSchema.items.contentMediaType&&"file"!==this.display&&"file"!==this.fullSchema.items["x-display"])||(!("object"!==this.fullSchema.type||!this.fullSchema.contentMediaType&&"file"!==this.display)||!("array"!==this.fullSchema.type||!this.fullSchema.items||"object"!==this.fullSchema.items.type||!this.fullSchema.items.contentMediaType&&"file"!==this.display&&"file"!==this.fullSchema.items["x-display"])))}},watch:{isFileProp(){this.isFileProp&&!this.fullSchema.writeOnly&&console.warn("File property should always be used with writeOnly attribute. Files are uploaded but not read in existing data.")}},methods:{renderFileProp(e){if(!this.isFileProp)return;const t={...this.commonFieldProps,...this.fullOptions.fileInputProps};delete t.value,this.value&&this.value.name&&(t.placeholder=this.value.name,t.persistentPlaceholder=!0);const r={};this.fullSchema.contentMediaType&&(r.accept=this.fullSchema.contentMediaType),this.fullSchema.items&&this.fullSchema.items.contentMediaType&&(r.accept=this.fullSchema.items.contentMediaType),"array"===this.fullSchema.type&&(r.multiple=!0);const i=[...this.renderPropSlots(e)],n={change:async e=>{if("array"===this.fullSchema.type){const t=await Promise.all(e.map((e=>z(e,this.fullSchema.items,this.fullOptions.filesAsDataUrl))));this.input(t),this.change()}else{const t=await z(e,this.resolvedSchema,this.fullOptions.filesAsDataUrl);this.input(t),this.change()}}};return this.htmlDescription&&i.push(this.renderTooltip(e,"append-outer")),[e("v-file-input",{props:t,attrs:r,on:n,scopedSlots:this.$scopedSlots},i)]}}},q={computed:{isColorProp(){return"string"===this.resolvedSchema.type&&("hexcolor"===this.resolvedSchema.format||"color-picker"===this.display)}},methods:{renderColorProp(e){if(!this.isColorProp)return;const t=[this.renderTooltip(e,"append")];return t.push(e("v-menu",{props:{closeOnContentClick:!1,closeOneClick:!0,direction:"bottom",offsetY:!0},scopedSlots:{activator:({on:t})=>e("div",{on:t,style:`background-color: ${this.value};margin-left: 10px;`,class:this.value?"color-picker-trigger":"color-picker-trigger color-picker-trigger-empty"}),default:()=>e("v-color-picker",{props:{flat:!0,...this.fullOptions.colorPickerProps,...this.fullSchema["x-props"],value:this.value||""},on:{input:e=>{this.input(e),this.change()}}})}})),[e("v-input",{props:{value:this.value,name:this.fullKey,label:this.label,required:this.required,rules:this.rules,disabled:this.disabled,...this.fullOptions.fieldProps}},t)]}}};const U={};var H=U;U.fetchRawItems=async(e,t,r,i)=>{const n=r.replace("{q}",encodeURIComponent(i||"")),s=await e.httpLib.get(n,e.httpOptions),o=s.data||s.body,a=t["x-itemsProp"]?o[t["x-itemsProp"]]:o;if(!Array.isArray(a))throw new Error(`Result of http fetch ${n} is not an array`);return a},U.getSelectItems=(e,t,r,i)=>{const n=[];if(e)if("object"===t.type&&t.properties&&Object.keys(t.properties).length||"array"===t.type&&t.items&&"object"===t.items.type&&t.items.properties&&Object.keys(t.items.properties).length){const r=t.properties?t.properties.map((e=>e.key)):Object.keys(t.items.properties);e.forEach((e=>{const i={};r.forEach((r=>{const n=t.properties?t.properties.find((e=>e.key===r)):t.items.properties[r];void 0!==e[r]&&(i[r]=e[r],"string"===n.type&&(i[r]=""+i[r])),"default"in n&&r in i&&(i[r]=n.default),"const"in n&&(i[r]=n.const)})),n.push(i)}))}else e.forEach((e=>{if("object"===typeof e)n.push(e);else{const t={[r]:e};i&&(t[i]=e),n.push(t)}}));else;return n};const W=(e,t,r)=>![null,void 0].includes(e)&&(![null,void 0].includes(t)&&(0,s.deepEqual)(e[r],t[r])),K=[],Y=async(e,t,r,i,n)=>{const o=K.find((e=>(0,s.deepEqual)(e.key,[r,i,n])));if(o)return o.result||n;const a=await U.fetchRawItems(e,t,i,n[r]),l=a.find((e=>W(e,n,r)));return K.push({key:[r,i,n],result:l}),l||n};U.fillSelectItems=async(e,t,r,i,n,s,o,a)=>{if(r)if(Array.isArray(r))for(let l of r.map((e=>e)).reverse())a||(l={[n]:l}),i.find((e=>W(e,l,n)))||(!a&&o&&(l=await Y(e,t,n,o,l)),i.push(l));else a||(r={[n]:r}),i.find((e=>W(e,r,n)))||(!a&&o&&(r=await Y(e,t,n,o,r)),i.push(r))},U.fillList=(e,t,r,i)=>{if(t)return r.length?(t=[...t],r.forEach((e=>{t.find((t=>W(e,t,i)))||t.push(e)})),t.forEach(((e,n)=>{r.find((t=>W(t,e,i)))||(t[n]=null)})),t.filter((e=>!!e))):[]},U.isOneOfSelect=e=>{if(e)return!("array"!==e.type||!e.items||!["string","integer","number"].includes(e.items.type)||!e.items.oneOf&&!e.items.anyOf)||(!!(["string","integer","number"].includes(e.type)&&e.oneOf&&e.oneOf[0]&&void 0!==e.oneOf[0].const)||!!(["string","integer","number"].includes(e.type)&&e.anyOf&&e.anyOf[0]&&void 0!==e.anyOf[0].const))},U.getObjectTitle=(e,t,r)=>{if(!t)return null;const i=r.items&&r.items.properties&&r.items.properties[t];if(i){const r=U.isOneOfSelect(i);if(r){const r=i.anyOf||i.oneOf,n=r.find((r=>r.const===e[t]||r.enum&&r.enum[0]===e[t]));if(n)return n.title}}if(r.items&&(r.items.oneOf||r.items.anyOf)){const i=r.items.oneOf||r.items.anyOf,n=i[0].properties,s=Object.keys(n).find((e=>"const"in n[e])),o=i.find((r=>r.properties[s].const===e[t]));if(o)return o.title}return e[t]};var G=r(32900),Z=r.n(G),J=r(76459),X=r.n(J),Q={data(){return{rawSelectItems:null,selectItems:[],q:"",fromUrlParams:{}}},computed:{isSelectProp(){if(this.fullSchema)return"list"!==this.display&&(!!this.fullSchema.enum||(!("array"!==this.fullSchema.type||!this.fullSchema.items||!this.fullSchema.items.enum)||(!!this.oneOfSelect||(!!this.examplesSelect||(!!this.fullSchema["x-fromUrl"]||!!this.fromData)))))},oneOfSelect(){return H.isOneOfSelect(this.fullSchema)},examplesSelect(){if(this.fullSchema)return!!("array"===this.fullSchema.type&&this.fullSchema.items&&["string","integer","number"].includes(this.fullSchema.items.type)&&this.fullSchema.items.examples)||!(!["string","integer","number"].includes(this.fullSchema.type)||!this.fullSchema.examples)},fromUrlWithQuery(){if(this.fullSchema)return!(!this.fullSchema["x-fromUrl"]||-1===this.fullSchema["x-fromUrl"].indexOf("{q}"))},fromUrlKeys(){if(this.fullSchema)return this.fullSchema["x-fromUrl"]?Z()(this.fullSchema["x-fromUrl"],/\{(.*?)\}/g).toArray().filter((e=>"q"!==e)):null},fromUrl(){if(!this.fullSchema)return;let e=this.fullSchema["x-fromUrl"];if(e){for(const t of this.fromUrlKeys){if(void 0===this.fromUrlParams[t])return;e=e.replace(`{${t}}`,this.fromUrlParams[t])}return e}},fromData(){if(this.fullSchema)return this.fullSchema["x-fromData"]},itemKey(){if(this.fullSchema)return this.fullSchema["x-itemKey"]||"key"},itemTitle(){if(this.fullSchema)return this.fullSchema["x-itemTitle"]||"title"},itemIcon(){if(this.fullSchema)return this.fullSchema["x-itemIcon"]||("icon"===this.display?this.itemKey:null)},returnObject(){if(this.fullSchema)return"object"===this.fullSchema.type||this.fullSchema.items&&"object"===this.fullSchema.items.type}},watch:{q(){this.value&&this.value[this.itemTitle]===this.q||this.fetchSelectItems()},rawSelectItems:{handler(){this.updateSelectItems()}}},methods:{initSelectProp(e){if(this.fromUrlWithQuery&&e&&void 0!==e[this.itemTitle]&&(this.q=e[this.itemTitle]),this.fromUrl&&this.fetchSelectItems(),this.fullSchema["x-fromUrl"]&&(this.openEndedSelect="v-combobox"===this.customTag||"combobox"===this.fullSchema["x-display"]),("array"===this.fullSchema.type&&this.fullSchema.items&&this.fullSchema.items.enum||this.fullSchema.enum)&&(this.rawSelectItems="array"===this.fullSchema.type?this.fullSchema.items.enum:this.fullSchema.enum),this.oneOfSelect){const e="array"===this.fullSchema.type?this.fullSchema.items:this.fullSchema,t=e.anyOf||e.oneOf;this.openEndedSelect=e.anyOf&&!!e.anyOf.find((e=>!e.const&&!e.enum)),this.rawSelectItems=t.filter((e=>!e["x-if"]||!!this.getFromExpr(e["x-if"]))).filter((e=>"const"in e||!!e.enum)).map((e=>({...e,[this.itemKey]:"const"in e?e.const:e.enum&&e.enum[0],[this.itemTitle]:e.title})))}if(this.examplesSelect){const e="array"===this.fullSchema.type&&this.fullSchema.items.examples||this.fullSchema.examples;this.openEndedSelect=!0,this.rawSelectItems=e.map((e=>({[this.itemKey]:e,[this.itemTitle]:e})))}this.fullSchema["x-fromData"]&&(this.openEndedSelect="v-combobox"===this.customTag||"combobox"===this.fullSchema["x-display"],this.$watch((()=>this.getFromExpr(this.fullSchema["x-fromData"])),(e=>{this.rawSelectItems=e}),{immediate:!0})),this.fromUrlKeys&&this.fromUrlKeys.forEach((e=>{this.$watch((()=>this.getFromExpr(e)),(t=>{this.$set(this.fromUrlParams,e,t),this.fetchSelectItems()}),{immediate:!0})}))},fetchSelectItems(){if(!this.fromUrl)return;if(!this.fullOptions.httpLib)return console.error("No http lib found to perform ajax request"),this.$emit("error","No http lib found to perform ajax request");this.debouncedFetch=this.debouncedFetch||X()((async()=>{this.loading=!0;try{this.rawSelectItems=await H.fetchRawItems(this.fullOptions,this.fullSchema,this.fromUrl,this.q)}catch(err){console.error(err),this.$emit("error",err.message)}this.loading=!1}),250);const e=this.debouncedFetch();this.sharedData.asyncOperations=this.sharedData.asyncOperations||{},this.sharedData.asyncOperations[this.fullKey]=e,e.finally((()=>{this.sharedData.asyncOperations[this.fullKey]===e&&delete this.sharedData.asyncOperations[this.fullKey]}))},async updateSelectItems(){const e=H.getSelectItems(this.rawSelectItems,this.fullSchema,this.itemKey,this.itemIcon);"list"===this.display&&this.rawSelectItems&&this.input(H.fillList(this.fullSchema,this.value,e,this.itemKey)),this.loading=!0,await H.fillSelectItems(this.fullOptions,this.fullSchema,this.separator&&"string"===typeof this.value?this.value.split(this.separator):this.value,e,this.itemKey,this.itemTitle,this.fromUrlWithQuery&&this.fromUrl,this.returnObject),this.loading=!1,(0,s.deepEqual)(e,this.selectItems)||(this.selectItems=e)},renderSelectIcon(e,t){if(!this.itemIcon)return;let r,i=t[this.itemIcon];if(i){if(i.startsWith("http://")||i.startsWith("https://"))r=e("img",{domProps:{src:i},style:"height:100%;width:100%;"});else if(i.startsWith("{this.input(e),this.change()}},s={...this.fullOptions.radioItemProps,label:r,value:i,inputValue:this.separator&&"string"===typeof this.value?this.value.split(this.separator):this.value,multiple:"array"===this.fullSchema.type||!!this.separator,hideDetails:!0};return e(`v-${this.display}`,{props:s,on:n,class:"pb-1"})},renderSelectionControlGroup(e){const t={change:e=>{this.input(e),this.change()}},r={...this.commonFieldProps,multiple:"array"===this.fullSchema.type||!!this.separator,label:null},i=e("legend",{class:`v-label theme--${this.theme.isDark?"dark":"light"} ${this.hasError?"error--text":""}`},this.commonFieldProps.label),n=this.selectItems.map((t=>this.renderSelectionControlItem(e,t)));return[e("v-input",{props:r,on:t,class:"v-input--selection-controls v-input--radio-group v-input--radio-group--column"},[e("div",{class:"v-input--radio-group__input"},[i,...n]),this.renderTooltip(e,"append")])]},renderRadioItem(e,t){const r=t[this.itemTitle]||t[this.itemKey],i=t[this.itemKey];return e("v-radio",{props:{...this.fullOptions.radioItemProps,label:r,value:i}})},renderRadioGroup(e){const t={...this.commonFieldProps,...this.fullOptions.radioGroupProps},r={change:e=>{this.input(e),this.change()}};return[e("v-radio-group",{props:t,on:r},[...this.selectItems.map((t=>this.renderRadioItem(e,t))),this.renderTooltip(e,"append")])]},renderSelectProp(e){if(!this.isSelectProp)return;if("radio"===this.display){if("array"!==this.fullSchema.type&&!this.separator)return this.renderRadioGroup(e);console.error("radio display is not available for arrays, use checkbox or switch")}if(["checkbox","switch"].includes(this.display))return this.renderSelectionControlGroup(e);const t={input:e=>this.input(e),change:e=>this.change()},r={selection:t=>{let r;this.openEndedSelect?(r=(this.selectItems||[]).find((e=>e[this.itemKey]===t.item)),r||(r={[this.itemKey]:t.item,[this.itemTitle]:t.item})):r=t.item;let i=r[this.itemTitle]||r[this.itemKey];return"array"===this.fullSchema.type&&t.index!==this.value.length-1&&(i+=", "),this.separator&&this.commonFieldProps.value&&t.index!==this.commonFieldProps.value.length-1&&(i+=", "),e("div",{class:{"v-select__selection":!0,"v-select__selection--comma":!0,"v-select__selection--disabled":this.disabled}},[this.renderSelectIcon(e,r),e("span",{domProps:{innerHTML:i},class:"mt-1"})])},item:t=>[this.renderSelectIcon(e,t.item),this.renderSelectCheckbox(e,t.attrs.inputValue),this.renderSelectItem(e,t.item)]};let i="v-select";this.customTag?i=this.customTag:this.display?("autocomplete"===this.display&&(i="v-autocomplete"),"select"===this.display&&(i="v-select")):(this.fromUrlWithQuery||this.rawSelectItems&&this.rawSelectItems.length>20)&&(i="v-autocomplete");const n={...this.commonFieldProps,...this.fullOptions.selectProps,validateOnBlur:!0,clearable:!this.required,multiple:"array"===this.fullSchema.type||!!this.separator,itemValue:this.itemKey,itemText:this.itemTitle,items:this.selectItems||[],returnObject:!!this.returnObject,loading:this.loading};"v-autocomplete"===i&&(i="v-autocomplete",n.noDataText=this.fullOptions.messages.noData,n.placeholder=this.fullOptions.messages.search,this.fromUrlWithQuery?(n.filter=()=>!0,n.searchInput=this.q,t["update:search-input"]=e=>{this.q=e}):n.filter=(e,t)=>(e[this.itemTitle]||e[this.itemKey]).toLowerCase().includes(t.toLowerCase())),this.openEndedSelect&&(i="v-combobox",n.multiple||(n.hideSelected=!0,t.input=e=>this.input(e||"")));const s=[...this.renderPropSlots(e)];if("v-select"===i&&n.multiple&&this.fullOptions.selectAll){const t=n.items.length===this.value.length;s.push(e("template",{slot:"prepend-item"},[e("v-list-item",[e("v-list-item-action",[e("v-checkbox",{props:{value:t},on:{click:()=>{t?this.input([]):this.input(n.items.map((e=>this.returnObject?e:e[this.itemKey]))),this.change()}}})]),e("v-list-item-content",[e("v-list-item-title",this.fullOptions.messages.selectAll)])]),e("v-divider")]))}return this.htmlDescription&&s.push(this.renderTooltip(e,"append-outer")),[e(i,{props:n,on:t,scopedSlots:r},s)]}}},ee={data(){return{editabledArrayProp:{currentDialog:null,editItem:null,editedItems:{}}}},computed:{isEditableArray(){if("array"===this.resolvedSchema.type&&this.resolvedSchema.items&&"object"===this.resolvedSchema.items.type)return!0},readonlyItemSchema(){if(!this.fullSchema||!this.fullSchema.items)return;const e=n()(this.fullSchema.items);return this.itemTitle&&(e.properties&&e.properties[this.itemTitle]&&"object"===typeof e.properties[this.itemTitle]&&(e.properties[this.itemTitle]["x-style"]="display: none;"),e.oneOf&&e.oneOf.forEach((e=>{e.properties[this.itemTitle]&&(e.properties[this.itemTitle]["x-style"]="display: none;")})),this.fullSchema.items.allOf&&e.allOf.forEach((e=>{e.properties[this.itemTitle]&&(e.properties[this.itemTitle]["x-style"]="display: none;")}))),e}},methods:{renderArrayItemModal(e,t,r){const i=-1===r;let n;this.editabledArrayProp.currentDialog===r&&(n=this.renderArrayItemEdit(e,r,!0));const s={activator:()=>this.renderArrayItemEditButton(e,t,r)},o=()=>{n.componentInstance.resetValidation(),this.editabledArrayProp.currentDialog=null},a={};return this.fullOptions.dialogProps.persistent||(a["click:outside"]=o),e("v-dialog",{props:{...this.fullOptions.dialogProps,value:this.editabledArrayProp.currentDialog===r,closeOnContentClick:!1},scopedSlots:s,on:a},[e("v-card",{props:this.fullOptions.dialogCardProps},[e("v-card-title",this.itemTitle&&t[this.itemTitle]),e("v-card-text",[n]),e("v-card-actions",[e("v-spacer"),e("v-btn",{props:{text:!0},on:{click:o},attrs:{id:this.fullOptions.idPrefix+this.dashKey+"--dialog-cancel-button"},class:{"vjsf-array-dialog-cancel-button":!0}},"cancel"),e("v-btn",{props:{color:"primary"},on:{click:()=>{if(!n.componentInstance.validate(!0))return;const e=[...this.value];i?(this.editabledArrayProp.editedItems[this.value.length]=!0,e.push(this.editabledArrayProp.editItem)):(this.editabledArrayProp.editedItems[r]=!0,this.$set(e,r,{...this.editabledArrayProp.editItem})),this.input(e),this.change(),this.shouldValidate=!0,this.editabledArrayProp.currentDialog=null}},attrs:{id:this.fullOptions.idPrefix+this.dashKey+"--dialog-ok-button"},class:{"vjsf-array-dialog-ok-button":!0}},"ok")])])])},renderArrayItemRO(e,t,r){const i=`item-${r}`,n={props:{schema:this.readonlyItemSchema,value:t,modelRoot:this.modelRoot||this.value,modelKey:i,parentKey:`${this.fullKey}.`,options:{...this.fullOptions,disableAll:!0,readOnlyArrayItem:!0},optionsRoot:this.initialOptions,sectionDepth:this.sectionDepth+1,separateValidation:!1,sharedData:this.sharedData},ref:i,scopedSlots:this.childScopedSlots(this.fullSchema.key)};return this.options.autoFixArrayItems&&(n.on={input:e=>{if(!this.editabledArrayProp.editedItems[r]){const t=[...this.value];t[r]=e,this.input(t)}}}),e("v-jsf",n,this.childSlots(e,this.fullSchema.key))},renderArrayItemEditButton(e,t,r,i){const s=-1===r,o=i||s;return e("v-btn",{on:{click:()=>{if(s&&"inline"===this.fullOptions.editMode){const e=n()(t),r=[...this.value];r.push(e),this.editabledArrayProp.currentDialog=r.length-1,this.editabledArrayProp.editItem=e,this.input(r),this.change()}else this.editabledArrayProp.currentDialog===r?(this.editabledArrayProp.editItem=null,this.editabledArrayProp.currentDialog=null,this.change()):(this.editabledArrayProp.editItem=n()(t),this.editabledArrayProp.currentDialog=r,"inline"===this.fullOptions.editMode&&this.$nextTick((()=>this.childrenInputs[`item-${r}`].validate(!0))))}},attrs:{id:this.fullOptions.idPrefix+this.dashKey+"-"+(s?"-add":r+"--edit")+"-button"},class:{"vjsf-array-add-button":!0,"ml-3":s},props:{icon:!o,fab:o,small:s,"x-small":i,color:"primary",depressed:i}},[e("v-icon",s?this.fullOptions.icons.add:this.fullOptions.icons.edit)])},renderArrayItemEdit(e,t,r){const i={...this.fullOptions,autofocus:r};return this.fullOptions.idPrefix.endsWith("--dialog--")||(i.idPrefix=this.fullOptions.idPrefix+"--dialog--"),e("v-jsf",{props:{schema:this.fullSchema.items,value:this.editabledArrayProp.editItem,modelRoot:this.modelRoot||this.value,modelKey:`item-${t}`,parentKey:`${this.fullKey}.`,options:i,optionsRoot:this.initialOptions,sectionDepth:this.sectionDepth+1,separateValidation:"inline"!==this.fullOptions.editMode,sharedData:this.sharedData},scopedSlots:this.childScopedSlots(this.fullSchema.key),ref:"item-"+t,on:{error:e=>this.$emit("error",e),input:e=>{if(this.editabledArrayProp.editItem=e,"inline"===this.fullOptions.editMode){const r=[...this.value];this.$set(r,t,e),this.input(r)}},change:()=>{"inline"===this.fullOptions.editMode&&this.change()}}},this.childSlots(e,this.fullSchema.key))},renderArrayItemMenu(e,t,r,i){if(this.disabled||this.fromUrl||this.fullSchema.fromData)return;const n=[];for(const s of this.fullOptions.arrayOperations)"duplicate"===s&&n.push({title:this.fullOptions.messages.duplicate,color:"default",icon:this.fullOptions.icons.duplicate,disabled:!1,on:{click:()=>{const e=this.value.findIndex((e=>e===t)),i=[...this.value];i.splice(e,0,{...t}),this.input(i),this.change(),this.shouldValidate=!0,r.componentInstance.validate()}}}),"delete"===s&&n.push({title:this.fullOptions.messages.delete,color:"warning",icon:this.fullOptions.icons.delete,disabled:i,on:{click:()=>{const e=this.value.filter((e=>e!==t));this.input(e),this.change(),this.shouldValidate=!0,r.componentInstance.validate()}}}),"copy"===s&&this.fullSchema["x-arrayGroup"]&&n.push({title:this.fullOptions.messages.copy,color:"default",icon:this.fullOptions.icons.copy,disabled:!1,on:{click:()=>{this.$set(this.sharedData,"clipboard_"+this.fullSchema["x-arrayGroup"],t)}}}),"paste"===s&&this.fullSchema["x-arrayGroup"]&&n.push({title:this.fullOptions.messages.paste,color:"primary",icon:this.fullOptions.icons.paste,disabled:!this.sharedData["clipboard_"+this.fullSchema["x-arrayGroup"]],on:{click:()=>{"inline"===this.fullOptions.editMode&&(this.editabledArrayProp.editItem=null,this.editabledArrayProp.currentDialog=null);const e=this.value.findIndex((e=>e===t)),i=[...this.value];i[e]=this.sharedData["clipboard_"+this.fullSchema["x-arrayGroup"]],this.input(i),this.change(),this.shouldValidate=!0,r.componentInstance.validate()}}});return n.length?1===n.length?e("v-btn",{props:{icon:!0,disabled:n[0].disabled},on:n[0].on,attrs:{title:n[0].title},class:"ml-1"},[e("v-icon",{props:{color:n[0].color}},[n[0].icon])]):e("v-menu",{props:{offsetY:!0,left:!0},scopedSlots:{activator:({on:t})=>e("v-btn",{props:{icon:!0},attrs:{title:this.fullOptions.messages.openMenu},class:"ml-1",on:t},[e("v-icon",this.fullOptions.icons.arrayMenu)]),default:()=>e("v-list",{class:"pa-0",props:{dense:!0}},n.map((t=>e("v-list-item",{on:t.on,props:{disabled:t.disabled}},[e("v-list-item-icon",{class:"mr-2"},[e("v-icon",{props:{color:t.color,small:!0}},[t.icon])]),e("v-list-item-content",{},[e("v-list-item-title",{},[t.title])])]))))}}):void 0},renderEditableArray(e){if(!this.isEditableArray)return;const t=[];if(!this.disabled&&!this.fromUrl&&!this.fullSchema.fromData&&this.fullOptions.arrayOperations.includes("create")){const r=this.fullSchema.items.default||this.defaultValue(this.fullSchema.items);"inline"===this.fullOptions.editMode?t.push(this.renderArrayItemEditButton(e,r,-1)):t.push(this.renderArrayItemModal(e,r,-1))}const r=e("v-input",{class:"mt-2 mb-3 pr-1 vjsf-array-header",props:{label:this.label,rules:this.rules,value:this.value,validateOnBlur:!this.shouldValidate,hideDetails:"auto"}},t),i=!this.fullOptions.disableSorting&&!this.disabled;let n,s;this.value&&this.value.length&&(n=this.value.filter((e=>!!e)).map(((t,n)=>{let s;const o="inline"===this.fullOptions.editMode&&this.editabledArrayProp.currentDialog===n;!this.disabled&&this.fullOptions.arrayOperations.includes("update")&&(s="inline"===this.fullOptions.editMode?this.renderArrayItemEditButton(e,t,n,o):this.renderArrayItemModal(e,t,n));const a=e("v-card-actions",{class:"pa-0"},[e("v-spacer"),s,this.renderArrayItemMenu(e,t,r,o)]);let l,u,c;o?(l=this.renderArrayItemEdit(e,n,!1),c="item-edit-"+n):(l=this.renderArrayItemRO(e,t,n),c=this.cached(`item-key-${n}`,{item:t},(()=>`${n}-${(new Date).getTime()}`)),i&&(u="cursor: move;"));const h="py-2 pr-2 "+this.fullOptions.arrayItemsTitlesClasses[this.sectionDepth]||0;let d=[e("v-card-title",{props:{primaryTitle:!0},class:h},[H.getObjectTitle(t,this.itemTitle,this.fullSchema),e("v-spacer"),a]),e("v-card-text",[l])];const f=this.dedupChildrenWithValidatedErrors.includes(`item-${n}`);d=o?[e("v-alert",{props:{color:f?"error":"primary","colored-border":!0,border:"left"},class:"pa-0 pl-2 ma-0"},d)]:f?[e("v-alert",{props:{color:"error",outlined:!0},class:"pa-0 ma-0"},d)]:[e("v-alert",{props:{color:"default",outlined:!0},class:"pa-0 ma-0 vjsf-invisible-alert"},d)];const p=[];o&&p.push({name:"click-outside",value:{handler:()=>{this.editabledArrayProp.currentDialog===n&&"inline"===this.fullOptions.editMode&&(this.editabledArrayProp.editItem=null,this.editabledArrayProp.currentDialog=null,this.change())},include:this.getOpenDependentElements}});let m="py-1 vjsf-array-item";return o&&(m+=" vjsf-array-item-active"),e("v-col",{props:this.fullOptions.arrayItemColProps,class:m,key:c},[e("v-card",{props:{...this.fullOptions.arrayItemCardProps},style:u,directives:p},d)])})));const o=i?e("draggable",{props:{value:this.value},attrs:{group:this.fullSchema["x-arrayGroup"]||this.fullKey,...this.fullOptions.sortableOptions},class:"row draggable vjsf-array",on:{change:async e=>{e.added&&await this.$nextTick(),this.editabledArrayProp.editItem=null,this.editabledArrayProp.currentDialog=null,this.input(s),this.change(),this.shouldValidate=!0},input:async e=>{s=e}}},n):e("v-row",{class:"vjsf-array"},n);return[r,o]}}},te={computed:{isMarkdownProp(){if(this.fullSchema)return"markdown"===this.fullSchema["x-display"]}},methods:{renderMarkdownProp(e){if(!this.isMarkdownProp)return;const t=[this.renderTooltip(e,"append")];return this.disabled?t.push(e("v-card",{props:{flat:!0},class:"px-0"},[e("v-card-text",{domProps:{innerHTML:this.fullOptions.markdown(this.value)},class:"px-0 py-1"})])):(t.push(e("v-card",{props:{outlined:!0}},[e("textarea",{attrs:{id:`${this.fullOptions.idPrefix}${this.dashKey}--easymde`}})])),this.$nextTick((()=>this.initEasyMDE()))),[e("v-input",{props:{value:this.value,name:this.fullKey,label:this.label,required:this.required,rules:this.rules,disabled:this.disabled,...this.fullOptions.fieldProps},class:"vjsf-markdown-input"},t)]},initEasyMDE(){if(this.easymde)return;if(!r.g.EasyMDE)return void console.error("VJSF requires EasyMDE to be available to handle the markdown format.");const e=r.g.EasyMDE,t={element:this.$el.querySelector("textarea"),initialValue:this.value,renderingConfig:{},status:!1,autoDownloadFontAwesome:!1,spellChecker:!1,minHeight:"300px",insertTexts:{link:[this.fullOptions.messages.mdeLink1,this.fullOptions.messages.mdeLink2],image:[this.fullOptions.messages.mdeImg1,this.fullOptions.messages.mdeImg2],table:[this.fullOptions.messages.mdeTable1,this.fullOptions.messages.mdeTable2],horizontalRule:["","\n\n-----\n\n"]},toolbar:[{name:"bold",action:e.toggleBold,className:"mdi mdi-format-bold",title:this.fullOptions.messages.bold},{name:"italic",action:e.toggleItalic,className:"mdi mdi-format-italic",title:this.fullOptions.messages.italic},{name:"heading",action:e.toggleHeadingSmaller,className:"mdi mdi-format-title",title:this.fullOptions.messages.heading},"|",{name:"quote",action:e.toggleBlockquote,className:"mdi mdi-format-quote-open",title:this.fullOptions.messages.quote},{name:"unordered-list",action:e.toggleUnorderedList,className:"mdi mdi-format-list-bulleted",title:this.fullOptions.messages.unorderedList},{name:"ordered-list",action:e.toggleOrderedList,className:"mdi mdi-format-list-numbered",title:this.fullOptions.messages.orderedList},"|",{name:"link",action:e.drawLink,className:"mdi mdi-link",title:this.fullOptions.messages.createLink},{name:"image",action:e.drawImage,className:"mdi mdi-image",title:this.fullOptions.messages.insertImage},{name:"table",action:e.drawTable,className:"mdi mdi-table",title:this.fullOptions.messages.createTable},"|",{name:"preview",action:e.togglePreview,className:"mdi mdi-eye accent--text",title:this.fullOptions.messages.preview,noDisable:!0},"|",{name:"undo",action:e.undo,className:"mdi mdi-undo",title:this.fullOptions.messages.undo,noDisable:!0},{name:"redo",action:e.redo,className:"mdi mdi-redo",title:this.fullOptions.messages.redo,noDisable:!0},"|",{name:"guide",action:"https://simplemde.com/markdown-guide",className:"mdi mdi-help-circle success--text",title:this.fullOptions.messages.mdeGuide,noDisable:!0}],...this.fullOptions.easyMDEOptions};this.easymde=new e(t);let i=!1;this.easymde.codemirror.on("change",(()=>{i=!0,this.input(this.easymde.value())})),this.easymde.codemirror.on("blur",(()=>{this.blurTimeout=setTimeout((()=>{i&&this.change(),i=!1}),500)})),this.easymde.codemirror.on("focus",(()=>{clearTimeout(this.blurTimeout)}))}}},re={data(){return{tooltip:{maxWidth:200}}},mounted(){this.htmlDescription&&this.$el&&this.$el.getBoundingClientRect&&(this.tooltip.maxWidth=this.$el.getBoundingClientRect().left-80)},methods:{renderTooltip(e,t){if(!this.fullOptions.hideTooltips&&(!this.fullOptions.hideReadOnlyTooltips||!this.fullSchema.readOnly&&!this.fullOptions.readOnlyArrayItem)&&this.htmlDescription)return e("v-tooltip",{slot:t,props:{contentClass:"vjsf-tooltip",...this.fullOptions.tooltipProps},scopedSlots:{activator:({on:t,attrs:r})=>(this.fullOptions.tooltipProps.openOnClick&&delete t.focus,e("v-btn",{on:t,attrs:r,props:{icon:!0,retainFocusOnClick:!0},style:"pointer-events: auto"},[e("v-icon",{},this.fullOptions.icons.info)]))}},[e("div",{style:`max-width: ${this.tooltip.maxWidth}px`,domProps:{innerHTML:this.htmlDescription}})])}}},ie={inject:["form"],provide(){return{form:{register:this.register,unregister:this.unregister,fastForwardEvent:this.fastForwardEvent,getExprNode:this.getExprNode}}},props:{separateValidation:{type:Boolean,default:!1}},data(){return{inputs:[],validated:!1,shouldValidate:!1,dedupChildrenWithValidatedErrors:[]}},computed:{childrenInputs(){return this.inputs.reduce(((e,t,r)=>(e[t.modelKey||r]=t,e)),{})},hasError(){return!!this.inputs.find((e=>e.hasError))||!!this.localRuleError},hasValidatedError(){return!!this.inputs.find((e=>e.hasValidatedError||e.hasError&&(e.validated||e.shouldValidate)))||this.localRuleError&&(this.validated||this.shouldValidate)},childrenWithValidatedErrors(){return Object.keys(this.childrenInputs).filter((e=>!!this.childrenInputs[e].hasValidatedError))},localRuleError(){if(!this.validated||!this.rules||!this.rules.length)return!1;const e=this.rules.find((e=>"string"===typeof e(this.value)));return e&&e(this.value)}},watch:{childrenWithValidatedErrors(){this.$nextTick((()=>{(0,s.deepEqual)(this.childrenWithValidatedErrors,this.dedupChildrenWithValidatedErrors)||(this.dedupChildrenWithValidatedErrors=this.childrenWithValidatedErrors)}))}},created(){this.separateValidation||this.form&&this.form.register(this)},beforeDestroy(){this.separateValidation||this.form&&this.form.unregister(this)},methods:{register(e){this.validated&&e.validate(!0),this.inputs.push(e)},unregister(e){this.inputs=this.inputs.filter((t=>t._uid!==e._uid))},validate(e){this.validated=!0;const t=this.inputs.map(((t,r)=>({valid:t.validate(e),key:t.modelKey||r})));return!t.find((e=>!e.valid))},reset(){this.inputs.forEach((e=>e.reset()))},resetValidation(){this.shouldValidate=!1,this.validated=!1,this.inputs.forEach((e=>e.resetValidation()))},initValidation(){const e=this.fullOptions.initialValidation;"all"!==e||this.modelRoot||this.validate(!0),"defined"===e&&this.initiallyDefined&&!this.isObjectContainer&&this.validate(!0)},fastForwardEvent(e,t){"root"===this.fullKey?this.$emit(e,t):this.form.fastForwardEvent(e,t)},getExprNode(){const e={value:this.value,key:this.modelKey,fullKey:this.fullKey,schema:this.schema};return this.form&&this.form.getExprNode&&(e.parent=this.form.getExprNode()),e}}};function ne(e){const t=[];for(let r=0;r1)o=u.pop(),s=u.pop(),l=r[d.value],d=new be(oe,l(s.value,o.value)),u.push(d);else if(f===ue&&u.length>2)a=u.pop(),o=u.pop(),s=u.pop(),"?"===d.value?u.push(s.value?o.value:a.value):(l=i[d.value],d=new be(oe,l(s.value,o.value,a.value)),u.push(d));else if(f===ae&&u.length>0)s=u.pop(),l=t[d.value],d=new be(oe,l(s.value)),u.push(d);else if(f===pe){while(u.length>0)c.push(u.shift());c.push(new be(pe,xe(d.value,t,r,i,n)))}else if(f===ge&&u.length>0)s=u.pop(),u.push(new be(oe,s.value[d.value]));else{while(u.length>0)c.push(u.shift());c.push(d)}}while(u.length>0)c.push(u.shift());return c}function Se(e,t,r){for(var i=[],n=0;n0)a.unshift(Ce(u.pop(),r));if(o=u.pop(),!o.apply||!o.call)throw new Error(o+" is not a function");u.push(o.apply(void 0,a))}else if(f===fe)u.push(function(){var e=u.pop(),i=[],n=d.value;while(n-- >0)i.unshift(u.pop());var s=u.pop(),o=function(){for(var n=Object.assign({},r),s=0,o=i.length;s0)a.unshift(u.pop());u.push(a)}}if(u.length>1)throw new Error("invalid Expression (parity)");return 0===u[0]?0:Ce(u[0],r)}function Ee(e,t,r){return Ae(e)?e:{type:me,value:function(r){return Me(e.value,t,r)}}}function Ae(e){return e&&e.type===me}function Ce(e,t){return Ae(e)?e.value(t):e}function $e(e,t){for(var r,i,n,s,o,a,l=[],u=0;u0)o.unshift(l.pop());s=l.pop(),l.push(s+"("+o.join(", ")+")")}else if(h===fe){i=l.pop(),a=c.value,o=[];while(a-- >0)o.unshift(l.pop());r=l.pop(),t?l.push("("+r+" = function("+o.join(", ")+") { return "+i+" })"):l.push("("+r+"("+o.join(", ")+") = "+i+")")}else if(h===ge)r=l.pop(),l.push(r+"."+c.value);else if(h===ye){a=c.value,o=[];while(a-- >0)o.unshift(l.pop());l.push("["+o.join(", ")+"]")}else if(h===pe)l.push("("+$e(c.value,t)+")");else if(h!==ve)throw new Error("invalid Expression")}return l.length>1&&(l=t?[l.join(",")]:[l.join(";")]),String(l[0])}function Oe(e){return"string"===typeof e?JSON.stringify(e).replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029"):e}function Pe(e,t){for(var r=0;r=this.expression.length?this.newToken(De,"EOF"):this.isWhitespace()||this.isComment()?this.next():this.isRadixInteger()||this.isNumber()||this.isOperator()||this.isString()||this.isParen()||this.isBracket()||this.isComma()||this.isSemicolon()||this.isNamedOp()||this.isConst()||this.isName()?this.current:void this.parseError('Unknown character "'+this.expression.charAt(this.pos)+'"')},Ue.prototype.isString=function(){var e=!1,t=this.pos,r=this.expression.charAt(t);if("'"===r||'"'===r){var i=this.expression.indexOf(r,t+1);while(i>=0&&this.pos"9")))break}if(t>e){var i=this.expression.substring(e,t);if(i in this.consts)return this.current=this.newToken(Ne,this.consts[i]),this.pos+=i.length,!0}return!1},Ue.prototype.isNamedOp=function(){for(var e=this.pos,t=e;t"9")))break}if(t>e){var i=this.expression.substring(e,t);if(this.isOperatorEnabled(i)&&(i in this.binaryOps||i in this.unaryOps||i in this.ternaryOps))return this.current=this.newToken(Le,i),this.pos+=i.length,!0}return!1},Ue.prototype.isName=function(){for(var e=this.pos,t=e,r=!1;t"9"))break}else r=!0}if(r){var n=this.expression.substring(e,t);return this.current=this.newToken(ze,n),this.pos+=n.length,!0}return!1},Ue.prototype.isWhitespace=function(){var e=!1,t=this.expression.charAt(this.pos);while(" "===t||"\t"===t||"\n"===t||"\r"===t){if(e=!0,this.pos++,this.pos>=this.expression.length)break;t=this.expression.charAt(this.pos)}return e};var He=/^[0-9a-f]{4}$/i;function We(e,t,r){this.parser=e,this.tokens=t,this.current=null,this.nextToken=null,this.next(),this.savedCurrent=null,this.savedNextToken=null,this.allowMemberAccess=!1!==r.allowMemberAccess}Ue.prototype.unescape=function(e){var t=e.indexOf("\\");if(t<0)return e;var r=e.substring(0,t);while(t>=0){var i=e.charAt(++t);switch(i){case"'":r+="'";break;case'"':r+='"';break;case"\\":r+="\\";break;case"/":r+="/";break;case"b":r+="\b";break;case"f":r+="\f";break;case"n":r+="\n";break;case"r":r+="\r";break;case"t":r+="\t";break;case"u":var n=e.substring(t+1,t+5);He.test(n)||this.parseError("Illegal escape sequence: \\u"+n),r+=String.fromCharCode(parseInt(n,16)),t+=4;break;default:throw this.parseError('Illegal escape sequence: "\\'+i+'"')}++t;var s=e.indexOf("\\",t);r+=e.substring(t,s<0?e.length:s),t=s}return r},Ue.prototype.isComment=function(){var e=this.expression.charAt(this.pos);return"/"===e&&"*"===this.expression.charAt(this.pos+1)&&(this.pos=this.expression.indexOf("*/",this.pos)+2,1===this.pos&&(this.pos=this.expression.length),!0)},Ue.prototype.isRadixInteger=function(){var e,t,r=this.pos;if(r>=this.expression.length-2||"0"!==this.expression.charAt(r))return!1;if(++r,"x"===this.expression.charAt(r))e=16,t=/^[0-9a-f]$/i,++r;else{if("b"!==this.expression.charAt(r))return!1;e=2,t=/^[01]$/i,++r}var i=!1,n=r;while(r="0"&&e<="9"||!s&&"."===e))break;"."===e?s=!0:o=!0,r++,t=o}if(t&&(n=r),"e"===e||"E"===e){r++;var a=!0,l=!1;while(r="0"&&e<="9"))break;l=!0,a=!1}else a=!1;r++}l||(r=n)}return t?(this.current=this.newToken(Ne,parseFloat(this.expression.substring(i,r))),this.pos=r):this.pos=n,t},Ue.prototype.isOperator=function(){var e=this.pos,t=this.expression.charAt(this.pos);if("+"===t||"-"===t||"*"===t||"/"===t||"%"===t||"^"===t||"?"===t||":"===t||"."===t)this.current=this.newToken(Le,t);else if("∙"===t||"•"===t)this.current=this.newToken(Le,"*");else if(">"===t)"="===this.expression.charAt(this.pos+1)?(this.current=this.newToken(Le,">="),this.pos++):this.current=this.newToken(Le,">");else if("<"===t)"="===this.expression.charAt(this.pos+1)?(this.current=this.newToken(Le,"<="),this.pos++):this.current=this.newToken(Le,"<");else if("|"===t){if("|"!==this.expression.charAt(this.pos+1))return!1;this.current=this.newToken(Le,"||"),this.pos++}else if("="===t)"="===this.expression.charAt(this.pos+1)?(this.current=this.newToken(Le,"=="),this.pos++):this.current=this.newToken(Le,t);else{if("!"!==t)return!1;"="===this.expression.charAt(this.pos+1)?(this.current=this.newToken(Le,"!="),this.pos++):this.current=this.newToken(Le,t)}return this.pos++,!!this.isOperatorEnabled(this.current.value)||(this.pos=e,!1)},Ue.prototype.isOperatorEnabled=function(e){return this.parser.isOperatorEnabled(e)},Ue.prototype.getCoordinates=function(){var e,t=0,r=-1;do{t++,e=this.pos-r,r=this.expression.indexOf("\n",r+1)}while(r>=0&&r=",">","in"];We.prototype.parseComparison=function(e){this.parseAddSub(e);while(this.accept(Le,Ke)){var t=this.current;this.parseAddSub(e),e.push(_e(t.value))}};var Ye=["+","-","||"];We.prototype.parseAddSub=function(e){this.parseTerm(e);while(this.accept(Le,Ye)){var t=this.current;this.parseTerm(e),e.push(_e(t.value))}};var Ge=["*","/","%"];function Ze(e,t){return Number(e)+Number(t)}function Je(e,t){return e-t}function Xe(e,t){return e*t}function Qe(e,t){return e/t}function et(e,t){return e%t}function tt(e,t){return Array.isArray(e)&&Array.isArray(t)?e.concat(t):""+e+t}function rt(e,t){return e===t}function it(e,t){return e!==t}function nt(e,t){return e>t}function st(e,t){return e=t}function at(e,t){return e<=t}function lt(e,t){return Boolean(e&&t)}function ut(e,t){return Boolean(e||t)}function ct(e,t){return Pe(t,e)}function ht(e){return(Math.exp(e)-Math.exp(-e))/2}function dt(e){return(Math.exp(e)+Math.exp(-e))/2}function ft(e){return e===1/0?1:e===-1/0?-1:(Math.exp(e)-Math.exp(-e))/(Math.exp(e)+Math.exp(-e))}function pt(e){return e===-1/0?e:Math.log(e+Math.sqrt(e*e+1))}function mt(e){return Math.log(e+Math.sqrt(e*e-1))}function gt(e){return Math.log((1+e)/(1-e))/2}function vt(e){return Math.log(e)*Math.LOG10E}function yt(e){return-e}function bt(e){return!e}function wt(e){return e<0?Math.ceil(e):Math.floor(e)}function _t(e){return Math.random()*(e||1)}function kt(e){return Et(e+1)}function xt(e){return isFinite(e)&&e===Math.round(e)}We.prototype.parseTerm=function(e){this.parseFactor(e);while(this.accept(Le,Ge)){var t=this.current;this.parseFactor(e),e.push(_e(t.value))}},We.prototype.parseFactor=function(e){var t=this.tokens.unaryOps;function r(e){return e.value in t}if(this.save(),this.accept(Le,r)){if("-"!==this.current.value&&"+"!==this.current.value){if(this.nextToken.type===je&&"("===this.nextToken.value)return this.restore(),void this.parseExponential(e);if(this.nextToken.type===Ve||this.nextToken.type===Fe||this.nextToken.type===De||this.nextToken.type===je&&")"===this.nextToken.value)return this.restore(),void this.parseAtom(e)}var i=this.current;this.parseFactor(e),e.push(we(i.value))}else this.parseExponential(e)},We.prototype.parseExponential=function(e){this.parsePostfixExpression(e);while(this.accept(Le,"^"))this.parseFactor(e),e.push(_e("^"))},We.prototype.parsePostfixExpression=function(e){this.parseFunctionCall(e);while(this.accept(Le,"!"))e.push(we("!"))},We.prototype.parseFunctionCall=function(e){var t=this.tokens.unaryOps;function r(e){return e.value in t}if(this.accept(Le,r)){var i=this.current;this.parseAtom(e),e.push(we(i.value))}else{this.parseMemberExpression(e);while(this.accept(je,"("))if(this.accept(je,")"))e.push(new be(de,0));else{var n=this.parseArgumentList(e);e.push(new be(de,n))}}},We.prototype.parseArgumentList=function(e){var t=0;while(!this.accept(je,")")){this.parseExpression(e),++t;while(this.accept(Fe))this.parseExpression(e),++t}return t},We.prototype.parseMemberExpression=function(e){this.parseAtom(e);while(this.accept(Le,".")||this.accept(Be,"[")){var t=this.current;if("."===t.value){if(!this.allowMemberAccess)throw new Error('unexpected ".", member access is not permitted');this.expect(ze),e.push(new be(ge,this.current.value))}else{if("["!==t.value)throw new Error("unexpected symbol: "+t.value);if(!this.tokens.isOperatorEnabled("["))throw new Error('unexpected "[]", arrays are disabled');this.parseExpression(e),this.expect(Be,"]"),e.push(_e("["))}}};var St=4.7421875,Mt=[.9999999999999971,57.15623566586292,-59.59796035547549,14.136097974741746,-.4919138160976202,3399464998481189e-20,4652362892704858e-20,-9837447530487956e-20,.0001580887032249125,-.00021026444172410488,.00021743961811521265,-.0001643181065367639,8441822398385275e-20,-26190838401581408e-21,36899182659531625e-22];function Et(e){var t,r;if(xt(e)){if(e<=0)return isFinite(e)?1/0:NaN;if(e>171)return 1/0;var i=e-2,n=e-1;while(i>1)n*=i,i--;return 0===n&&(n=1),n}if(e<.5)return Math.PI/(Math.sin(Math.PI*e)*Et(1-e));if(e>=171.35)return 1/0;if(e>85){var s=e*e,o=s*e,a=o*e,l=a*e;return Math.sqrt(2*Math.PI/e)*Math.pow(e/Math.E,e)*(1+1/(12*e)+1/(288*s)-139/(51840*o)-571/(2488320*a)+163879/(209018880*l)+5246819/(75246796800*l*e))}--e,r=Mt[0];for(var u=1;u0?(i=n/t,e+=i*i):e+=n}return t===1/0?1/0:t*Math.sqrt(e)}function $t(e,t,r){return e?t:r}function Ot(e,t){return"undefined"===typeof t||0===+t?Math.round(e):(e=+e,t=-+t,isNaN(e)||"number"!==typeof t||t%1!==0?NaN:(e=e.toString().split("e"),e=Math.round(+(e[0]+"e"+(e[1]?+e[1]-t:-t))),e=e.toString().split("e"),+(e[0]+"e"+(e[1]?+e[1]+t:t))))}function Pt(e,t,r){return r&&(r[e]=t),t}function Tt(e,t){return e[0|t]}function It(e){return 1===arguments.length&&Array.isArray(e)?Math.max.apply(Math,e):Math.max.apply(Math,arguments)}function Dt(e){return 1===arguments.length&&Array.isArray(e)?Math.min.apply(Math,e):Math.min.apply(Math,arguments)}function Lt(e,t){if("function"!==typeof e)throw new Error("First argument to map is not a function");if(!Array.isArray(t))throw new Error("Second argument to map is not an array");return t.map((function(t,r){return e(t,r)}))}function Nt(e,t,r){if("function"!==typeof e)throw new Error("First argument to fold is not a function");if(!Array.isArray(r))throw new Error("Second argument to fold is not an array");return r.reduce((function(t,r,i){return e(t,r,i)}),t)}function Rt(e,t){if("function"!==typeof e)throw new Error("First argument to filter is not a function");if(!Array.isArray(t))throw new Error("Second argument to filter is not an array");return t.filter((function(t,r){return e(t,r)}))}function jt(e,t){if(!Array.isArray(t)&&"string"!==typeof t)throw new Error("Second argument to indexOf is not a string or array");return t.indexOf(e)}function Bt(e,t){if(!Array.isArray(t))throw new Error("Second argument to join is not an array");return t.join(e)}function Ft(e){return(e>0)-(e<0)||+e}var zt=1/3;function Vt(e){return e<0?-Math.pow(-e,zt):Math.pow(e,zt)}function qt(e){return Math.exp(e)-1}function Ut(e){return Math.log(1+e)}function Ht(e){return Math.log(e)/Math.LN2}function Wt(e){this.options=e||{},this.unaryOps={sin:Math.sin,cos:Math.cos,tan:Math.tan,asin:Math.asin,acos:Math.acos,atan:Math.atan,sinh:Math.sinh||ht,cosh:Math.cosh||dt,tanh:Math.tanh||ft,asinh:Math.asinh||pt,acosh:Math.acosh||mt,atanh:Math.atanh||gt,sqrt:Math.sqrt,cbrt:Math.cbrt||Vt,log:Math.log,log2:Math.log2||Ht,ln:Math.log,lg:Math.log10||vt,log10:Math.log10||vt,expm1:Math.expm1||qt,log1p:Math.log1p||Ut,abs:Math.abs,ceil:Math.ceil,floor:Math.floor,round:Math.round,trunc:Math.trunc||wt,"-":yt,"+":Number,exp:Math.exp,not:bt,length:At,"!":kt,sign:Math.sign||Ft},this.binaryOps={"+":Ze,"-":Je,"*":Xe,"/":Qe,"%":et,"^":Math.pow,"||":tt,"==":rt,"!=":it,">":nt,"<":st,">=":ot,"<=":at,and:lt,or:ut,in:ct,"=":Pt,"[":Tt},this.ternaryOps={"?":$t},this.functions={random:_t,fac:kt,min:Dt,max:It,hypot:Math.hypot||Ct,pyt:Math.hypot||Ct,pow:Math.pow,atan2:Math.atan2,if:$t,gamma:Et,roundTo:Ot,map:Lt,fold:Nt,filter:Rt,indexOf:jt,join:Bt},this.consts={E:Math.E,PI:Math.PI,true:!0,false:!1}}Wt.prototype.parse=function(e){var t=[],r=new We(this,new Ue(this,e),{allowMemberAccess:this.options.allowMemberAccess});return r.parseExpression(t),r.expect(De,"EOF"),new Ie(t,this)},Wt.prototype.evaluate=function(e,t){return this.parse(e).evaluate(t)};var Kt=new Wt;Wt.parse=function(e){return Kt.parse(e)},Wt.evaluate=function(e,t){return Kt.parse(e).evaluate(t)};var Yt={"+":"add","-":"subtract","*":"multiply","/":"divide","%":"remainder","^":"power","!":"factorial","<":"comparison",">":"comparison","<=":"comparison",">=":"comparison","==":"comparison","!=":"comparison","||":"concatenate",and:"logical",or:"logical",not:"logical","?":"conditional",":":"conditional","=":"assignment","[":"array","()=":"fndef"};function Gt(e){return Yt.hasOwnProperty(e)?Yt[e]:e}Wt.prototype.isOperatorEnabled=function(e){var t=Gt(e),r=this.options.operators||{};return!(t in r)||!!r[t]};const Zt=new Wt({add:!0,concatenate:!0,divide:!0,factorial:!0,multiply:!0,power:!0,remainer:!0,substract:!0,assignment:!0,logical:!0,comparison:!0,in:!0});Zt.functions.concatString=function(){let e="";for(let t=0;t({})},showSectionTitle:{type:Boolean,default:!1}},data(){return{loading:!1,fullSchema:null}},computed:{initialOptions(){return"root"===this.fullKey?this.options||{}:this.optionsRoot},fullOptions(){const e="undefined"!==typeof window&&window||"undefined"!==typeof r.g&&r.g||{};M.locale=this.$vuetify.lang&&this.$vuetify.lang.current||"en",M.defaultLocale=this.$vuetify.lang&&this.$vuetify.lang.defaultLocale||"en";const t=Object.assign({},M,this.options||{},this.resolvedSchema["x-options"]||{});if(t.markdown=t.markdown||e.markdownit&&(r=>r?e.markdownit(t.markdownit).render(r):"")||(e=>e||""),t.memMarkdown=t.memMarkdown||(e=>{this._vjsf_markdown=this._vjsf_markdown||{};const r=e+"";return this._vjsf_markdown[r]=this._vjsf_markdown[r]||t.markdown(e),this._vjsf_markdown[r]}),t.httpLib=t.httpLib||this.axios||this.$http||this.$axios||e.axios,!t.validator){const r=t.ajvLocalize||e.ajvLocalize,i=t.ajvAddFormats||e.ajvAddFormats,n=!!r&&t.locale&&r[t.locale];let s=t.ajv;if(!s){const r=t.Ajv||e.Ajv||e.ajv7&&e.ajv7.default||e.ajv2019&&e.ajv2019.default;r&&(s=new r(n?{allErrors:!0,messages:!1,strict:!1}:{strict:!1}),i&&i(s),s.addFormat("hexcolor",/^#[0-9A-Fa-f]{6,8}$/))}s&&(t.validator=e=>{const i=s.compile(e);return e=>{const o=i(e);if(!o)return n&&r[t.locale](i.errors),s.errorsText(i.errors,{dataVar:""})}})}if(t.iconfont=this.$vuetify.icons&&this.$vuetify.icons.iconfont||"mdi",!t.defaultIcons){const e={};for(const[t,r]of Object.entries(this.$vuetify.icons.values))e[t]=r.props?r.props.name:r;t.defaultIcons={...C[t.iconfont],...e},t.icons={...t.defaultIcons,...t.icons}}return t.messages={...E[t.defaultLocale]||E.en,...E[t.locale]||E.en,...t.messages},t.formats={...A,...t.formats},t.deleteReadOnly&&(t.hideReadOnly=!0),t},resolvedSchema(){if("root"===this.modelKey){const e=this.options||{},t=e.locale||e.defaultLocale||"en",r=e.defaultLocale||"en";return u.resolve(this.schema,{"~$locale~":t===r?t:[t,r]})}return this.schema},htmlDescription(){return this.fullOptions.markdown(this.fullSchema&&this.fullSchema.description)},fullKey(){return(this.parentKey+this.modelKey).replace("root.","")},label(){if(this.fullSchema&&(!this.fullSchema.readOnly&&!this.fullOptions.readOnlyArrayItem||!this.fullOptions.hideReadOnlyLabels))return this.fullSchema.title||("string"===typeof this.modelKey?this.modelKey:"")},display(){if(this.fullSchema)return"root"===this.modelKey&&this.fullOptions.rootDisplay?this.fullOptions.rootDisplay:this.fullSchema["x-display"]},customTag(){if(this.fullSchema)return this.fullSchema["x-tag"]},rules(){if(this.fullSchema)return $(this.schema,this.fullSchema,this.fullOptions,this.required,this.isOneOfSelect)},disabled(){if(this.fullSchema)return this.fullOptions.disableAll||this.fullSchema.readOnly},separator(){if(this.fullSchema||"string"===this.fullSchema.type)return this.fullSchema.separator||this.fullSchema["x-separator"]},slotName(){if(this.fullSchema)return this.fullSchema["x-display"]&&this.fullSchema["x-display"].startsWith("custom-")?this.fullSchema["x-display"]:this.fullKey},slotParams(){if(this.fullSchema)return{value:this.value,modelKey:this.modelKey,schema:this.schema,fullKey:this.fullKey,fullSchema:this.fullSchema,label:this.label,disabled:this.disabled,required:this.required,rules:this.rules,options:this.fullOptions,htmlDescription:this.htmlDescription,on:{input:e=>this.input(e instanceof Event?e.target.value:e),change:()=>this.change()}}},dashKey(){return this.fullKey.replace(/\./g,"-")},commonFieldProps(){if(!this.fullSchema)return;const e=this.separator&&"string"===typeof this.value?this.value.split(this.separator):this.value;return{value:e,inputValue:e,label:this.label,name:this.fullKey,id:this.fullOptions.idPrefix+this.dashKey,disabled:this.disabled,rules:this.rules,required:this.required,autofocus:this.fullOptions.autofocus,...this.fullSchema.readOnly||this.fullOptions.readOnlyArrayItem?this.fullOptions.readOnlyFieldProps:{},...this.fullOptions.fieldProps,...this.fullSchema["x-props"]}},propertyClass(){if(this.fullSchema)return`vjsf-property vjsf-property-${this.dashKey} pa-0 ${this.fullSchema["x-class"]||""} ${this.fullSchema.readOnly||this.fullOptions.readOnlyArrayItem?"read-only":""}`.replace(/ {2}/g," ").trim()},xSlots(){if(this.fullSchema)return{...this.fullSchema["x-slots"]}},formattedValue(){if(this.fullSchema)return this.value&&this.fullSchema.format&&this.fullOptions.formats[this.fullSchema.format]&&this.fullOptions.formats[this.fullSchema.format](this.value,this.fullOptions.locale)},directives(){if(this.fullSchema)return this.fullSchema["x-directives"]}},watch:{fullSchema:{handler(){this.fullSchema&&(this.initFromSchema(),this.initValidation(),this.updateSelectItems())}}},mounted(){tr[this.fullKey]=(tr[this.fullKey]||0)+1;let e="resolvedSchema";(this.resolvedSchema.dependencies||this.resolvedSchema.if)&&(e=e=>[e.resolvedSchema,e.value]),this.$watch(e,(()=>{const e=h.prepareFullSchema(this.resolvedSchema,this.value,this.fullOptions);(0,s.deepEqual)(e,this.fullSchema)||(this.fullSchema=e)}),{immediate:!0,deep:!0})},render(e){if(this.renderInc=(this.renderInc||0)+1,!this.fullSchema)return;if(void 0!==this.fullSchema.const)return;if("hidden"===this.display)return;if(this.fullSchema.readOnly&&this.fullOptions.hideReadOnly)return;if(this.fullOptions.readOnlyArrayItem&&this.fullOptions.hideInArrayItem)return;if((this.fullSchema.readOnly||this.fullOptions.readOnlyArrayItem)&&this.fullOptions.hideReadOnlyEmpty&&[null,void 0,""].includes(this.value))return;if(this.fullSchema["x-if"]&&!this.getFromExpr(this.fullSchema["x-if"]))return;const t=[];if(this.$scopedSlots.before?t.push(this.$scopedSlots.before(this.slotParams)):this.$slots.before?this.$slots.before.forEach((e=>t.push(e))):this.xSlots.before&&t.push(e("div",{domProps:{innerHTML:this.fullOptions.memMarkdown(this.xSlots.before)}})),this.$scopedSlots.default)t.push(this.$scopedSlots.default(this.slotParams));else if(this.fullSchema["x-display"]&&this.fullSchema["x-display"]&&this.$scopedSlots[this.fullSchema["x-display"]])t.push(this.$scopedSlots[this.fullSchema["x-display"]](this.slotParams));else{const r=this.renderDateProp(e)||this.renderColorProp(e)||this.renderSelectProp(e)||this.renderFileProp(e)||this.renderMarkdownProp(e)||this.renderSimpleProp(e)||this.renderObjectContainer(e)||this.renderEditableArray(e)||[];r.forEach((e=>t.push(e)))}this.$scopedSlots.after?t.push(this.$scopedSlots.after(this.slotParams)):this.$slots.after?this.$slots.after.forEach((e=>t.push(e))):this.xSlots.after&&t.push(e("div",{domProps:{innerHTML:this.fullOptions.memMarkdown(this.xSlots.after)}}));let r={...this.fullOptions.fieldColProps};return this.fullSchema["x-cols"]&&("object"===typeof this.fullSchema["x-cols"]?r={...r,...this.fullSchema["x-cols"]}:r.cols=this.fullSchema["x-cols"]),e("v-col",{props:r,class:this.propertyClass,style:this.fullSchema["x-style"]||""},t)},methods:{cached(e,t,r){return this._vjsf_cache=this._vjsf_cache||{},this._vjsf_cache[e]&&(0,s.deepEqual)(this._vjsf_cache[e].params,t)||(this._vjsf_cache[e]={params:n()(t),value:r()}),this._vjsf_cache[e].value},getFromExpr(e,t=!1){const r=this.getExprNode();if(r.modelRoot=this.modelRoot,r.root=this.modelRoot,r.model=this.value,r.context=this.options.context,t&&(r.data=r.parent&&r.parent.value),this._vjsf_getters=this._vjsf_getters||{},"newFunction"===this.initialOptions.evalMethod){er(`evaluate expression "${e}" with newFunction method`,r),this._vjsf_getters[e]=this._vjsf_getters[e]||new Function(...Object.keys(r),`return ${e}`);const t=this._vjsf_getters[e](...Object.values(r));return er("result",t),t}if("evalExpr"===this.fullOptions.evalMethod){er(`evaluate expression "${e}" with exprEval method`,r);const t=Jt.evaluate(e,r);return er(t),t}{e=this.prefixExpr(e),er(`evaluate expression "${e}" with propertyExpr method`,r),this._vjsf_getters[e]=this._vjsf_getters[e]||a().getter(e,!0);const t=this._vjsf_getters[e](r);return er("result",t),t}},prefixExpr(e){return e.startsWith("context.")||e.startsWith("model.")||e.startsWith("value.")||e.startsWith("modelRoot.")||e.startsWith("root.")||e.startsWith("parent.")?e:this.modelRoot?"root."+e:"model."+e},renderPropSlots(e){const t=[];return Object.keys(this.xSlots).forEach((r=>{t.push(e("div",{slot:r,domProps:{innerHTML:this.fullOptions.memMarkdown(this.xSlots[r])}}))})),Object.keys(this.$slots).forEach((r=>{t.push(e("template",{slot:r},this.$slots[r]))})),t},async change(e=!0){if(this.changed){await this.$nextTick(),this.sharedData.asyncOperations=this.sharedData.asyncOperations||{};while(Object.keys(this.sharedData.asyncOperations).length){for(const e in this.sharedData.asyncOperations)await this.sharedData.asyncOperations[e];await this.$nextTick()}this.updateSelectItems(),e&&this.fastForwardEvent("change-child",{fullKey:this.fullKey,value:this.value}),this.$emit("change",this.value),this.changed=!1}},input(e,t=!1,r=!0){Array.isArray(e)&&this.separator&&(e=e.join(this.separator)),null===e||void 0===e?this.fullSchema.nullable?null!==this.value?(this.changed=!0,r&&this.fastForwardEvent("input-child",{fullKey:this.fullKey,value:null,oldValue:this.value}),this.$emit("input",null)):t&&(r&&this.fastForwardEvent("input-child",{fullKey:this.fullKey,value:null,oldValue:this.value}),this.$emit("input",null)):void 0!==this.value&&(this.changed=!0,r&&this.fastForwardEvent("input-child",{fullKey:this.fullKey,value:void 0,oldValue:this.value}),this.$emit("input",void 0)):(0,s.deepEqual)(e,this.value)||(this.changed=!0,r&&this.fastForwardEvent("input-child",{fullKey:this.fullKey,value:e,oldValue:this.value}),this.$emit("input",e))},fixValueType(e,t){return[null,void 0].includes(e)?e:"string"===t.type&&"string"!==typeof e||"integer"===t.type&&"number"!==typeof e||"number"===t.type&&"number"!==typeof e||"boolean"===t.type&&"boolean"!==typeof e||"array"===t.type&&!Array.isArray(e)||"object"===t.type&&("object"!==typeof e||Array.isArray(e))?void 0:e},defaultValue(e){if(!e.readOnly||!this.fullOptions.deleteReadOnly)return"object"!==e.type||e["x-fromUrl"]||e["x-fromData"]||e.enum?"array"===e.type?[]:null:{}},fixProperties(e){if("object"!==this.fullSchema.type||!e)return e;const t=(!this.fullSchema.properties||!this.fullSchema.properties.length)&&(!Object.keys(this.subModels).length||!!this.fullSchema["x-fromData"]||!!this.fullSchema["x-fromUrl"]);return t||(e={...e},(this.fullOptions.removeAdditionalProperties||!1===this.fullSchema.additionalProperties)&&Object.keys(e).forEach((t=>{(this.fullSchema.properties||[]).find((e=>e.key===t))||delete e[t]})),Object.keys(this.subModels).forEach((t=>{Object.keys(this.subModels[t]).forEach((r=>{const i=this.fullSchema.properties.find((e=>e.key===r));i&&i.const||e[r]!==this.subModels[t][r]&&(e[r]=this.subModels[t][r])}))}))),e},initFromSchema(){if(this.initiallyDefined=void 0!==this.value&&null!==this.value,"array"===this.fullSchema.type&&(this.initiallyDefined=!(!this.value||!this.value.length)),"object"===this.fullSchema.type&&(this.initiallyDefined=!(!this.value||!Object.keys(this.value).length)),this.fullSchema.readOnly&&this.fullOptions.deleteReadOnly)return this.input(void 0);let e=this.value;if("object"===this.fullSchema.type&&[void 0,null].includes(e)&&!this.isSelectProp&&(e={}),"object"===this.fullSchema.type&&this.isSelectProp&&e&&0===Object.keys(e).length&&(e=void 0),void 0!==this.fullSchema.const&&(e=this.fullSchema.const),this.initSelectProp(e),this.initObjectContainer(e),this.value&&"array"===this.fullSchema.type&&(e=this.value.filter((e=>![void 0,null].includes(e)))),!this.fullSchema["x-constExpr"])return this.input(this.fixProperties(e),!0);this.$watch((()=>this.getFromExpr(this.fullSchema["x-constExpr"],!0)),(e=>{this.input(e,!0)}),{immediate:!0})}}},ir=r(94598),nr=r(69964),sr=r(93469),or=r(81925),ar=r(18142),lr=r(18041),ur=r(4152);const cr={...or.v,offsetY:!0,offsetOverflow:!0,transition:!1};var hr=or.A.extend({name:"v-autocomplete",props:{autoSelectFirst:{type:Boolean,default:!1},filter:{type:Function,default:(e,t,r)=>r.toLocaleLowerCase().indexOf(t.toLocaleLowerCase())>-1},hideNoData:Boolean,menuProps:{type:or.A.options.props.menuProps.type,default:()=>cr},noFilter:Boolean,searchInput:{type:String}},data(){return{lazySearch:this.searchInput}},computed:{classes(){return{...or.A.options.computed.classes.call(this),"v-autocomplete":!0,"v-autocomplete--is-selecting-index":this.selectedIndex>-1}},computedItems(){return this.filteredItems},selectedValues(){return this.selectedItems.map((e=>this.getValue(e)))},hasDisplayedItems(){return this.hideSelected?this.filteredItems.some((e=>!this.hasItem(e))):this.filteredItems.length>0},currentRange(){return null==this.selectedItem?0:String(this.getText(this.selectedItem)).length},filteredItems(){return!this.isSearching||this.noFilter||null==this.internalSearch?this.allItems:this.allItems.filter((e=>{const t=(0,ur.TD)(e,this.itemText),r=null!=t?String(t):"";return this.filter(e,String(this.internalSearch),r)}))},internalSearch:{get(){return this.lazySearch},set(e){this.lazySearch!==e&&(this.lazySearch=e,this.$emit("update:search-input",e))}},isAnyValueAllowed(){return!1},isDirty(){return this.searchIsDirty||this.selectedItems.length>0},isSearching(){return this.multiple&&this.searchIsDirty||this.searchIsDirty&&this.internalSearch!==this.getText(this.selectedItem)},menuCanShow(){return!!this.isFocused&&(this.hasDisplayedItems||!this.hideNoData)},$_menuProps(){const e=or.A.options.computed.$_menuProps.call(this);return e.contentClass=`v-autocomplete__content ${e.contentClass||""}`.trim(),{...cr,...e}},searchIsDirty(){return null!=this.internalSearch&&""!==this.internalSearch},selectedItem(){return this.multiple?null:this.selectedItems.find((e=>this.valueComparator(this.getValue(e),this.getValue(this.internalValue))))},listData(){const e=or.A.options.computed.listData.call(this);return e.props={...e.props,items:this.virtualizedItems,noFilter:this.noFilter||!this.isSearching||!this.filteredItems.length,searchInput:this.internalSearch},e}},watch:{filteredItems:"onFilteredItemsChanged",internalValue:"setSearch",isFocused(e){e?(document.addEventListener("copy",this.onCopy),this.$refs.input&&this.$refs.input.select()):(document.removeEventListener("copy",this.onCopy),this.blur(),this.updateSelf())},isMenuActive(e){!e&&this.hasSlot&&(this.lazySearch=null)},items(e,t){t&&t.length||!this.hideNoData||!this.isFocused||this.isMenuActive||!e.length||this.activateMenu()},searchInput(e){this.lazySearch=e},internalSearch:"onInternalSearchChanged",itemText:"updateSelf"},created(){this.setSearch()},destroyed(){document.removeEventListener("copy",this.onCopy)},methods:{onFilteredItemsChanged(e,t){if(e!==t){if(!this.autoSelectFirst){const r=t[this.$refs.menu.listIndex];r?this.setMenuIndex(e.findIndex((e=>e===r))):this.setMenuIndex(-1),this.$emit("update:list-index",this.$refs.menu.listIndex)}this.$nextTick((()=>{this.internalSearch&&(1===e.length||this.autoSelectFirst)&&(this.$refs.menu.getTiles(),this.autoSelectFirst&&e.length&&(this.setMenuIndex(0),this.$emit("update:list-index",this.$refs.menu.listIndex)))}))}},onInternalSearchChanged(){this.updateMenuDimensions()},updateMenuDimensions(){this.isMenuActive&&this.$refs.menu&&this.$refs.menu.updateDimensions()},changeSelectedIndex(e){this.searchIsDirty||(this.multiple&&e===ur.uP.left?-1===this.selectedIndex?this.selectedIndex=this.selectedItems.length-1:this.selectedIndex--:this.multiple&&e===ur.uP.right?this.selectedIndex>=this.selectedItems.length-1?this.selectedIndex=-1:this.selectedIndex++:e!==ur.uP.backspace&&e!==ur.uP.delete||this.deleteCurrentItem())},deleteCurrentItem(){const e=this.selectedIndex,t=this.selectedItems[e];if(!this.isInteractive||this.getDisabled(t))return;const r=this.selectedItems.length-1;if(-1===this.selectedIndex&&0!==r)return void(this.selectedIndex=r);const i=this.selectedItems.length,n=e!==i-1?e:e-1,s=this.selectedItems[n];s?this.selectItem(t):this.setValue(this.multiple?[]:null),this.selectedIndex=n},clearableCallback(){this.internalSearch=null,or.A.options.methods.clearableCallback.call(this)},genInput(){const e=ar.A.options.methods.genInput.call(this);return e.data=(0,lr.Ay)(e.data,{attrs:{"aria-activedescendant":(0,ur.no)(this.$refs.menu,"activeTile.id"),autocomplete:(0,ur.no)(e.data,"attrs.autocomplete","off")},domProps:{value:this.internalSearch}}),e},genInputSlot(){const e=or.A.options.methods.genInputSlot.call(this);return e.data.attrs.role="combobox",e},genSelections(){return this.hasSlot||this.multiple?or.A.options.methods.genSelections.call(this):[]},onClick(e){this.isInteractive&&(this.selectedIndex>-1?this.selectedIndex=-1:this.onFocus(),this.isAppendInner(e.target)||this.activateMenu())},onInput(e){if(this.selectedIndex>-1||!e.target)return;const t=e.target,r=t.value;t.value&&this.activateMenu(),this.multiple||""!==r||this.deleteCurrentItem(),this.internalSearch=r,this.badInput=t.validity&&t.validity.badInput},onKeyDown(e){const t=e.keyCode;!e.ctrlKey&&[ur.uP.home,ur.uP.end].includes(t)||or.A.options.methods.onKeyDown.call(this,e),this.changeSelectedIndex(t)},onSpaceDown(e){},onTabDown(e){or.A.options.methods.onTabDown.call(this,e),this.updateSelf()},onUpDown(e){e.preventDefault(),this.activateMenu()},selectItem(e){or.A.options.methods.selectItem.call(this,e),this.setSearch()},setSelectedItems(){or.A.options.methods.setSelectedItems.call(this),this.isFocused||this.setSearch()},setSearch(){this.$nextTick((()=>{this.multiple&&this.internalSearch&&this.isMenuActive||(this.internalSearch=!this.selectedItems.length||this.multiple||this.hasSlot?null:this.getText(this.selectedItem))}))},updateSelf(){(this.searchIsDirty||this.internalValue)&&(this.multiple||this.valueComparator(this.internalSearch,this.getValue(this.internalValue))||this.setSearch())},hasItem(e){return this.selectedValues.indexOf(this.getValue(e))>-1},onCopy(e){var t,r;if(-1===this.selectedIndex)return;const i=this.selectedItems[this.selectedIndex],n=this.getText(i);null===(t=e.clipboardData)||void 0===t||t.setData("text/plain",n),null===(r=e.clipboardData)||void 0===r||r.setData("text/vnd.vuetify.autocomplete.item+plain",n),e.preventDefault()}}}),dr=r(88787),fr=r(3698),pr=r(52938),mr=r(90569),gr=r(27908),vr=r(70132),yr=r(85471),br=yr.Ay.extend({name:"rippleable",directives:{ripple:vr.A},props:{ripple:{type:[Boolean,Object],default:!0}},methods:{genRipple(e={}){return this.ripple?(e.staticClass="v-input--selection-controls__ripple",e.directives=e.directives||[],e.directives.push({name:"ripple",value:{center:!0}}),this.$createElement("div",e)):null}}}),wr=r(98968),_r=r(95803);function kr(e){e.preventDefault()}var xr=(0,_r.A)(gr.A,br,wr.A).extend({name:"selectable",model:{prop:"inputValue",event:"change"},props:{id:String,inputValue:null,falseValue:null,trueValue:null,multiple:{type:Boolean,default:null},label:String},data(){return{hasColor:this.inputValue,lazyValue:this.inputValue}},computed:{computedColor(){if(this.isActive)return this.color?this.color:this.isDark&&!this.appIsDark?"white":"primary"},isMultiple(){return!0===this.multiple||null===this.multiple&&Array.isArray(this.internalValue)},isActive(){const e=this.value,t=this.internalValue;return this.isMultiple?!!Array.isArray(t)&&t.some((t=>this.valueComparator(t,e))):void 0===this.trueValue||void 0===this.falseValue?e?this.valueComparator(e,t):Boolean(t):this.valueComparator(t,this.trueValue)},isDirty(){return this.isActive},rippleState(){return this.isDisabled||this.validationState?this.validationState:void 0}},watch:{inputValue(e){this.lazyValue=e,this.hasColor=e}},methods:{genLabel(){const e=gr.A.options.methods.genLabel.call(this);return e?(e.data.on={click:kr},e):e},genInput(e,t){return this.$createElement("input",{attrs:Object.assign({"aria-checked":this.isActive.toString(),disabled:this.isDisabled,id:this.computedId,role:e,type:e},t),domProps:{value:this.value,checked:this.isActive},on:{blur:this.onBlur,change:this.onChange,focus:this.onFocus,keydown:this.onKeydown,click:kr},ref:"input"})},onClick(e){this.onChange(),this.$emit("click",e)},onChange(){if(!this.isInteractive)return;const e=this.value;let t=this.internalValue;if(this.isMultiple){Array.isArray(t)||(t=[]);const r=t.length;t=t.filter((t=>!this.valueComparator(t,e))),t.length===r&&t.push(e)}else t=void 0!==this.trueValue&&void 0!==this.falseValue?this.valueComparator(t,this.trueValue)?this.falseValue:this.trueValue:e?this.valueComparator(t,e)?null:e:!t;this.validate(!0,t),this.internalValue=t,this.hasColor=t},onFocus(e){this.isFocused=!0,this.$emit("focus",e)},onBlur(e){this.isFocused=!1,this.$emit("blur",e)},onKeydown(e){}}}),Sr=xr.extend({name:"v-checkbox",props:{indeterminate:Boolean,indeterminateIcon:{type:String,default:"$checkboxIndeterminate"},offIcon:{type:String,default:"$checkboxOff"},onIcon:{type:String,default:"$checkboxOn"}},data(){return{inputIndeterminate:this.indeterminate}},computed:{classes(){return{...gr.A.options.computed.classes.call(this),"v-input--selection-controls":!0,"v-input--checkbox":!0,"v-input--indeterminate":this.inputIndeterminate}},computedIcon(){return this.inputIndeterminate?this.indeterminateIcon:this.isActive?this.onIcon:this.offIcon},validationState(){if(!this.isDisabled||this.inputIndeterminate)return this.hasError&&this.shouldValidate?"error":this.hasSuccess?"success":null!==this.hasColor?this.computedColor:void 0}},watch:{indeterminate(e){this.$nextTick((()=>this.inputIndeterminate=e))},inputIndeterminate(e){this.$emit("update:indeterminate",e)},isActive(){this.indeterminate&&(this.inputIndeterminate=!1)}},methods:{genCheckbox(){const{title:e,...t}=this.attrs$;return this.$createElement("div",{staticClass:"v-input--selection-controls__input"},[this.$createElement(mr.A,this.setTextColor(this.validationState,{props:{dense:this.dense,dark:this.dark,light:this.light}}),this.computedIcon),this.genInput("checkbox",{...t,"aria-checked":this.inputIndeterminate?"mixed":this.isActive.toString()}),this.genRipple(this.setTextColor(this.rippleState))])},genDefaultSlot(){return[this.genCheckbox(),this.genLabel()]}}}),Mr=r(75988),Er=r(98790),Ar=r(45961),Cr=r(73074),$r=r(86988),Or=(0,_r.A)(gr.A,Cr.A).extend({name:"v-slider",directives:{ClickOutside:ir.A},mixins:[Cr.A],props:{disabled:Boolean,inverseLabel:Boolean,max:{type:[Number,String],default:100},min:{type:[Number,String],default:0},step:{type:[Number,String],default:1},thumbColor:String,thumbLabel:{type:[Boolean,String],default:void 0,validator:e=>"boolean"===typeof e||"always"===e},thumbSize:{type:[Number,String],default:32},tickLabels:{type:Array,default:()=>[]},ticks:{type:[Boolean,String],default:!1,validator:e=>"boolean"===typeof e||"always"===e},tickSize:{type:[Number,String],default:2},trackColor:String,trackFillColor:String,value:[Number,String],vertical:Boolean},data:()=>({app:null,oldValue:null,thumbPressed:!1,mouseTimeout:-1,isFocused:!1,isActive:!1,noClick:!1,startOffset:0}),computed:{classes(){return{...gr.A.options.computed.classes.call(this),"v-input__slider":!0,"v-input__slider--vertical":this.vertical,"v-input__slider--inverse-label":this.inverseLabel}},internalValue:{get(){return this.lazyValue},set(e){e=isNaN(e)?this.minValue:e;const t=this.roundValue(Math.min(Math.max(e,this.minValue),this.maxValue));t!==this.lazyValue&&(this.lazyValue=t,this.$emit("input",t))}},trackTransition(){return this.thumbPressed?this.showTicks||this.stepNumeric?"0.1s cubic-bezier(0.25, 0.8, 0.5, 1)":"none":""},minValue(){return parseFloat(this.min)},maxValue(){return parseFloat(this.max)},stepNumeric(){return this.step>0?parseFloat(this.step):0},inputWidth(){const e=(this.roundValue(this.internalValue)-this.minValue)/(this.maxValue-this.minValue)*100;return isNaN(e)?0:e},trackFillStyles(){const e=this.vertical?"bottom":"left",t=this.vertical?"top":"right",r=this.vertical?"height":"width",i=this.$vuetify.rtl?"auto":"0",n=this.$vuetify.rtl?"0":"auto",s=this.isDisabled?`calc(${this.inputWidth}% - 10px)`:`${this.inputWidth}%`;return{transition:this.trackTransition,[e]:i,[t]:n,[r]:s}},trackStyles(){const e=this.vertical?this.$vuetify.rtl?"bottom":"top":this.$vuetify.rtl?"left":"right",t=this.vertical?"height":"width",r="0px",i=this.isDisabled?`calc(${100-this.inputWidth}% - 10px)`:`calc(${100-this.inputWidth}%)`;return{transition:this.trackTransition,[e]:r,[t]:i}},showTicks(){return this.tickLabels.length>0||!(this.isDisabled||!this.stepNumeric||!this.ticks)},numTicks(){return Math.ceil((this.maxValue-this.minValue)/this.stepNumeric)},showThumbLabel(){return!this.isDisabled&&!(!this.thumbLabel&&!this.$scopedSlots["thumb-label"])},computedTrackColor(){if(!this.isDisabled)return this.trackColor?this.trackColor:this.isDark?this.validationState:this.validationState||"primary lighten-3"},computedTrackFillColor(){if(!this.isDisabled)return this.trackFillColor?this.trackFillColor:this.validationState||this.computedColor},computedThumbColor(){return this.thumbColor?this.thumbColor:this.validationState||this.computedColor}},watch:{min(e){const t=parseFloat(e);t>this.internalValue&&this.$emit("input",t)},max(e){const t=parseFloat(e);t{const n=[];this.tickLabels[t]&&n.push(this.$createElement("div",{staticClass:"v-slider__tick-label"},this.tickLabels[t]));const s=t*(100/this.numTicks),o=this.$vuetify.rtl?100-this.inputWidth0}},n)},genThumbContainer(e,t,r,i,n,s,o="thumb"){const a=[this.genThumb()],l=this.genThumbLabelContent(e);return this.showThumbLabel&&a.push(this.genThumbLabel(l)),this.$createElement("div",this.setTextColor(this.computedThumbColor,{ref:o,key:o,staticClass:"v-slider__thumb-container",class:{"v-slider__thumb-container--active":r,"v-slider__thumb-container--focused":i,"v-slider__thumb-container--show-label":this.showThumbLabel},style:this.getThumbContainerStyles(t),attrs:{role:"slider",tabindex:this.isDisabled?-1:this.$attrs.tabindex?this.$attrs.tabindex:0,"aria-label":this.$attrs["aria-label"]||this.label,"aria-valuemin":this.min,"aria-valuemax":this.max,"aria-valuenow":this.internalValue,"aria-readonly":String(this.isReadonly),"aria-orientation":this.vertical?"vertical":"horizontal"},on:{focus:n,blur:s,keydown:this.onKeyDown}}),a)},genThumbLabelContent(e){return this.$scopedSlots["thumb-label"]?this.$scopedSlots["thumb-label"]({value:e}):[this.$createElement("span",[String(e)])]},genThumbLabel(e){const t=(0,ur.Dg)(this.thumbSize),r=this.vertical?`translateY(20%) translateY(${Number(this.thumbSize)/3-1}px) translateX(55%) rotate(135deg)`:"translateY(-20%) translateY(-12px) translateX(-50%) rotate(45deg)";return this.$createElement(Ar.yX,{props:{origin:"bottom center"}},[this.$createElement("div",{staticClass:"v-slider__thumb-label-container",directives:[{name:"show",value:this.isFocused||this.isActive||"always"===this.thumbLabel}]},[this.$createElement("div",this.setBackgroundColor(this.computedThumbColor,{staticClass:"v-slider__thumb-label",style:{height:t,width:t,transform:r}}),[this.$createElement("div",e)])])])},genThumb(){return this.$createElement("div",this.setBackgroundColor(this.computedThumbColor,{staticClass:"v-slider__thumb"}))},getThumbContainerStyles(e){const t=this.vertical?"top":"left";let r=this.$vuetify.rtl?100-e:e;return r=this.vertical?100-r:r,{transition:this.trackTransition,[t]:`${r}%`}},onSliderMouseDown(e){var t;if(e.preventDefault(),this.oldValue=this.internalValue,this.isActive=!0,null===(t=e.target)||void 0===t?void 0:t.matches(".v-slider__thumb-container, .v-slider__thumb-container *")){this.thumbPressed=!0;const t=e.target.getBoundingClientRect(),r="touches"in e?e.touches[0]:e;this.startOffset=this.vertical?r.clientY-(t.top+t.height/2):r.clientX-(t.left+t.width/2)}else this.startOffset=0,window.clearTimeout(this.mouseTimeout),this.mouseTimeout=window.setTimeout((()=>{this.thumbPressed=!0}),300);const r=!ur.AR||{passive:!0,capture:!0},i=!!ur.AR&&{passive:!0},n="touches"in e;this.onMouseMove(e),this.app.addEventListener(n?"touchmove":"mousemove",this.onMouseMove,i),(0,ur.d7)(this.app,n?"touchend":"mouseup",this.onSliderMouseUp,r),this.$emit("start",this.internalValue)},onSliderMouseUp(e){e.stopPropagation(),window.clearTimeout(this.mouseTimeout),this.thumbPressed=!1;const t=!!ur.AR&&{passive:!0};this.app.removeEventListener("touchmove",this.onMouseMove,t),this.app.removeEventListener("mousemove",this.onMouseMove,t),this.$emit("mouseup",e),this.$emit("end",this.internalValue),(0,ur.bD)(this.oldValue,this.internalValue)||(this.$emit("change",this.internalValue),this.noClick=!0),this.isActive=!1},onMouseMove(e){"mousemove"===e.type&&(this.thumbPressed=!0),this.internalValue=this.parseMouseMove(e)},onKeyDown(e){if(!this.isInteractive)return;const t=this.parseKeyDown(e,this.internalValue);null==t||tthis.maxValue||(this.internalValue=t,this.$emit("change",t))},onSliderClick(e){if(this.noClick)return void(this.noClick=!1);const t=this.$refs.thumb;t.focus(),this.onMouseMove(e),this.$emit("change",this.internalValue)},onBlur(e){this.isFocused=!1,this.$emit("blur",e)},onFocus(e){this.isFocused=!0,this.$emit("focus",e)},parseMouseMove(e){const t=this.vertical?"top":"left",r=this.vertical?"height":"width",i=this.vertical?"clientY":"clientX",{[t]:n,[r]:s}=this.$refs.track.getBoundingClientRect(),o="touches"in e?e.touches[0][i]:e[i];let a=Math.min(Math.max((o-n-this.startOffset)/s,0),1)||0;return this.vertical&&(a=1-a),this.$vuetify.rtl&&(a=1-a),parseFloat(this.min)+a*(this.maxValue-this.minValue)},parseKeyDown(e,t){if(!this.isInteractive)return;const{pageup:r,pagedown:i,end:n,home:s,left:o,right:a,down:l,up:u}=ur.uP;if(![r,i,n,s,o,a,l,u].includes(e.keyCode))return;e.preventDefault();const c=this.stepNumeric||1,h=(this.maxValue-this.minValue)/c;if([o,a,l,u].includes(e.keyCode)){const r=this.$vuetify.rtl?[o,u]:[a,u],i=r.includes(e.keyCode)?1:-1,n=e.shiftKey?3:e.ctrlKey?2:1;t+=i*c*n}else if(e.keyCode===s)t=this.minValue;else if(e.keyCode===n)t=this.maxValue;else{const r=e.keyCode===i?1:-1;t-=r*c*(h>100?h/10:10)}return t},roundValue(e){if(!this.stepNumeric)return e;const t=this.step.toString().trim(),r=t.indexOf(".")>-1?t.length-t.indexOf(".")-1:0,i=this.minValue%this.stepNumeric,n=Math.round((e-i)/this.stepNumeric)*this.stepNumeric+i;return parseFloat(Math.min(n,this.maxValue).toFixed(r))}}}),Pr=r(20517);function Tr(e){e={...e};const t=(0,Pr.rF)(e),r=(0,Pr.WZ)(e),i=(0,Pr.Ag)(e);return{alpha:e.a,hex:t.substr(0,7),hexa:t,hsla:r,hsva:e,hue:e.h,rgba:i}}function Ir(e){const t=(0,Pr.gC)(e),r=(0,Pr.rF)(t),i=(0,Pr.Ag)(t);return{alpha:t.a,hex:r.substr(0,7),hexa:r,hsla:e,hsva:t,hue:t.h,rgba:i}}function Dr(e){const t=(0,Pr.aZ)(e),r=(0,Pr.FJ)(e),i=(0,Pr.WZ)(t);return{alpha:t.a,hex:r.substr(0,7),hexa:r,hsla:i,hsva:t,hue:t.h,rgba:e}}function Lr(e){const t=(0,Pr.$q)(e),r=(0,Pr.WZ)(t),i=(0,Pr.Ag)(t);return{alpha:t.a,hex:e.substr(0,7),hexa:e,hsla:r,hsva:t,hue:t.h,rgba:i}}function Nr(e){return Lr((0,Pr.jR)(e))}function Rr(e,t){return t.every((t=>e.hasOwnProperty(t)))}function jr(e,t){if(!e)return Dr({r:255,g:0,b:0,a:1});if("string"===typeof e){if("transparent"===e)return Lr("#00000000");const r=(0,Pr.jR)(e);return t&&r===t.hexa?t:Lr(r)}if("object"===typeof e){if(e.hasOwnProperty("alpha"))return e;const r=e.hasOwnProperty("a")?parseFloat(e.a):1;if(Rr(e,["r","g","b"]))return t&&e===t.rgba?t:Dr({...e,a:r});if(Rr(e,["h","s","l"]))return t&&e===t.hsla?t:Ir({...e,a:r});if(Rr(e,["h","s","v"]))return t&&e===t.hsva?t:Tr({...e,a:r})}return Dr({r:255,g:0,b:0,a:1})}function Br(e,t){if(t){const{a:t,...r}=e;return r}return e}function Fr(e,t){if(null==t)return e;if("string"===typeof t)return 7===t.length?e.hex:e.hexa;if("object"===typeof t){const r="number"===typeof t.a&&0===t.a?!!t.a:!t.a;if(Rr(t,["r","g","b"]))return Br(e.rgba,r);if(Rr(t,["h","s","l"]))return Br(e.hsla,r);if(Rr(t,["h","s","v"]))return Br(e.hsva,r)}return e}function zr(e){return!!e&&("string"===typeof e?e.length>7:"object"===typeof e&&(Rr(e,["a"])||Rr(e,["alpha"])))}var Vr=yr.Ay.extend({name:"v-color-picker-preview",props:{color:Object,disabled:Boolean,hideAlpha:Boolean},methods:{genAlpha(){return this.genTrack({staticClass:"v-color-picker__alpha",props:{thumbColor:"grey lighten-2",hideDetails:!0,value:this.color.alpha,step:0,min:0,max:1},style:{backgroundImage:this.disabled?void 0:`linear-gradient(to ${this.$vuetify.rtl?"left":"right"}, transparent, ${(0,Pr.kH)(this.color.rgba)})`},on:{input:e=>this.color.alpha!==e&&this.$emit("update:color",Tr({...this.color.hsva,a:e}))}})},genSliders(){return this.$createElement("div",{staticClass:"v-color-picker__sliders"},[this.genHue(),!this.hideAlpha&&this.genAlpha()])},genDot(){return this.$createElement("div",{staticClass:"v-color-picker__dot"},[this.$createElement("div",{style:{background:(0,Pr.V6)(this.color.rgba)}})])},genHue(){return this.genTrack({staticClass:"v-color-picker__hue",props:{thumbColor:"grey lighten-2",hideDetails:!0,value:this.color.hue,step:0,min:0,max:360},on:{input:e=>this.color.hue!==e&&this.$emit("update:color",Tr({...this.color.hsva,h:e}))}})},genTrack(e){return this.$createElement(Or,{class:"v-color-picker__track",...e,props:{disabled:this.disabled,...e.props}})}},render(e){return e("div",{staticClass:"v-color-picker__preview",class:{"v-color-picker__preview--hide-alpha":this.hideAlpha}},[this.genDot(),this.genSliders()])}}),qr=yr.Ay.extend({name:"v-color-picker-canvas",props:{color:{type:Object,default:()=>Dr({r:255,g:0,b:0,a:1})},disabled:Boolean,dotSize:{type:[Number,String],default:10},height:{type:[Number,String],default:150},width:{type:[Number,String],default:300}},data(){return{boundingRect:{width:0,height:0,left:0,top:0}}},computed:{dot(){return this.color?{x:this.color.hsva.s*parseInt(this.width,10),y:(1-this.color.hsva.v)*parseInt(this.height,10)}:{x:0,y:0}}},watch:{"color.hue":"updateCanvas"},mounted(){this.updateCanvas()},methods:{emitColor(e,t){const{left:r,top:i,width:n,height:s}=this.boundingRect;this.$emit("update:color",Tr({h:this.color.hue,s:(0,ur.qE)(e-r,0,n)/n,v:1-(0,ur.qE)(t-i,0,s)/s,a:this.color.alpha}))},updateCanvas(){if(!this.color)return;const e=this.$refs.canvas,t=e.getContext("2d");if(!t)return;const r=t.createLinearGradient(0,0,e.width,0);r.addColorStop(0,"hsla(0, 0%, 100%, 1)"),r.addColorStop(1,`hsla(${this.color.hue}, 100%, 50%, 1)`),t.fillStyle=r,t.fillRect(0,0,e.width,e.height);const i=t.createLinearGradient(0,0,0,e.height);i.addColorStop(0,"hsla(0, 0%, 100%, 0)"),i.addColorStop(1,"hsla(0, 0%, 0%, 1)"),t.fillStyle=i,t.fillRect(0,0,e.width,e.height)},handleClick(e){this.disabled||(this.boundingRect=this.$el.getBoundingClientRect(),this.emitColor(e.clientX,e.clientY))},handleMouseDown(e){e.preventDefault(),this.disabled||(this.boundingRect=this.$el.getBoundingClientRect(),window.addEventListener("mousemove",this.handleMouseMove),window.addEventListener("mouseup",this.handleMouseUp))},handleMouseMove(e){this.disabled||this.emitColor(e.clientX,e.clientY)},handleMouseUp(){window.removeEventListener("mousemove",this.handleMouseMove),window.removeEventListener("mouseup",this.handleMouseUp)},genCanvas(){return this.$createElement("canvas",{ref:"canvas",attrs:{width:this.width,height:this.height}})},genDot(){const e=parseInt(this.dotSize,10)/2,t=(0,ur.Dg)(this.dot.x-e),r=(0,ur.Dg)(this.dot.y-e);return this.$createElement("div",{staticClass:"v-color-picker__canvas-dot",class:{"v-color-picker__canvas-dot--disabled":this.disabled},style:{width:(0,ur.Dg)(this.dotSize),height:(0,ur.Dg)(this.dotSize),transform:`translate(${t}, ${r})`}})}},render(e){return e("div",{staticClass:"v-color-picker__canvas",style:{width:(0,ur.Dg)(this.width),height:(0,ur.Dg)(this.height)},on:{click:this.handleClick,mousedown:this.handleMouseDown}},[this.genCanvas(),this.genDot()])}}),Ur=r(54728);const Hr={rgba:{inputs:[["r",255,"int"],["g",255,"int"],["b",255,"int"],["a",1,"float"]],from:Dr},hsla:{inputs:[["h",360,"int"],["s",1,"float"],["l",1,"float"],["a",1,"float"]],from:Ir},hexa:{from:Lr}};var Wr=yr.Ay.extend({name:"v-color-picker-edit",props:{color:Object,disabled:Boolean,hideAlpha:Boolean,hideModeSwitch:Boolean,mode:{type:String,default:"rgba",validator:e=>Object.keys(Hr).includes(e)}},data(){return{modes:Hr,internalMode:this.mode}},computed:{currentMode(){return this.modes[this.internalMode]}},watch:{mode(e){this.internalMode=e}},created(){this.internalMode=this.mode},methods:{getValue(e,t){return"float"===t?Math.round(100*e)/100:"int"===t?Math.round(e):0},parseValue(e,t){return"float"===t?parseFloat(e):"int"===t&&parseInt(e,10)||0},changeMode(){const e=Object.keys(this.modes),t=e.indexOf(this.internalMode),r=e[(t+1)%e.length];this.internalMode=r,this.$emit("update:mode",r)},genInput(e,t,r,i){return this.$createElement("div",{staticClass:"v-color-picker__input"},[this.$createElement("input",{key:e,attrs:t,domProps:{value:r},on:i}),this.$createElement("span",e.toUpperCase())])},genInputs(){if("hexa"===this.internalMode){const e=this.color.hexa,t=this.hideAlpha&&e.endsWith("FF")?e.substr(0,7):e;return this.genInput("hex",{maxlength:this.hideAlpha?7:9,disabled:this.disabled},t,{change:e=>{const t=e.target;this.$emit("update:color",this.currentMode.from((0,Pr.jR)(t.value)))}})}{const e=this.hideAlpha?this.currentMode.inputs.slice(0,-1):this.currentMode.inputs;return e.map((([e,t,r])=>{const i=this.color[this.internalMode];return this.genInput(e,{type:"number",min:0,max:t,step:"float"===r?"0.01":"int"===r?"1":void 0,disabled:this.disabled},this.getValue(i[e],r),{input:t=>{const n=t.target,s=this.parseValue(n.value||"0",r);this.$emit("update:color",this.currentMode.from(Object.assign({},i,{[e]:s}),this.color.alpha))}})}))}},genSwitch(){return this.$createElement(Ur.A,{props:{small:!0,icon:!0,disabled:this.disabled},on:{click:this.changeMode}},[this.$createElement(mr.A,"$unfold")])}},render(e){return e("div",{staticClass:"v-color-picker__edit"},[this.genInputs(),!this.hideModeSwitch&&this.genSwitch()])}});const Kr=Object.freeze({base:"#f44336",lighten5:"#ffebee",lighten4:"#ffcdd2",lighten3:"#ef9a9a",lighten2:"#e57373",lighten1:"#ef5350",darken1:"#e53935",darken2:"#d32f2f",darken3:"#c62828",darken4:"#b71c1c",accent1:"#ff8a80",accent2:"#ff5252",accent3:"#ff1744",accent4:"#d50000"}),Yr=Object.freeze({base:"#e91e63",lighten5:"#fce4ec",lighten4:"#f8bbd0",lighten3:"#f48fb1",lighten2:"#f06292",lighten1:"#ec407a",darken1:"#d81b60",darken2:"#c2185b",darken3:"#ad1457",darken4:"#880e4f",accent1:"#ff80ab",accent2:"#ff4081",accent3:"#f50057",accent4:"#c51162"}),Gr=Object.freeze({base:"#9c27b0",lighten5:"#f3e5f5",lighten4:"#e1bee7",lighten3:"#ce93d8",lighten2:"#ba68c8",lighten1:"#ab47bc",darken1:"#8e24aa",darken2:"#7b1fa2",darken3:"#6a1b9a",darken4:"#4a148c",accent1:"#ea80fc",accent2:"#e040fb",accent3:"#d500f9",accent4:"#aa00ff"}),Zr=Object.freeze({base:"#673ab7",lighten5:"#ede7f6",lighten4:"#d1c4e9",lighten3:"#b39ddb",lighten2:"#9575cd",lighten1:"#7e57c2",darken1:"#5e35b1",darken2:"#512da8",darken3:"#4527a0",darken4:"#311b92",accent1:"#b388ff",accent2:"#7c4dff",accent3:"#651fff",accent4:"#6200ea"}),Jr=Object.freeze({base:"#3f51b5",lighten5:"#e8eaf6",lighten4:"#c5cae9",lighten3:"#9fa8da",lighten2:"#7986cb",lighten1:"#5c6bc0",darken1:"#3949ab",darken2:"#303f9f",darken3:"#283593",darken4:"#1a237e",accent1:"#8c9eff",accent2:"#536dfe",accent3:"#3d5afe",accent4:"#304ffe"}),Xr=Object.freeze({base:"#2196f3",lighten5:"#e3f2fd",lighten4:"#bbdefb",lighten3:"#90caf9",lighten2:"#64b5f6",lighten1:"#42a5f5",darken1:"#1e88e5",darken2:"#1976d2",darken3:"#1565c0",darken4:"#0d47a1",accent1:"#82b1ff",accent2:"#448aff",accent3:"#2979ff",accent4:"#2962ff"}),Qr=Object.freeze({base:"#03a9f4",lighten5:"#e1f5fe",lighten4:"#b3e5fc",lighten3:"#81d4fa",lighten2:"#4fc3f7",lighten1:"#29b6f6",darken1:"#039be5",darken2:"#0288d1",darken3:"#0277bd",darken4:"#01579b",accent1:"#80d8ff",accent2:"#40c4ff",accent3:"#00b0ff",accent4:"#0091ea"}),ei=Object.freeze({base:"#00bcd4",lighten5:"#e0f7fa",lighten4:"#b2ebf2",lighten3:"#80deea",lighten2:"#4dd0e1",lighten1:"#26c6da",darken1:"#00acc1",darken2:"#0097a7",darken3:"#00838f",darken4:"#006064",accent1:"#84ffff",accent2:"#18ffff",accent3:"#00e5ff",accent4:"#00b8d4"}),ti=Object.freeze({base:"#009688",lighten5:"#e0f2f1",lighten4:"#b2dfdb",lighten3:"#80cbc4",lighten2:"#4db6ac",lighten1:"#26a69a",darken1:"#00897b",darken2:"#00796b",darken3:"#00695c",darken4:"#004d40",accent1:"#a7ffeb",accent2:"#64ffda",accent3:"#1de9b6",accent4:"#00bfa5"}),ri=Object.freeze({base:"#4caf50",lighten5:"#e8f5e9",lighten4:"#c8e6c9",lighten3:"#a5d6a7",lighten2:"#81c784",lighten1:"#66bb6a",darken1:"#43a047",darken2:"#388e3c",darken3:"#2e7d32",darken4:"#1b5e20",accent1:"#b9f6ca",accent2:"#69f0ae",accent3:"#00e676",accent4:"#00c853"}),ii=Object.freeze({base:"#8bc34a",lighten5:"#f1f8e9",lighten4:"#dcedc8",lighten3:"#c5e1a5",lighten2:"#aed581",lighten1:"#9ccc65",darken1:"#7cb342",darken2:"#689f38",darken3:"#558b2f",darken4:"#33691e",accent1:"#ccff90",accent2:"#b2ff59",accent3:"#76ff03",accent4:"#64dd17"}),ni=Object.freeze({base:"#cddc39",lighten5:"#f9fbe7",lighten4:"#f0f4c3",lighten3:"#e6ee9c",lighten2:"#dce775",lighten1:"#d4e157",darken1:"#c0ca33",darken2:"#afb42b",darken3:"#9e9d24",darken4:"#827717",accent1:"#f4ff81",accent2:"#eeff41",accent3:"#c6ff00",accent4:"#aeea00"}),si=Object.freeze({base:"#ffeb3b",lighten5:"#fffde7",lighten4:"#fff9c4",lighten3:"#fff59d",lighten2:"#fff176",lighten1:"#ffee58",darken1:"#fdd835",darken2:"#fbc02d",darken3:"#f9a825",darken4:"#f57f17",accent1:"#ffff8d",accent2:"#ffff00",accent3:"#ffea00",accent4:"#ffd600"}),oi=Object.freeze({base:"#ffc107",lighten5:"#fff8e1",lighten4:"#ffecb3",lighten3:"#ffe082",lighten2:"#ffd54f",lighten1:"#ffca28",darken1:"#ffb300",darken2:"#ffa000",darken3:"#ff8f00",darken4:"#ff6f00",accent1:"#ffe57f",accent2:"#ffd740",accent3:"#ffc400",accent4:"#ffab00"}),ai=Object.freeze({base:"#ff9800",lighten5:"#fff3e0",lighten4:"#ffe0b2",lighten3:"#ffcc80",lighten2:"#ffb74d",lighten1:"#ffa726",darken1:"#fb8c00",darken2:"#f57c00",darken3:"#ef6c00",darken4:"#e65100",accent1:"#ffd180",accent2:"#ffab40",accent3:"#ff9100",accent4:"#ff6d00"}),li=Object.freeze({base:"#ff5722",lighten5:"#fbe9e7",lighten4:"#ffccbc",lighten3:"#ffab91",lighten2:"#ff8a65",lighten1:"#ff7043",darken1:"#f4511e",darken2:"#e64a19",darken3:"#d84315",darken4:"#bf360c",accent1:"#ff9e80",accent2:"#ff6e40",accent3:"#ff3d00",accent4:"#dd2c00"}),ui=Object.freeze({base:"#795548",lighten5:"#efebe9",lighten4:"#d7ccc8",lighten3:"#bcaaa4",lighten2:"#a1887f",lighten1:"#8d6e63",darken1:"#6d4c41",darken2:"#5d4037",darken3:"#4e342e",darken4:"#3e2723"}),ci=Object.freeze({base:"#607d8b",lighten5:"#eceff1",lighten4:"#cfd8dc",lighten3:"#b0bec5",lighten2:"#90a4ae",lighten1:"#78909c",darken1:"#546e7a",darken2:"#455a64",darken3:"#37474f",darken4:"#263238"}),hi=Object.freeze({base:"#9e9e9e",lighten5:"#fafafa",lighten4:"#f5f5f5",lighten3:"#eeeeee",lighten2:"#e0e0e0",lighten1:"#bdbdbd",darken1:"#757575",darken2:"#616161",darken3:"#424242",darken4:"#212121"}),di=Object.freeze({black:"#000000",white:"#ffffff",transparent:"transparent"});var fi=Object.freeze({red:Kr,pink:Yr,purple:Gr,deepPurple:Zr,indigo:Jr,blue:Xr,lightBlue:Qr,cyan:ei,teal:ti,green:ri,lightGreen:ii,lime:ni,yellow:si,amber:oi,orange:ai,deepOrange:li,brown:ui,blueGrey:ci,grey:hi,shades:di}),pi=r(73381);function mi(e){return Object.keys(e).map((t=>{const r=e[t];return r.base?[r.base,r.darken4,r.darken3,r.darken2,r.darken1,r.lighten1,r.lighten2,r.lighten3,r.lighten4,r.lighten5]:[r.black,r.white,r.transparent]}))}const gi=Nr("#FFFFFF").rgba,vi=Nr("#000000").rgba;var yi=(0,_r.A)(pi.A).extend({name:"v-color-picker-swatches",props:{swatches:{type:Array,default:()=>mi(fi)},disabled:Boolean,color:Object,maxWidth:[Number,String],maxHeight:[Number,String]},methods:{genColor(e){const t=this.$createElement("div",{style:{background:e}},[(0,ur.bD)(this.color,jr(e,null))&&this.$createElement(mr.A,{props:{small:!0,dark:(0,Pr.yN)(this.color.rgba,gi)>2&&this.color.alpha>.5,light:(0,Pr.yN)(this.color.rgba,vi)>2&&this.color.alpha>.5}},"$success")]);return this.$createElement("div",{staticClass:"v-color-picker__color",on:{click:()=>this.disabled||this.$emit("update:color",Nr("transparent"===e?"#00000000":e))}},[t])},genSwatches(){return this.swatches.map((e=>{const t=e.map(this.genColor);return this.$createElement("div",{staticClass:"v-color-picker__swatch"},t)}))}},render(e){return e("div",{staticClass:"v-color-picker__swatches",style:{maxWidth:(0,ur.Dg)(this.maxWidth),maxHeight:(0,ur.Dg)(this.maxHeight)}},[this.$createElement("div",this.genSwatches())])}}),bi=r(13251),wi=(0,_r.A)(bi.A,pi.A).extend({name:"v-color-picker",props:{canvasHeight:{type:[String,Number],default:150},disabled:Boolean,dotSize:{type:[Number,String],default:10},flat:Boolean,hideCanvas:Boolean,hideSliders:Boolean,hideInputs:Boolean,hideModeSwitch:Boolean,mode:{type:String,default:"rgba",validator:e=>Object.keys(Hr).includes(e)},showSwatches:Boolean,swatches:Array,swatchesMaxHeight:{type:[Number,String],default:150},value:{type:[Object,String]},width:{type:[Number,String],default:300}},data:()=>({internalValue:Dr({r:255,g:0,b:0,a:1})}),computed:{hideAlpha(){return!!this.value&&!zr(this.value)}},watch:{value:{handler(e){this.updateColor(jr(e,this.internalValue))},immediate:!0}},methods:{updateColor(e){this.internalValue=e;const t=Fr(this.internalValue,this.value);(0,ur.bD)(t,this.value)||(this.$emit("input",t),this.$emit("update:color",this.internalValue))},genCanvas(){return this.$createElement(qr,{props:{color:this.internalValue,disabled:this.disabled,dotSize:this.dotSize,width:this.width,height:this.canvasHeight},on:{"update:color":this.updateColor}})},genControls(){return this.$createElement("div",{staticClass:"v-color-picker__controls"},[!this.hideSliders&&this.genPreview(),!this.hideInputs&&this.genEdit()])},genEdit(){return this.$createElement(Wr,{props:{color:this.internalValue,disabled:this.disabled,hideAlpha:this.hideAlpha,hideModeSwitch:this.hideModeSwitch,mode:this.mode},on:{"update:color":this.updateColor,"update:mode":e=>this.$emit("update:mode",e)}})},genPreview(){return this.$createElement(Vr,{props:{color:this.internalValue,disabled:this.disabled,hideAlpha:this.hideAlpha},on:{"update:color":this.updateColor}})},genSwatches(){return this.$createElement(yi,{props:{dark:this.dark,light:this.light,disabled:this.disabled,swatches:this.swatches,color:this.internalValue,maxHeight:this.swatchesMaxHeight},on:{"update:color":this.updateColor}})}},render(e){return e(Er.A,{staticClass:"v-color-picker",class:{"v-color-picker--flat":this.flat,...this.themeClasses,...this.elevationClasses},props:{maxWidth:this.width}},[!this.hideCanvas&&this.genCanvas(),(!this.hideSliders||!this.hideInputs)&&this.genControls(),this.showSwatches&&this.genSwatches()])}}),_i=hr.extend({name:"v-combobox",props:{delimiters:{type:Array,default:()=>[]},returnObject:{type:Boolean,default:!0}},data:()=>({editingIndex:-1}),computed:{computedCounterValue(){return this.multiple?this.selectedItems.length:(this.internalSearch||"").toString().length},hasSlot(){return or.A.options.computed.hasSlot.call(this)||this.multiple},isAnyValueAllowed(){return!0},menuCanShow(){return!!this.isFocused&&(this.hasDisplayedItems||!!this.$slots["no-data"]&&!this.hideNoData)},searchIsDirty(){return null!=this.internalSearch}},methods:{onInternalSearchChanged(e){if(e&&this.multiple&&this.delimiters.length){const t=this.delimiters.find((t=>e.endsWith(t)));null!=t&&(this.internalSearch=e.slice(0,e.length-t.length),this.updateTags())}this.updateMenuDimensions()},genInput(){const e=hr.options.methods.genInput.call(this);return delete e.data.attrs.name,e.data.on.paste=this.onPaste,e},genChipSelection(e,t){const r=or.A.options.methods.genChipSelection.call(this,e,t);return this.multiple&&(r.componentOptions.listeners={...r.componentOptions.listeners,dblclick:()=>{this.editingIndex=t,this.internalSearch=this.getText(e),this.selectedIndex=-1}}),r},onChipInput(e){or.A.options.methods.onChipInput.call(this,e),this.editingIndex=-1},onEnterDown(e){e.preventDefault(),this.getMenuIndex()>-1||this.$nextTick(this.updateSelf)},onKeyDown(e){const t=e.keyCode;!e.ctrlKey&&[ur.uP.home,ur.uP.end].includes(t)||or.A.options.methods.onKeyDown.call(this,e),this.multiple&&t===ur.uP.left&&0===this.$refs.input.selectionStart?this.updateSelf():t===ur.uP.enter&&this.onEnterDown(e),this.changeSelectedIndex(t)},onTabDown(e){if(this.multiple&&this.internalSearch&&-1===this.getMenuIndex())return e.preventDefault(),e.stopPropagation(),this.updateTags();hr.options.methods.onTabDown.call(this,e)},selectItem(e){this.editingIndex>-1?this.updateEditing():(hr.options.methods.selectItem.call(this,e),this.internalSearch&&this.multiple&&this.getText(e).toLocaleLowerCase().includes(this.internalSearch.toLocaleLowerCase())&&(this.internalSearch=null))},setSelectedItems(){null==this.internalValue||""===this.internalValue?this.selectedItems=[]:this.selectedItems=this.multiple?this.internalValue:[this.internalValue]},setValue(e){or.A.options.methods.setValue.call(this,void 0===e?this.internalSearch:e)},updateEditing(){const e=this.internalValue.slice(),t=this.selectedItems.findIndex((e=>this.getText(e)===this.internalSearch));if(t>-1){const r="object"===typeof e[t]?Object.assign({},e[t]):e[t];e.splice(t,1),e.push(r)}else e[this.editingIndex]=this.internalSearch;this.setValue(e),this.editingIndex=-1,this.internalSearch=null},updateCombobox(){if(!this.searchIsDirty)return;this.internalSearch!==this.getText(this.internalValue)&&this.setValue();const e=Boolean(this.$scopedSlots.selection)||this.hasChips;e&&(this.internalSearch=null)},updateSelf(){this.multiple?this.updateTags():this.updateCombobox()},updateTags(){const e=this.getMenuIndex();if(e<0&&!this.searchIsDirty||!this.internalSearch)return;if(this.editingIndex>-1)return this.updateEditing();const t=this.selectedItems.findIndex((e=>this.internalSearch===this.getText(e))),r=t>-1&&"object"===typeof this.selectedItems[t]?Object.assign({},this.selectedItems[t]):this.internalSearch;if(t>-1){const e=this.internalValue.slice();e.splice(t,1),this.setValue(e)}if(e>-1)return this.internalSearch=null;this.selectItem(r),this.internalSearch=null},onPaste(e){var t;if(this.$emit("paste",e),!this.multiple||this.searchIsDirty)return;const r=null===(t=e.clipboardData)||void 0===t?void 0:t.getData("text/vnd.vuetify.autocomplete.item+plain");r&&-1===this.findExistingIndex(r)&&(e.preventDefault(),or.A.options.methods.selectItem.call(this,r))},clearableCallback(){this.editingIndex=-1,hr.options.methods.clearableCallback.call(this)}}}),ki=r(3449),xi=r(58743),Si=(0,_r.A)(xi.A).extend({methods:{genPickerButton(e,t,r,i=!1,n=""){const s=this[e]===t,o=r=>{r.stopPropagation(),this.$emit(`update:${(0,ur.kW)(e)}`,t)};return this.$createElement("div",{staticClass:`v-picker__title__btn ${n}`.trim(),class:{"v-picker__title__btn--active":s,"v-picker__title__btn--readonly":i},on:s||i?void 0:{click:o}},Array.isArray(r)?r:[r])}}}),Mi=(0,_r.A)(Si).extend({name:"v-date-picker-title",props:{date:{type:String,default:""},disabled:Boolean,readonly:Boolean,selectingYear:Boolean,value:{type:String},year:{type:[Number,String],default:""},yearIcon:{type:String}},data:()=>({isReversing:!1}),computed:{computedTransition(){return this.isReversing?"picker-reverse-transition":"picker-transition"}},watch:{value(e,t){this.isReversing=e(t|=0,e=String(e),r=String(r),e.length>t?String(e):(t-=e.length,t>r.length&&(r+=r.repeat(t/r.length)),r.slice(0,t)+String(e)));var Ci=(e,t=2)=>Ai(e,t,"0");function $i(e,t,r={start:0,length:0}){const i=e=>{const[t,r,i]=e.trim().split(" ")[0].split("-");return[Ci(t,4),Ci(r||1),Ci(i||1)].join("-")};try{const r=new Intl.DateTimeFormat(e||void 0,t);return e=>r.format(new Date(`${i(e)}T00:00:00+00:00`))}catch(n){return r.start||r.length?e=>i(e).substr(r.start||0,r.length):void 0}}var Oi=$i,Pi=(e,t)=>{const[r,i]=e.split("-").map(Number);return i+t===0?r-1+"-12":i+t===13?`${r+1}-01`:`${r}-${Ci(i+t)}`},Ti=(0,_r.A)(xi.A,Ei,pi.A).extend({name:"v-date-picker-header",props:{disabled:Boolean,format:Function,min:String,max:String,nextAriaLabel:String,nextIcon:{type:String,default:"$next"},prevAriaLabel:String,prevIcon:{type:String,default:"$prev"},readonly:Boolean,value:{type:[Number,String],required:!0}},data(){return{isReversing:!1}},computed:{formatter(){return this.format?this.format:String(this.value).split("-")[1]?Oi(this.currentLocale,{month:"long",year:"numeric",timeZone:"UTC"},{length:7}):Oi(this.currentLocale,{year:"numeric",timeZone:"UTC"},{length:4})}},watch:{value(e,t){this.isReversing=e0?this.nextAriaLabel:this.prevAriaLabel,r=t?this.$vuetify.lang.t(t):void 0,i=this.disabled||e<0&&this.min&&this.calculateChange(e)0&&this.max&&this.calculateChange(e)>this.max;return this.$createElement(Ur.A,{attrs:{"aria-label":r},props:{dark:this.dark,disabled:i,icon:!0,light:this.light},on:{click:t=>{t.stopPropagation(),this.$emit("input",this.calculateChange(e))}}},[this.$createElement(mr.A,e<0===!this.$vuetify.rtl?this.prevIcon:this.nextIcon)])},calculateChange(e){const[t,r]=String(this.value).split("-").map(Number);return null==r?`${t+e}`:Pi(String(this.value),e)},genHeader(){const e=!this.disabled&&(this.color||"accent"),t=this.$createElement("div",this.setTextColor(e,{key:String(this.value)}),[this.$createElement("button",{attrs:{type:"button"},on:{click:()=>this.$emit("toggle")}},(0,ur.$c)(this)||[this.formatter(String(this.value))])]),r=this.$createElement("transition",{props:{name:this.isReversing===!this.$vuetify.rtl?"tab-reverse-transition":"tab-transition"}},[t]);return this.$createElement("div",{staticClass:"v-date-picker-header__value",class:{"v-date-picker-header__value--disabled":this.disabled}},[r])}},render(){return this.$createElement("div",{staticClass:"v-date-picker-header",class:{"v-date-picker-header--disabled":this.disabled,...this.themeClasses}},[this.genBtn(-1),this.genHeader(),this.genBtn(1)])}});const Ii=e=>{const{touchstartX:t,touchendX:r,touchstartY:i,touchendY:n}=e,s=.5,o=16;e.offsetX=r-t,e.offsetY=n-i,Math.abs(e.offsetY)t+o&&e.right(e)),Math.abs(e.offsetX)i+o&&e.down(e))};function Di(e,t){const r=e.changedTouches[0];t.touchstartX=r.clientX,t.touchstartY=r.clientY,t.start&&t.start(Object.assign(e,t))}function Li(e,t){const r=e.changedTouches[0];t.touchendX=r.clientX,t.touchendY=r.clientY,t.end&&t.end(Object.assign(e,t)),Ii(t)}function Ni(e,t){const r=e.changedTouches[0];t.touchmoveX=r.clientX,t.touchmoveY=r.clientY,t.move&&t.move(Object.assign(e,t))}function Ri(e){const t={touchstartX:0,touchstartY:0,touchendX:0,touchendY:0,touchmoveX:0,touchmoveY:0,offsetX:0,offsetY:0,left:e.left,right:e.right,up:e.up,down:e.down,start:e.start,move:e.move,end:e.end};return{touchstart:e=>Di(e,t),touchend:e=>Li(e,t),touchmove:e=>Ni(e,t)}}function ji(e,t,r){const i=t.value,n=i.parent?e.parentElement:e,s=i.options||{passive:!0};if(!n)return;const o=Ri(t.value);n._touchHandlers=Object(n._touchHandlers),n._touchHandlers[r.context._uid]=o,(0,ur.HP)(o).forEach((e=>{n.addEventListener(e,o[e],s)}))}function Bi(e,t,r){const i=t.value.parent?e.parentElement:e;if(!i||!i._touchHandlers)return;const n=i._touchHandlers[r.context._uid];(0,ur.HP)(n).forEach((e=>{i.removeEventListener(e,n[e])})),delete i._touchHandlers[r.context._uid]}const Fi={inserted:ji,unbind:Bi};var zi=Fi;function Vi(e,t,r){return Object.keys(e.$listeners).reduce(((i,n)=>(n.endsWith(t)&&(i[n.slice(0,-t.length)]=t=>e.$emit(n,r,t)),i)),{})}function qi(e,t){return Object.keys(e.$listeners).reduce(((r,i)=>(i.endsWith(t)&&(r[i]=e.$listeners[i]),r)),{})}var Ui=(e,t)=>{const[r,i=1,n=1]=e.split("-");return`${r}-${Ci(i)}-${Ci(n)}`.substr(0,{date:10,month:7,year:4}[t])};function Hi(e,t,r,i){return(!i||i(e))&&(!t||e>=t.substr(0,10))&&(!r||e<=r)}var Wi=(0,_r.A)(xi.A,Ei,pi.A).extend({directives:{Touch:zi},props:{allowedDates:Function,current:String,disabled:Boolean,format:Function,events:{type:[Array,Function,Object],default:()=>null},eventColor:{type:[Array,Function,Object,String],default:()=>"warning"},min:String,max:String,range:Boolean,readonly:Boolean,scrollable:Boolean,tableDate:{type:String,required:!0},value:[String,Array]},data:()=>({isReversing:!1,wheelThrottle:null}),computed:{computedTransition(){return this.isReversing===!this.$vuetify.rtl?"tab-reverse-transition":"tab-transition"},displayedMonth(){return Number(this.tableDate.split("-")[1])-1},displayedYear(){return Number(this.tableDate.split("-")[0])}},watch:{tableDate(e,t){this.isReversing=e{t&&!this.readonly&&this.$emit("input",e)}},Vi(this,`:${r}`,e))},genButton(e,t,r,i,n=!1){const s=Hi(e,this.min,this.max,this.allowedDates),o=this.isSelected(e)&&s,a=e===this.current,l=o?this.setBackgroundColor:this.setTextColor,u=(o||a)&&(this.color||"accent");let c=!1,h=!1;return this.range&&this.value&&Array.isArray(this.value)&&(c=e===this.value[0],h=e===this.value[this.value.length-1]),this.$createElement("button",l(u,{staticClass:"v-btn",class:this.genButtonClasses(s&&!n,t,o,a,c,h),attrs:{type:"button"},domProps:{disabled:this.disabled||!s||n},on:this.genButtonEvents(e,s,r)}),[this.$createElement("div",{staticClass:"v-btn__content"},[i(e)]),this.genEvents(e)])},getEventColors(e){const t=e=>Array.isArray(e)?e:[e];let r,i=[];return r=Array.isArray(this.events)?this.events.includes(e):this.events instanceof Function?this.events(e)||!1:this.events&&this.events[e]||!1,r?(i=!0!==r?t(r):"string"===typeof this.eventColor?[this.eventColor]:"function"===typeof this.eventColor?t(this.eventColor(e)):Array.isArray(this.eventColor)?this.eventColor:t(this.eventColor[e]),i.filter((e=>e))):[]},genEvents(e){const t=this.getEventColors(e);return t.length?this.$createElement("div",{staticClass:"v-date-picker-table__events"},t.map((e=>this.$createElement("div",this.setBackgroundColor(e))))):null},isValidScroll(e,t){const r=t(e),i=1===r.split("-").length?"year":"month";return e<0&&(!this.min||r>=Ui(this.min,i))||e>0&&(!this.max||r<=Ui(this.max,i))},wheel(e,t){this.$emit("update:table-date",t(e.deltaY))},touch(e,t){this.$emit("update:table-date",t(e))},genTable(e,t,r){const i=this.$createElement("transition",{props:{name:this.computedTransition}},[this.$createElement("table",{key:this.tableDate},t)]),n={name:"touch",value:{left:e=>e.offsetX<-15&&this.isValidScroll(1,r)&&this.touch(1,r),right:e=>e.offsetX>15&&this.isValidScroll(-1,r)&&this.touch(-1,r)}};return this.$createElement("div",{staticClass:e,class:{"v-date-picker-table--disabled":this.disabled,...this.themeClasses},on:!this.disabled&&this.scrollable?{wheel:e=>{e.preventDefault(),this.isValidScroll(e.deltaY,r)&&this.wheelThrottle(e,r)}}:void 0,directives:[n]},[i])},isSelected(e){if(Array.isArray(this.value)){if(this.range&&2===this.value.length){const[t,r]=[...this.value].sort();return t<=e&&e<=r}return-1!==this.value.indexOf(e)}return e===this.value}}});function Ki(e,t=0,r=1){let i;return e<100&&e>=0?(i=new Date(Date.UTC(e,t,r)),isFinite(i.getUTCFullYear())&&i.setUTCFullYear(e)):i=new Date(Date.UTC(e,t,r)),i}function Yi(e,t,r){const i=7+t-r,n=(7+Ki(e,0,i).getUTCDay()-t)%7;return-n+i-1}function Gi(e,t,r,i){let n=[0,31,59,90,120,151,181,212,243,273,304,334][t];return t>1&&Xi(e)&&n++,n+r}function Zi(e,t,r){const i=Yi(e,t,r),n=Yi(e+1,t,r),s=Xi(e)?366:365;return(s-i+n)/7}function Ji(e,t,r,i,n){const s=Yi(e,i,n),o=Math.ceil((Gi(e,t,r,i)-s)/7);return o<1?o+Zi(e-1,i,n):o>Zi(e,i,n)?o-Zi(e,i,n):o}function Xi(e){return e%4===0&&e%100!==0||e%400===0}var Qi=(0,_r.A)(Wi).extend({name:"v-date-picker-date-table",props:{firstDayOfWeek:{type:[String,Number],default:0},localeFirstDayOfYear:{type:[String,Number],default:0},showAdjacentMonths:Boolean,showWeek:Boolean,weekdayFormat:Function},computed:{formatter(){return this.format||Oi(this.currentLocale,{day:"numeric",timeZone:"UTC"},{start:8,length:2})},weekdayFormatter(){return this.weekdayFormat||Oi(this.currentLocale,{weekday:"narrow",timeZone:"UTC"})},weekDays(){const e=parseInt(this.firstDayOfWeek,10);return this.weekdayFormatter?(0,ur.Sd)(7).map((t=>this.weekdayFormatter(`2017-01-${e+t+15}`))):(0,ur.Sd)(7).map((t=>["S","M","T","W","T","F","S"][(t+e)%7]))}},methods:{calculateTableDate(e){return Pi(this.tableDate,Math.sign(e||1))},genTHead(){const e=this.weekDays.map((e=>this.$createElement("th",e)));return this.showWeek&&e.unshift(this.$createElement("th")),this.$createElement("thead",this.genTR(e))},weekDaysBeforeFirstDayOfTheMonth(){const e=new Date(`${this.displayedYear}-${Ci(this.displayedMonth+1)}-01T00:00:00+00:00`),t=e.getUTCDay();return(t-parseInt(this.firstDayOfWeek)+7)%7},getWeekNumber(e){return Ji(this.displayedYear,this.displayedMonth,e,parseInt(this.firstDayOfWeek),parseInt(this.localeFirstDayOfYear))},genWeekNumber(e){return this.$createElement("td",[this.$createElement("small",{staticClass:"v-date-picker-table--date__week"},String(e).padStart(2,"0"))])},genTBody(){const e=[],t=new Date(this.displayedYear,this.displayedMonth+1,0).getDate();let r=[],i=this.weekDaysBeforeFirstDayOfTheMonth();this.showWeek&&r.push(this.genWeekNumber(this.getWeekNumber(1)));const n=this.displayedMonth?this.displayedYear:this.displayedYear-1,s=(this.displayedMonth+11)%12,o=new Date(this.displayedYear,this.displayedMonth,0).getDate(),a=this.showWeek?8:7;while(i--){const e=`${n}-${Ci(s+1)}-${Ci(o-i)}`;r.push(this.$createElement("td",this.showAdjacentMonths?[this.genButton(e,!0,"date",this.formatter,!0)]:[]))}for(i=1;i<=t;i++){const n=`${this.displayedYear}-${Ci(this.displayedMonth+1)}-${Ci(i)}`;r.push(this.$createElement("td",[this.genButton(n,!0,"date",this.formatter)])),r.length%a===0&&(e.push(this.genTR(r)),r=[],this.showWeek&&(i{const n=i*t.length+r,s=`${this.displayedYear}-${Ci(n+1)}`;return this.$createElement("td",{key:n},[this.genButton(s,!1,"month",this.formatter)])}));e.push(this.$createElement("tr",{key:i},r))}return this.$createElement("tbody",e)}},render(){return this.genTable("v-date-picker-table v-date-picker-table--month",[this.genTBody()],this.calculateTableDate)}}),tn=(0,_r.A)(xi.A,Ei).extend({name:"v-date-picker-years",props:{format:Function,min:[Number,String],max:[Number,String],readonly:Boolean,value:[Number,String]},data(){return{defaultColor:"primary"}},computed:{formatter(){return this.format||Oi(this.currentLocale,{year:"numeric",timeZone:"UTC"},{length:4})}},mounted(){setTimeout((()=>{const e=this.$el.getElementsByClassName("active")[0];e?this.$el.scrollTop=e.offsetTop-this.$el.offsetHeight/2+e.offsetHeight/2:this.min&&!this.max?this.$el.scrollTop=this.$el.scrollHeight:!this.min&&this.max?this.$el.scrollTop=0:this.$el.scrollTop=this.$el.scrollHeight/2-this.$el.offsetHeight/2}))},methods:{genYearItem(e){const t=this.formatter(`${e}`),r=parseInt(this.value,10)===e,i=r&&(this.color||"primary");return this.$createElement("li",this.setTextColor(i,{key:e,class:{active:r},on:(0,lr.wf)({click:()=>this.$emit("input",e)},Vi(this,":year",e))}),t)},genYearItems(){const e=[],t=this.value?parseInt(this.value,10):(new Date).getFullYear(),r=this.max?parseInt(this.max,10):t+100,i=Math.min(r,this.min?parseInt(this.min,10):t-100);for(let n=r;n>=i;n--)e.push(this.genYearItem(n));return e}},render(){return this.$createElement("ul",{staticClass:"v-date-picker-years",ref:"years"},this.genYearItems())}}),rn=(r(31726),(0,_r.A)(xi.A,bi.A,pi.A).extend({name:"v-picker",props:{flat:Boolean,fullWidth:Boolean,landscape:Boolean,noTitle:Boolean,transition:{type:String,default:"fade-transition"},width:{type:[Number,String],default:290}},computed:{computedTitleColor(){const e=!this.isDark&&(this.color||"primary");return this.color||e}},methods:{genTitle(){return this.$createElement("div",this.setBackgroundColor(this.computedTitleColor,{staticClass:"v-picker__title",class:{"v-picker__title--landscape":this.landscape}}),(0,ur.$c)(this,"title"))},genBodyTransition(){return this.$createElement("transition",{props:{name:this.transition}},(0,ur.$c)(this))},genBody(){return this.$createElement("div",{staticClass:"v-picker__body",class:{"v-picker__body--no-title":this.noTitle,...this.themeClasses},style:this.fullWidth?void 0:{width:(0,ur.Dg)(this.width)}},[this.genBodyTransition()])},genActions(){return this.$createElement("div",{staticClass:"v-picker__actions v-card__actions",class:{"v-picker__actions--no-title":this.noTitle}},(0,ur.$c)(this,"actions"))}},render(e){return e("div",{staticClass:"v-picker v-card",class:{"v-picker--flat":this.flat,"v-picker--landscape":this.landscape,"v-picker--full-width":this.fullWidth,...this.themeClasses,...this.elevationClasses}},[this.$slots.title?this.genTitle():null,this.genBody(),this.$slots.actions?this.genActions():null])}})),nn=rn,sn=(0,_r.A)(xi.A,bi.A,pi.A).extend({name:"picker",props:{flat:Boolean,fullWidth:Boolean,headerColor:String,landscape:Boolean,noTitle:Boolean,width:{type:[Number,String],default:290}},methods:{genPickerTitle(){return null},genPickerBody(){return null},genPickerActionsSlot(){return this.$scopedSlots.default?this.$scopedSlots.default({save:this.save,cancel:this.cancel}):(0,ur.$c)(this)},genPicker(e){const t=[];if(!this.noTitle){const e=this.genPickerTitle();e&&t.push(e)}const r=this.genPickerBody();return r&&t.push(r),t.push(this.$createElement("template",{slot:"actions"},[this.genPickerActionsSlot()])),this.$createElement(nn,{staticClass:e,props:{color:this.headerColor||this.color,dark:this.dark,elevation:this.elevation,flat:this.flat,fullWidth:this.fullWidth,landscape:this.landscape,light:this.light,width:this.width,noTitle:this.noTitle}},t)}}});const on=[0,31,28,31,30,31,30,31,31,30,31,30,31],an=[0,31,29,31,30,31,30,31,31,30,31,30,31];function ln(e,t){return Xi(e)?an[t]:on[t]}var un=(0,_r.A)(Ei,sn).extend({name:"v-date-picker",props:{activePicker:String,allowedDates:Function,dayFormat:Function,disabled:Boolean,events:{type:[Array,Function,Object],default:()=>null},eventColor:{type:[Array,Function,Object,String],default:()=>"warning"},firstDayOfWeek:{type:[String,Number],default:0},headerDateFormat:Function,localeFirstDayOfYear:{type:[String,Number],default:0},max:String,min:String,monthFormat:Function,multiple:Boolean,nextIcon:{type:String,default:"$next"},nextMonthAriaLabel:{type:String,default:"$vuetify.datePicker.nextMonthAriaLabel"},nextYearAriaLabel:{type:String,default:"$vuetify.datePicker.nextYearAriaLabel"},pickerDate:String,prevIcon:{type:String,default:"$prev"},prevMonthAriaLabel:{type:String,default:"$vuetify.datePicker.prevMonthAriaLabel"},prevYearAriaLabel:{type:String,default:"$vuetify.datePicker.prevYearAriaLabel"},range:Boolean,reactive:Boolean,readonly:Boolean,scrollable:Boolean,showCurrent:{type:[Boolean,String],default:!0},selectedItemsText:{type:String,default:"$vuetify.datePicker.itemsSelected"},showAdjacentMonths:Boolean,showWeek:Boolean,titleDateFormat:Function,type:{type:String,default:"date",validator:e=>["date","month"].includes(e)},value:[Array,String],weekdayFormat:Function,yearFormat:Function,yearIcon:String},data(){const e=new Date;return{internalActivePicker:this.type.toUpperCase(),inputDay:null,inputMonth:null,inputYear:null,isReversing:!1,now:e,tableDate:(()=>{if(this.pickerDate)return this.pickerDate;const t=(0,ur.BN)(this.value),r=t[t.length-1]||("string"===typeof this.showCurrent?this.showCurrent:`${e.getFullYear()}-${e.getMonth()+1}`);return Ui(r,"date"===this.type?"month":"year")})()}},computed:{multipleValue(){return(0,ur.BN)(this.value)},isMultiple(){return this.multiple||this.range},lastValue(){return this.isMultiple?this.multipleValue[this.multipleValue.length-1]:this.value},selectedMonths(){return this.value&&"month"!==this.type?this.isMultiple?this.multipleValue.map((e=>e.substr(0,7))):this.value.substr(0,7):this.value},current(){return!0===this.showCurrent?Ui(`${this.now.getFullYear()}-${this.now.getMonth()+1}-${this.now.getDate()}`,this.type):this.showCurrent||null},inputDate(){return"date"===this.type?`${this.inputYear}-${Ci(this.inputMonth+1)}-${Ci(this.inputDay)}`:`${this.inputYear}-${Ci(this.inputMonth+1)}`},tableMonth(){return Number((this.pickerDate||this.tableDate).split("-")[1])-1},tableYear(){return Number((this.pickerDate||this.tableDate).split("-")[0])},minMonth(){return this.min?Ui(this.min,"month"):null},maxMonth(){return this.max?Ui(this.max,"month"):null},minYear(){return this.min?Ui(this.min,"year"):null},maxYear(){return this.max?Ui(this.max,"year"):null},formatters(){return{year:this.yearFormat||Oi(this.currentLocale,{year:"numeric",timeZone:"UTC"},{length:4}),titleDate:this.titleDateFormat||(this.isMultiple?this.defaultTitleMultipleDateFormatter:this.defaultTitleDateFormatter)}},defaultTitleMultipleDateFormatter(){return e=>e.length?1===e.length?this.defaultTitleDateFormatter(e[0]):this.$vuetify.lang.t(this.selectedItemsText,e.length):"-"},defaultTitleDateFormatter(){const e={year:{year:"numeric",timeZone:"UTC"},month:{month:"long",timeZone:"UTC"},date:{weekday:"short",month:"short",day:"numeric",timeZone:"UTC"}},t=Oi(this.currentLocale,e[this.type],{start:0,length:{date:10,month:7,year:4}[this.type]}),r=e=>t(e).replace(/([^\d\s])([\d])/g,((e,t,r)=>`${t} ${r}`)).replace(", ",",
");return this.landscape?r:t}},watch:{internalActivePicker:{immediate:!0,handler(e){this.$emit("update:active-picker",e)}},activePicker(e){this.internalActivePicker=e},tableDate(e,t){const r="month"===this.type?"year":"month";this.isReversing=Ui(e,r)Ui(t,e))).filter(this.isDateAllowed);this.$emit("input",this.isMultiple?t:t[0])}}},created(){this.checkMultipleProp(),this.pickerDate!==this.tableDate&&this.$emit("update:picker-date",this.tableDate),this.setInputDate()},methods:{emitInput(e){if(this.range){if(1!==this.multipleValue.length)this.$emit("input",[e]);else{const t=[this.multipleValue[0],e];this.$emit("input",t),this.$emit("change",t)}return}const t=this.multiple?-1===this.multipleValue.indexOf(e)?this.multipleValue.concat([e]):this.multipleValue.filter((t=>t!==e)):e;this.$emit("input",t),this.multiple||this.$emit("change",e)},checkMultipleProp(){if(null==this.value)return;const e=this.value.constructor.name,t=this.isMultiple?"Array":"String";e!==t&&(0,$r.OP)(`Value must be ${this.isMultiple?"an":"a"} ${t}, got ${e}`,this)},isDateAllowed(e){return Hi(e,this.min,this.max,this.allowedDates)},yearClick(e){this.inputYear=e,"month"===this.type?this.tableDate=`${e}`:this.tableDate=`${e}-${Ci((this.tableMonth||0)+1)}`,this.internalActivePicker="MONTH",this.reactive&&!this.readonly&&!this.isMultiple&&this.isDateAllowed(this.inputDate)&&this.$emit("input",this.inputDate)},monthClick(e){const[t,r]=e.split("-");this.inputYear=parseInt(t,10),this.inputMonth=parseInt(r,10)-1,"date"===this.type?(this.inputDay&&(this.inputDay=Math.min(this.inputDay,ln(this.inputYear,this.inputMonth+1))),this.tableDate=e,this.internalActivePicker="DATE",this.reactive&&!this.readonly&&!this.isMultiple&&this.isDateAllowed(this.inputDate)&&this.$emit("input",this.inputDate)):this.emitInput(this.inputDate)},dateClick(e){const[t,r,i]=e.split("-");this.inputYear=parseInt(t,10),this.inputMonth=parseInt(r,10)-1,this.inputDay=parseInt(i,10),this.emitInput(this.inputDate)},genPickerTitle(){return this.$createElement(Mi,{props:{date:this.value?this.formatters.titleDate(this.isMultiple?this.multipleValue:this.value):"",disabled:this.disabled,readonly:this.readonly,selectingYear:"YEAR"===this.internalActivePicker,year:this.formatters.year(this.multipleValue.length?`${this.inputYear}`:this.tableDate),yearIcon:this.yearIcon,value:this.multipleValue[0]},slot:"title",on:{"update:selecting-year":e=>this.internalActivePicker=e?"YEAR":this.type.toUpperCase()}})},genTableHeader(){return this.$createElement(Ti,{props:{nextIcon:this.nextIcon,color:this.color,dark:this.dark,disabled:this.disabled,format:this.headerDateFormat,light:this.light,locale:this.locale,min:"DATE"===this.internalActivePicker?this.minMonth:this.minYear,max:"DATE"===this.internalActivePicker?this.maxMonth:this.maxYear,nextAriaLabel:"DATE"===this.internalActivePicker?this.nextMonthAriaLabel:this.nextYearAriaLabel,prevAriaLabel:"DATE"===this.internalActivePicker?this.prevMonthAriaLabel:this.prevYearAriaLabel,prevIcon:this.prevIcon,readonly:this.readonly,value:"DATE"===this.internalActivePicker?`${Ci(this.tableYear,4)}-${Ci(this.tableMonth+1)}`:`${Ci(this.tableYear,4)}`},on:{toggle:()=>this.internalActivePicker="DATE"===this.internalActivePicker?"MONTH":"YEAR",input:e=>this.tableDate=e}})},genDateTable(){return this.$createElement(Qi,{props:{allowedDates:this.allowedDates,color:this.color,current:this.current,dark:this.dark,disabled:this.disabled,events:this.events,eventColor:this.eventColor,firstDayOfWeek:this.firstDayOfWeek,format:this.dayFormat,light:this.light,locale:this.locale,localeFirstDayOfYear:this.localeFirstDayOfYear,min:this.min,max:this.max,range:this.range,readonly:this.readonly,scrollable:this.scrollable,showAdjacentMonths:this.showAdjacentMonths,showWeek:this.showWeek,tableDate:`${Ci(this.tableYear,4)}-${Ci(this.tableMonth+1)}`,value:this.value,weekdayFormat:this.weekdayFormat},ref:"table",on:{input:this.dateClick,"update:table-date":e=>this.tableDate=e,...qi(this,":date")}})},genMonthTable(){return this.$createElement(en,{props:{allowedDates:"month"===this.type?this.allowedDates:null,color:this.color,current:this.current?Ui(this.current,"month"):null,dark:this.dark,disabled:this.disabled,events:"month"===this.type?this.events:null,eventColor:"month"===this.type?this.eventColor:null,format:this.monthFormat,light:this.light,locale:this.locale,min:this.minMonth,max:this.maxMonth,range:this.range,readonly:this.readonly&&"month"===this.type,scrollable:this.scrollable,value:this.selectedMonths,tableDate:`${Ci(this.tableYear,4)}`},ref:"table",on:{input:this.monthClick,"update:table-date":e=>this.tableDate=e,...qi(this,":month")}})},genYears(){return this.$createElement(tn,{props:{color:this.color,format:this.yearFormat,locale:this.locale,min:this.minYear,max:this.maxYear,value:this.tableYear},on:{input:this.yearClick,...qi(this,":year")}})},genPickerBody(){const e="YEAR"===this.internalActivePicker?[this.genYears()]:[this.genTableHeader(),"DATE"===this.internalActivePicker?this.genDateTable():this.genMonthTable()];return this.$createElement("div",{key:this.internalActivePicker},e)},setInputDate(){if(this.lastValue){const e=this.lastValue.split("-");this.inputYear=parseInt(e[0],10),this.inputMonth=parseInt(e[1],10)-1,"date"===this.type&&(this.inputDay=parseInt(e[2],10))}else this.inputYear=this.inputYear||this.now.getFullYear(),this.inputMonth=null==this.inputMonth?this.inputMonth:this.now.getMonth(),this.inputDay=this.inputDay||this.now.getDate()}},render(){return this.genPicker("v-picker--date")}}),cn=r(44596),hn=r(5030),dn=r(32031),fn=r(67631),pn=r(30428),mn=(0,_r.A)(xi.A,pi.A,pn.A).extend({name:"v-overlay",props:{absolute:Boolean,color:{type:String,default:"#212121"},dark:{type:Boolean,default:!0},opacity:{type:[Number,String],default:.46},value:{default:!0},zIndex:{type:[Number,String],default:5}},computed:{__scrim(){const e=this.setBackgroundColor(this.color,{staticClass:"v-overlay__scrim",style:{opacity:this.computedOpacity}});return this.$createElement("div",e)},classes(){return{"v-overlay--absolute":this.absolute,"v-overlay--active":this.isActive,...this.themeClasses}},computedOpacity(){return Number(this.isActive?this.opacity:0)},styles(){return{zIndex:this.zIndex}}},methods:{genContent(){return this.$createElement("div",{staticClass:"v-overlay__content"},(0,ur.$c)(this))}},render(e){const t=[this.__scrim];return this.isActive&&t.push(this.genContent()),e("div",{staticClass:"v-overlay",on:this.$listeners,class:this.classes,style:this.styles},t)}}),gn=mn,vn=yr.Ay.extend().extend({name:"overlayable",props:{hideOverlay:Boolean,overlayColor:String,overlayOpacity:[Number,String]},data(){return{animationFrame:0,overlay:null}},watch:{hideOverlay(e){this.isActive&&(e?this.removeOverlay():this.genOverlay())}},beforeDestroy(){this.removeOverlay()},methods:{createOverlay(){const e=new gn({propsData:{absolute:this.absolute,value:!1,color:this.overlayColor,opacity:this.overlayOpacity}});e.$mount();const t=this.absolute?this.$el.parentNode:document.querySelector("[data-app]");t&&t.insertBefore(e.$el,t.firstChild),this.overlay=e},genOverlay(){if(this.hideScroll(),!this.hideOverlay)return this.overlay||this.createOverlay(),this.animationFrame=requestAnimationFrame((()=>{this.overlay&&(void 0!==this.activeZIndex?this.overlay.zIndex=String(this.activeZIndex-1):this.$el&&(this.overlay.zIndex=(0,ur.fl)(this.$el)),this.overlay.value=!0)})),!0},removeOverlay(e=!0){this.overlay&&((0,ur.d7)(this.overlay.$el,"transitionend",(()=>{this.overlay&&this.overlay.$el&&this.overlay.$el.parentNode&&!this.overlay.value&&!this.isActive&&(this.overlay.$el.parentNode.removeChild(this.overlay.$el),this.overlay.$destroy(),this.overlay=null)})),cancelAnimationFrame(this.animationFrame),this.overlay.value=!1),e&&this.showScroll()},scrollListener(e){if("key"in e){if(["INPUT","TEXTAREA","SELECT"].includes(e.target.tagName)||e.target.isContentEditable)return;const t=[ur.uP.up,ur.uP.pageup],r=[ur.uP.down,ur.uP.pagedown];if(t.includes(e.keyCode))e.deltaY=-1;else{if(!r.includes(e.keyCode))return;e.deltaY=1}}(e.target===this.overlay||"keydown"!==e.type&&e.target===document.body||this.checkPath(e))&&e.preventDefault()},hasScrollbar(e){if(!e||e.nodeType!==Node.ELEMENT_NODE)return!1;const t=window.getComputedStyle(e);return(["auto","scroll"].includes(t.overflowY)||"SELECT"===e.tagName)&&e.scrollHeight>e.clientHeight||["auto","scroll"].includes(t.overflowX)&&e.scrollWidth>e.clientWidth},shouldScroll(e,t){if(e.hasAttribute("data-app"))return!1;const r=t.shiftKey||t.deltaX?"x":"y",i="y"===r?t.deltaY:t.deltaX||t.deltaY;let n,s;"y"===r?(n=0===e.scrollTop,s=e.scrollTop+e.clientHeight===e.scrollHeight):(n=0===e.scrollLeft,s=e.scrollLeft+e.clientWidth===e.scrollWidth);const o=i<0,a=i>0;return!(n||!o)||(!(s||!a)||!(!n&&!s||!e.parentNode)&&this.shouldScroll(e.parentNode,t))},isInside(e,t){return e===t||null!==e&&e!==document.body&&this.isInside(e.parentNode,t)},checkPath(e){const t=(0,ur.K9)(e);if("keydown"===e.type&&t[0]===document.body){const t=this.$refs.dialog,r=window.getSelection().anchorNode;return!(t&&this.hasScrollbar(t)&&this.isInside(r,t))||!this.shouldScroll(t,e)}for(let r=0;r{this.isBooted=this.isActive,this.isActive&&this.show()}))},beforeDestroy(){"undefined"!==typeof window&&this.unbind()},methods:{animateClick(){this.animate=!1,this.$nextTick((()=>{this.animate=!0,window.clearTimeout(this.animateTimeout),this.animateTimeout=window.setTimeout((()=>this.animate=!1),150)}))},closeConditional(e){const t=e.target;return!(this._isDestroyed||!this.isActive||this.$refs.content.contains(t)||this.overlay&&t&&!this.overlay.$el.contains(t))&&this.activeZIndex>=this.getMaxZIndex()},hideScroll(){this.fullscreen?document.documentElement.classList.add("overflow-y-hidden"):vn.options.methods.hideScroll.call(this)},show(){!this.fullscreen&&!this.hideOverlay&&this.genOverlay(),this.$nextTick((()=>{this.$nextTick((()=>{var e,t;(null===(e=this.$refs.dialog)||void 0===e?void 0:e.contains(document.activeElement))||(this.previousActiveElement=document.activeElement,null===(t=this.$refs.dialog)||void 0===t||t.focus()),this.bind()}))}))},bind(){window.addEventListener("focusin",this.onFocusin)},unbind(){window.removeEventListener("focusin",this.onFocusin)},onClickOutside(e){this.$emit("click:outside",e),this.persistent?this.noClickAnimation||this.animateClick():this.isActive=!1},onKeydown(e){if(e.keyCode===ur.uP.esc&&!this.getOpenDependents().length)if(this.persistent)this.noClickAnimation||this.animateClick();else{this.isActive=!1;const e=this.getActivator();this.$nextTick((()=>e&&e.focus()))}this.$emit("keydown",e)},onFocusin(e){if(!e||!this.retainFocus)return;const t=e.target;if(t&&this.$refs.dialog&&![document,this.$refs.dialog].includes(t)&&!this.$refs.dialog.contains(t)&&this.activeZIndex>=this.getMaxZIndex()&&!this.getOpenDependentElements().some((e=>e.contains(t)))){const e=this.$refs.dialog.querySelectorAll('button, [href], input:not([type="hidden"]), select, textarea, [tabindex]:not([tabindex="-1"])'),t=[...e].find((e=>!e.hasAttribute("disabled")&&!e.matches('[tabindex="-1"]')));t&&t.focus()}},genContent(){return this.showLazyContent((()=>[this.$createElement(cn.A,{props:{root:!0,light:this.light,dark:this.dark}},[this.$createElement("div",{class:this.contentClasses,attrs:{role:"dialog","aria-modal":this.hideOverlay?void 0:"true",...this.getScopeIdAttrs()},on:{keydown:this.onKeydown},style:{zIndex:this.activeZIndex},ref:"content"},[this.genTransition()])])]))},genTransition(){const e=this.genInnerContent();return this.transition?this.$createElement("transition",{props:{name:this.transition,origin:this.origin,appear:!0}},[e]):e},genInnerContent(){const e={class:this.classes,attrs:{tabindex:this.isActive?0:void 0},ref:"dialog",directives:[{name:"click-outside",value:{handler:this.onClickOutside,closeConditional:this.closeConditional,include:this.getOpenDependentElements}},{name:"show",value:this.isActive}],style:{transformOrigin:this.origin}};return this.fullscreen||(e.style={...e.style,maxWidth:(0,ur.Dg)(this.maxWidth),width:(0,ur.Dg)(this.width)}),this.$createElement("div",e,this.getContentSlot())}},render(e){return e("div",{staticClass:"v-dialog__container",class:{"v-dialog__container--attached":""===this.attach||!0===this.attach||"attach"===this.attach}},[this.genActivator(),this.genContent()])}}),kn=r(40175),xn=r(51878),Sn=xn.C.extend({name:"v-expansion-panels",provide(){return{expansionPanels:this}},props:{accordion:Boolean,disabled:Boolean,flat:Boolean,hover:Boolean,focusable:Boolean,inset:Boolean,popout:Boolean,readonly:Boolean,tile:Boolean},computed:{classes(){return{...xn.C.options.computed.classes.call(this),"v-expansion-panels":!0,"v-expansion-panels--accordion":this.accordion,"v-expansion-panels--flat":this.flat,"v-expansion-panels--hover":this.hover,"v-expansion-panels--focusable":this.focusable,"v-expansion-panels--inset":this.inset,"v-expansion-panels--popout":this.popout,"v-expansion-panels--tile":this.tile}}},created(){this.$attrs.hasOwnProperty("expand")&&(0,$r.q4)("expand","multiple",this),Array.isArray(this.value)&&this.value.length>0&&"boolean"===typeof this.value[0]&&(0,$r.q4)(':value="[true, false, true]"',':value="[0, 2]"',this)},methods:{updateItem(e,t){const r=this.getValue(e,t),i=this.getValue(e,t+1);e.isActive=this.toggleMethod(r),e.nextIsActive=this.toggleMethod(i)}}}),Mn=r(37515),En=r(87540),An=(0,_r.A)((0,Mn.P)("expansionPanels","v-expansion-panel","v-expansion-panels"),(0,En.G)("expansionPanel",!0)).extend({name:"v-expansion-panel",props:{disabled:Boolean,readonly:Boolean},data(){return{content:null,header:null,nextIsActive:!1}},computed:{classes(){return{"v-expansion-panel--active":this.isActive,"v-expansion-panel--next-active":this.nextIsActive,"v-expansion-panel--disabled":this.isDisabled,...this.groupClasses}},isDisabled(){return this.expansionPanels.disabled||this.disabled},isReadonly(){return this.expansionPanels.readonly||this.readonly}},methods:{registerContent(e){this.content=e},unregisterContent(){this.content=null},registerHeader(e){this.header=e,e.$on("click",this.onClick)},unregisterHeader(){this.header=null},onClick(e){e.detail&&this.header.$el.blur(),this.$emit("click",e),this.isReadonly||this.isDisabled||this.toggle()},toggle(){this.$nextTick((()=>this.$emit("change")))}},render(e){return e("div",{staticClass:"v-expansion-panel",class:this.classes,attrs:{"aria-expanded":String(this.isActive)}},(0,ur.$c)(this))}});const Cn=(0,_r.A)(xi.A,(0,En.W)("expansionPanel","v-expansion-panel-header","v-expansion-panel"));var $n=Cn.extend().extend({name:"v-expansion-panel-header",directives:{ripple:vr.A},props:{disableIconRotate:Boolean,expandIcon:{type:String,default:"$expand"},hideActions:Boolean,ripple:{type:[Boolean,Object],default:!1}},data:()=>({hasMousedown:!1}),computed:{classes(){return{"v-expansion-panel-header--active":this.isActive,"v-expansion-panel-header--mousedown":this.hasMousedown}},isActive(){return this.expansionPanel.isActive},isDisabled(){return this.expansionPanel.isDisabled},isReadonly(){return this.expansionPanel.isReadonly}},created(){this.expansionPanel.registerHeader(this)},beforeDestroy(){this.expansionPanel.unregisterHeader()},methods:{onClick(e){this.$emit("click",e)},genIcon(){const e=(0,ur.$c)(this,"actions",{open:this.isActive})||[this.$createElement(mr.A,this.expandIcon)];return this.$createElement(Ar.mM,[this.$createElement("div",{staticClass:"v-expansion-panel-header__icon",class:{"v-expansion-panel-header__icon--disable-rotate":this.disableIconRotate},directives:[{name:"show",value:!this.isDisabled}]},e)])}},render(e){return e("button",this.setBackgroundColor(this.color,{staticClass:"v-expansion-panel-header",class:this.classes,attrs:{tabindex:this.isDisabled?-1:null,type:"button","aria-expanded":this.isActive},directives:[{name:"ripple",value:this.ripple}],on:{...this.$listeners,click:this.onClick,mousedown:()=>this.hasMousedown=!0,mouseup:()=>this.hasMousedown=!1}}),[(0,ur.$c)(this,"default",{open:this.isActive},!0),this.hideActions||this.genIcon()])}}),On=r(80072);const Pn=(0,_r.A)(On.A,xi.A,(0,En.W)("expansionPanel","v-expansion-panel-content","v-expansion-panel"));var Tn=Pn.extend().extend({name:"v-expansion-panel-content",data:()=>({isActive:!1}),computed:{parentIsActive(){return this.expansionPanel.isActive}},watch:{parentIsActive:{immediate:!0,handler(e,t){e&&(this.isBooted=!0),null==t?this.isActive=e:this.$nextTick((()=>this.isActive=e))}}},created(){this.expansionPanel.registerContent(this)},beforeDestroy(){this.expansionPanel.unregisterContent()},render(e){return e(Ar.Qo,this.showLazyContent((()=>[e("div",this.setBackgroundColor(this.color,{staticClass:"v-expansion-panel-content",directives:[{name:"show",value:this.isActive}]}),[e("div",{class:"v-expansion-panel-content__wrap"},(0,ur.$c)(this,"default",{open:this.isActive}))])])))}}),In=r(54414),Dn=ar.A,Ln=Dn.extend({name:"v-file-input",model:{prop:"value",event:"change"},props:{chips:Boolean,clearable:{type:Boolean,default:!0},counterSizeString:{type:String,default:"$vuetify.fileInput.counterSize"},counterString:{type:String,default:"$vuetify.fileInput.counter"},hideInput:Boolean,multiple:Boolean,placeholder:String,prependIcon:{type:String,default:"$file"},readonly:{type:Boolean,default:!1},showSize:{type:[Boolean,Number],default:!1,validator:e=>"boolean"===typeof e||[1e3,1024].includes(e)},smallChips:Boolean,truncateLength:{type:[Number,String],default:22},type:{type:String,default:"file"},value:{default:void 0,validator:e=>(0,ur.BN)(e).every((e=>null!=e&&"object"===typeof e))}},computed:{classes(){return{...Dn.options.computed.classes.call(this),"v-file-input":!0}},computedCounterValue(){const e=this.multiple&&this.lazyValue?this.lazyValue.length:this.lazyValue instanceof File?1:0;if(!this.showSize)return this.$vuetify.lang.t(this.counterString,e);const t=this.internalArrayValue.reduce(((e,{size:t=0})=>e+t),0);return this.$vuetify.lang.t(this.counterSizeString,e,(0,ur.hA)(t,1024===this.base))},internalArrayValue(){return(0,ur.BN)(this.internalValue)},internalValue:{get(){return this.lazyValue},set(e){this.lazyValue=e,this.$emit("change",this.lazyValue)}},isDirty(){return this.internalArrayValue.length>0},isLabelActive(){return this.isDirty},text(){return this.isDirty||!this.persistentPlaceholder&&!this.isFocused&&this.hasLabel?this.internalArrayValue.map((e=>{const{name:t="",size:r=0}=e,i=this.truncateText(t);return this.showSize?`${i} (${(0,ur.hA)(r,1024===this.base)})`:i})):[this.placeholder]},base(){return"boolean"!==typeof this.showSize?this.showSize:void 0},hasChips(){return this.chips||this.smallChips}},watch:{readonly:{handler(e){!0===e&&(0,$r.yA)("readonly is not supported on ",this)},immediate:!0},value(e){const t=this.multiple?e:e?[e]:[];(0,ur.bD)(t,this.$refs.input.files)||(this.$refs.input.value="")}},methods:{clearableCallback(){this.internalValue=this.multiple?[]:null,this.$refs.input.value=""},genChips(){return this.isDirty?this.text.map(((e,t)=>this.$createElement(Mr.A,{props:{small:this.smallChips},on:{"click:close":()=>{const e=this.internalValue;e.splice(t,1),this.internalValue=e}}},[e]))):[]},genControl(){const e=Dn.options.methods.genControl.call(this);return this.hideInput&&(e.data.style=(0,lr.Zq)(e.data.style,{display:"none"})),e},genInput(){const e=Dn.options.methods.genInput.call(this);return e.data.attrs.multiple=this.multiple,delete e.data.domProps.value,delete e.data.on.input,e.data.on.change=this.onInput,[this.genSelections(),e]},genPrependSlot(){if(!this.prependIcon)return null;const e=this.genIcon("prepend",(()=>{this.$refs.input.click()}));return this.genSlot("prepend","outer",[e])},genSelectionText(){const e=this.text.length;return e<2?this.text:this.showSize&&!this.counter?[this.computedCounterValue]:[this.$vuetify.lang.t(this.counterString,e)]},genSelections(){const e=[];return this.isDirty&&this.$scopedSlots.selection?this.internalArrayValue.forEach(((t,r)=>{this.$scopedSlots.selection&&e.push(this.$scopedSlots.selection({text:this.text[r],file:t,index:r}))})):e.push(this.hasChips&&this.isDirty?this.genChips():this.genSelectionText()),this.$createElement("div",{staticClass:"v-file-input__text",class:{"v-file-input__text--placeholder":this.placeholder&&!this.isDirty,"v-file-input__text--chips":this.hasChips&&!this.$scopedSlots.selection}},e)},genTextFieldSlot(){const e=Dn.options.methods.genTextFieldSlot.call(this);return e.data.on={...e.data.on||{},click:e=>{e.target&&"LABEL"===e.target.nodeName||this.$refs.input.click()}},e},onInput(e){const t=[...e.target.files||[]];this.internalValue=this.multiple?t:t[0],this.initialValue=this.internalValue},onKeyDown(e){this.$emit("keydown",e)},truncateText(e){if(e.length({isFocused:!1}),computed:{classes(){return{"v-radio--is-disabled":this.isDisabled,"v-radio--is-focused":this.isFocused,...this.themeClasses,...this.groupClasses}},computedColor(){if(!this.isDisabled)return xr.options.computed.computedColor.call(this)},computedIcon(){return this.isActive?this.onIcon:this.offIcon},computedId(){return gr.A.options.computed.computedId.call(this)},hasLabel:gr.A.options.computed.hasLabel,hasState(){return(this.radioGroup||{}).hasState},isDisabled(){var e;return null!==(e=this.disabled)&&void 0!==e?e:!!this.radioGroup&&this.radioGroup.isDisabled},isReadonly(){var e;return null!==(e=this.readonly)&&void 0!==e?e:!!this.radioGroup&&this.radioGroup.isReadonly},computedName(){return this.name||!this.radioGroup?this.name:this.radioGroup.name||`radio-${this.radioGroup._uid}`},rippleState(){return xr.options.computed.rippleState.call(this)},validationState(){return(this.radioGroup||{}).validationState||this.computedColor}},methods:{genInput(e){return xr.options.methods.genInput.call(this,"radio",e)},genLabel(){return this.hasLabel?this.$createElement(Hn.A,{on:{click:kr},attrs:{for:this.computedId},props:{color:this.validationState,focused:this.hasState}},(0,ur.$c)(this,"label")||this.label):null},genRadio(){const{title:e,...t}=this.attrs$;return this.$createElement("div",{staticClass:"v-input--selection-controls__input"},[this.$createElement(mr.A,this.setTextColor(this.validationState,{props:{dense:this.radioGroup&&this.radioGroup.dense}}),this.computedIcon),this.genInput({name:this.computedName,value:this.value,...t}),this.genRipple(this.setTextColor(this.rippleState))])},onFocus(e){this.isFocused=!0,this.$emit("focus",e)},onBlur(e){this.isFocused=!1,this.$emit("blur",e)},onChange(){this.isDisabled||this.isReadonly||this.isActive||this.toggle()},onKeydown:()=>{}},render(e){const t={staticClass:"v-radio",class:this.classes,on:(0,lr.wf)({click:this.onChange},this.listeners$),attrs:{title:this.attrs$.title}};return e("div",t,[this.genRadio(),this.genLabel()])}});const Gn=(0,_r.A)(xn.C,gr.A);var Zn=Gn.extend({name:"v-radio-group",provide(){return{radioGroup:this}},props:{column:{type:Boolean,default:!0},height:{type:[Number,String],default:"auto"},name:String,row:Boolean,value:null},computed:{classes(){return{...gr.A.options.computed.classes.call(this),"v-input--selection-controls v-input--radio-group":!0,"v-input--radio-group--column":this.column&&!this.row,"v-input--radio-group--row":this.row}}},methods:{genDefaultSlot(){return this.$createElement("div",{staticClass:"v-input--radio-group__input",attrs:{id:this.id,role:"radiogroup","aria-labelledby":this.computedId}},gr.A.options.methods.genDefaultSlot.call(this))},genInputSlot(){const e=gr.A.options.methods.genInputSlot.call(this);return delete e.data.on.click,e},genLabel(){const e=gr.A.options.methods.genLabel.call(this);return e?(e.data.attrs.id=this.computedId,delete e.data.attrs.for,e.tag="legend",e):null},onClick:xn.C.options.methods.onClick},render(e){const t=gr.A.options.render.call(this,e);return this._b(t.data,"div",this.attrs$),t}}),Jn=(r(58097),(0,ur.Gn)("spacer","div","v-spacer")),Xn=r(9375),Qn=r(24632);const es=(0,_r.A)(Xn.A,(0,En.G)("stepper"),Qn.A);var ts=es.extend({name:"v-stepper",provide(){return{stepClick:this.stepClick,isVertical:this.vertical}},props:{altLabels:Boolean,nonLinear:Boolean,flat:Boolean,vertical:Boolean},data(){const e={isBooted:!1,steps:[],content:[],isReverse:!1};return e.internalLazyValue=null!=this.value?this.value:(e[0]||{}).step||1,e},computed:{classes(){return{"v-stepper--flat":this.flat,"v-stepper--is-booted":this.isBooted,"v-stepper--vertical":this.vertical,"v-stepper--alt-labels":this.altLabels,"v-stepper--non-linear":this.nonLinear,...Xn.A.options.computed.classes.call(this)}},styles(){return{...Xn.A.options.computed.styles.call(this)}}},watch:{internalValue(e,t){this.isReverse=Number(e)t!==e)):"v-stepper-content"===e.$options.name&&(e.isVertical=this.vertical,this.content=this.content.filter((t=>t!==e)))},stepClick(e){this.$nextTick((()=>this.internalValue=e))},updateView(){for(let e=this.steps.length;--e>=0;)this.steps[e].toggle(this.internalValue);for(let e=this.content.length;--e>=0;)this.content[e].toggle(this.internalValue,this.isReverse)}},render(e){return e(this.tag,{staticClass:"v-stepper",class:this.classes,style:this.styles},(0,ur.$c)(this))}});const rs=(0,_r.A)((0,En.W)("stepper","v-stepper-content","v-stepper"));var is=rs.extend().extend({name:"v-stepper-content",inject:{isVerticalProvided:{from:"isVertical"}},props:{step:{type:[Number,String],required:!0}},data(){return{height:0,isActive:null,isReverse:!1,isVertical:this.isVerticalProvided}},computed:{computedTransition(){const e=this.$vuetify.rtl?!this.isReverse:this.isReverse;return e?Ar.P1:Ar.Dk},styles(){return this.isVertical?{height:(0,ur.Dg)(this.height)}:{}}},watch:{isActive(e,t){e&&null==t?this.height="auto":this.isVertical&&(this.isActive?this.enter():this.leave())}},mounted(){this.$refs.wrapper.addEventListener("transitionend",this.onTransition,!1),this.stepper&&this.stepper.register(this)},beforeDestroy(){this.$refs.wrapper.removeEventListener("transitionend",this.onTransition,!1),this.stepper&&this.stepper.unregister(this)},methods:{onTransition(e){this.isActive&&"height"===e.propertyName&&(this.height="auto")},enter(){let e=0;requestAnimationFrame((()=>{e=this.$refs.wrapper.scrollHeight})),this.height=0,setTimeout((()=>this.isActive&&(this.height=e||"auto")),450)},leave(){this.height=this.$refs.wrapper.clientHeight,setTimeout((()=>this.height=0),10)},toggle(e,t){this.isActive=e.toString()===this.step.toString(),this.isReverse=t}},render(e){const t={staticClass:"v-stepper__content"},r={staticClass:"v-stepper__wrapper",style:this.styles,ref:"wrapper"};this.isVertical||(t.directives=[{name:"show",value:this.isActive}]);const i=e("div",r,(0,ur.$c)(this)),n=e("div",t,[i]);return e(this.computedTransition,{on:this.$listeners},[n])}});const ns=(0,_r.A)(xi.A,(0,En.W)("stepper","v-stepper-step","v-stepper"));var ss=ns.extend().extend({name:"v-stepper-step",directives:{ripple:vr.A},inject:["stepClick"],props:{color:{type:String,default:"primary"},complete:Boolean,completeIcon:{type:String,default:"$complete"},editable:Boolean,editIcon:{type:String,default:"$edit"},errorIcon:{type:String,default:"$error"},rules:{type:Array,default:()=>[]},step:[Number,String]},data(){return{isActive:!1,isInactive:!0}},computed:{classes(){return{"v-stepper__step--active":this.isActive,"v-stepper__step--editable":this.editable,"v-stepper__step--inactive":this.isInactive,"v-stepper__step--error error--text":this.hasError,"v-stepper__step--complete":this.complete}},hasError(){return this.rules.some((e=>!0!==e()))}},mounted(){this.stepper&&this.stepper.register(this)},beforeDestroy(){this.stepper&&this.stepper.unregister(this)},methods:{click(e){e.stopPropagation(),this.$emit("click",e),this.editable&&this.stepClick(this.step)},genIcon(e){return this.$createElement(mr.A,e)},genLabel(){return this.$createElement("div",{staticClass:"v-stepper__label"},(0,ur.$c)(this))},genStep(){const e=!(this.hasError||!this.complete&&!this.isActive)&&this.color;return this.$createElement("span",this.setBackgroundColor(e,{staticClass:"v-stepper__step__step"}),this.genStepContent())},genStepContent(){const e=[];return this.hasError?e.push(this.genIcon(this.errorIcon)):this.complete?this.editable?e.push(this.genIcon(this.editIcon)):e.push(this.genIcon(this.completeIcon)):e.push(String(this.step)),e},keyboardClick(e){e.keyCode===ur.uP.space&&this.click(e)},toggle(e){this.isActive=e.toString()===this.step.toString(),this.isInactive=Number(e)!isNaN(Number(e))||["xs","sm","md","lg","xl"].includes(String(e))}},computed:{isMobile(){const{mobile:e,width:t,name:r,mobileBreakpoint:i}=this.$vuetify.breakpoint;if(i===this.mobileBreakpoint)return e;const n=parseInt(this.mobileBreakpoint,10),s=!isNaN(n);return s?t"boolean"===typeof e||["always","never","desktop","mobile"].includes(e)}},data:()=>({isOverflowing:!1,resizeTimeout:0,startX:0,isSwipingHorizontal:!1,isSwiping:!1,scrollOffset:0,widths:{content:0,wrapper:0}}),computed:{canTouch(){return"undefined"!==typeof window},__cachedNext(){return this.genTransition("next")},__cachedPrev(){return this.genTransition("prev")},classes(){return{...xn.C.options.computed.classes.call(this),"v-slide-group":!0,"v-slide-group--has-affixes":this.hasAffixes,"v-slide-group--is-overflowing":this.isOverflowing}},hasAffixes(){switch(this.showArrows){case"always":return!0;case"desktop":return!this.isMobile;case!0:return this.isOverflowing||Math.abs(this.scrollOffset)>0;case"mobile":return this.isMobile||this.isOverflowing||Math.abs(this.scrollOffset)>0;case"never":return!1;default:return!this.isMobile&&(this.isOverflowing||Math.abs(this.scrollOffset)>0)}},hasNext(){if(!this.hasAffixes)return!1;const{content:e,wrapper:t}=this.widths;return e>Math.abs(this.scrollOffset)+t},hasPrev(){return this.hasAffixes&&0!==this.scrollOffset}},watch:{internalValue:"setWidths",isOverflowing:"setWidths",scrollOffset(e){this.$vuetify.rtl&&(e=-e);let t=e<=0?fs(-e):e>this.widths.content-this.widths.wrapper?-(this.widths.content-this.widths.wrapper)+fs(this.widths.content-this.widths.wrapper-e):-e;this.$vuetify.rtl&&(t=-t),this.$refs.content.style.transform=`translateX(${t}px)`}},mounted(){if("undefined"!==typeof ResizeObserver){const e=new ResizeObserver((()=>{this.onResize()}));e.observe(this.$el),e.observe(this.$refs.content),this.$on("hook:destroyed",(()=>{e.disconnect()}))}else{let e=0;this.$on("hook:beforeUpdate",(()=>{var t;e=((null===(t=this.$refs.content)||void 0===t?void 0:t.children)||[]).length})),this.$on("hook:updated",(()=>{var t;e!==((null===(t=this.$refs.content)||void 0===t?void 0:t.children)||[]).length&&this.setWidths()}))}},methods:{onScroll(){this.$refs.wrapper.scrollLeft=0},onFocusin(e){if(this.isOverflowing)for(const t of(0,ur.K9)(e))for(const e of this.items)if(e.$el===t)return void(this.scrollOffset=ps(e.$el,this.widths,this.$vuetify.rtl,this.scrollOffset))},genNext(){const e=this.$scopedSlots.next?this.$scopedSlots.next({}):(0,ur.$c)(this,"next")||this.__cachedNext;return this.$createElement("div",{staticClass:"v-slide-group__next",class:{"v-slide-group__next--disabled":!this.hasNext},on:{click:()=>this.onAffixClick("next")},key:"next"},[e])},genContent(){return this.$createElement("div",{staticClass:"v-slide-group__content",ref:"content",on:{focusin:this.onFocusin}},(0,ur.$c)(this))},genData(){return{class:this.classes,directives:[{name:"resize",value:this.onResize}]}},genIcon(e){let t=e;this.$vuetify.rtl&&"prev"===e?t="next":this.$vuetify.rtl&&"next"===e&&(t="prev");const r=`${e[0].toUpperCase()}${e.slice(1)}`,i=this[`has${r}`];return this.showArrows||i?this.$createElement(mr.A,{props:{disabled:!i}},this[`${t}Icon`]):null},genPrev(){const e=this.$scopedSlots.prev?this.$scopedSlots.prev({}):(0,ur.$c)(this,"prev")||this.__cachedPrev;return this.$createElement("div",{staticClass:"v-slide-group__prev",class:{"v-slide-group__prev--disabled":!this.hasPrev},on:{click:()=>this.onAffixClick("prev")},key:"prev"},[e])},genTransition(e){return this.$createElement(Ar.mM,[this.genIcon(e)])},genWrapper(){return this.$createElement("div",{staticClass:"v-slide-group__wrapper",directives:[{name:"touch",value:{start:e=>this.overflowCheck(e,this.onTouchStart),move:e=>this.overflowCheck(e,this.onTouchMove),end:e=>this.overflowCheck(e,this.onTouchEnd)}}],ref:"wrapper",on:{scroll:this.onScroll}},[this.genContent()])},calculateNewOffset(e,t,r,i){const n=r?-1:1,s=n*i+("prev"===e?-1:1)*t.wrapper;return n*Math.max(Math.min(s,t.content-t.wrapper),0)},onAffixClick(e){this.$emit(`click:${e}`),this.scrollTo(e)},onResize(){this._isDestroyed||this.setWidths()},onTouchStart(e){const{content:t}=this.$refs;this.startX=this.scrollOffset+e.touchstartX,t.style.setProperty("transition","none"),t.style.setProperty("willChange","transform")},onTouchMove(e){if(this.canTouch){if(!this.isSwiping){const t=e.touchmoveX-e.touchstartX,r=e.touchmoveY-e.touchstartY;this.isSwipingHorizontal=Math.abs(t)>Math.abs(r),this.isSwiping=!0}this.isSwipingHorizontal&&(this.scrollOffset=this.startX-e.touchmoveX,document.documentElement.style.overflowY="hidden")}},onTouchEnd(){if(!this.canTouch)return;const{content:e,wrapper:t}=this.$refs,r=e.clientWidth-t.clientWidth;e.style.setProperty("transition",null),e.style.setProperty("willChange",null),this.$vuetify.rtl?this.scrollOffset>0||!this.isOverflowing?this.scrollOffset=0:this.scrollOffset<=-r&&(this.scrollOffset=-r):this.scrollOffset<0||!this.isOverflowing?this.scrollOffset=0:this.scrollOffset>=r&&(this.scrollOffset=r),this.isSwiping=!1,document.documentElement.style.removeProperty("overflow-y")},overflowCheck(e,t){e.stopPropagation(),this.isOverflowing&&t(e)},scrollIntoView(){if(!this.selectedItem&&this.items.length){const e=this.items[this.items.length-1].$el.getBoundingClientRect(),t=this.$refs.wrapper.getBoundingClientRect();(this.$vuetify.rtl&&t.righte.left)&&this.scrollTo("prev")}this.selectedItem&&(0===this.selectedIndex||!this.centerActive&&!this.isOverflowing?this.scrollOffset=0:this.centerActive?this.scrollOffset=ms(this.selectedItem.$el,this.widths,this.$vuetify.rtl):this.isOverflowing&&(this.scrollOffset=ps(this.selectedItem.$el,this.widths,this.$vuetify.rtl,this.scrollOffset)))},scrollTo(e){this.scrollOffset=this.calculateNewOffset(e,{content:this.$refs.content?this.$refs.content.clientWidth:0,wrapper:this.$refs.wrapper?this.$refs.wrapper.clientWidth:0},this.$vuetify.rtl,this.scrollOffset)},setWidths(){window.requestAnimationFrame((()=>{if(this._isDestroyed)return;const{content:e,wrapper:t}=this.$refs;this.widths={content:e?e.clientWidth:0,wrapper:t?t.clientWidth:0},this.isOverflowing=this.widths.wrapper+10},classes(){return{...xn.C.options.computed.classes.call(this),"v-window--show-arrows-on-hover":this.showArrowsOnHover}},computedTransition(){if(!this.isBooted)return"";const e=this.vertical?"y":"x",t=this.internalReverse?!this.isReverse:this.isReverse,r=t?"-reverse":"";return`v-window-${e}${r}-transition`},hasActiveItems(){return Boolean(this.items.find((e=>!e.disabled)))},hasNext(){return this.continuous||this.internalIndex0},internalIndex(){return this.items.findIndex(((e,t)=>this.internalValue===this.getValue(e,t)))},internalReverse(){return this.$vuetify.rtl?!this.reverse:this.reverse}},watch:{internalIndex(e,t){this.isReverse=this.updateReverse(e,t)}},mounted(){window.requestAnimationFrame((()=>this.isBooted=!0))},methods:{genDefaultSlot(){return(0,ur.$c)(this)},genContainer(){const e=[this.genDefaultSlot()];return this.showArrows&&e.push(this.genControlIcons()),this.$createElement("div",{staticClass:"v-window__container",class:{"v-window__container--is-active":this.isActive},style:{height:this.internalHeight||this.transitionHeight}},e)},genIcon(e,t,r){var i,n,s;const o={click:e=>{e.stopPropagation(),this.changedByDelimiters=!0,r()}},a={"aria-label":this.$vuetify.lang.t(`$vuetify.carousel.${e}`)},l=null!==(s=null===(n=(i=this.$scopedSlots)[e])||void 0===n?void 0:n.call(i,{on:o,attrs:a}))&&void 0!==s?s:[this.$createElement(Ur.A,{props:{icon:!0},attrs:a,on:o},[this.$createElement(mr.A,{props:{large:!0}},t)])];return this.$createElement("div",{staticClass:`v-window__${e}`},l)},genControlIcons(){const e=[],t=this.$vuetify.rtl?this.nextIcon:this.prevIcon;if(this.hasPrev&&t&&"string"===typeof t){const r=this.genIcon("prev",t,this.prev);r&&e.push(r)}const r=this.$vuetify.rtl?this.prevIcon:this.nextIcon;if(this.hasNext&&r&&"string"===typeof r){const t=this.genIcon("next",r,this.next);t&&e.push(t)}return e},getNextIndex(e){const t=(e+1)%this.items.length,r=this.items[t];return r.disabled?this.getNextIndex(t):t},getPrevIndex(e){const t=(e+this.items.length-1)%this.items.length,r=this.items[t];return r.disabled?this.getPrevIndex(t):t},next(){if(!this.hasActiveItems||!this.hasNext)return;const e=this.getNextIndex(this.internalIndex),t=this.items[e];this.internalValue=this.getValue(t,e)},prev(){if(!this.hasActiveItems||!this.hasPrev)return;const e=this.getPrevIndex(this.internalIndex),t=this.items[e];this.internalValue=this.getValue(t,e)},updateReverse(e,t){const r=this.items.length,i=r-1;return r<=2?e{this.$vuetify.rtl?this.prev():this.next()},right:()=>{this.$vuetify.rtl?this.next():this.prev()},end:e=>{e.stopPropagation()},start:e=>{e.stopPropagation()}};t.directives.push({name:"touch",value:e})}return e("div",t,[this.genContainer()])}}),ws=bs.extend({name:"v-tabs-items",props:{mandatory:{type:Boolean,default:!1}},computed:{classes(){return{...bs.options.computed.classes.call(this),"v-tabs-items":!0}},isDark(){return this.rootIsDark}},methods:{getValue(e,t){return e.id||xn.C.options.methods.getValue.call(this,e,t)}}}),_s=(0,_r.A)(xi.A).extend({name:"v-tabs-slider",render(e){return e("div",this.setBackgroundColor(this.color,{staticClass:"v-tabs-slider"}))}});const ks=(0,_r.A)(xi.A,Qn.A,pi.A);var xs=ks.extend().extend({name:"v-tabs",directives:{Resize:ds.A},props:{activeClass:{type:String,default:""},alignWithTitle:Boolean,backgroundColor:String,centerActive:Boolean,centered:Boolean,fixedTabs:Boolean,grow:Boolean,height:{type:[Number,String],default:void 0},hideSlider:Boolean,iconsAndText:Boolean,mobileBreakpoint:[String,Number],nextIcon:{type:String,default:"$next"},optional:Boolean,prevIcon:{type:String,default:"$prev"},right:Boolean,showArrows:[Boolean,String],sliderColor:String,sliderSize:{type:[Number,String],default:2},vertical:Boolean},data(){return{resizeTimeout:0,slider:{height:null,left:null,right:null,top:null,width:null},transitionTime:300}},computed:{classes(){return{"v-tabs--align-with-title":this.alignWithTitle,"v-tabs--centered":this.centered,"v-tabs--fixed-tabs":this.fixedTabs,"v-tabs--grow":this.grow,"v-tabs--icons-and-text":this.iconsAndText,"v-tabs--right":this.right,"v-tabs--vertical":this.vertical,...this.themeClasses}},isReversed(){return this.$vuetify.rtl&&this.vertical},sliderStyles(){return{height:(0,ur.Dg)(this.slider.height),left:this.isReversed?void 0:(0,ur.Dg)(this.slider.left),right:this.isReversed?(0,ur.Dg)(this.slider.right):void 0,top:this.vertical?(0,ur.Dg)(this.slider.top):void 0,transition:null!=this.slider.left?null:"none",width:(0,ur.Dg)(this.slider.width)}},computedColor(){return this.color?this.color:this.isDark&&!this.appIsDark?"white":"primary"}},watch:{alignWithTitle:"callSlider",centered:"callSlider",centerActive:"callSlider",fixedTabs:"callSlider",grow:"callSlider",iconsAndText:"callSlider",right:"callSlider",showArrows:"callSlider",vertical:"callSlider","$vuetify.application.left":"onResize","$vuetify.application.right":"onResize","$vuetify.rtl":"onResize"},mounted(){if("undefined"!==typeof ResizeObserver){const e=new ResizeObserver((()=>{this.onResize()}));e.observe(this.$el),this.$on("hook:destroyed",(()=>{e.disconnect()}))}this.$nextTick((()=>{window.setTimeout(this.callSlider,30)}))},methods:{callSlider(){return!this.hideSlider&&this.$refs.items&&this.$refs.items.selectedItems.length?(this.$nextTick((()=>{const e=this.$refs.items.selectedItems[0];if(!e||!e.$el)return this.slider.width=0,void(this.slider.left=0);const t=e.$el;this.slider={height:this.vertical?t.scrollHeight:Number(this.sliderSize),left:this.vertical?0:t.offsetLeft,right:this.vertical?0:t.offsetLeft+t.offsetWidth,top:t.offsetTop,width:this.vertical?Number(this.sliderSize):t.scrollWidth}})),!0):(this.slider.width=0,!1)},genBar(e,t){const r={style:{height:(0,ur.Dg)(this.height)},props:{activeClass:this.activeClass,centerActive:this.centerActive,dark:this.dark,light:this.light,mandatory:!this.optional,mobileBreakpoint:this.mobileBreakpoint,nextIcon:this.nextIcon,prevIcon:this.prevIcon,showArrows:this.showArrows,value:this.internalValue},on:{"call:slider":this.callSlider,change:e=>{this.internalValue=e}},ref:"items"};return this.setTextColor(this.computedColor,r),this.setBackgroundColor(this.backgroundColor,r),this.$createElement(ys,r,[this.genSlider(t),e])},genItems(e,t){return e||(t.length?this.$createElement(ws,{props:{value:this.internalValue},on:{change:e=>{this.internalValue=e}}},t):null)},genSlider(e){return this.hideSlider?null:(e||(e=this.$createElement(_s,{props:{color:this.sliderColor}})),this.$createElement("div",{staticClass:"v-tabs-slider-wrapper",style:this.sliderStyles},[e]))},onResize(){this._isDestroyed||(clearTimeout(this.resizeTimeout),this.resizeTimeout=window.setTimeout(this.callSlider,0))},parseNodes(){let e=null,t=null;const r=[],i=[],n=(0,ur.$c)(this)||[],s=n.length;for(let o=0;o({proxyClass:"v-tab--active"}),computed:{classes(){return{"v-tab":!0,...Ss.A.options.computed.classes.call(this),"v-tab--disabled":this.disabled,...this.groupClasses}},value(){if(null!=this.tabValue)return this.tabValue;let e=this.to||this.href;if(null==e)return e;if(this.$router&&this.to===Object(this.to)){const t=this.$router.resolve(this.to,this.$route,this.append);e=t.href}return e.replace("#","")}},methods:{click(e){this.disabled?e.preventDefault():(this.href&&this.href.indexOf("#")>-1&&e.preventDefault(),e.detail&&this.$el.blur(),this.$emit("click",e),this.to||this.toggle())},toggle(){this.isActive&&(this.tabsBar.mandatory||this.to)||this.$emit("change")}},render(e){const{tag:t,data:r}=this.generateRouteLink();return r.attrs={...r.attrs,"aria-selected":String(this.isActive),role:"tab",tabindex:this.disabled?-1:0},r.on={...r.on,keydown:e=>{e.keyCode===ur.uP.enter&&this.click(e),this.$emit("keydown",e)}},e(t,r,(0,ur.$c)(this))}});const As=(0,_r.A)(On.A,(0,Mn.P)("windowGroup","v-window-item","v-window"));var Cs=As.extend().extend().extend({name:"v-window-item",directives:{Touch:zi},props:{disabled:Boolean,reverseTransition:{type:[Boolean,String],default:void 0},transition:{type:[Boolean,String],default:void 0},value:{required:!1}},data(){return{isActive:!1,inTransition:!1}},computed:{classes(){return this.groupClasses},computedTransition(){return this.windowGroup.internalReverse?"undefined"!==typeof this.reverseTransition?this.reverseTransition||"":this.windowGroup.computedTransition:"undefined"!==typeof this.transition?this.transition||"":this.windowGroup.computedTransition}},methods:{genDefaultSlot(){return(0,ur.$c)(this)},genWindowItem(){return this.$createElement("div",{staticClass:"v-window-item",class:this.classes,directives:[{name:"show",value:this.isActive}],on:this.$listeners},this.genDefaultSlot())},onAfterTransition(){this.inTransition&&(this.inTransition=!1,this.windowGroup.transitionCount>0&&(this.windowGroup.transitionCount--,0===this.windowGroup.transitionCount&&(this.windowGroup.transitionHeight=void 0)))},onBeforeTransition(){this.inTransition||(this.inTransition=!0,0===this.windowGroup.transitionCount&&(this.windowGroup.transitionHeight=(0,ur.Dg)(this.windowGroup.$el.clientHeight)),this.windowGroup.transitionCount++)},onTransitionCancelled(){this.onAfterTransition()},onEnter(e){this.inTransition&&this.$nextTick((()=>{this.computedTransition&&this.inTransition&&(this.windowGroup.transitionHeight=(0,ur.Dg)(e.clientHeight))}))}},render(e){return e("transition",{props:{name:this.computedTransition},on:{beforeEnter:this.onBeforeTransition,afterEnter:this.onAfterTransition,enterCancelled:this.onTransitionCancelled,beforeLeave:this.onBeforeTransition,afterLeave:this.onAfterTransition,leaveCancelled:this.onTransitionCancelled,enter:this.onEnter}},this.showLazyContent((()=>[this.genWindowItem()])))}}),$s=Cs.extend({name:"v-tab-item",props:{id:String},methods:{genWindowItem(){const e=Cs.options.methods.genWindowItem.call(this);return e.data.domProps=e.data.domProps||{},e.data.domProps.id=this.id||this.value,e}}});const Os=(0,_r.A)(ar.A);var Ps,Ts=Os.extend({name:"v-textarea",props:{autoGrow:Boolean,noResize:Boolean,rowHeight:{type:[Number,String],default:24,validator:e=>!isNaN(parseFloat(e))},rows:{type:[Number,String],default:5,validator:e=>!isNaN(parseInt(e,10))}},computed:{classes(){return{"v-textarea":!0,"v-textarea--auto-grow":this.autoGrow,"v-textarea--no-resize":this.noResizeHandle,...ar.A.options.computed.classes.call(this)}},noResizeHandle(){return this.noResize||this.autoGrow}},watch:{autoGrow(e){this.$nextTick((()=>{var t;e?this.calculateInputHeight():null===(t=this.$refs.input)||void 0===t||t.style.removeProperty("height")}))},lazyValue(){this.autoGrow&&this.$nextTick(this.calculateInputHeight)},rowHeight(){this.autoGrow&&this.$nextTick(this.calculateInputHeight)}},mounted(){setTimeout((()=>{this.autoGrow&&this.calculateInputHeight()}),0)},methods:{calculateInputHeight(){const e=this.$refs.input;if(!e)return;e.style.height="0";const t=e.scrollHeight,r=parseInt(this.rows,10)*parseFloat(this.rowHeight);e.style.height=Math.max(r,t)+"px"},genInput(){const e=ar.A.options.methods.genInput.call(this);return e.tag="textarea",delete e.data.attrs.type,e.data.attrs.rows=this.rows,e},onInput(e){ar.A.options.methods.onInput.call(this,e),this.autoGrow&&this.calculateInputHeight()},onKeyDown(e){this.isFocused&&13===e.keyCode&&e.stopPropagation(),this.$emit("keydown",e)}}});(function(e){e[e["Hour"]=1]="Hour",e[e["Minute"]=2]="Minute",e[e["Second"]=3]="Second"})(Ps||(Ps={}));var Is=(0,_r.A)(Si).extend({name:"v-time-picker-title",props:{ampm:Boolean,ampmReadonly:Boolean,disabled:Boolean,hour:Number,minute:Number,second:Number,period:{type:String,validator:e=>"am"===e||"pm"===e},readonly:Boolean,useSeconds:Boolean,selecting:Number},methods:{genTime(){let e=this.hour;this.ampm&&(e=e?(e-1)%12+1:12);const t=null==this.hour?"--":this.ampm?String(e):Ci(e),r=null==this.minute?"--":Ci(this.minute),i=[this.genPickerButton("selecting",Ps.Hour,t,this.disabled),this.$createElement("span",":"),this.genPickerButton("selecting",Ps.Minute,r,this.disabled)];if(this.useSeconds){const e=null==this.second?"--":Ci(this.second);i.push(this.$createElement("span",":")),i.push(this.genPickerButton("selecting",Ps.Second,e,this.disabled))}return this.$createElement("div",{class:"v-time-picker-title__time"},i)},genAmPm(){return this.$createElement("div",{staticClass:"v-time-picker-title__ampm",class:{"v-time-picker-title__ampm--readonly":this.ampmReadonly}},[this.ampmReadonly&&"am"!==this.period?null:this.genPickerButton("period","am",this.$vuetify.lang.t("$vuetify.timePicker.am"),this.disabled||this.readonly),this.ampmReadonly&&"pm"!==this.period?null:this.genPickerButton("period","pm",this.$vuetify.lang.t("$vuetify.timePicker.pm"),this.disabled||this.readonly)])}},render(e){const t=[this.genTime()];return this.ampm&&t.push(this.genAmPm()),e("div",{staticClass:"v-time-picker-title"},t)}}),Ds=(0,_r.A)(xi.A,pi.A).extend({name:"v-time-picker-clock",props:{allowedValues:Function,ampm:Boolean,disabled:Boolean,double:Boolean,format:{type:Function,default:e=>e},max:{type:Number,required:!0},min:{type:Number,required:!0},scrollable:Boolean,readonly:Boolean,rotate:{type:Number,default:0},step:{type:Number,default:1},value:Number},data(){return{inputValue:this.value,isDragging:!1,valueOnMouseDown:null,valueOnMouseUp:null}},computed:{count(){return this.max-this.min+1},degreesPerUnit(){return 360/this.roundCount},degrees(){return this.degreesPerUnit*Math.PI/180},displayedValue(){return null==this.value?this.min:this.value},innerRadiusScale(){return.62},roundCount(){return this.double?this.count/2:this.count}},watch:{value(e){this.inputValue=e}},methods:{wheel(e){e.preventDefault();const t=Math.sign(-e.deltaY||1);let r=this.displayedValue;do{r+=t,r=(r-this.min+this.count)%this.count+this.min}while(!this.isAllowed(r)&&r!==this.displayedValue);r!==this.displayedValue&&this.update(r)},isInner(e){return this.double&&e-this.min>=this.roundCount},handScale(e){return this.isInner(e)?this.innerRadiusScale:1},isAllowed(e){return!this.allowedValues||this.allowedValues(e)},genValues(){const e=[];for(let t=this.min;t<=this.max;t+=this.step){const r=t===this.value&&(this.color||"accent");e.push(this.$createElement("span",this.setBackgroundColor(r,{staticClass:"v-time-picker-clock__item",class:{"v-time-picker-clock__item--active":t===this.displayedValue,"v-time-picker-clock__item--disabled":this.disabled||!this.isAllowed(t)},style:this.getTransform(t),domProps:{innerHTML:`${this.format(t)}`}})))}return e},genHand(){const e=`scaleY(${this.handScale(this.displayedValue)})`,t=this.rotate+this.degreesPerUnit*(this.displayedValue-this.min),r=null!=this.value&&(this.color||"accent");return this.$createElement("div",this.setBackgroundColor(r,{staticClass:"v-time-picker-clock__hand",class:{"v-time-picker-clock__hand--inner":this.isInner(this.value)},style:{transform:`rotate(${t}deg) ${e}`}}))},getTransform(e){const{x:t,y:r}=this.getPosition(e);return{left:50+50*t+"%",top:50+50*r+"%"}},getPosition(e){const t=this.rotate*Math.PI/180;return{x:Math.sin((e-this.min)*this.degrees+t)*this.handScale(e),y:-Math.cos((e-this.min)*this.degrees+t)*this.handScale(e)}},onMouseDown(e){e.preventDefault(),this.valueOnMouseDown=null,this.valueOnMouseUp=null,this.isDragging=!0,this.onDragMove(e)},onMouseUp(e){e.stopPropagation(),this.isDragging=!1,null!==this.valueOnMouseUp&&this.isAllowed(this.valueOnMouseUp)&&this.$emit("change",this.valueOnMouseUp)},onDragMove(e){if(e.preventDefault(),!this.isDragging&&"click"!==e.type||!this.$refs.clock)return;const{width:t,top:r,left:i}=this.$refs.clock.getBoundingClientRect(),{width:n}=this.$refs.innerClock.getBoundingClientRect(),{clientX:s,clientY:o}="touches"in e?e.touches[0]:e,a={x:t/2,y:-t/2},l={x:s-i,y:r-o},u=Math.round(this.angle(a,l)-this.rotate+360)%360,c=this.double&&this.euclidean(a,l)<(n+n*this.innerRadiusScale)/4,h=Math.ceil(15/this.degreesPerUnit);let d;for(let f=0;fthis.isDragging&&this.onMouseUp(e),touchstart:this.onMouseDown,touchend:this.onMouseUp,mousemove:this.onDragMove,touchmove:this.onDragMove},ref:"clock"};return this.scrollable&&t.on&&(t.on.wheel=this.wheel),e("div",t,[e("div",{staticClass:"v-time-picker-clock__inner",ref:"innerClock"},[this.genHand(),this.genValues()])])}});const Ls=(0,ur.Sd)(24),Ns=(0,ur.Sd)(12),Rs=Ns.map((e=>e+12)),js=(0,ur.Sd)(60),Bs={1:"hour",2:"minute",3:"second"};var Fs=(0,_r.A)(sn,Si).extend({name:"v-time-picker",props:{activePicker:String,allowedHours:[Function,Array],allowedMinutes:[Function,Array],allowedSeconds:[Function,Array],disabled:Boolean,format:{type:String,default:"ampm",validator(e){return["ampm","24hr"].includes(e)}},min:String,max:String,readonly:Boolean,scrollable:Boolean,useSeconds:Boolean,value:null,ampmInTitle:Boolean},data(){return{inputHour:null,inputMinute:null,inputSecond:null,lazyInputHour:null,lazyInputMinute:null,lazyInputSecond:null,period:"am",selecting:Ps.Hour}},computed:{selectingHour:{get(){return this.selecting===Ps.Hour},set(e){this.selecting=Ps.Hour}},selectingMinute:{get(){return this.selecting===Ps.Minute},set(e){this.selecting=Ps.Minute}},selectingSecond:{get(){return this.selecting===Ps.Second},set(e){this.selecting=Ps.Second}},isAllowedHourCb(){let e;if(e=this.allowedHours instanceof Array?e=>this.allowedHours.includes(e):this.allowedHours,!this.min&&!this.max)return e;const t=this.min?Number(this.min.split(":")[0]):0,r=this.max?Number(this.max.split(":")[0]):23;return i=>i>=1*t&&i<=1*r&&(!e||e(i))},isAllowedMinuteCb(){let e;const t=!this.isAllowedHourCb||null===this.inputHour||this.isAllowedHourCb(this.inputHour);if(e=this.allowedMinutes instanceof Array?e=>this.allowedMinutes.includes(e):this.allowedMinutes,!this.min&&!this.max)return t?e:()=>!1;const[r,i]=this.min?this.min.split(":").map(Number):[0,0],[n,s]=this.max?this.max.split(":").map(Number):[23,59],o=60*r+1*i,a=60*n+1*s;return r=>{const i=60*this.inputHour+r;return i>=o&&i<=a&&t&&(!e||e(r))}},isAllowedSecondCb(){let e;const t=!this.isAllowedHourCb||null===this.inputHour||this.isAllowedHourCb(this.inputHour),r=t&&(!this.isAllowedMinuteCb||null===this.inputMinute||this.isAllowedMinuteCb(this.inputMinute));if(e=this.allowedSeconds instanceof Array?e=>this.allowedSeconds.includes(e):this.allowedSeconds,!this.min&&!this.max)return r?e:()=>!1;const[i,n,s]=this.min?this.min.split(":").map(Number):[0,0,0],[o,a,l]=this.max?this.max.split(":").map(Number):[23,59,59],u=3600*i+60*n+1*(s||0),c=3600*o+60*a+1*(l||0);return t=>{const i=3600*this.inputHour+60*this.inputMinute+t;return i>=u&&i<=c&&r&&(!e||e(t))}},isAmPm(){return"ampm"===this.format}},watch:{activePicker:"setPicker",selecting:"emitPicker",value:"setInputData"},mounted(){this.setInputData(this.value),this.$on("update:period",this.setPeriod)},methods:{genValue(){return null==this.inputHour||null==this.inputMinute||this.useSeconds&&null==this.inputSecond?null:`${Ci(this.inputHour)}:${Ci(this.inputMinute)}`+(this.useSeconds?`:${Ci(this.inputSecond)}`:"")},emitValue(){const e=this.genValue();null!==e&&this.$emit("input",e)},emitPicker(e){let t="HOUR";e===Ps.Minute?t="MINUTE":e===Ps.Second&&(t="SECOND"),this.$emit("update:active-picker",t)},setPicker(e){"HOUR"===e?this.selecting=Ps.Hour:"MINUTE"===e?this.selecting=Ps.Minute:"SECOND"===e&&this.useSeconds&&(this.selecting=Ps.Second)},setPeriod(e){if(this.period=e,null!=this.inputHour){const t=this.inputHour+("am"===e?-12:12);this.inputHour=this.firstAllowed("hour",t),this.emitValue()}},setInputData(e){if(null==e||""===e)this.inputHour=null,this.inputMinute=null,this.inputSecond=null;else if(e instanceof Date)this.inputHour=e.getHours(),this.inputMinute=e.getMinutes(),this.inputSecond=e.getSeconds();else{const[,t,r,,i,n]=e.trim().toLowerCase().match(/^(\d+):(\d+)(:(\d+))?([ap]m)?$/)||new Array(6);this.inputHour=n?this.convert12to24(parseInt(t,10),n):parseInt(t,10),this.inputMinute=parseInt(r,10),this.inputSecond=parseInt(i||0,10)}this.period=null==this.inputHour||this.inputHour<12?"am":"pm"},convert24to12(e){return e?(e-1)%12+1:12},convert12to24(e,t){return e%12+("pm"===t?12:0)},onInput(e){this.selecting===Ps.Hour?this.inputHour=this.isAmPm?this.convert12to24(e,this.period):e:this.selecting===Ps.Minute?this.inputMinute=e:this.inputSecond=e,this.emitValue()},onChange(e){this.$emit(`click:${Bs[this.selecting]}`,e);const t=this.selecting===(this.useSeconds?Ps.Second:Ps.Minute);if(this.selecting===Ps.Hour?this.selecting=Ps.Minute:this.useSeconds&&this.selecting===Ps.Minute&&(this.selecting=Ps.Second),this.inputHour===this.lazyInputHour&&this.inputMinute===this.lazyInputMinute&&(!this.useSeconds||this.inputSecond===this.lazyInputSecond))return;const r=this.genValue();null!==r&&(this.lazyInputHour=this.inputHour,this.lazyInputMinute=this.inputMinute,this.useSeconds&&(this.lazyInputSecond=this.inputSecond),t&&this.$emit("change",r))},firstAllowed(e,t){const r="hour"===e?this.isAllowedHourCb:"minute"===e?this.isAllowedMinuteCb:this.isAllowedSecondCb;if(!r)return t;const i="minute"===e||"second"===e?js:this.isAmPm?t<12?Ns:Rs:Ls,n=i.find((e=>r((e+t)%i.length+i[0])));return((n||0)+t)%i.length+i[0]},genClock(){return this.$createElement(Ds,{props:{allowedValues:this.selecting===Ps.Hour?this.isAllowedHourCb:this.selecting===Ps.Minute?this.isAllowedMinuteCb:this.isAllowedSecondCb,color:this.color,dark:this.dark,disabled:this.disabled,double:this.selecting===Ps.Hour&&!this.isAmPm,format:this.selecting===Ps.Hour?this.isAmPm?this.convert24to12:e=>e:e=>Ci(e,2),light:this.light,max:this.selecting===Ps.Hour?this.isAmPm&&"am"===this.period?11:23:59,min:this.selecting===Ps.Hour&&this.isAmPm&&"pm"===this.period?12:0,readonly:this.readonly,scrollable:this.scrollable,size:Number(this.width)-(!this.fullWidth&&this.landscape?80:20),step:this.selecting===Ps.Hour?1:5,value:this.selecting===Ps.Hour?this.inputHour:this.selecting===Ps.Minute?this.inputMinute:this.inputSecond},on:{input:this.onInput,change:this.onChange},ref:"clock"})},genClockAmPm(){return this.$createElement("div",this.setTextColor(this.color||"primary",{staticClass:"v-time-picker-clock__ampm"}),[this.genPickerButton("period","am",this.$vuetify.lang.t("$vuetify.timePicker.am"),this.disabled||this.readonly),this.genPickerButton("period","pm",this.$vuetify.lang.t("$vuetify.timePicker.pm"),this.disabled||this.readonly)])},genPickerBody(){return this.$createElement("div",{staticClass:"v-time-picker-clock__container",key:this.selecting},[!this.ampmInTitle&&this.isAmPm&&this.genClockAmPm(),this.genClock()])},genPickerTitle(){return this.$createElement(Is,{props:{ampm:this.isAmPm,ampmReadonly:this.isAmPm&&!this.ampmInTitle,disabled:this.disabled,hour:this.inputHour,minute:this.inputMinute,second:this.inputSecond,period:this.period,readonly:this.readonly,useSeconds:this.useSeconds,selecting:this.selecting},on:{"update:selecting":e=>this.selecting=e,"update:period":e=>this.$emit("update:period",e)},ref:"title",slot:"title"})}},render(){return this.genPicker("v-picker--time")}}),zs=r(97391),Vs=r(39975),qs=(0,_r.A)(xi.A,zs.A,dn.A,Vs.A).extend({name:"v-tooltip",props:{closeDelay:{type:[Number,String],default:0},disabled:Boolean,openDelay:{type:[Number,String],default:0},openOnHover:{type:Boolean,default:!0},openOnFocus:{type:Boolean,default:!0},tag:{type:String,default:"span"},transition:String},data:()=>({calculatedMinWidth:0,closeDependents:!1}),computed:{calculatedLeft(){const{activator:e,content:t}=this.dimensions,r=!this.bottom&&!this.left&&!this.top&&!this.right,i=!1!==this.attach?e.offsetLeft:e.left;let n=0;return this.top||this.bottom||r?n=i+e.width/2-t.width/2:(this.left||this.right)&&(n=i+(this.right?e.width:-t.width)+(this.right?10:-10)),this.nudgeLeft&&(n-=parseInt(this.nudgeLeft)),this.nudgeRight&&(n+=parseInt(this.nudgeRight)),`${this.calcXOverflow(n,this.dimensions.content.width)}px`},calculatedTop(){const{activator:e,content:t}=this.dimensions,r=!1!==this.attach?e.offsetTop:e.top;let i=0;return this.top||this.bottom?i=r+(this.bottom?e.height:-t.height)+(this.bottom?10:-10):(this.left||this.right)&&(i=r+e.height/2-t.height/2),this.nudgeTop&&(i-=parseInt(this.nudgeTop)),this.nudgeBottom&&(i+=parseInt(this.nudgeBottom)),!1===this.attach&&(i+=this.pageYOffset),`${this.calcYOverflow(i)}px`},classes(){return{"v-tooltip--top":this.top,"v-tooltip--right":this.right,"v-tooltip--bottom":this.bottom,"v-tooltip--left":this.left,"v-tooltip--attached":""===this.attach||!0===this.attach||"attach"===this.attach}},computedTransition(){return this.transition?this.transition:this.isActive?"scale-transition":"fade-transition"},offsetY(){return this.top||this.bottom},offsetX(){return this.left||this.right},styles(){return{left:this.calculatedLeft,maxWidth:(0,ur.Dg)(this.maxWidth),minWidth:(0,ur.Dg)(this.minWidth),top:this.calculatedTop,zIndex:this.zIndex||this.activeZIndex}}},beforeMount(){this.$nextTick((()=>{this.value&&this.callActivate()}))},mounted(){"v-slot"===(0,ur.fo)(this,"activator",!0)&&(0,$r.yA)("v-tooltip's activator slot must be bound, try '