From 76b216f85bcdff5d976b30340547f3f90f2bbad8 Mon Sep 17 00:00:00 2001 From: Skylar Ittner Date: Wed, 22 Apr 2020 14:20:00 -0600 Subject: [PATCH] Init git repo --- .gitignore | 7 + config.xml | 37 + hooks/README.md | 23 + nbproject/build.xml | 269 + nbproject/configs/android.properties | 3 + nbproject/configs/android_1.properties | 3 + nbproject/configs/ios.properties | 5 + nbproject/configs/ios_1.properties | 5 + nbproject/plugins.properties | 48 + nbproject/project.properties | 7 + nbproject/project.xml | 9 + package.json | 34 + scripts/generate_credits.sh | 11 + scripts/npm_prepare.sh | 5 + scripts/remove_bloat.sh | 79 + scripts/www_npm_install.sh | 7 + www/assets/css/app.css | 93 + www/assets/css/backdrop.css | 16 + www/assets/css/oled.css | 16 + www/assets/css/tablet.css | 79 + www/assets/css/web-barcode.css | 42 + www/assets/fonts/roboto/Roboto.css | 60 + www/assets/fonts/roboto/Roboto_400.woff | Bin 0 -> 19824 bytes www/assets/fonts/roboto/Roboto_400.woff2 | Bin 0 -> 15344 bytes www/assets/fonts/roboto/Roboto_400i.woff | Bin 0 -> 21528 bytes www/assets/fonts/roboto/Roboto_400i.woff2 | Bin 0 -> 16944 bytes www/assets/fonts/roboto/Roboto_500.woff | Bin 0 -> 20012 bytes www/assets/fonts/roboto/Roboto_500.woff2 | Bin 0 -> 15552 bytes www/assets/fonts/roboto/Roboto_500i.woff | Bin 0 -> 21564 bytes www/assets/fonts/roboto/Roboto_500i.woff2 | Bin 0 -> 16940 bytes www/assets/fonts/roboto/Roboto_700.woff | Bin 0 -> 19888 bytes www/assets/fonts/roboto/Roboto_700.woff2 | Bin 0 -> 15436 bytes www/assets/fonts/roboto/Roboto_700i.woff | Bin 0 -> 21132 bytes www/assets/fonts/roboto/Roboto_700i.woff2 | Bin 0 -> 16572 bytes www/assets/iframeloading.html | 31 + www/assets/js/autofill.js | 152 + www/assets/js/discover.js | 27 + www/assets/js/location.js | 191 + www/assets/js/login.js | 37 + www/assets/js/main.js | 162 + www/assets/js/map.js | 91 + www/assets/js/map_leaflet.js | 119 + www/assets/js/map_mapbox.js | 142 + www/assets/js/platform.js | 166 + www/assets/js/settings.js | 142 + www/assets/js/storage.js | 58 + www/assets/js/sync.js | 111 + www/assets/js/util.js | 275 ++ www/index.html | 53 + www/manifest.json | 57 + www/package.json | 18 + www/pages/credits.html | 5387 +++++++++++++++++++++ www/pages/credits.template.html | 112 + www/pages/discover.html | 69 + www/pages/login.html | 24 + www/pages/profile.html | 17 + www/pages/settings.html | 113 + www/pages/welcome.html | 17 + www/routes.js | 245 + www/settings.js | 42 + 60 files changed, 8716 insertions(+) create mode 100644 .gitignore create mode 100644 config.xml create mode 100644 hooks/README.md create mode 100644 nbproject/build.xml create mode 100644 nbproject/configs/android.properties create mode 100644 nbproject/configs/android_1.properties create mode 100644 nbproject/configs/ios.properties create mode 100644 nbproject/configs/ios_1.properties create mode 100644 nbproject/plugins.properties create mode 100644 nbproject/project.properties create mode 100644 nbproject/project.xml create mode 100644 package.json create mode 100755 scripts/generate_credits.sh create mode 100755 scripts/npm_prepare.sh create mode 100755 scripts/remove_bloat.sh create mode 100755 scripts/www_npm_install.sh create mode 100644 www/assets/css/app.css create mode 100644 www/assets/css/backdrop.css create mode 100644 www/assets/css/oled.css create mode 100644 www/assets/css/tablet.css create mode 100644 www/assets/css/web-barcode.css create mode 100644 www/assets/fonts/roboto/Roboto.css create mode 100644 www/assets/fonts/roboto/Roboto_400.woff create mode 100644 www/assets/fonts/roboto/Roboto_400.woff2 create mode 100644 www/assets/fonts/roboto/Roboto_400i.woff create mode 100644 www/assets/fonts/roboto/Roboto_400i.woff2 create mode 100644 www/assets/fonts/roboto/Roboto_500.woff create mode 100644 www/assets/fonts/roboto/Roboto_500.woff2 create mode 100644 www/assets/fonts/roboto/Roboto_500i.woff create mode 100644 www/assets/fonts/roboto/Roboto_500i.woff2 create mode 100644 www/assets/fonts/roboto/Roboto_700.woff create mode 100644 www/assets/fonts/roboto/Roboto_700.woff2 create mode 100644 www/assets/fonts/roboto/Roboto_700i.woff create mode 100644 www/assets/fonts/roboto/Roboto_700i.woff2 create mode 100644 www/assets/iframeloading.html create mode 100644 www/assets/js/autofill.js create mode 100644 www/assets/js/discover.js create mode 100644 www/assets/js/location.js create mode 100644 www/assets/js/login.js create mode 100644 www/assets/js/main.js create mode 100644 www/assets/js/map.js create mode 100644 www/assets/js/map_leaflet.js create mode 100644 www/assets/js/map_mapbox.js create mode 100644 www/assets/js/platform.js create mode 100644 www/assets/js/settings.js create mode 100644 www/assets/js/storage.js create mode 100644 www/assets/js/sync.js create mode 100644 www/assets/js/util.js create mode 100644 www/index.html create mode 100644 www/manifest.json create mode 100644 www/package.json create mode 100644 www/pages/credits.html create mode 100644 www/pages/credits.template.html create mode 100644 www/pages/discover.html create mode 100644 www/pages/login.html create mode 100644 www/pages/profile.html create mode 100644 www/pages/settings.html create mode 100644 www/pages/welcome.html create mode 100644 www/routes.js create mode 100644 www/settings.js diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3f42172 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +node_modules/ +www/node_modules/ +platforms +nbproject/private +plugins +*yarn-error.log +*npm-debug.log diff --git a/config.xml b/config.xml new file mode 100644 index 0000000..4cdee61 --- /dev/null +++ b/config.xml @@ -0,0 +1,37 @@ + + + Lecte + + Community voting and reputation app. + + + Netsyms Technologies + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/hooks/README.md b/hooks/README.md new file mode 100644 index 0000000..574ad4c --- /dev/null +++ b/hooks/README.md @@ -0,0 +1,23 @@ + +# Cordova Hooks + +Cordova Hooks represent special scripts which could be added by application and plugin developers or even by your own build system to customize cordova commands. See Hooks Guide for more details: http://cordova.apache.org/docs/en/edge/guide_appdev_hooks_index.md.html#Hooks%20Guide. diff --git a/nbproject/build.xml b/nbproject/build.xml new file mode 100644 index 0000000..956a648 --- /dev/null +++ b/nbproject/build.xml @@ -0,0 +1,269 @@ + + + + + + + + + + = "3.0.0") { + project.setProperty(attributes.get("property"), true); + } + ]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Install "${basedir}/platforms/ios/build/${project.name}.ipa" through iTunes and run it. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/nbproject/configs/android.properties b/nbproject/configs/android.properties new file mode 100644 index 0000000..409754d --- /dev/null +++ b/nbproject/configs/android.properties @@ -0,0 +1,3 @@ +device=emulator +display.name=Android Emulator +type=android diff --git a/nbproject/configs/android_1.properties b/nbproject/configs/android_1.properties new file mode 100644 index 0000000..bc6b508 --- /dev/null +++ b/nbproject/configs/android_1.properties @@ -0,0 +1,3 @@ +device=device +display.name=Android Device +type=android diff --git a/nbproject/configs/ios.properties b/nbproject/configs/ios.properties new file mode 100644 index 0000000..3c05b53 --- /dev/null +++ b/nbproject/configs/ios.properties @@ -0,0 +1,5 @@ +device=emulator +display.name=iPhone Simulator +ios.build.arch=i386 +ios.build.sdk= +type=ios diff --git a/nbproject/configs/ios_1.properties b/nbproject/configs/ios_1.properties new file mode 100644 index 0000000..2accb84 --- /dev/null +++ b/nbproject/configs/ios_1.properties @@ -0,0 +1,5 @@ +device=device +display.name=iPhone Device +ios.build.arch=armv7 armv7s +ios.build.sdk= +type=ios diff --git a/nbproject/plugins.properties b/nbproject/plugins.properties new file mode 100644 index 0000000..a662520 --- /dev/null +++ b/nbproject/plugins.properties @@ -0,0 +1,48 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +# This is a list of plugins installed in your project +# You can delete or add new plugins +# +# Format is following: +# id.of.plugin=url_of_repository +# +# Corresponding "id.of.plugin" can be found in the plugin's plugin.xml file: +# +# +# This list contains all core cordova plugins. +# +# For more information about plugins see http://cordova.apache.org/blog/releases/2013/07/23/cordova-3.html +# + +cordova-plugin-device=https://git-wip-us.apache.org/repos/asf/cordova-plugin-device.git +cordova-plugin-network-information=https://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information.git +cordova-plugin-battery-status=https://git-wip-us.apache.org/repos/asf/cordova-plugin-battery-status.git +cordova-plugin-device-motion=https://git-wip-us.apache.org/repos/asf/cordova-plugin-device-motion.git +cordova-plugin-device-orientation=https://git-wip-us.apache.org/repos/asf/cordova-plugin-device-orientation.git +cordova-plugin-geolocation=https://git-wip-us.apache.org/repos/asf/cordova-plugin-geolocation.git +cordova-plugin-camera=https://git-wip-us.apache.org/repos/asf/cordova-plugin-camera.git +cordova-plugin-media-capture=https://git-wip-us.apache.org/repos/asf/cordova-plugin-media-capture.git +cordova-plugin-media=https://git-wip-us.apache.org/repos/asf/cordova-plugin-media.git +cordova-plugin-file=https://git-wip-us.apache.org/repos/asf/cordova-plugin-file.git +cordova-plugin-file-transfer=https://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer.git +cordova-plugin-dialogs=https://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs.git +cordova-plugin-vibration=https://git-wip-us.apache.org/repos/asf/cordova-plugin-vibration.git +cordova-plugin-contacts=https://git-wip-us.apache.org/repos/asf/cordova-plugin-contacts.git +cordova-plugin-globalization=https://git-wip-us.apache.org/repos/asf/cordova-plugin-globalization.git +cordova-plugin-splashscreen=https://git-wip-us.apache.org/repos/asf/cordova-plugin-splashscreen.git +cordova-plugin-console=https://git-wip-us.apache.org/repos/asf/cordova-plugin-console.git diff --git a/nbproject/project.properties b/nbproject/project.properties new file mode 100644 index 0000000..9c12be6 --- /dev/null +++ b/nbproject/project.properties @@ -0,0 +1,7 @@ +auxiliary.org-netbeans-modules-cordova.cordova_5f_build_5f_script_5f_version=52 +auxiliary.org-netbeans-modules-cordova.phonegap=true +file.reference.Lecte-test=test +file.reference.Lecte-www=www +files.encoding=UTF-8 +site.root.folder=${file.reference.Lecte-www} +test.folder=${file.reference.Lecte-test} diff --git a/nbproject/project.xml b/nbproject/project.xml new file mode 100644 index 0000000..49cd190 --- /dev/null +++ b/nbproject/project.xml @@ -0,0 +1,9 @@ + + + org.netbeans.modules.web.clientproject + + + Lecte + + + diff --git a/package.json b/package.json new file mode 100644 index 0000000..c3affda --- /dev/null +++ b/package.json @@ -0,0 +1,34 @@ +{ + "name": "vote.lecte.lecte", + "displayName": "Lecte", + "version": "1.0.0", + "description": "", + "main": "www/index.html", + "window": { + "icon": "res/logo.png", + "id": "vote.lecte.Lecte_window_main_00001", + "frame": true + }, + "user_agent": "Mozilla/5.0 (%osinfo) %name/%ver NW.js/%nwver WebKit/%webkit_ver Chromium/%chromium_ver", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "keywords": [ + "ecosystem:cordova" + ], + "author": "Netsyms Technologies", + "license": "MPL-2.0", + "dependencies": { + "cordova-android": "^8.1.0" + }, + "cordova": { + "plugins": { + "cordova-plugin-geolocation": {}, + "cordova-plugin-inappbrowser": {}, + "cordova-plugin-whitelist": {}, + "cordova-plugin-device": {}, + "cordova-plugin-statusbar": {}, + "cordova-plugin-headercolor": {} + } + } +} \ No newline at end of file diff --git a/scripts/generate_credits.sh b/scripts/generate_credits.sh new file mode 100755 index 0000000..68f5f69 --- /dev/null +++ b/scripts/generate_credits.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +echo "Generating credits files..." + +cd www +yarn licenses generate-disclaimer > ../license-credits.md +cd .. +yarn licenses generate-disclaimer >> license-credits.md + +cp www/pages/credits.template.html www/pages/credits.html +sed -e "/{{credits}}/r license-credits.md" -e "/{{credits}}/d" -i www/pages/credits.html diff --git a/scripts/npm_prepare.sh b/scripts/npm_prepare.sh new file mode 100755 index 0000000..f5e85a1 --- /dev/null +++ b/scripts/npm_prepare.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +./scripts/www_npm_install.sh +./scripts/generate_credits.sh +./scripts/remove_bloat.sh \ No newline at end of file diff --git a/scripts/remove_bloat.sh b/scripts/remove_bloat.sh new file mode 100755 index 0000000..2310490 --- /dev/null +++ b/scripts/remove_bloat.sh @@ -0,0 +1,79 @@ +#!/bin/bash +# This script removes some stuff in `www/node_modules` that the app doesn't need to run. +# It removes about 6MB from the build size. + +echo "Removing bloat in node_modules..." + +pwd + +cd www/node_modules +rm -rf {ansicolors,buffer-from,cardinal,concat-stream,core-util-is,csscolorparser} +rm -rf {dom7,earcut,esprima,geojson-vt,gl-matrix,grid-index,ieee754,inherits,isarray} +rm -rf {kdbush,leaflet-geometryutil,@mapbox,minimist,murmurhash-js} +rm -rf {path-to-regexp,pbf,potpack,process-nextick-args} +rm -rf {protocol-buffers-schema,quickselect,readable-stream,redeyed,resolve-protobuf-schema} +rm -rf {rw,safe-buffer,sharkdown,split,ssr-window,string_decoder,supercluster} +rm -rf {template7,text-encoding,through,tinyqueue,ts-custom-error,typedarray} +rm -rf {util-deprecate,vt-pbf,wgs84} + +# Make npm stop complaining that these don't exist by actually removing them +rm -rf .bin/* + +cd bwip-js +rm -rf {bin,examples,src,barcode.ps,demo.html,stb_truetype.h} +rm -rf dist/bwip-js.js +rm -rf dist/node-bwipjs.js +cd .. + +cd @fortawesome/fontawesome-free +rm -rf {js,less,metadata,scss,sprites,svgs} +find css -type f -not -name 'all.min.css' -delete +cd ../.. + +cd framework7 +rm -rf components +rm -rf lazy-components +rm -rf less +rm -rf modules +rm -rf utils +rm -f framework7.* +rm -f framework7-lite.* +find css -type f -not -name 'framework7.bundle.min.css' -delete +find js -type f -not -name 'framework7.bundle.min.js' -delete +cd .. + +cd jquery +rm -rf src +rm -rf external +find dist -type f -not -name 'jquery.min.js' -delete +cd .. + +cd leaflet +rm -rf {CHANGELOG.md,src} +find dist -type f -not -name 'leaflet.css' -not -name 'leaflet.js' -delete +cd .. + +cd leaflet.locatecontrol +rm -rf {CHANGELOG.md,README.md,src} +find dist -type f -not -name 'L.Control.Locate.min.css' -not -name 'L.Control.Locate.min.js' -delete +cd .. + +cd leaflet.markercluster +rm -rf {build,example,spec,src,CHANGELOG.md} +find dist -type f -not -name 'leaflet.markercluster.js' -not -name 'MarkerCluster.css' -not -name 'MarkerCluster.Default.css' -delete +cd .. + +cd material-design-icons +# Remove everything except the icon font and license, but also exclude the +# current and parent folder (. , ..) so rm won't complain about refusing +# to delete the whole filesystem +find . -maxdepth 1 -not -name '.' -not -name 'LICENSE' -not -name 'iconfont' -exec rm -rf {} \; +cd .. + +cd mapbox-gl +rm -rf {build,flow-typed,src} +find dist -type f -not -name 'mapbox-gl.css' -not -name 'mapbox-gl.js' -delete +rm -rf dist/style-spec +cd .. + +echo "Cleanup finished" diff --git a/scripts/www_npm_install.sh b/scripts/www_npm_install.sh new file mode 100755 index 0000000..a6bd22a --- /dev/null +++ b/scripts/www_npm_install.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +echo "Installing node modules in www/..." + +cd www +npm install +cd .. diff --git a/www/assets/css/app.css b/www/assets/css/app.css new file mode 100644 index 0000000..642ac64 --- /dev/null +++ b/www/assets/css/app.css @@ -0,0 +1,93 @@ +/* +This Source Code Form is subject to the terms of the Mozilla Public +License, v. 2.0. If a copy of the MPL was not distributed with this +file, You can obtain one at http://mozilla.org/MPL/2.0/. +*/ + +/* +Framework7 and FontAwesome both have a .fab class +*/ +.fafab { + font-family: "Font Awesome 5 Brands"; +} + +.fab { + -webkit-text-size-adjust: 100%; + -webkit-font-smoothing: antialiased; + font-family: var(--f7-font-family); + font-size: var(--f7-font-size); + line-height: var(--f7-line-height); +} + +.page-content-fab-pad { + padding-bottom: var(--f7-fab-size); +} + +.navbar, .item-link .item-title, .item-media, .item-divider, .item-label, .fab, .button, .noselect { + user-select: none; +} + +.navbar-inner { + -webkit-app-region: drag; +} +.navbar-inner > * { + -webkit-app-region: no-drag; +} + +/* + * Material icons are too big and disrupt the flow of text + */ +.block .material-icons { + font-size: var(--f7-block-font-size); +} + +.material-icons.material-icons-24px { + font-size: 24px; +} + +.material-icons-intext .material-icons { + font-size: var(--f7-block-font-size); +} + +#mapbox { + width: 100%; + height: 100%; + background-color: #e8e5d8; +} + +#mapbox .user-marker { + width: 25px; + height: 25px; + background-image: url(../images/user.png); + background-size: contain; +} + +/* Allow tapping/clicking on package markers + * when the location dot is overlapping them + */ +#mapbox .mapboxgl-user-location-dot { + pointer-events: none; +} + +.no-animation * { + -webkit-transition: 10ms !important; + -moz-transition: 10ms !important; + -o-transition: 10ms !important; + -ms-transition: 10ms !important; + transition: 10ms !important; +} + +/* + Allow easily changing help text to reflect finger/mouse usage. +*/ +.clicktext { + display: none; +} +@media (pointer:fine) { + .taptext { + display: none; + } + .clicktext { + display: initial; + } +} \ No newline at end of file diff --git a/www/assets/css/backdrop.css b/www/assets/css/backdrop.css new file mode 100644 index 0000000..0da3d9c --- /dev/null +++ b/www/assets/css/backdrop.css @@ -0,0 +1,16 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +/* + We want the backdrops to be there so there aren't accidental touches, + but we don't want them to obscure anything. +*/ +.actions-backdrop.backdrop-in, .custom-modal-backdrop.backdrop-in, +.dialog-backdrop.backdrop-in, .popover-backdrop.backdrop-in, +.popup-backdrop.backdrop-in, .preloader-backdrop.backdrop-in, +.sheet-backdrop.backdrop-in { + opacity: 0; +} \ No newline at end of file diff --git a/www/assets/css/oled.css b/www/assets/css/oled.css new file mode 100644 index 0000000..f24fcb8 --- /dev/null +++ b/www/assets/css/oled.css @@ -0,0 +1,16 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +/* + * Color adjustments for better OLED performance + */ + +:root #app.theme-dark { + --f7-page-bg-color: #020202; + --f7-list-bg-color: #020202; + --f7-popover-bg-color: #020202; + --f7-sheet-bg-color: #020202; +} \ No newline at end of file diff --git a/www/assets/css/tablet.css b/www/assets/css/tablet.css new file mode 100644 index 0000000..b005b98 --- /dev/null +++ b/www/assets/css/tablet.css @@ -0,0 +1,79 @@ +/* +This Source Code Form is subject to the terms of the Mozilla Public +License, v. 2.0. If a copy of the MPL was not distributed with this +file, You can obtain one at http://mozilla.org/MPL/2.0/. +*/ +/* + Created on : Apr 3, 2020, 11:55:50 AM + Author : Skylar Ittner +*/ + +.only-tablet { + display: none; +} + +@media all and (min-width: 768px) { + .only-tablet { + display: inherit; + } + .no-tablet { + display: none; + } + .page.tabbed .tabbar { + /* Remove tab switcher at bottom of page */ + display: none; + height: 0; + } + .page.tabbed .tabs { + /* Put tabs next to each other */ + display: flex; + } + .page.tabbed .tabs .tab { + /* un-hide "non-active" tabs */ + display: block; + /* Make FABs stay where they should */ + position: relative; + } + .page.tabbed .tabs .tab.tab-67 { + width: 66.67% !important; + } + .page.tabbed .tabs .tab.tab-33 { + width: 33.33% !important; + } + .page.tabbed .page-content { + padding-top: 0; + padding-bottom: 0; + } + + .elevation-tablet { + /* .elevation-3 */ + box-shadow: var(--f7-elevation-3)!important; + } + + .page.tabbed .tabs .tab:not(:first-child) { + /*box-shadow: inset 5px 0 9px -5px rgba(0,0,0,0.3);*/ + border-left: 1px solid rgba(0,0,0,0.1); + } + + .page.tabbed .fab { + margin-bottom: 0; + } + + .sheet-backdrop.backdrop-in { + visibility: hidden; + } + + .padding-bottom-tablet { + padding-bottom: 3rem !important; + } + + #mapbox { + height: calc(100% - var(--f7-navbar-height)); + } +} + +@media all and (min-width: 768px) and (min-height: 700px) { + .margin-top-tablet { + margin-top: 1rem; + } +} \ No newline at end of file diff --git a/www/assets/css/web-barcode.css b/www/assets/css/web-barcode.css new file mode 100644 index 0000000..35f563b --- /dev/null +++ b/www/assets/css/web-barcode.css @@ -0,0 +1,42 @@ +/* +This Source Code Form is subject to the terms of the Mozilla Public +License, v. 2.0. If a copy of the MPL was not distributed with this +file, You can obtain one at http://mozilla.org/MPL/2.0/. +*/ + + +#web-barcode-ui { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 999999; + display: block; + background: rgba(0,0,0,0.75); +} + +#web-barcode-ui.hidden { + display: none; +} + +#web-barcode-ui video#barcode-viewer { + max-width: calc(100% - 2em); + max-height: calc(100% - 2em); + position: fixed; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + border-radius: 1em; +} + +#web-barcode-ui .text { + position: absolute; + left: 0; + bottom: 0; + width: 100vw; + padding: 1em 5px 1em 5px; + color: white; + text-align: center; + background: rgba(0,0,0,0.5); +} \ No newline at end of file diff --git a/www/assets/fonts/roboto/Roboto.css b/www/assets/fonts/roboto/Roboto.css new file mode 100644 index 0000000..aff42a2 --- /dev/null +++ b/www/assets/fonts/roboto/Roboto.css @@ -0,0 +1,60 @@ +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 400; + src: + local('Roboto'), + local('Roboto-Regular'), + url('Roboto_400.woff') format('woff'), + url('Roboto_400.woff2') format('woff2'); +} +@font-face { + font-family: 'Roboto'; + font-style: italic; + font-weight: 400; + src: + local('Roboto Italic'), + local('Roboto-Italic'), + url('Roboto_400i.woff') format('woff'), + url('Roboto_400i.woff2') format('woff2'); +} +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 500; + src: + local('Roboto Medium'), + local('Roboto-Medium'), + url('Roboto_500.woff') format('woff'), + url('Roboto_500.woff2') format('woff2'); +} +@font-face { + font-family: 'Roboto'; + font-style: italic; + font-weight: 500; + src: + local('Roboto Medium Italic'), + local('Roboto-MediumItalic'), + url('Roboto_500i.woff') format('woff'), + url('Roboto_500i.woff2') format('woff2'); +} +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 700; + src: + local('Roboto Bold'), + local('Roboto-Bold'), + url('Roboto_700.woff') format('woff'), + url('Roboto_700.woff2') format('woff2'); +} +@font-face { + font-family: 'Roboto'; + font-style: italic; + font-weight: 700; + src: + local('Roboto Bold Italic'), + local('Roboto-BoldItalic'), + url('Roboto_700i.woff') format('woff'), + url('Roboto_700i.woff2') format('woff2'); +} \ No newline at end of file diff --git a/www/assets/fonts/roboto/Roboto_400.woff b/www/assets/fonts/roboto/Roboto_400.woff new file mode 100644 index 0000000000000000000000000000000000000000..92dfacc618f920a9dbf9cbbb844fb0d77072e37c GIT binary patch literal 19824 zcmYgW1B`AxwEf1OJGObpwr$(i9p15R+qP}nwrzXv_|5;4m%Qezp6r#i+ufa;Opry~E{y?Ehu{v;Kb(6BZE#0DuyIII$lXgZY8gipk3<{cxKA09YRY z0NdO1Z`WK*NktF0=vaQx>GDs%!py+o#}}6WM+5u6 zfCM0$S-F}1n9=|MClvtj$2Tve4948p+7$p0{Q!AivE`42*xc-5;CvKYaX| zcQ^kbe};weW8?pT1iBqO%G}!V$4`tM007qciLbeBUDe9U*62qkk@^$I&zOO>`ErS4 ztqoj%Vv%zE@gw*TAb229HU`!vKiq%0n)=Z>VySQ-*x5S#XrzDo1|a{Z`?dxc+u57^ z_)7ou19Pz3;6c=`-lb%_fJbC`ZikgL ztYVJn+Mz`t9*B>v?mi;Va7E1hqd-LVkBVBkuYriK;{u-$u@$xjtpLpsxe?hBewrK9 z&!C4D6MHfcXccc&ZIyA=b`@B}+D6$%q(ka9W;zft)SHu>1HV(8({=V=X&v9b{dhUn z*0nXfF3<65a=-4iEOVs*b|x_;Ilz#kpsHuAsHLo^Yu<75V$~O7HAH4La%g_Uw3@2E z9LBqx>b@NL!WksQ8Q#Mgo7@V>gKJn~J@f=$59BA zo|A@Al87S{N@i_8Bh*J;LiXqZ>of{`(GHb_`MtzgDHMm6Kd8DWP`SjHAj54V)>Pln zzB=UGv}NtXH4CqpEVMLc@aIIlW1$Ix=Nr*ulJ|)-XYJ%U$jd@cBWb0w8LOg+v!Vrj z#D_E2EJP;q4N-RaK6u-&SY9RI;J1eNB-@ zS@ZIotNOWBQMM?GOtow0Olamijp?0l54vg}_4$x&YpBY7*@5hzaC6aWL9sn`kwnpK z(p|M2SrNaJ#wHf-xl5-2ll%+$-&5Oq-$a5@@ z6=MAQTH)}>*``n7ZJmId6hxy-T^4O$&`5O2m4d#0gieUBxDl-6+lvMKTJ zdAP*Yfag#iQ*XK#>p#dExvW>>6sdSGxw4z^MC(CbN(n5*0bsC`?mJsa$4C$zB%A zqBj?e&PmW^8ooC<(@S}Es!n|Gj!)6vH+4;7PjA-be2%VDTz5VK@X~Hveo0&)J12tW zm~YSRfKckeb9t|SFeTkD#Lo4AP=3Q=FnF-EfGC-t3V;h|9U_{rh~SQwf`~m0M1GK2 z^gLrPby&|jys2-w2OCO0CKSI#$n@Sx4rwkl@ok1=D{H=Vc&Xl;+js$^C=_x%4qVcG z@CIp)HHj#LR&&}sM7Af&tmEB8GrD!!YB6@hh$&%Ef|VQ3{vM)NaH*bRI#07ys=K`^@burbSSrOmN;Yx32oKQB6GRO>sciC2k})ca zTg|I^&*W4(N{lxB;x7FmFe+O05+WIw$_}G>Fd4jX7VWCz zKcs3CZJKLKi&90v$>O_;aZ*FHsCBZytm4@+@pes)C4Vf`sA`1-pT$RYq1ZBZq{8#J57r(;3iySwCkVxW1>&C=}UfYBev=sIy3OS3iX36_yE23V)y(k3a;xi zksyk`1_;49dTT7BaP=IcKXdpnTt8U7H5``=dRZ3T^z=C@)^0EOO{yE1iPOJF+L_2b zCiVrs@EP@&O;E&C06sp3Z?Fh#^BT>oK;q%@;uv-57(7u`XT7wkh;zVX`nY|X6H8G) zWeJoyW0g-%-?!XIf3dBheP*m*+O=-}a4$S!7a&0KV zgbPCM0Av3!+9oQnl1&PhQqOt2-ApFgw%vHD>bAY)4j*WIoK~|Sjbqo{IPz?_JrxW% zx{p2NnqpqcpL`hUn_3uU_V$kV_HsrnrTY0P;0ZG68H*bk>gxjxf1B&;%R?wm(|33D z^l$}$fCR)NU=Q$t2QxowNW((IMm`AGQ>#{DW1#rPVgkMlpu7IdanJ!$BsRm!GFtUl$mWuNM}WKwIdPo7#%U{&P(C?Xz`!?a)JxJ zkHQ*m7@GP%X9(>V{&>oi@~rJ_-Yj11FWB!8|2*;Eh~*(zc@FC8hc6^Rd{Fn3Eu)6m zS9Y^-zZ^`e)Pwo@dkDWr>ep8kDc!QQpIqwKUdG7cQ#fKA&PkVct~^^Vx8@_f=$_kG z9}HU}vglYl)L#tKVC1G_l7In;0wT=!RaN!tSe8`{+W@Mo#t9pb%cdFrfJ>KNfe;+l zRRl2{r^&zMnaqpyDLQ|bSXQ>^HzC=!>^E>-q8w*pV%wpAL;0e3hZ`fzqH7$ABpdOf z<#V8ksOmGY=Hjv%VyhZ>7z3Pl0j#_F#-#9j?9Th3vW5h*dpOSr+_d`iwEI}myY9xn zZFU7Nxg%i*h`C2hI(wyHN2odnWIAIag^}9C%C(JA$}~Be7}6h~N7d&`h!4bbq9VyZ z;vUG!5Wc2f@e?3l9iR;<^Tdt8^MsAb@-$_gCW#h9CkY*+CrPOzCksYz;yQn6vQ>Bf zd=mglKo-Ck5Dst!ECP%HvH(p$2tXg83Sb8226O`I0nvcL9~H`%J^%$c<7Yoc2!H|Q z1fYOM0T94y0Vv=Y092r203vuV03Lh|0RCT-uIoC{Kw_W*7{O-iRoCT^2*jq96&*|m z07z=*7#yoBgKqgEu6BMO0<(UL<=M%#g{}2IuUO2!1wOC|PK#LR>W>wLC9U`i ziH^_}4QH1UHjBOUi2^{Py#LshGTi1Xi($P@^DKP%uZX|A28_h-ue*?_B-{%VCxEWf7AOOH=`ElwdfH;dXDE1&% zHYfxX!u_mt=#pHQKUAw%pcP}ZcOdCnh5L-Kdtw$?Ix&1^_aF$V&;;2At{H+TmG}E_ zh6n-Ycjs%uGi1CHkxmKXtYL?LZ14u>X6#vGV(k3vAFzS{#ioUPP+3>cL9K0^K(Arc%(=SqTx;hc7*B8a)$WjU zMK!uzZ{{MpzQ_?#JGHDk;#@_;qg2mH%mY#KWfa{tQP#43NlO$6qt!pC$ggWi( znj-KxMsliy=&e+-z1Hbp#r3}HK6>Nn&{Yv-d+w}`y5Tt3kpM>Zorts39!0@0mW^Oz zIZD$kOoM@9$4N6+s;GJGxGJ$7aFT2*6%7xYJt|Vq&#Wy#YqFLh6emZpLJTe-Uao z^+Yhl-w*i8Q|HC#B$wHiN_P#h6GE;IHFZ}*c|$=(Hj%fAESqsrRZwAUL93>>!Nrm` zY|g7ww`Nq*m7*ZTWZ85Lq?fW+j8{`3-f{hIs(x=dyu?rB1kZ6V*EbzHT5-p5|HLW! zHTV^sXVN(5yfh8DcwUYwKoe) zWV6C=I((cV-g?ZAhA}a9bT8}d&NGMLFN5@g%*`YPV{zi4G#s1eBxAN8^|Q_1zc5=Z zQmyx<$_h8w9-ZF$8jwqN=`irUu#{>=X2NFXi8z4~(&JVFz2lJu3D!IAiL~?-G+x8W zsH=q8ovapz#A?NwB$L%EZA{{%u>@)je!0IfcuKd>0`NT}v)S1z9N(?>BKq2p?FhVF zJhvwvQ`G3wb-mJveGpY6!uDk$1B-iYjzLLdM^8^oBoCQJFe<^(USOT$V>lcgDR84W ziUjQ#WCjn0)JJcYGIfWA|3Nn*^xYgGc}WEAptt5*OU6PaFe&OHy1@GU;f9$DLpAT5fkZS&nhK9KA89ltF)#bY=z;I?2IXlcP~>>|jmEdu=!pb4$(` z>}2qDGooKmhPYt@SsenpG}PPO@5ab=!IZ}>QqDgOV@ZaD@0!cjXI?}3p2bM)ji(0J zu5R}h>HJuTNePM%qT1HxPd28}Ac_6!_-iW$zHz6Yb~QOW4N({ggf>_KTP zb6goJwFOj?P36vHVcS&VUdD%ON|82aQ<>Vb8K_M4^A3MXs(#;jI^PdZ&MnMa`bFnA z6>&H)Zf~}dNr@9+T0lyXc|Q&e`E;LqlT35CeD~1aWHvf#ylqPNSIq(uJR7rO0|;k@ zvJgE5{3jwf;|hjc(eL&SKOi{1|5_gL2U%09{rzWJvA=6Rf)OA(%I@B{m>`&pdpkJ- zvggW^;vLyF0@btFNGyiG+ue}uHc$X7=76y$;&<6MD*rFp_Z|3LCqD<8rEgTgVqYiD z+l*9(gli(nrgWDI@fbpVAb~Rin+(klv{=1>BeE97x*^0Ni?X?3F7r~r#Xb-u^s#4tfYRoO*I?DUePK{69Vhm?DowU zyIc73F5uGPZK)-HJB`<4h;pn+qEn|W_RG6D{wrLEd+RR?nq)SV#b?gCw}p$dER
@2OLqbQUcK_7TQCUpOa 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 O6y7R}gQBj@I4BA`2c0zl literal 0 HcmV?d00001 diff --git a/www/assets/fonts/roboto/Roboto_400i.woff b/www/assets/fonts/roboto/Roboto_400i.woff new file mode 100644 index 0000000000000000000000000000000000000000..27c34da2a63a4441ced0eda52bd232f7e315ad04 GIT binary patch literal 21528 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 literal 0 HcmV?d00001 diff --git a/www/assets/fonts/roboto/Roboto_400i.woff2 b/www/assets/fonts/roboto/Roboto_400i.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..3791c883e8d0e8d3d5331b60584cf3869276cd43 GIT binary patch literal 16944 zcmV(}K+wN;Pew8T0RR91075VT5&!@I0FZP5071(D0RR9100000000000000000000 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 HBnkikn^Nxw literal 0 HcmV?d00001 diff --git a/www/assets/fonts/roboto/Roboto_500.woff b/www/assets/fonts/roboto/Roboto_500.woff new file mode 100644 index 0000000000000000000000000000000000000000..2633e1525dcee3d8b43790efe292a4c415cdcb88 GIT binary patch literal 20012 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 z zk6SF~G{vhZ=UA0!kgexdBQ%?i%C|I{`vVN>BL99@8w3CffChkmeF2a>H)?#Le9=dr zo?Eti^Cq{C7<&z1KLUjr!**m64Z#Z0yl*%{ad}A>s?jUGbtiJ3JyGeSZb&Im)+ z!J^ky4y71`aASg?S}xB->LN+eH!HA+0K9->$zJndK(896FV%#{!flF_hZyHGBeow_ z;<{OvO1GlEz9T+jI5YMiZf&C9`?Ncdr@mFrN?ruG_GC5G$X>m{C-e3qcQcY|L{P;) zcls(ENY3Gq9e;g9oASI<&IwD3{P;?FPzqTThJu8(OftVet$K=mf&aaBUj&pX^%(g|aZxT$DJ7F84yb@{~stX40{-=LV2L&K{ zmVWAkQ#L#H_uir+qi>B2!-xDARJK5tX+n4}=%NSoB>?M5XX6OK-c-yiOCuiMdI>-t z2M_dB`WppcF~+C}?81j&BgmM9!slrYKvsm>w?!?2k3=B>YJfXJWR{vibiv3%M1H-9}wVBiwwNUJCYCyM$~(F67)p}A}i{gH|1MMyw5*J^wD z1c^U@?QVXJFG<YN}Wn?B~u9wu?`6QY)DJ*FT zRCgLS3EXASDJISoWu5uNdF3Ud+ZLJZ5Hs%E6V%sr-LAa14eZ(p{eIxJ5(HTLl1dvn z)0)Wr5lmN;P&@eW!zJWX=nzJn^0S{X3`RV(WZ)@4XFm&4PSCu{eiWzXk`p-` z$a#!;LTm95Sxk#a^J3^GUZUt0%Z|U_#`yMdz@0jXta1~q;5e%YAb=HcD|?GCjAJ}-V{o3@Z_4_p@aY3-wx?YGtkDtN7f$nHmtdf&H5$$h{Vj<2 z)srmw0a^iiXkgv5SWJofWZ~~ z(*f6LN(2o&r<;SBOnl@IEO1{ZYTy|`_b#tt!9Lpr)r3)N=WqST6KjcY0RfC({n0J577p_oytU@Za;4k8OYHph^49Rx`yvg z_x?KFjBTBAF)){1KGUc~17r%5G#QI+oo|JAd}>#)8}Z?zgG1HET0tEj-dwlq1xg%& z^>~Y3IZ*5`K><4p5&Y9*9pMA_v;ep4`_#xH;Ye0NLp1z9)j@(tr1T}Yg^P%%>Qw(t z{KVLbqN&)swyRB30$EHd{9jU?~HygT#w z^kdypVfKnK+~sP&QB{j-yY>F;bckIjdLQ;Kz8fuPn?<7Xn3xkO=E8+Xld>DB-Ot$% z`Ax=7f~6?P0-bz81=+ts9mL(C9P&kCXg zN6x0Kpnyj?r4vFh*cv$QFUn9^jD^PHC1QS zqz*x@LUVg5U19u^NM(^fQgHnaY<;Egb54Vw6WyCQ@O1r5{O?|goNY8)NSoAByo~j= z5q>`Lx-t6H99>&>XWSn$(I3}>@^f%mpodbvh3&5HFk8zn+He0Dkq#) zi9d&WB50f`n4Khe5Dlu9eMm}*B^RYG?nJ){z804t1(d;mJ z-H8o)_aiVTDpIj1%sLtrP9sxl^%XVmeKNBFp6Z%z| zog@BOt$cRbnqOsHCt1g4vXO@mM*r08h4ou}SMe_u%hZmeo*g{@!8x zK6zN}QjjBa4gtZ_}ln#S0naVvI%qL4BB!7m?;>RwlZRl3zgp6Qm zYSx}sZ4vk+0!?`aI3Aw!Zp@j@e2dHtzu>byGkAFnV|MUP&irbbZ&q&7N}rguu8*f< z+llf}1B7su1PjFqlO5U01#G&i;PveYl;9O}LQ(h1wQF4}ev~hFL4#esLwi zNG{sQ?N@o8oCUMGJas$axf9>ufYMTjrD!usZHg~6Dd;kOy5@LjilaLg~n+k zPLpuWjnAuKd$??-1!)ca-gMVr(mz7h1A1zFUnWIm*xp|sdn3rw{R0$Vtl>yDjp^}y z&KR)!q7s9NdP71{eySD2T5INNr6LD6Z8!{`p2p`k4AViEu09%C&vh`6Ru?|Z6)EY} zlRSGJ*;uTf4FioPiGhYY1lQp|wfch{26ISbjZ_(XeKd4j2-|#M4wA0+ZU&`2-vs~_ zwp@Tij6pE+0x$!MA}+^}*)ct9s1oNTsS>axg`jX^Mlp>T@s+>TwoZH88KAlMv6epl z{t}%D3|uD9Vx!<(@WBSD!|Z)4D5C}V0A^{(z?`Bv>>vX15EW-Dd3qmL>X^^Q;ujqj z;e_I~1ILL?0_OH{^a?Ho#D0XInqy`~pjb}P8hbS}h$B&rdu-FF1eZBE8JA&}*XbGb z{U`9L^1z2(M2|qvyK7>#8RnyX4>r!sAwdlwI8x{hK_@5c<3OrMfaomUnd3@DVahn3 z<3a%!`S{^tVpBeNv18Jo6_pj2t)-wg*qd||Ol;-@J2oLN_;XKGPArKkH+1Q`(Y1Ne z_4z-JcNqAg+EbC*6G7sm|K6JD)W{o0H<>TzuneaILeJDZwxyeXa&S=HhsGn`zSk&{_@)l7JV z;U1A?a(^{?YkS&GLX!O(41QB$n;IYPv)at%4nU5jf75AD^C6Dk$YA-a_^O>oP;ktc zkiy!V92`b;41;Sr;kdDAF zSJ3vd{3<_ea8254eW%ti`{?TU5iGS6Kq2{Z4SdT#yUyOh?V%OFP5ono1oQGj`kt34 z!3O-vnb)@r=mK}l2QvFtsjn^u<-rln{F0Ik!~q-uiyYX+bLflokIfx}J5BIIov4qt zPpAhe9YUW>z;4((R61iQ3AJ>UhY&UpF>clt9Nv-lUC>EE)ct;YQ-jh|CBmJPU zOcioz+nYlvRze&w&%N7E7!#rdW&eO8R+Jbj#?YJ-Sy>l--xyQIN5-zZbOd@w=98W` z%HI7YW>piDf1^sL3*fH40b}y@#8c%|W)#x&4?~GTgv|aOueKwlvU3BD^!^rN6VRUk zYZ+@mFD!X6Xdw=L;%|*w%5f}+BR4|vOv0{GAfKkyJ6584OjxLzLp@JIp_+~U3^U`$ z3}Zsni-LKTv-52Hm(HS~_yTRz2AQp0aqH>jT**>e+|tTbo32d$!tc`~Mccu;USL=A z?DKk|A0Bxy^sU)M4}05&aPS|Y!`V)61S@2EEVfIL5N6r~FsiX0X#f>G0JMMSE2o|Z z>XZzw&}7TOoc2%$$N=p`fmafJw(tT?J3EBQrf{Nc!z+lykNzX=4^YfJ$}0EnpD-`Z zO`PR`cXKIkV!pt||2r3647h z&q5SKMPO^@Q@7kf$%X@usFu2iGk)tArD9gkqB&pg#|KNV{n5cg_4O1gp;bDj{3gsv zjXlQp{y&Z8ovC5Z_fk-96GTZg$iw!y)A!}q%rPi3?jxWmw+)IY830@lfc&RZ;6{~B zrnLfV+S;XfP0F*b8>4g@>#1M832j{1T2~@@lfG=T`x0tUBHsoC;fT2U>P+{tGD)np z5{d<`k)(Yy>yHvp2VynP^XQbx$os)__Cp|@h7F4drZ`;fCy?NXkp$T{BUFgKwmJ4y zDqHiw1`s@rJ_br?DXZqS*9Wd7NCJNR1xuZ5E($EsVlRc|hcLh+_aQtcOEs0Di{dv&uGs(jyW+T%L|l9@_|uc8jHQK0$u! z;t_s9#}n5Qx{<>qI4FDhhqFTf(sPTS+m9cWu{gAq?pkHPWL$|~h)LkV=RJmm&8h4O zUS!0)f{5lBxxqC58AimV`f#P{0I4eConf;6GMeA>_Hw91K4G~+8Gs{SmM{xQnJfhI z(q@3}=;Kf#O1|LH+{~{kgq9n(cqraPe4N>U!zY%vv_A<^qcE9y1|R`mk}l>n3+~MF z?M24H9WSyZZ9@aAbw!G_{Eox2B^<~zg03m~KN%tGZ&wtEiC^z5kSd=(Ngh{>($r2X zI#8vFL6p}77SPgpHCednjup0o-tGLWp-Y+0 zxKU+2j;ENm!U8q@^$Q-e1vmCHySY;V2nK{DqN8ARJg}Ot)|ymK;B`go`A+jpG~FX< zNH)DRkH!uTL45GBLj!zZCStj%y!!1 zsr#m~HAKJwG3y?S61EfQMPiwgiB=nA&wh1o`-N$W|)Y5ni(M zvvi0pPcXXZT1rT59OKlqi@NWU$~VLnys?0nI@OKC`jx_6m8C*DNlI`LLzq03X-IkC z#%+F2G)bpw54k!X=Ukx$(x#*}yfrB8&^wZr7U(LLjD9LX-sxvj9EuL*W(1bPtBqO- zYWV;)@pno_lnHyTXqrwj8W-E!BSi+?j%`zcJzd(RUV)|yc}pUMK{;wNPmj&%y@aSVk}{(LJf}H(@#rWaIF-YC-Y~zmhxsS(q3ZTbUqk##?KsnX>ej} z@euyZk&)K}9+Xk~Wxahw$trVEi@Qk4s3fUbr70ToWky4Nwi}I~H#J6!Av+amzW<7=PGVdIH;`Z? zP{P^KHYXv2P|A3v`z|YGI4Irnr@quoXaIV=bHY6w5nlXnq9_=T`IH`7{A0owj-FV5 zMpju`BQk7Addb>ZhkA1wSlb!yKkTmPRIjE@q>4kJNJN8Dbb`3%1L?IwOkOv=%qi^= z?!U+5AQpAEVtJOa`V`1j^38_BJo4+ipk%``sEu|AG#e0LHRGtOL@$d8h6%(dUK!PQ{@ej za3i87kY?l6ODe$4Wl-%6&;QC91xa*yrgb6ph+#;xjx$#oKJbN16QIv#(2v}B`6VCx zyIP0+g@*pz{n->}!k&=;*qL^e2wc~&wlGlbk-pA-ezBPcTIS1p_Rr_|<5BhER<}EDTr;D8prZdGNfyEs?DM;7jD++s%tyIDnrFbt@{|T|I8AzWHj(nthhqWncY3 z6!<4)uQTRR?IOFSZCMtG)Q`Sg1`<*uf;r*I@49OP4bfj3kkkV$#@a;V`x70wVv7L@ zCfp>hOj9KBD?h6^A7y@_f>bw)id46OzX)QM9$3<>(NqX`31c8jZ(EQ$h*VDdCZXI_ z$Y)!=^iT(pIGZU3p7tl`uTm7$5IQfEveD2nE+`w|4|CPzp8@vu>zKtV@km&bW%vqG zt*Vx~jhHZ8Fs|E|iDH%R#-vergSyIPeZ290%?=^+`3tWYvDMt|wt3!6Ru&c}&qBOB zw}b%QH5-`;JaU&ms=>}ph{(=IsqH+xYGh8Vls=b+SiBknPP~$fasd=L1O3N@DzOag z!7(+Q9KUJFm)&KI&sfIbTtdLB$t`&}t#6GG4cu*qafuFp2akHi;Pkv)K=-|twNvmK z2sqJ7#>n-;3xY3HE~m=xvxR8Ssm4dfJgr_P4xCC_ykf2A)h79Iq)8td_HR>NcbJH; zns4sK_1EgS^Q@ZhyuZQ8F+FhXV1yq|t)Y<~BdpCe_sN9(X%iEb7(JK5L!v>_LT)*~ zaZ3q5G4plb9q6=yUeDm`r4zQmO8XocKf^@`htl>@3Bmv*1;rOe_od6a8wC!YC?8n93Y5R&dFuW57dFK_yu+CGJ4V3~1%zr%4%#5-DzUYS%FukX^zhN!+2i%-u^G?=so>k^zUmPV+9Ho& zY-G(2SI~ttelwj{R>AVt`hTQ~PCrI(*~4uDk^Uh)$b72PFyL_eO&*h>V&160`}|0# zU2op$f!QQenG&g(9y5QmdZvc)rb4^lKKqTZL2nrDILYqm06KVQpHD8_pUgM_tvji! zmblRr36E}^lqMGL?dFuIc~f5`g%RJZJGcg9wK80R25CP?%v=KzRTimk^9{iC!7e*_20^;S2M+I#7i_9pE1- zzFDNgNEZ~NMK=R(c&3O2osiA~6~%qow?WZodtO%bFbLFo5K0YYeVM~L#aa^R9`>w- zk!N#d|X=Iw>~;URW~_he77eQ-Dzm&@GMgYY;W zWCs$sl+GYh53LYHaG!P+uk7Ypj&FlUu=ZTQZ+#(W{%TFLv~0;ASgnyXV75QQ#zdizWI4@_$b;`wkv^yX@)r42%B-hWBR~-Rh+c#u zRWL$4Q*>8}h@qi5Clk(pPJj%Ef=^980)r#ao=Q7t9I!2XstU6t#Zq2DM=a0vb1WKW zQ$jRK|5-4UV!S<43kEB<)4}5`C=z0n9k1w>P04Es^9QuX#}`C+WlSuV{NQY!8)H*a z5G4)`)XbRX)@^P3;^Sx-?x_IpU<}K*%ZwHudSQ zpIfema{-DoeW9b$ec(^q|+ ze`{ds`m1dO$=sAf+Tr%dojgVSf&%c(Hdl{ck@(CPzgSRK^*tN3Qa^p*ZR9(@Tn{DXO;%}(rN2-B=epzGJC7Sk{gdWZ`wUu#=%+Lx0 zCz%HkT5B7{r9nO@+KXXfIde?>XJ@ItHPKeNVHJBqho|Q6bM%ol!FJztU9Hz}(4bM9 zDrMBSxci|xOQcJ**MndE4kGlqD(gbmiZ*)_UbYP+`twtEFb)`FRg(cjO2fFXG9T1& z`x_}dW*c3mo^5dxB`{{M!9|~Z<=>w&-fEVru~!uGCSCr)NH^V*KM5(Q}Vhc$ge>l<~_{U~= zfyz$8ZgJ6nMb8F|{dL(0(E{cuqh%gC`|r-*vI&Rto61@yO}9ZW2m(rkzDmlLv7NXFG!0z97G5A-A&VWv-VZ&s^rvlE|Bkn~=mVo)u8vMPaAaUrl1& zQ9Hnyt&qbuuJ3>3x!4(H3vTc88u=V1!=u4=f4SGXv|{!I_MIUY%(unIp7?zeJ zhF8n^=sc0^N&KDPQfhT(n%Cv=m0o8_st<9P-#dHEO|>E~M-%^Hnu(+hj7^4JmmFj5q*Q96LL4>D`s)4MKqH1W-1VGXb6=wT zR}$1eVGMJ(-+~ZHqL!6CI*}jq$MUJL5u(+}pBkag0`QcJW*=`4sY;~At;|QdBO!FK z*P*XoYFzXN_4;8Pt4!O0jLm7jzkp*A`hv2=sWQ?UuqmZ8Rg0grU6QrzBPM!}4-02FXg+ z;1Bhu44bj{h@^zgoU$~~>(>ni3~AcP0%lj4u}Zb-2%hwsX^L_!n+>RgWGxIO3}?=g zXD<~>%CSda5oIhFyTM{NH2MVsE*fvMxh*$ZYJVrD*m%?Qhh{L|b7dK~-Uxn3_-N&@ z`-;9XQu5_2Klt2aoN>N2x@f@KJ~rPL7Y|2VW&2lPN$&QsIrHMKS?Dfq%v65yu(;ma zE3uHaGYzP)ea~R1Ea#ukQ%twjVDUI%fH}%@paAf?#B9<adZGwDPi_q{QGEU896a zPiGt2Ck6%q(&dI#!Vo`Rpxfl^maF`AV=x_cFH&1D@6BBHLyp~4b&D`RHs$Mg@mnht zgt(xv?@KX~JVIl7hS|YvQ*A6bjm2w6FJ5glmL9rKOFDsG>k3fz*GU})_p2aLWVw@9 za;Nwpyv^~30PV5k`I6zOHW*1-E(&_%)3OJKtmwj+nN~@TxTD?@j0G9^zY+`(njk60 zg-sdDP;yH?-|r-9a#(n1K$4EbQ}9+VInQcFHx0MMIic-%k7i;;Mctc!ne`ylBIogf zY!bF>%kA=3;tTOGdrmM|=`#$UYLGkF-Ygziq80v-U8Pnb68aBvLJRwVN0oNnKA{upTHm;Mj5xc{0 zX9LfxZXr zpVBK(_jD~0zRRLv5}uT;K1g<{svG`!f3!zGsp%X!1Q*8XbtDA;;tsY|UllBQI7vAZS7>ysUqS!GnY%%q;<2mc|nC0GX$I9=^?cLC2`HJgA{NK-nX2vgg^&Z7nAgE6P@{*=K+ba-i}xJqQ0RX8pf*s$&va}aDZ5&K5Kr9}n z4av?Bez=Rh{yez$V(<(PIZMcPW(m>^`6kmaicmEJZ2(*+JENq|Thnb?EyDsEI26!) zDvD%5o(fv9Br@^qnc5jrzm=C{*1l3a8~-f!@rh?4Y>>9^Q$#%VonK{lfAMibajjZz z_=Mapos8?w?P_No0uN%V?H_uu5<_-xV`QxK6)8^n14*%pZtbyT=*Hka+xL0R+$^QK z9NhSix~kZODfRfAf;sbnu`^ik`)Lf7nG+B6pniU=;1D=UTmuQE{}6vhn&K^O`S*vA zJYR*-sdRvJKZ)Wh126K*2-}vhii-~Qd2|iNMO5rLX07OG3>aE39AxRDvtCb3s&Jyi zpNS2QVlxZLT!L`8ZNBO!*B&H=DybaXRkow%m~Dc6bAIr$TDY)Atn`*(fez3T!cbL{ zkxwOo0ZfT$By-QvCbc~Puo7r&9p{C*oi-hl2M1#WrUhYr_cPk1K`8}+;sKePdfnVzles7SOSMy=vS19L+=@WQkG#vG`2!(LS#-PjQ>V})s zvZ3mi4oi-Y5d-6cu5yBcPA)S}{bqJc*rYEOEh9BoIhrZvSzR220vh@x$L!3}a@ZX9 z^BO!_o?&h_lMT*VdPf>GXok2`7s-jbaWXA>c(hVby+j~m+^1}626$AjHNnH4oXh5v z$S_$GgDUf%TYZ(P9#!-bAOTQS61_fBYyEbU^U#&;JHk5E9%rKk30!raI!x!`*97%H z*Qs^;pK6MqY_Vo;PaKY(F2|w(b3Ttjzvhnbe4aU3-U$PNf|@^!sm?~; zo**Zj`aXL*qMyMX*3~4ObbLv7-i_?{*)oEv!jujPd<2KepLL-;iJ_g{A0;^Fr2P{7 zbIUXDb*{SQ;Td5xWt9l}&Ea{uy7CcL#)0GJC<*RX+a)0aO_B*$TSSE<0*2kP<8N<9 zd~5A*&Ka4RafwWb$)o)3qX6kea3p9@OlCC$uh&@C8e-dtOpF zkMW|pnj_s*IeTiRWHEt+B`ovAHVA82EU9j~ge;WWlZwhx?+@Fejr1r4Unnu2${?VP zo3I3Pv?iyaWJC@=;8KTlOoBU)+B!((LuCywtVi&+T`B3^{hjcfDm$jE0wuQP4I)pjwANJZpOk}b3;oDDleDbn3VF#?bpKPJ&c7(`*S_F@b=wtKXu27_g4 zg7byvL3G4rP))2^4>^unA_FF;XryN2Mb}6*?W6_`x4f7A%L{FZ(ZMJq7ugGB35!F#RACqR>R)Wnm5_cCHs+E z{hgn^-;;IdpdR(ws5@qSxV{is>4@G{b^AxUJ2$ypkRURD$073rm5@JuAA9=?oZ}Et z(;P$7V~KcTm<6K>+zhWq9F@@y$DLaBtta$5kqbx}#|JoJx^BWm`y21%0@}`6s3%l!@zY4WeP4 zx_K}1vEET0v)jWj1)@v3(H4mf>owdp={o%VZiWYP8U#= z6VidO3mKN#Qv!O@0cd0X@{;oW8efSXizso3utGU3(d3@i36(9NuE!6V`A4>bUXP}p zksgUZ&qwSpnpv|983Z^@ex`kp<#SnW9$gTbeki4xDmPZ^`IZ7@*YWH2`(3<-mhrMOmr>Ldj@qCl(F0h(sZxae&yT$x zqo>ifJe6+B5JSv%w<%t3?zynx92oR@lkfYNpT%zkdL8O|m!!QiUPV7entwhI&~y)h zZ~i!1ve`D$yk;CUzm5xD?q?t^S^ZrawkXwF>&NN#8GE*K4+6^jIMgDbO)Ut|Yz3{E z0)K~6-yB_l%E`_O+%#hy^=k*Euni%j$_|XVLX$IX z4if~{1GGZIr2cvnte7_exM1e%6nI~m1C5wU;~M{Se2lDuF3T*s(tqE-c9UrKcyqci zTARzla#uepN)SRMV4bwW;f=xQ>59wvUzQWHRftW>Ig;Tn zN@k%1j#lZ$eaJi{I^U7?TP-+`)^Gw=&g5y6fl4|FdNZbBrbnYmh)x_{QK2R{oPYjq zL6Ao|%>H7%y9MTNs3n)izrbVaIkti_&L(Gzf6cV|8M9CKqPlKBE4YW z`+{0pO64XZak{l>{^f(tOc-!CWZS^h+QMwt@@of9nAdAjo)?3(TrS%8DtF3{G z@B?lIl2t0L>F>@AN<>81LTaUsq4UM?-^~JjXlu!_1Cf6(UqO$EE!d)e%v#a&j z`iUBju%sY*8q*A1=B%Z}0EN#|xpED$F4x`zJ=;^@;U`<{7m{B#b(dFJrm3zDU-CKo z8x(?wFTW$RAzfyD{ugaKTGUV@;XEV5yUsh!I-TG@Yzf0ZZDYx3#AjVtgTuF~ukz~z zn0r*vWqVPe{>rCG9zIcfafg1BswH=8wd-hiANtGdBgF4Pvvo~iiO*xZSXMT@TaKxp z+q=sou({}~6<8+5<`E&CMTX`s{%0%~t8C~Ogv^|)NFyJKPQ3E2q7<~s=ezCl(3SRS zd$EdI=xYlTsnyZ$MU#ym!#Q!>ItS_0 zK7I<%SUBTV5xhqWb34yiklSO*NU?79x@|?VPW8H3Lg$?P$z6NRp47EUvo^J=H{q2; zH_3H;N%#xcKy#)x_;#xl3r&m$(LE@zY8w(z?9YJfT)u5k*?O{ImGGgE)IyTz4~#n; zR2^P26!Z3G)e@5l9T#7S$hJWWj2&aySj4rk(63}5;!Jfiz z0W90CdgZUhT-dH{h|T-b<676|WW@-$>WnQ0Ulu@=sA1?7=c5^ysnS4hpyaO z;953?Hk(KyW4`*^#o7IPk3-VzemUb%>EKytO5f^(Cr;|ka7iiqgS-MU#l?aF+wlmV z0Td@X8VT6Da=}tG1n&nTF!Pm%B<@8ZMtZ9gvmMxy_O87SVb|A?L74*=+TbD+ec%aH%V~Q&@e11+WSlE_i)e?-t5Itwuj%c<+hQjENh+8e)4jY_DTq*p6nf&2NL2 z*Xh@9?b%vzK$!Bf1LmNh77YiD$0+`z2!xmZy&0~Uy8=qkj!^UmPJ~{0dBt1+*($~l zah-qP4-U*$%&ag(_zbw*bOFU>AChVW~I*=cdd%?v)B)}qHgz2mC!~O*y;4g z1SUD&O+lBNLE6efGJM@PWVaXwLRrQ#EL>fe5+7LDr>fRemEcuY>vW2r5pkmB0GvBv zlEg9;zO4+MjS=t2abPFjKDvJHv>?-GwEw1rcI9k0h5!1-=+R%6-4&XdVZXjP6m*8p zkYnc%GRHoO0El5B9;LIC461{-Wh;;CFh;8yn0fvG_Y(2AV)>vN9aK}r?A0L$_1??A zK@~cv^8ar}va2^FfP7uV7qhTZ(o;K>gn#Bc**D)T`^4v*_bnO2zJ8@adEXN3ADr~? zt@i7(GGSKYDEy~8NWPb_ggZ{@a{nO9{2OOgV$`f^vpDFMn&KN$<5dRhiP0mLV zLQ`{}-u?a5W77XS0MHzq@bpYyxQY&yGktdOj7%R0@?!!^`8(NMNff0m(Hgd2}dImFlG@xj; zGCinxt-OD^Bk*lPMWqN;@K$%dr2A zXWgoO9zx`GtM+=}pYE|3ANAB8i=}gHw*D&n6D`CEJjaPD=QzXF-FnZ=acch?InIb^ zC!a*?egav;S5)8YDEyB5N`NJ;olD1bm$_6K?%hk!^hnx?*@)jKza zSKf~nsS<9og#Ou&R`b;TXweh<(MAUBN1G^7vihlj}iLWCmZ5sS0LOJP9Yd(5D zAt&Zd+e|zp#nqsVMoO*Uv_6~<*Q|roF4FTL@BZ8ybl!?L;d|%*CqMh~JIlc@479*Fr5! z(xg4LJLcxiAmrHm!nHanjBe=mT!w(Lu6s&nQA)uHn<4H!vgPuLGj||Vw4&wPxBg!r zXBFT!4uoMzwv%P%-SVQBnaa$}%*<`d%(!sO_f%%)_UV|JnO}|>;KspfvC4tXWKzx{E)ZLOZ2jL zQaYQ-p8RhL+xP$>3JEc@wMl7bW~((RAp6fI^S;q!bf+al)yMx&DlPC@sU8w%(R%U4 zPxK#jLsuqTjMiJ}#nzKk`YrtxU0HG_MQ}<<(J^K96!ay^-BfWgXELSq`pXdAgs4pg z3s^T6v+=@nwqEJnbEc}E+OhEgMR{bTsvcUiqVZ#`yritZS=L3xgNn8MY`u%yRhX@J zW_@Z$=XPAOcq3ygr>`4SH+|j)#+G|~OtW{lCHf`P;swH{!v29%TF3Z=g@wXO^2TGHlM)>t`+!i&eEji0ZZWexcdf zlHY~c68!^r5tmn>bhplGR5`=MUh7v+6Iql{lmCn==&WmL|BsTiBijk$kxF@wC6`)W zTqtQsKKao=zlh|Oejl@aN7)*`lqB2d?RZ;Cl6r?42G>V*SFvouclo>1akL7V5nK8q zK160fKP%84`a5Vj4UwF-ZCCr~2J*9m?P!61&Ykb0n<$~xBov*CiIPQyGsI2i(p*~Q zd;fmlv5j;eol7EcY{G};QW3LdhPTF2CpD=Y9KD)eHU2RSuBhqmV7{Mc=b#SPMLS0JuK3sLy1YA&XSmFAJafXeT-};9}M>_nO56Op~NU)_`K?5%`2`71|Mo| zkNY}!jQAXA5B&fqdp*J6WO?(A>jhcnDo8oU?;{&Ks~I-yjigTY<8W zi_L*HPwM6ldO`_0ETjiy0tvA`{TcjrN!M?p|2v-u#zTn;E{k z2h08wSWiA!>B4|ZV4uwXWB#iIneDSnu122dj+#uA`726+cbg(v6&M45?GAMdh1=> ztqkAB*pXa-Z*p%b>fC|$(7`4h3ZbMViJ@TNe}9{ht-zBpb`@-~s({}Q3+oeX>uKCN zEj}HGV{Hb000310006b5?wR#UtbSA^#B=2B000000C?JCU}Rum&-us0z`$w#%kf_lX9WiX<7NhA z@D>1sZw7<_0C?JBp2m>E00oRcAsEmmJq1V-1VI3e&dTaN+qP}nwr$(CZQHhO+qP}z z<;-#M@fu|W#Y9FLf!TZzS-CCp*zH(vf#gmVjG~=rL4b({9oe0oGMFYH1EohQ z6HR(*`&#Oy3aS#Qz^aO>s|F~~m?J1Mk~()}iur~#TnBYH98#K781H^X8k^ksRbU+J2vw1w}NPsr{>mS6z1~i<^4bCIP@L&I4z>mV^mNLX*3S;Y`JbOqr0Bf3<@G=wfvSD@9j%=IX1g4 zR=cS%!JLvaKILT~Cr4ac58-(w67o?*btfVu4@Uv+gzVfBNw|j`r*Mel(-)S+#2a1%`95h%)YP}BYJ3q6**THjnn)bDrdwSEUt5ma0iNTpRnR6W&Q4OSCWSGB;K zW6h<_BI3zYfHYs8Z2ixZt^fVam0y~v|9LZ|xe1Ww$djS}dCu~GfAiy)X6JvN?8y3` zRVMp~0C?JBU|>jq!?_G67~L5!GBq-bG6Ncd2N=1c004l=t!?vL>!;ebZQHhO+qP{p zs%XdGm`XG)lQm^PX{=7#1z=I!S1mWZXlWv?}8?QFeegSO4KTlR>(ntiGLl_TJ& z;~4Ciod- zcph{ITL(7>KZlgipwP_Fqc9h49lj7Dk+o4{REb`VsbYuXC|)w&g5s%?)EMd#&C-kM z!;FfMerd13s@U=f+OJqxC!oq7vT-~9;r|e@u(=OgF2)BXd+sHcA+!q zCVGl~U^^Btz?E=IJOEF_Yw!+y0bj@ONFMPMh7=^#NjuVuOd!k2K5~UTB_9f?3wR3% z1weta1#0{UM}v&100031008a)j{p_`RsaP60RR91000gE00IC4H~2wf6uUy&pAOtq>13hiHjJ9EjHK`4A%q&CqC@TZV6yzP0=Yn z!SGhwik31vQE7yPtc^8Qf>@+6so}9ybrZ+WEiwM_DYN#NGEH+|rQ1=(K>{V7YizR3 zKF2lI`%TwYyZ#hsA;b~uLb8N4bwg5hu`3G_!O41M!%l!GcIi3~+;Yw(PrS>nmY8f5 z0AYSWDtOvsU}j+W{{@J%7*ZIp003XV1H=FT0C?Ix&I4`(02IdY+MaFOw!OufjbKJF zFUD|@)$K8Qlpdjd|0?+9=}Vr+(&SMzDSS$ss!8dyE5)#Vu)U_pp)fQl!pi>E>O!ZK zVb$t*XH^cBdVZ+2BAZH+nQ7bW%W`d0x}%M;mLe+scy}sm*jgNHD4;Ta9j^{nQJJ0& zmwPLy%zsbY$(iMGf2p^G%Gz9AoNb}9P4zXExp>Csu<7O5@|l;5{Au5Nw(`#Bf%R2G6x_G zf>;~Vf)#9BWrmFd797JK9aP z9VVRt?&OF@okRTG{_fo(VXzS;EujJelA=UyRE{dC8c~i&2@$ChP*Kz&1_lD6Sb-QQ z7MOtX{YJv`k$*k^tE;QeJlNk*WJX{JAd^!lvhVD_*81utR3%^mb{2GX^M_m*>^&mm zMjbk{LY|N(6oGt+05a<7qEhjSVlN%M-a^{k} zz1fFLIc{?}FW{*N9}MMWS*exVUf=gq2nWhzMUvU66?h=NZ1$$pdN*}n($O4H7Sx9ZBDY33(gNPf$E6tm^&$b-uJC9B^LFCZ&Ft4cBo|(eIIO$FSgb^}+ z=R3ntsM-Ru5d_MX4JuR!Dpm|CQwFM33EH6s)T^VhE$ur4 z${=;l&FVAHHDUe&dOyrRolWRHqHk;UE1-N!OnuYh5Kz%DsZyg(gC=b{^yu5ffDsd> z%xtk08;2toZrpkB=F5-2K*1X9)}+~}Q%*bMtTE?|n=t9TDOX%|&2=~2HRrJ>=DoCF z(JQaLv1|oolnZc7u$WrQjJUhRLClcoVC+8-?QfZC%xOi35f+;~WtS!P3N{XS;C0E~ zd5xR*{PI?y%4)KtQPbku5S)s+)12WfW1I_S^3*+Mxz7V029L62j>kM* zfg00nUzA|PLRwJSWtlx-GCH+o)LNE>OvMRP!X%HE-ltMnAuU^`@E}`mHWZ$D7W)}zQQzb z=3^=no6r`nV&&06kI*mw`J8+Lzu)A9Ss&S|K&`I?E9c|r{CW)l7SVx!jvf4u*aQ2j zWtly=pT&WHi5>WVxfP=3Bwlz3cT_m!@15&>ZIvaThITV0B*>SErMGQx);eVE`~Nax52G_liac@Anw{Pf>64 zI2d2Bp5|YRHCNDG7++U;)3cPNIrie@2qi-M;4e@gqGb-7`=);~Jn@%AhdIWPta|u@ z4K8xkIbR8j-Wz#R`1kfz`|@r zMO9c$gBI%AE?di}dD>oj!|NN+mi{oC%!-6ahzv3j8O&NEMa_s%H;{(G(=rs=hDyhX z(=(91VKFjv#)iVgNHaB(HX8;rL$k#QvoQp=hRCia=2j62T;>kP0|xP|5nU`|LXKcW z1sbv-Bc#d`za6F$8sTNWC8iQu;AI#hrKsVh%aaVjLj2CNS@wdNio%AFf}`d>g^)Vp@;}eM1+;H zoP-w#A$W{E!GtVSh-=M*yyegcCVOiMJ|T5_mRPlyt(v)6^1MqR-r|8a3V?GfcTd-K zTX&10&3AEeGbkePgXd^TA0G#=%o>4RIN{MxO-cZ3|5Khlf%Q+0*%k^6 zglyiq{Zn}fslb(FD*zBoe-J>hJdbx^IcN#5kPuw~lC?RDfaJ}O9?N_0eGm>Oy)aJs zvy_#7<7$t0HP^!dA+1GF74Ksr1PCO$P8499!)7`om;r~!YTjDRW)%DEHDJF%2OKoy zP<~~I^u0MEN1Aj3!;Ttp%yAfqMUIQ%e)0H!FZj1FJpi74+zS0rRITE5l~1TGXQkd_ zySusA0SG7^mxF(Ss9jqD1@Jup0Js}2L1h%6u{$s8R{5wXw;4VjZrm9FMik&k0)VbS zkNuDBxM{b%_R%W5#_*`=nyV-0)a$s;>$aZP$NDFQbcLa<{QoLiDEMB-cR%5h+uryD z?LJwx_G_5s$Lk;YmPO(@kCI7X^~ZOv&)lkCOb#v|96vbrixdP1daQ;vDc}5A(dBu!=O&M?a$RquUaz68omwe|375wBcZ}mT_^r|MZ;=*fC zu)~4(B=@4A+Qq&`L9L7Zh=Mv7`w0a*9fjk`2^7>j3a60MC}?mL&LC$|(BvwdM?tHr za1jMg1Jc2nWmKtY$Q@F5DiU8UpxpP+}P>*{r>w=C6B`Md>l7BX-S zxBvjwJ_M`UF=C9qe+$v6h}t(K-ZdCYfVD{y+a@r|pXd$;zx@mZ05Ab%2asJQgz%~n zT>W6PAsOv=6~Oh(?!^LzRDi7q)HD^K^&9}H1`{bL9~F-5`=dg@&o}qLsUG?13m%T# z8Usw_#ho}419MGZiVv!d3UIe*!jbI=5{qHXcO9{~sG>eF&EvHtR7vn&WRmyO|fN!VLM`c|cWMaz*ff#de;WL(AehCAv^@G#*P-I5Iv(x3=km&(hM{dpcNjoOXEhzCRvw2!Ac-#f6x(&C_{|hA5j_%(PaC#olhp%0Xs)s#GW1$yQVwZRl1NzS5Por>x}Y39!iK+y`gOtbX^T~*_%CJMj{|#_xX_s#U6wNri35Z zQtJWDE{_Qs&N^9dR>U7RL&e1sQ zN9G&L$kq00u~eM3AquXJ!#OgGq%9NHa=sFKOCC@nN8|`Udttf_cM~Iz(RgV+rMaD2 zm{F2nc+RO4_Wk;nS>ScG-mC=DmbL#UW@?zZT$U!f<`olwmX|wpx7S16H`0*QVDAr< z9sa#2&Aq-fJ-u7YQ;wovUM)YsxzJeT8_h1Sm9h(xo5j#{?I^u!{K5- z-j`t810I~pd(juu&b@vld!6Ad-&*9!Q#ls~IL71X*}GMOAy^bNnyOw`0}%2wiaZLI zLyTM@NgUE8JRjU0=F9Y^yIcMnBDL+l$Z=LtVlg{`YLoD{pZgJ}G-QrC(yympuO#Q3` z@r+*!a2auqmLo$Z&|^QLT=RE55)2$dDkfpu7>zR&MR4q)vU%d7kTk!ku3j5r_k}f8 z&r*6^%@uB9$PHDaaygbL|Nndh3f(n&F)fXZwFV}Ps}m2&kEkfX^< z5XYyG2q4kwqBwnnGp*HWMc<1Kar9x{wh6VYEU$0zsHbt_mvOgdjpLg$u1W-oWOwu; za|&=k^Z;2>atN_IgyeQFinIk0c##m7_?`GBegKRAEOg%67?ZNlpk2bS7h>&Y2-I1p;-6QDUqap z2Az6kI_wG@EK)N^Za@?}lyFnw##8%$n4$z#TY7vXCgF3Mx3yd}Q2N zY>^q#9!Z=P>K}8_47X#a5*KPt{f0mfE$`dpk(d%8i;N)_tPx~KXy|3C)crc5$|{5M z7Dqnxb{SBw{Gi1hy7kSu%2NH{Rm>KDNx-=t*+^}*Rm05Ukg0*nkD(hnU5DEaZMa#~x3z(M@Jls*2psAMs-r|J1qW};Tu zd$+Vzs0`?o7CV;!k&9NPl@B1-)b8#m4taQFW?UX(^W;`D*)(F+^(z6uIG| zkP_*M%n;8VxlSOj>&XTJp%jzp7q~IGZKHn7*81mJ9#IN$T_TveMW+SrvMuH3uZKD| z_JckDFp_7=@69WZIASR`Eyw-tdWHMLTJ8?V&I!s!HfW!}Ihq!rxIPhFSW}0jNQxzU zx=}?kNQosR3SDwT;y9HrHNYD-XiH^2Heg|q3IH0g@3xy_2nE_m%5ei|oVCiIJJd6P zy=*zK_+8uSTFpn!7Muq^-Aqusk^dVssyy(0Acc62_@h-_YT8AdF6Qjj+m9@jQ1ZhH#hG z*M$m&FF^GR057-VUJBP= zOfb54Uj2MII7l*_`FG$<-QOaTgKP5pP&j1tOXHKaZ9a7B4SsS~DPI|giIb>&?ov};kXP*F~ozP0Av%&w{ zGM#G-`PAbVccgGOC#h9$p$;z097F+Fqnpc4oHvde-NAFqa+$Sq&t=tJ1royDLp?vS z%|Scz0Vtx`GD|4~b- z0Obx$9W*LUwb}E>*&iJvi65mXMl&S7+>!8c?h(&eA0XiPY)FzA+2YeAv^z9c;W4u` zL1EpDV#?b2WRBpCgCJdPKGkOT8yTWqfeWuwIz#2gtW=NMHz|G6>Nd41s-14;=s4W# z%rP}_aGdOQW-D9fUC?{I;Ue=X^DLVDgDn6yiM#t7AR=L0Rnu^K!lQMz;>;3(V zQd$tVfQu4Q^Dg0nB|t8%on6kT#KzE*8QL)8+QQ2x{X5Eiq>&vT@Y?e!(Uh>jEOov=37j9ihI@zt#q&putX2%I!dTrp%GdvDHw?xkhox{%-8(n;OX1GOsDMc0 ztWh{k6}cxer!00K9Y-%;;71n-krAnWFcE9oC$xi_8`BaEKS!+pp0N4iDD%q1IF!2U zGF!ZTKT3yv1rATBh18mw~FMpIN<_!_-eaRA}IX8MjseQ z^=r7CRuJ49WbY-XeNhf+?_RmT=KMW9s|!XV4_7jLjl7Q#V`$^@%lFVET6{`7Ch{L6 zkF&|H2k%cmLtUIk8Q8IK?g(pyM2QG53WPDRv6dQ7iHgh#fN^kFW$-T&*OTWC{UCok zC6W~AmEsEhA-^#3+vE%+-?q42Ufc|m;XsDlGio_)XYJ>O;xd$u4J8NPCh&2wGTmEK z`pT`vMX#_Qv0<^NHis61Y_LL~79W&{y1xtUBlvRT{5PhEJyU$NdT=2yPK1|cx0&w-lfxLE zOMo%FdS?s?(3KnXK_S7}J=u|gUd(C@llLu^vbnLDv%P`;r^Ggd6C&mad2FUrQF|4Z z0<({ix(Pj9&MyuXLr+*@WT{#4x&<%SyS7*`p;-Drn>XJLPi>^4vthWo#Ui>TNYZm(X2)!t1FH2V8Fq zmYNYO>%jjsQCNr*{8C=z8{Y9yJmgNgsl53#w9|PS1H8Ump*VUJH*Fgto_+~(TGQxZlBZ`00G!kNSY^RQ=o6~K zZs+qp5t{KSRuvP5lAQ;!hv*N9`1UKVJ*z4M+k<=jMfEMSgcM1PT7N7h$OjXrIInkA z6TT>@1Sbf`cw5BBDb8}2uNzn$JdgD+QX{16!8God$`h$(LNaM*Q(q~vH`A@Mb{gNS zbfr`HqM%v%TDMKTjoW6?7^B$e?@X1v!mBv~V@oy|bJ?aGI|A##;{yJFq&7n4*0g>F zo?Ca~4K#J`q4r+90(#?**50Uqhf%WMCRr85afzU+Z%JhtNoC)K zX9eG50yClmzk9Cx7OekG&fxg=7*H1eu9=bjej8mw_urAHzXJN=I0{F#rL1g2-PB7b z9M6=xRp}iqU0?tHs(hzZgFMT_{7RAXm8`UTsiFExK=<@hP4}}Fz9{(Sxy%nzEpa?b z|3AU6)%ET@_Lx}tQ8t}P^<+|vyk3J6)Ch@hj^4}~?0#Y9H)01N&%~)oG}?Qp<|TT7 zfFku9KG(>+iWbEkZm0K2l49`j8%Hxj{IGmAW?VW_YBoo;k8cU3tKd z@*`M;6AiXS(n2+jDx@0_zldB-3HbC72X42& zqH;YMlyyf?e2A7D#|raQNoIcq=^PdQ{_Ek>;)gX>A);s0n;}nF6eZ&R3{YZAj@$}O#;V}d4(>OhW+g_)?te>_ zb?6AX^ZeM;KtG-rszTjg@bd(kla(BE?+)^fqI|3$1!Qbn_knQ&+!Id9uNXv4@Yo_@ zY=hrhJ3_8sJr`D>@Cw)4T6txt91VOA|H-VzZkC5FQFp3~^mh>6l~-U_(N$H+CHl5O z5yzO%1_G7ZItk zQyV-%T%eG;5xymxeL^xt>@VE~3zLUN55rWnz8fl0#)uX;Wo2 z2T?2BJu7-P?c@sYG)IM&U4#|GZN;QC!b*cbZ5-MP^@7RDRhFTh(`3CP$H17wt}k@5 z-zuwbLQ8KI+jr(@6Z~w;V2;nN-7dA8w!2Z5Wn#w}{;XhcbSazJwhrfRlxCQC-|A{t z$i>m_UOo=m&u*B;K@S>NCmwb=>D{KR)Y8gRC=!-&CD@IFlc*E5+!j5Pes+a-&Ou)| zy%^htJo{C1Z-3yO;lwKIZkIscEK-BW3iX&tmUOzQL_t;Kany{}-xWQZetLyBmT_sc z3_ex{Bg;r>sP~QJX|KTOYC#`s>QNQEQWx-(-XeUkjrgg07pjDpYXg7K8kf>=(Gdk) zEF0^eWbMO;@+0d*P&4vr(GQ?!5j||o-KChlCB*Ax1=xNRk`{t}VA#w(1R_bfWd~3c zXpVB7!ZK-}x8UqCzF&#kWLW2ORk+DfYF7H072Y|0C30>mt^*%ZOe&^S?4Q}EZl?^y z!qHzvPm`Op2$K&+TSVN{-+qwmH<=1r2wb>8&^LLmKJPU@67uiCzfiGG`AUDY+=23|NNLJY zw%_)8RHttHN6|wv*BlLK*`*Z5@HBbNlQqwbT*9^~)lS$b;bk8wTo?_uH`vrm@{xOm z*3{9@t2zFJ?+EepQ@M-0*yA!^>iYU3XyHe5il2JF3O+Cx43d&*QFmi5+4T`UdU8 zl&}0zzHAM{m1Tw{Mmv?Jo7emjE~uJ*7+ruy(A9^;;~xMn$SukpabZCzJxTVRmeO>B znR(1{{uy*0m1Q>{u;AU=3c4G zMV*Pen@e?yQiT$%F1KbyqhxeDtM;LAM%*>snt69q(B14EGZxC>Zc#zZ=_~Wn&8m`> zYSK-r`s=^xtzY-3YBt}5>!q8&-@fuMg-Iuk$UGzU$xwnJ}v(l;+OL95t`k_ElnKu>Pl?yciW6PwS%}(YW;z z&Z74Vq>D=cAD5OB4O5`g26r7gSFAKQ*+X+NtzJIMfXNdpKfd|=)&jl>GewL)X;s3y zc*DTPa-*J&wS|$DRfv^cX4WQKOU26T#Q$%=(sGTpt|zr|bYBaqM|}_Id&v=^XKp?2 zgu7AeepK5Ga9lfIR~P_uYGl95$ly2}9}8?RVa@1y3DIi+cLttB_H!pPL?%S9{08H= zQDpyUG$T}v(O4n=>>(|&4jYDY7izhzDY471BK)!g1kbQ4R^EUYz(`q?|He565N)IGn zz*)nB0} z(@rMoyY41=xFb-DYbeDf6VfUi>^Bg?*U+-4X0Xwk2}DrPIx7oQSI!4)7-89XV8|D% z1bxP@Xq{4>9a2IOM_^*#{zMoCOIu(xO6lGc2P0v5V`Z%WCi{(sF3ujV`u5re9v&Ol z6&E|nPdjcdp4nXNFF(yS&6**wejBfuGPd8}<{?q$B^lyQwTwQ@H?g!GIS$BKhnovw z0jw{=ZNud^W;mO6Bm_Z!vE2zCla7W7Buh3eGyuvtoC2iif$TiU$67LQp_=yIZmK+W z#K#iP6js4J*iw`r0LV868n_!K(tI;<0jV32z$Gj|hSCjl=9SCLx>pCx*IXd-DIyoDe zIynyaIXhGFz?-ZpCZ$VCo+CSize1aHa9cKfbVO%;jifBU&w~n@fE-;Qq3Abc0 z7_p6%H17jJ-fry7czPnmjUDU+-C=43!+V8s6x}_8PN2)zX#0hZo<9&D805v=vChPl z&8hEwV~YIE3y(_%+tztJTk%l0j1*i`x{zwnEM{*%&GbqMr*K=8XLhbqMy&ZS%g(Bw z<}v04J>fr*zqUqiHS%V)qa1r)(=jmlG42R_fjNs(C-U{LjKMLqJuInqWa^7y7JWNo zkll9KP^PU*5%XlatIcdRbK>I$a4%NX-%9PiC5*Gd+pe9_d=U(f;9iO=|72wOD2fSm zB(8#a@Z+7(r0`YUFH66H{<;<6SwY*J=d0&%J3Lq+luVCJ%8fx>(hBvSo6McnZtm^aMu zpxG~r5<+uY=G=4OeH?dtTlpxO#81dHSpD=k5lDApIX1Xn&Q-;#AQ&d4HoB{>voVQKq7W#*xox|tKFe$vUo$e81Fr`Or8=Bu%T%VeRe{bo}K4n4AV zK34KVyuiCoPVF5}Q6LOb3aM)Y^>>nr3FoDV?#!+>_@$}=dO^Q65e=s={%u|%ae95+ z^IW0L4N>kE;h>4{@=3UeDpMDfU!R2?7?V3p_3$x2FUjmHCtWYj!}g)j^bqWWm|@RK zj7E0uo-g^gHqF0XDoT>i$#xXSebtE2r_jc0kG*%c0UDOjGF&up2&lC^xCKo@9r&A*S)m zn>^&1Jb_X*PFhK9*EXyb*BWHrZE1GRJO}dNF@GJW z0l^}wgp)NsKZF~XaU44R=|Msc)_0NBPY97CejXvFVBG?lzOBO^ZlEN4(~f-(@%BVZ zcgHc~|38R~V(D!|trG~Y7pdR~54ii46a>0wr+adX^8$T%X|WzY8!gu9+S>*C39r*- z+i%?5_>P*v-w`BvBX+aygfk``v71OvDQpUcpBjCcd{;~+(n|V-bcSC**KKC5 z>T5X$3+#7}sgmK#_1_jNS9u{PrNMKFtdQo*wB8fVQF+kuwPP|zl17vpm6tG3Gyf% zVTgtgJ}zdtmmb^F)?duvCT2Ms;+sFp#X?E53cdWOa`P!A|TW41+u5bgl;}1;GY5d1%AlP|0ep_;$ZqGxr2zr72@k z7xGkDkNik8pt~xK{l0S^If31(Y;mJY`MSw7Q0)rM;y#ccxk;WW^ZM{~Twkg2SIc-| z^T5m?p+GwKL0782(&4&uU4R}Tb^OEm(=Z;!3qO(<{`zV;sWY~0Xu*;vo?bo#hd=IM zzz9)2{{8Yebb^hlY;ogD**aTS;BZ&RE*M4{>jclmyHBW$!?#DCc;05iExd0&+FMT5{s= zv&*D|`vySLo8X@-(f(&2(qSO6O{ zuy8E5)!EA!g`?QL`Pq;MYt!aW+iB_OIvB=obJNmx*3-(h9bBtvt`p;Zb*<*-nqdQu zkz+zm6-vePM+de;KB_uG+G!~U{`(Evhdrgxaj5ASY1>z`mt(cirFRY%(%2a+0k9b3eJL-s zu6C(+U}DA584ONUV2%Cu;8NJ?`6b8ins?sf)e!Yqb0gBQR>N>HS=fE#TDymv5*D2R zs1Y6G5Z8|bkPil>RXh7=(S!PcKB$NEq1@s1i$FvxtZdb`*28}o$VKwTw?)?aZ}Oc3 z!0Rb+{MezM9@LHM5i4pz_Bfs2i3Yh*9%fo&|K~)1tqG#BrLP=RBUeO0?2ifXqiLz_5H8CdGKSwT-H(vGDdJ#*JNX$?&R=1Ix z83E(~Z#Y*s?C*~A?w$9CF(3Qq=V=u1qZC( z{Ii{Rd5PPV)w77f2SMH4vfM)x4|5{W9^%mAk=!n{czqvhI`{m9t1HJfS6o}T{?0OH zK#Gz;j7Zl5sUnO_?Z~AA9AO~*JOB?~nBG16KLFO{zj3=g)3zTSXWJ87)jTu@VIE%i z6o9{M9W)%gXdTvc@$XsVIx3<2=SIaUzZM>;ldUjQHfhZb(A_ow^zvUH9!NyB*UB1J zRTZ_0|8h*r#T}MkRTH;9tP=k$zoK5Rvzn@9Y5}=#{<6;4TQ&6+f61W8b^p4NegOB8 zok0)ZNWeF|;G4U3+X#MDqsYCH(%09i;fsA?X9mHR^C>o6id}PO7NXntkK1k8x*|nt z|2OZ&!P#$`qz8ylgZQ(+5=MH=f3!hCK39xz_Coc-hLv0 zCGZc5V*1it*`dRH{tV;~USD<0@4_DThx#>yT|2B*H-?7(ugJ_7p1zyC^xwHq0*Z@e zQIKV_-GkG;T`))N0ph{yj2FZq)D?y-#0}9F-bI=8iOWMsY<9k zRTWuMR6fi->LS!W3?6;#FU_fb4K2^pWa?tP{CSWrvT}RLUeM)N*R-cD9$5M;^t&|ypU{rh*fn@qNfBb86FO>%gxn29VwM08J?wd2Xd3^5VYq0V>p)!u1H(b7 zL@-n_n-<4UWXAT?!AGNmqe?k*?BQh)G%#I*7Hxw7 z>Pj1JWKk~}C|oQm|n=m!Z)SJPuK` zc2vem#+KJ$i3)>AU05ksxcop=@928#XfG^r;#-Q_|j_ zbj*UP@*L2qf!0%_MegORoPzhzBT35Bk^R!3erD3`DfEV(Z00MAmQ66HEyK`k)RXHgY zTBsK)t+?7*ab9>+3d(~;HIGXyTf3;@KtN_Nd1{A&XK|Mkxf*=q8o78DOjkuyhIC8p z^hCzNhdEWSzmkOE!7kFS1pq8e5ghd6P+vMBrFzE3C7D2I&%@4DsW-5QtPOS5wkRhy+JirzJrXw#L~8s|O!4 z>x-1Zmt>iASjhDd2kJE$UYBsv*^nUjaS>p8sUXP`%H)4ZR?B!zFel3-H-eADi_&Nc zx8zz~65c%KDEG@T+H0+fj%Aw$Ms#jY_Zf^FRj2BqU^6+_zvtA=S z^V#zYG{Hd+gJ8!LI@Be4zdyv+ zzELSp*EF zuRy%am0z`hpH9N$`7&^o`A${qiXeOM}Z*UX8D;e-xdBuuailKtWk>9jOXVpsPy1wGOA= zPiPhD5s_V>Iyhdepn^;7dH7GwA;ov z6$CHH)}GX=T|et`8>j8UR~Yq4(#2*ZPPhU5Lu6uHQn{8?fT63pGq!plU1R{AtI~&~ zsW$$}-j4g&#BNNQIdH-cjmL5}0m=_W%B5BVR_3Y&Gq8?kIiCF?mCeaBtsGh_+7sK$ ztPPvA1^;l7P+;(pJ)>gXjX9Noc+@FuO{OT$Wig89_i3q_gfF zJIIkUdz!qhrSNgi-=xfmj*VDz%z-HJ7M+4(EK|eIiE#-qFZB!d=wYi zPa>gXe!aUTq%c`PS}D|(kdHsS=`kZ|<4=_jxMJ`c<>v(6XL7IQCHtr&EpLDOFUzw%v#*OSY?NojjHR>7XeF9f0ivaIaXkn#1Xkg{)W_!{E7k0Ci2iOnzrax zEd=VLPyGVLLKR0C&L#40gcc94$m-ytUY$ia)Dr6dj2sR=)!u3y+zdPLXgHDl7~$iK z1~~xgA!4HlixLvjL@b*LP50`GDog5$j|f3(6G?Q%KCCIs_xHJ$We>AcR}J5fpmHLM z$NVSMf@U<HHH>T`YURF6#>ws z6fOCsX!Aw(uk*=PyLB=euMswz%>1ZW8!v+l$9>Tp`t3tCrnnJoe{>pCI0X#Z@StQ) z(4VBrHd2m3d^uUGPBS}jtYjvcOJ=U!$K_)(4?Ln>*2ziE!QKOPU5o5`W!^5j8 z7hKqc3`5liX+b6)c0?Y+og1E#L7Wk)_Jh$_?>DP>D;=D z&kspBzUu0Kq){#ljyxqlmd8Tb(LD3WjcHdHJ2^)zp?iUK{1)KMrX_^|hamB}xr}S!co5b~vbXF>4==WHMK>~34C+w= zK)Hgchh@sNz{F|bUedp%=?X)F&^B?kIpYp?;z`UjQ1fFVNf-qrdC^S4$+1dGVvMT7S58ecg{0b|Iu{+{? z)z1Uw?0A%3fm;E!iHrmN^=-`xG+A?Hf?(HZ+iTBe1>WIU4j7n|xx;D(3L|Qmzv0BB zDl%RLe{~75o7<*mIn}Yqa424{>>@VRfUgygz$)(H;e0Ue203kQnj*~pcLWg}8d_^G z|Bn)idmnfk?~YO&&}pZZW!*M)IO@RW908xa^Zt+BsOhz9{2+>(LoW0!tS{5X7b{vG(dKxt5gy$|bo zC+YP7A6}$bWlDhh8>qb+O$p+O5+$!zrxHgS3C{xE3YW%5wy9tkgqIDG2C;JaMG~MS z%#ry?A~dznsT8VJ|KRo)hxy?XzI#j}nwuZ2e?XVGt)5@bay`WM3SbZSG7yi{NNNYu90sc8_s4#-2kGC$;NUap6{4*6euI2ym>(>%{(G{Gmoq2QJOBN;^gEVvLAGgQqO z5M{9FdPs33m1ID!f$orE5GHp73yT1!FzHuL;S5xwoX;?f^^RsW)hLt!Ivf_UNGz9_ zj(0LCfpgfxr+x!Sw@L{B!T^dxL95MD;Z|K)#Nns6Ua9xrzy1{8{7)JJMEJ_5?v?Qa z0Kn{U|MRa~9Lye?bx0Zv83q6VAV7Tbo(2HYl9<8DY!YD=_@Bu$ik;1{ zYW4Odrk%!ejXAym*f9L;tZ~sbo!v9bwhm-A##32M3~CddDVy!NE(Cmp%38?y5l$JV zk92KGSvOv$ZT_L#VZxe4d*0T#{ieJ0)88MdEg6wZmRct$=M+!kE^gIaLYdmsT&Vvj zDYF%}S<0_!7nSnh*cH()AF)0~r6+VODgH}X`}Wky{*tM_sJBn#RcYqqv^S)ly`1UK zdR8U7s$6X|N*#^S(u_KeY3nnstAaZ@-jFko$yPVh_QRPkM68=K=jWW7cXAvve^dQ*#$O80QCgQS|B}q>j^xz02L3`T0nGnd&M^X6l{i zvr+GR4Yoe))J8D8>1dj_b9d*J^4>ssMG)&F)cP8kt(kDYo^59_>m-_8kQ>FKv@7Pi zqqCfM2UhR(YZp9SR2>^d(HL`hoKiKerhgKgoOI3gJH0ibYn9Tg7=aa%pR+12>Ya!I z1Oog0PUGCMI=Yra?-9IxgTZ>2g}ekMkHek zRbOf=E+`tCgy;^{|L zk|fKPD#kX^(kalTW8)ksu#*%?CSK$;*%F1*au$sE<=r)Wn&KjT7AaMRO(STrG)Y)T z`dSK{Qr^EYcoMLs3l%R$IO2c`BkxU{rip=1v=Oas^%yd>_<)8)v)a%wwDykZESU-I zSu&kgq9<8sIFgnmskW8TYeh~EyCuWK~!$#gDR zTIPE=i-V-`87)WgkVoxOX;8BljITJC${R4fM9O51$8v}a)0E*#9 zQw;!s$PA#BZW_5d6953v|LG+D1GO(`v#GtA4FCW`@uOq@L6_bgR;8JN(@!p}_Kybk ze}Dv_m|1(6{)FZL0G9&*V9|z1O(1V>Y~v09i2c+D_?ZK|;G!cznwuCH|J;JePt5io zK2{dA&40)r&ig0E{{aaM8F;(7jq^{gcs2k4{G$hHnW+{fwzf0+(MkPCfR=u+t?eZ6 zW@F&~Q;YQK4@vMJK=442Yz=Hoez=#PcAr0M#`caT zKe;mh)%W*DM@i+%#^AmV*Utz9^cw@b?|mEmw-8*G3Mj8NKmYFVD6=M_ zJY6H)B*rDiCPp~MDWbQ!$Zv-(rk0>o;wq#jq~%mg=ipxR_+36%SnsTtNYXU(!*~g?Cc#vxAtF45#5hr$&qPKaIVod6*_1I0 zyDcHBErWB)h!193pYfNn;`F^c5WO)i_UaH?OG6I2Lu*-Q-23aV-Xr#p)SX+euRc20 z#<1>-146tbB)or&u?ph6a4ZWV%(P7lV%)qB$c*F{ovGnYvnrY)x1|*l}K8Hx&3bxj9C;f15bvv&DJ?lHNBRSn_PfVWV*IeMue^nXjR zb!9yAv4o@ClOvMA7@1x5zyLKWs3IJ%<~*bxOikw&J8v%QyH4~-N_c*l_eJ&(rATma z3cMGiblBLy6f0}r*5-ibG+>@l*6dc?>>aq>HTo6k!O3=Gm}xcb-eXHn-MjZjpeos9 zM+0irfpwT3{Hne7Jv-E#)@7p_kiNcipn*)Q)o(lWmWCLsKLXRV$;~T^{PT%mNLr0lA&KXRm@)U!=^Ac>biE}dClrr(z&Vi)q`OWGR zlnHyuQk*CxNs`FSvWBJ;khX|Bsp(q9@tld1+T;CyH(h#?4J^r;f8VK-3|FDv7Y2q? zMKDk*R;7R@HT3Edu}Se|kp|Hw%5t&3a~J!^NlqP;9;rsOC3RxNaw-mVE5>rJvx~nU znSYkRj^d0Prwyg&FM*Elr5_pu8Y@T>BgrNXTu7YcXTi$EUwngn+VF4#e)fFXXb?qz z1H{lgy*1V`xCYL#7MqO`xB;*R8#r!R^zt0~nVGX+Si61T*XbT$CN3`zbhFWW%p8mS zk+bU0o1jSP0DOE5|4>obmNnW}!Q{i`zvDE2#^H&oyBcInMO}lYGAA4}Tv$s6sLG(s znX3Kr`oHBz2TJV>9kb&DGOlzBM?xVwB^8)urwb!qZ!s$bNCN_5Cj^p!Q$Q*nceE58 z2m{zkSNGvc2IRP;ZFFu&F_M4J5Oz%Q$L#P=M=U5i1k))cQ3<}Qtk;z?$hV`05-tjR z0*nJA=$fg)$~Gxk|9CIh?`AX0weKcU*R=1YcKSi%IYcE~Q3#V+u z$+zt9Z&)-c!bm?!v&hO%f9{9SaOUqRlSUJTk0uL!?!F!}2{M*z0|?za5Ph+cdyZzI zUb$O9Go_wxvGLk*gfsYQcT0?!U1wNVWo(Tz5z06{@void;`Omo%fbqRbG?t^S{@kM zhJIHF?Pq~RslXG`m$-#*6X5qRv_rYtxqrvhiw&69LHtK zfjpb#FGHG+!xHPt7Q-ea`J$ zU-6S5U!9;0sR|^F!3#u;$qF>(T&9TrhEEYX$4-&bL{AlsT_H<~GzNeORtG=@#{m2SDg_{c z_W|I+cL2cuE#tnf6AL5`Du@wkwtn7GNhA=R-tI7*;Q#lBA?d1BD}vw*9U&yNUG z5B{0z7QnmfJM$UwcN4EN(Bs&L505@QqcE>M@?O5;^%)}Zz5<_jQ_G&%q(i0;pY{p% zMM6VFOb!u_yj3pgVL@-UJ9{jxjFW4SY|voOf~McG74~|Ha)@O8I`CwouyM&5E2fOV z-3C;a&HTfp-mVmRUi8QoCsKq!PJ)6|sfszwg$Ol4v~>&P&c~xg%S(R_SL4AobdwNG z|M0WMB4og8kG0w7vvno=6XMp+-#mS}Yb;Z`AY~P}x(OPFvi>B?;%b3GAz`?npP-q8 zX^t>f)@5A!)TuR6BaC;2S9NAH60UF>8|s80&BSLyQ%umo5HYRU*sW%P28p_~NLJ_x zLWw54`Nz)w^bQgL{QV6;a9^+ThHyt!S-IhKGj&~Tr0paOAjy&y1O}BLhUzAJ*cML0 zvLtvQTM*5BAnKNKU?!r7^e-fc6cecj4kQ4M)DOFu_PgGKTU)!i>-oO-mTzF@HaX69 zx;j1H1OfvGl2G|YE|Cx72O0SL1R!U=Jt&z-93|l%l)DdD1p;L~DW3q1E|pPnxPG|G z$y?M2ewUV}!d@R8iw~Rp5T9x-=t2-MSCIU16v#JI?lsgWt{@RW#vtQ<9F~j7Go4Mt89@!PW5_>y za$4nacn_Np;YuIs?PKrDgC?*uY!eY;u~scIy7(ZRkCwsH4#ap7G-<O%{&KsN zQ|uF;%CXL-K-g|5i25s{ZOP~BG2-Vf09Qy;-vkiMS28<>+0pzPWTae@H3<{#H(!8> z#Ku}c&Vl3wP~af!%&y@QhQ1pqdHcR;`-Ky;|(tKKVR-+Bsubr;+iOlP?=1TPJ zt$TSkhYmIZfvM4|Dk+P)3?hA3*DY{;K;{vO?0jp^w zBnScax~J!!TCb~ff37R`p>qKJG)_*f_2XO$tp&=4x#^w4Lg?Iq5{ffO(*+P5y0Bu7 z)-hIESZFlY;S#?;FNn7kbVMaiPgQgxkvK+b%{5Kp<&4`039e$t6r~47&i&6gHfucD zU=hhEz2A6|95Io@=d3pByr;?Oy`lr=S|&|047&{zn{AaPak&V+@YIaO>f-G!J+!jt zK)z-om#6REnEx_qUMQT8am!eaIerMXa@?30B=_6MVXK6@1ebnE$K5YigsFDE=fSx9 zk@yBTT6U0xhuhYNjaMAPXEqO4@=TICBNR3O;~90*n#hE4csL~;3&HKJvD?p)1Dl#p zI6<-4Jjx#AA zgkJ!^NafdnDj-d^q!5XT+|<6iXyr7vI>t)sO8`e!t;LSVWn!t(s0L`j+*_n20bdXp zrLLS-C}z8%Y;Bxv#Un8=&iCkGhUODxXVeS>4_*Zt+VsG49E?3EapwFO6VLRhfrq(P zbh3+&llGm)X1iMJ-c+X(IQ2`HD@+?Dbr}{`-HzS=bN#3<*(pupr3AAB3lMzH%o#Lp zjwm7!OC_pmTIAGh{D&e7k8}jEZ_JjjYGlE{f+$Xt5Dl&rJ&r?vC}oG*!67{3?*6@k zJRY)>A|Zo`fX^g=#X!_cPuP6|=84?MfEQH9wp?U((u!1j?dgHARfV_NjgR;QkZ=_R z!!>RfRKj4965RnuH8@O)BB7@hB=J>sXOz&afq(+Al`PD`V>K~$4i`~HHg`S?`Ra?u;K2H_n zT{_xIg6d+$v)4WM0egBZSEulQaJv%v2UYl0-?(4mge+3DWyuror5ZtiGw!ix4U(A!4hmXwD5 zdooidI~lrk3tohXyRRh$6!YiS>O_uBg~Ywsi^IY882O zzhAoc>0*V_gQ%lLnwUQe(qb>yMQhuhAd-ABjy*B6(j_-%AAF|xh;k?>NrvDd2iKxm z4B|xwDVDH|{CJ4R2>O`pg;oV2(+F71UzFkqakzXO6-;UyBXz@#!VAXET$Zh?X~Ol^ zs03KEE)85G6xN3ROr;136>eG5W&wBmTA-Jwp1W_(4eWO&(beX7*~CUGd=+`ZPUUgA zniowR8r>cEc#;JzXi3+|VBcOnYzL)H0=Uamq z2Av*I0NKq5f?&E$6aFyTEZ@?G)r#-KgXl_<$= z1cGGbO&b^EKlC+7Q7Ej))Cg@E?aVZkU_5pWjuDfc^Ww?9SC7}lQ+}4HFIFG-?Hj+I zwikMrn3;2CPvh?%;zCcCv(?I#nOw)1kDO*D-K@JSgcUhiPVKU%nGd5KKdn2}UI(zx z`;i#39T!}#KjP0H-gIeOQut#_n5+XBtZ$X7;y4g%miBM_<2C840TD|5XLiU5@vNNM z#HD1y32W!^1-ha^)CU-eN2+CHTIoQjKAK|LLsPPvn30J+`j_Qe%r!l2A7{?RRwsL@ zG4>NrXhFmyPnUeIs1}UipML7DcH53`yK|5okxvNy@8&}&oRmqbwmVE73!W6TA(&Hg zd8zLL!0A#zkJegLCI0Z)1yiK@E6k@--Z47z#%jJPioYSisc+7aJK-Tu>m)QOTg}X> zbT`cmL(s^~8x%T?+?4B6x+1f8Pc{U{ex8oT2o-bO zd`x9&GUmm6MAAH+;C>)&a&Wgy{vs^5jvXAvIUmMh24ts16=;*bhy{oy^jsxVwX2AP z$Nhss(gE_OUIs4GkS$VR^;;!T4-D&c2%cTVXS6j4PRWu+jL%cOq*StoOW1lCZAD0r5>z{+WnqC?mL2Q~t z8M~&A(qYHw6uaVs^s?x+WjX}A{{TJ*;R})y>Q0O+e5aY2Gi9m$@Qr}UqA%T*^A=vq#4(ZCVWVF zu`V}nNJq*bwXWRpDBp@K9{TDVPw~I!dJ*r*eWd)_y?s6&U?T5}7KvR+lzmOsLuw&2 zq{!i}JXAX<(0Mm@}ZKDk`cMU=@M5l@`>rqO)-F zo#(4D=!zAGBT=Z+jIJ_hj%G1kM_owpb$Q|F?n$T`sxzW6&?fnuX)wQgt9CcP?!obl z`|D@a7p{};a=T_%x7X8qJwwsu!FxS&nJvE4SzgI8#M8Po)5w-oZomr%@dDv5E{kN> zcB$(DF)T>m5xWqjo^#kRtG?nme5xqPO_x=v>3)hv)9YtR;uY?#6@>f`xs|@(CeCbN2DOwmc%H$x=>V%V zbz8noCS2YgyUp>&_340OJ0yVY% zwuVP9!vs@*i`Xr3cJ<-L_nF#p(u=`jF*3#YfF4+*IL!I_POA6y`MzpEe1uFe7m`ZB zgVrEGQ&g5mJaa%Jh91-+QfxpU)XzOVq%&iV?|EkP=DxLPuIY0X3_*U<-ZWJ<_h|Iy zaqaf>dH$_u{+<<&ip^6=wU@&20sZXookfj41s^E-wS75(*;J#QkBBlur3z=s^SFN- z%rK>!D(4uVcFmZnCK$Nac&yLn6E+YOc#2ZGNp4WX9eIBgvSikv10hV(dm9uc2O4}d zb-p%pk_#!Uth8j7tDO^R2%&%@LP_N>EoCl{Tt;W|7KbUfM0oX&G~L}sl!}m!u^%No zHLbXcZ7u12pOkV$U?F(?!TQ?o=(E#d5g+DcIO9M}UZ(|PkFEPjpT4^j*h+sYe4L}v z>bk%ASTFD8s4h_c2o@`8rPSox(#FsG-%E*w9$ouRjurs$ntfA|)SN2Kjl>nS{N?4i zPejEdo;4T6BEC(B@Ap@k?~9uNm8s$vOsAq=iqB=F>b<#&e{BMzrg|N4gf+=btZ9+9 zOmBXT;*o*=qo|TL(;|D!_522gqZ*gmg8do}Y&;(*YQ0d!*!*7=!D}_bxKf26O%n); z6mrWsIW_}oYw=&H(#u9#ICQPvtNqpQxPT7of!s&6lwHIf#wHHFVFO>8hr4-|;cgg; zpkW#!)E34prNbRLBV=AV`j0ypX*c}Q;%C32HYIq^Rl&F7Vt8h7zi}WOK5Bnpp)8jg z$n;b{))vWG_y=2cV*~RoZYXE(!z(HgrQ!BFW8&8ksWJ&dvGGbJVB%G9f>+~fC zx1c6CY(Qdzsayf>!h1tKubB|ov_KCkL6JRXEz%o}kcFmO-Q_HD{T?X;YnzS?n{ z=ErcrflIM8PIfrRqI|daV(J;`#l0}4aaeUn92#PFx z!{$6WSIizqwZFM({`L|kMeqcm0~yzbm8g5=24m6NT(!%vlSk z3oeDuLrDv_L{h9wIGNghe)qqlOX7sYdK~x3n~o83^Ah;3nUSvt&QK(m!WevkmS4QK zo`5&?0HBT-n+nkb2EW0`DwhA4%YSXoa{uh|DKU`zgs4d4VMWA=#Oi^T8lVjT9$=Wr zzz>#kw7>RpNB|gkrRQF` z*B+|% zoy%y6^g?`;Ppr3j`&n<#`*0$hHalzC)}gxCw}ga0r=_-`id+Fl5c3}lszCC?h6{ph z++ZsXieRUBIpqjA!96~lV$I=SW^Jm{jGOyZcPgRe_VN-_hz?$v6y6kZ88Ry$X$VVZ zLBHAGpC*%POnBKH2VaiCFWs;C*2&>>vNBk`R!NY*>6bIP4(BgR(8ZpuF0+}c2`T|r zX)m>#_cXa4Prn2(zzM?60I+jXa5pc0p~kX4`I}&syC)zDo3cToKv=lRxyXaU`URdM zpdIEPgcr4Q)VO!1CJWT&X>z>+VI7)DK_0vismW(AIMKj;ME}U=nOA==g<D6e za$waE@SGR{ew{k=tzpcA|11AxU6Pi;kbAw|p@N`_6W_?t<&Z`fljVF0TTw#oIPncq#ZJeJ9PG=5V(Pz^*Fp%V7mkZgwRy$#MXMi&iDsP#|9JS+eGHIu4&iBw#>K~sDIX4v|QJ+p&2T4b?+E*tH z19!}VC@fI-@&*z#fG zNvHgFFKC0X!P})vr?cktIGo=5LrAY7Bo12RFb{EA)n6rfMlK}2*sj*pnw?(g&jIFs z?R-J>$^GoAtetzzFfUYG0)f@6k!(Zk7fK(SNa#DCZgyh>-GnnQZ1{E(HGZFeXZmFz z1A#-YxxF%UF&T{wq}B)IBVGwVy>Un<*k73`t-$_PZ*fMm;S*9!GcYpA2w{*FDQEQs zd!Yw>FG)c*2~oXZb`S(WZG6i6iitrBi=3OCWNLr!&i!UCNrSNAcR{%<%FRhj;B%WZ zPgIXoIsU~XBcKMP>euGr#g~iGutl47=+sY3tHK%VWu{9?1lRV9#V^0KtKbd7^NnO8 zxeJl=&cZb&hcdcKtoI7rQY9(zW2EhDT%%D90)*hNN$w#Sn+{~re5DZ^*@pY z`Ij%>1iUcPzdN07tC*@)V)s^s!R<>c=dd(ez{Ms+C#w_EnyxeZX#Z7N}xZk?IXIn9FTx^o%DLJTX{}xrmAuh02 zTa<(aASt?~Qz@qV1|ERiJ=lcIG`y`z%{*vaSNc4v$i4QEtIAPt4=V%C8Hk^?hm^zW z7ixz-v50+NjS0b<1qtMRT>{K)7d+9oStI{gI*?^TKCZi~rpa;|CAWhEt0Xh>^ zo}#6w@fNb-tsrDF5)2-RK5@s&sO5OzStm^&UPHIS;!x}CRa1THZyP7av$;gqotf9z zLMKHCA|EgWyorsu*~jyBnI%HG;<+~512A+T`nm8|XM0NNG;Y6G(8u@=E=0$G!+5CQa+oBtZ2z-O0#V7L+#(9;U z+5gT2MBu4l1&&ljvJUFqkKJkHXKz8jPT@(2vdNB?i+vqpnE!*3($AxG*;<+nJVfKFtGDV{yWhn2rQFRc@$c39EZl5jtm7Hy< zM(a725=PGA%L{RXOtv4ZX16Vgt53Kd1Pv1zh36ThRnH$M;(XVdZM`F!Y#Ype#`& z;#HY6j~#+l8Ztqv+jIeP6XH`xf*?{?>q>*`e}_}lpC1;9|8sHC(B>21< zw&L~tcvzdw*f`VnJ6On&=YP+%^-GP*iAy?sF0qCTLe;_Oxz_MwUcD5^=8ybj--{Eg*SgP8hZE&RP?kU}J;?6W}O{K!^Olddy&Fy%h*&Xw01Ayca zPusI-r8_lCuKZM($jK*wlobJ9-yV}SAHGcM}N4Rep zuR;z&-f7ZmeXW9l+*?}^;MA4`aIfsv!?Q)It>lVvwDX)rb+^aYS|^Cq<|$YYzP3;_ z2n7ls>*fi$J74N{@2mVJ%W=;f6p*vwd0!re8J)dyPnz2q%a0Wf-Tj?vcWHI zFvWV#j)Cp;7)F)m=8WCpS?O~Py*mdo7M1)=fCaq-S&OGUuU|Hv6XhaKhE%CCU&_-w z9S19#>SQ0N9)L=+j1hubshTvVm7#7GzO2`L(*CF3H$}uW6PfjB*%X1eyaU{Lyy*J< zkYa=Vq?j3?L90>#|!Sl?~^X?HMWF3x%AE_ zJeXumRq_!lSJZ-Wn1^nuA{e8V1fnuewT)8k7ty0&{?Myzcb10x=7ZHW0mC zp1Py#a9wN0r^(|f5iCfIRZ!)>{mC{o-E3bEj5XSwn&`lhvYqWS~>P1%~=l39u+4Q%_eAstMeh!KD zu*};G`vcX;T;&7NC+PW{{8#=cqgLijrq-e!u3z}J*m=QiZK9Jcl()ZANa}(x$BI&B zA_~112_vVG@Qp&Qa7Jp~EC^-8VW@NJ$8g?U*m4qky{9(ZSn#W*vT93b=+P7nc&Ld7 zYb-yV3jKtAIo8kqf216jiEv9toY~Iy+e$2gprW+kPv*+76lPpZoS9<>&`!Q0e|jmv#LI%@pOXS%T6ym zMVy)x;VKT>4eh5GI0mt!TiCND#nD@QecC~GBci!p_;TX=x z={v*<-xYtpM#Hu;plBto_R0EwStX0?nAKeG7vw`qZ?Y#PdOto5B3L%uL!#;SmXnR# z(;u~hU2ENl*xSo9cJoD3&kY#d#)gf??gdub)}^}TYNbUdt&)-!Te!qO&w5I7QNL_3 z>oj9(vQ9PTPxPi*%X7_3xw5j)Og1wo;1xsUb2YcR{ZH*FBFISO;r`H(Q4+i|fMNiz zM(hIIZdSs3v!Ui%k8#*#(F!CrG3~gjWHh*GuM5-+16Uc z${Sp^>lTj7}4O@f*P@^qP{#%Mgo zdE#;kz2bXj+auaUEVIg6 zMxrQeBM|T(^&tTa@cYA%?4=Ux0g&9WJ zB5`YLQ>Nit>!qh3V&$|ANQh5Vo~4}d0iY=uQ4Z4dsf9qdr|@Z>?dwP?^VdMY%q7*v zAXyQBIsuzYn&fJMWjbY6RqX((rg$RzxFwA$=GHj8W|PT33EcDX%UvG6ay1t?tv(ym zX?jm~8L8`~({(s>th_)adZ=K)gs52eLg{S3pV)aEZ1R}Ztss&SJH%vjN@YtUH;M53EC~ucO|yumRQs=G0+d5 z(Uz+s&Z|+lpK18&qGNJ>6pCse+D9zu2{GW7$7QWv9=fbhMb~I`>g8O>Khdi<)0!Pp zU5K;w_^WqDRZ9mQ4oo+aH&a~j>55PpxBIiet5zu7Lg6epYBEYpR{nui{AJT$2pc)R zXUS-|olt!;ltl3h$08WFj{m)o&a4b!#ZX&f#KH5dtM3^>?0KEO?4Z7djWgH|`LwQG zNk>#cr1LIHwv*l0Q$CcGcGyT4WetQ&cA`p$_Wh%WllrG1C+DRFkUSRY>NK|IIPJMX z1=@~@c#9-4nTq?VhP}q4n5gQUqmv+<`~Io{9`(aqbU_V`wMKseR0jDJ$TCM_uY6QW zQpq(%tMXPBp-eK`R5q#ilGft5V!IOV1>*7eXZ}s48~#n^*jWm$IxN#gZZ~IvS)c*K zR3vM1vj8Zrihk3m^gMF%0M_Pe#JtVl2^W_;CqY{u2Xde8kx@hu5fEH_ogH-Rr`H|1 zFky!`!F5){Q<8(@MdJ7@=Ndsr6g&3o&EWCiQ7Vp-R8X)BrfXEroy0E@w-;ii=WW== z?1|`Ho5eqG<7KPFK2Fl~lKC$B^4^IeMrKRsc4wWV`3UM{Mo(Nct9KQk>7O(*S6W5o z?C!|4s^5gv<}>)>m;3Pr5&C~itMIIe=Y)3|Ij4^j^L!d@!z{pP2tzuGKiY0f9nz$w z2k?Td;A~anZ#20y@loHE%+Fq)s?%y}jEt)H6>sF@fa0>K&QmWcI{=jncKRp3&=LGX zlbJ<}M;;s<+#e2R`Tx?DU_1Tb!oC#=hI!{Z?MJ<3NY7o(Z8S1Wz1xK`!|_J zmfQD`WY^pEnxl5l)pQ=?ak=qt9Hgb^`RXd0_Bv;~02YVWQ6LPcNF2`KshwITEwVT! z9*~7Lt?Eal(jq37OgC=beexM(IOPL=@f%|jQ zDp+XCk}op`bNb+Eg6ldFj=Gqs8B4cRwfmo7whHZD0Ukb|2y|m{8?n{imvPJ%0B`V*NsIRc%xgWIP+R|Mz*&+T`%2e;b4riw4e+E{XWpNFT^M-Nu;ry;J~ zU;yG1#GAHQ$Zv*zmfGUe#jJrCuA4){CKy0dxWCz@zbj$Taz%!-Np&ak`$5Yz4WD`1 zLpy1ska-gCL%wn1mqRylq@O}mz#)G{2n)s~FjX&k^op zXCJS%_bSGxvC1f|Zr1PSM7-u(kt@h$Trw|IISx88$9^QL%4>VQoV0~ zyeYol0$){r#~lr>ZPYv&tP{xT5Cpwb9HbZn{>@#QArUMX*+ZSS+Jx)kkj~F0<>0q5 z^CC*pVsPByL;|RLlR-Gz-}fQ3GM{@_SsT~9;@2Nf{^$<1GVZ?1>cf)XLyX7AdG9|z zZ`1`5teftijt8F$tHN+pHr8vLl!U5DFPsV6Fs_sxRe)1^haiK1zu7ft@HQjW{d_*uGuR88ySNgs!<7!8C zUscGQ#4H)GPLBc;S=da=0sjCkOrVLVkkq+bGL@MboyuID{``;R%$s|8Ux~A}Y-9D! z!mTn^LOgBMTlLU}`@;0~ZYK&mC(q$x($9Biqu!>>H(Dooe-_3pxBI1!mBRiuxW%cX zb-G*m&h&C%DCcv;IeDsE4D4X)Dm7(#qkKb`&p*SaqgjTvmXFVqrr>+qv)$fOCg#8e zTc>J|BUa~Z#YW0C7GI_P8gW ze|-d_+itdbe5#Pi4N3m52#QEz93z(WwdB93oW!$d0U;m zitXNt_YFMrmInQg!vNtjs+1F9uJ$FMxAS!kewq&`kc}$pbS_%~x&0+gC-E4kVK-e~ zuZxBicBfb?$VT;;Ppfzla=qM&TJ3)hZqPfK-CoKv>y{zr3LZF?XZU^~PmQAxDLgwo z3Rs@qkAo+VI<{|rL{fEpJdc~E&X+1&;u?6zdmwn#YM2(P&*~%oFxgnm-3`ictY zi&7?&nXXAOHk*fA3d~L~H$J(Jtg+uH*YgB9=_q><<%iOQl$Z8UMD+wyO!8_=N7c;) zhbp4z4VLdO!%2--IvjGe{Xne`y43o*ZbG>balwVXxnMt7bW-InsUZ_LbyC0me875i zQXPet)fmFr2VvL0`c<}78Q6J!dOEA~{iWWjYp!8V*dO#h*K>r;jphm2^K72RH28ej zQpum!F7~K)wqECZA8LAF?uBf2{aL9-hQ0P%AulIzYc+h%&Is9JG-V+Sx2MNN(W-k5 z9|@yX!&K(i!JZR;6>aeF>wf>K>nptwWqhL}rN78<4BytFuO4PNZsJuesKmE8;SzP_ znYiY*wvJ=vc8D_}1-}}6gP3m{8CaIwE>Nljm39-}=8@oc?14jeHf7s`Z-i1wSNQ`+ zt*n!SDnC7@FxAT1lwDH|o~8ve1Ifi-uxAyS(@3Ut$=YsNo1vX#j!o@DBTV{?a3LeX zvYbE*^c*fCnlqg)alB}Ray`G5Q?|W+vlw+x@AH~wm2EIHS98zZJo{<7FiYPfV0DLH ziW)tIua?g5o!!)XDF6~XZj^XuetXs&ywI5iW4db9m9pgiXelE!Zg&uCbM}_Q?G}rT z#Hdej+-h;>wm^dGk8cbtFBv+KK1$8+nfiB0{9H1(VvMI1avm_`2Nw4;(35 zRWF5cxOB9HZUx<-;iGX18E@W-*^JXC_!LeaD+RTeev4w!Mllp`2b$c4cDKRc87ns1 zA%|>yt(0)GVx1t$)%hJ&s@`3~?_Tp>V}8mw1Og__!YGki1HC9yi=IVQ)s8AjyfWpY za0W`@qbKPxJXPie1+VLDUj>UKD^sF> zFzaqGn;CXsS6kH6LT&pzFT7A#3z80&L;KC@D3g1Awa*WbrnMl*n#7L~H$vSReH4?S zzs}K`tFj%8+UOg;dr@A?51+t@4aM&qq7duH?yRsC1lvvr9%(7=A-ST@bY4@_f(xHd zFsauYtI}03=0g0#YxY6BqaQDvj*hQdbv*R_T&;CE57hgO4~tLCYTZ4Z$K*J@^^R@D z4BE*0CHQfWYKHu~$4dQB z!}#BigS=v@l6_vSGXMqj0}ZwpFqkqsmi&H`YG&ZxSsT7f(rJ8W^mha>Hwa9>-;e_P zOTojfgY;wk9ktF)IkL!M^%&e%$JUJHzHU5%;j=h>>=))R7sVNHj#9qLW%|r8;K_Jz zo_%&zkRCHh$Zs6P24EKi)_(=>_#VoV^H6?p#_691_YstT6UjLSxpIYtc&Gsuxa;tV*L~r*@>XYFZX(p z1x(2EEqT4|cFFF9_(9w;)+FS=$m8CC#>5!jyP`?c=TrHs%}(hZnN`JOLsBeF>UEJO z^k&rdwpi;`{oqY#r0LFC=`9jiRRh!Fj5J=;?L?;|C5t%Mv#nF_{?eLGQ8T%Ju2)cI zb5C~#4&d&Z(?y$1pTuJ9x*V}QNkVjHyE#kE}s zO0-erUl3I;rv*6b>0ks4lBSovwe!OB*YJF4*>$=Prk8qbuFRw*eU0l}6K0wxBrV^y zo%3#OJ$|)a=6J!@+HHt^eHrwZTY`wQaXb&B8v{Mds>68a#P!bhs13hpx-5gxn|W|O z{v(8?rha&|Bnh8mW3g-(gsCbYfI)oFt%HCT#u+GU!s#2;rxxq{TcuUGm_|203A?X_ zzG7(RsSyFSnluS8zH#+#!00a+~zlZc^0G4)>E#)e%Zl5bW)wV!azu%ca6e8)k z-9vGC?uR@gOd#q_AR;aZZhPrvAs3n0q0`oMr zY<4O5${(1vib3xq9yK?1dHWX-8OLAJT_fr=SiPzfKd+4!jIXJFi*+LYcx9aL946l` zvwqB}`=Dr=Y_j@nvYFs-8MKfDAz^el*_)Z;$$Iqe&Fbb|;*Rks99(((FG@3to;wgi z5dSW^VV-t0<2ylREg0ZRccTQ>zdFd!UP6)-keiay@89yYClM+6V1OZl3;~E!-BawO zYh*W#{>W47qgF=5rgH0qF>qj7>2DIML4J&ZS8PIR(U&eHMHc=HZ{iTZ(W|9Y&~`HA zxva#)-)j`i^;~p!M3;?;C9Uz9U-XwB9N!w8MKk(Pi|iL`-FLeq{}&1k_3~E^toL8D z;QcO*U*L5w1{I%`IM`CL?q$+C>`$qC9p+UpQgC=VZso5*jKNw@tb5u1W8F(USnU?c z{QtDb=8+`t|GEZ-U;f7$7=bjlIVpuzc-x`rDQ`O@PkP&7pw9Pghs>3Wy=D*M{8fSidFT0k|G8}B#cvoMb<-`>Cl#Li9u6F(GyNT z9#<^aZ`CvEg+HdSq8C|xW3Zm>_>`Eveix|^E`QmfzC0#KOtF@cTi-n$|EA8chRx@` z@XF%Zhsh`M;9=SI>!bwZ3|zN;LFC-2)7H-$+@c_*eq;a;Xu&6(h3gMUf85&CKCZAv6DfXgw_c5xO(}eN$LjjUcW8^+3DX+X7X6qh08CcH zeBNhh^6lVOm@DQ5G$@{FM~5hntMv7+unp}&W|8f#zGTd9kREFRlgJY-SM}~ZkzVL$ zz0bQVOuntj4!uES?vvGI2j-~_9XL)M*g3TDP&46x+6K`+SAihuF4l8>QGO#ZEEYm)`EFcW*Xt ztFnc|e)CWF;MMCvtCLXcm`^I&yS9C;$TB35yv}wuPwymi3=<%jP4c3%u zlh8EY8Lu>x3*T?!%MDFJ3v)4TJOS z`NYXmP!a(BZ!CgE9E7{1X$g3S{@c(A;xf{?INWx_WWX64#bAw&Ht8(5Dq@skl*afm zgMW>LM?LkGE`Ghn(69iq{JOp|}>L=80YB$mBEDizs6V88At$`Sy% z&O#?ZO{TRoS>8+=`;gvcp)-sa8*N`j??HM8T8K1TXtZ-$$T_E|_o}Jhd&|A&g$EG1 zEa!%z@er*>SV0~S+VXM{H*|uy!?bo}si+$|18&)97uV=$lg@&BXss(N}Yk?f*eE2L7#9HFG5 z9UJ#&70#sL4M;apUQ7i*yYP*8e>r;w72{2&f-U0>8C3wnUA9guSy?ZK$!66slv=Dt z++zZ~VPvbEI(nFPWWpWj2LV(v`q}@DKoEL#CY(cd)P9q<1 zQ>PHusuAobI-!^%wha1Nmi*Lq0E$^z^a5G-qA{Q$+p*jZuW$I@d1^LKHoj>yF2XXK zX9CCtChZLgWtcT1Ys*|-gX{`s)m$!SqwK5bRY))MxlHjL;$xz8YT(ScE1*0!l#sB~Sc-mdYiwQ$96vNQeww%2E7wrhW&@Vk8&|2#@ z-LETaNiyu->>%5GSU^q(w5FWC&EYsP1A~Ol^9>uYTtiW_1DjyGu^hU04yA{o>%{4n zl*HSPfu7@ka$gu8{o+f59}n(=1xf$_0096100JWt>n?@5Uk^O>02v4X00000#PAU= z00000)d5o0`Y`>~35N)C0096A00IC200000c-muNWME*=`NzY+z}fZ7;GZdHJ5U4_ zyafP#V+HL1c-n2!1FT$86a~;d=brm&+qP|eYrbt8wQbwB-3B$|q_!K>wx?%M_a!Uu zTG?tUlHvGF-|VOfhSDr_=aXUqqV)sB>F#hhd7~ShmcDbSuU4WG$D)Jj4Qi>1$fY0* zr>~aRGCodh5N@KoXeTm6vgqRI4<#oIqYCK2CDE4WVj|bXK=m0-@-=|BPDDOk38Qsq zgz8op%_Bvk)cYV-Z@_2@!8{&_`nt5VhhTI*lD_p~yo_&P`v+U+^JBR3YZ>Q)zPc0g z85Y#iWl)x1f%qysse|kp56HiW8iB@YHcYe*t=S7MJPLW-7*0G|1i^!Dp$gBE^#&uI zsv(C;TUN0f@}xZ6cq(Iu$Q{SS$u@5soanLqtDrsYMM3KvE`%cbE-K4?%P>R9-;36w zIT_d{|C+ivGRX-ec`=gs7?Sj41jsoG5@V#!hiG*Wv4$H$)ig{}7MM8$!>x5DY*dvn zoP7{MpV3YuXXEJiTTL^mEQ<;mzpEigXc5yaaiZw}D?jr7b z?#rIso(Z1k-df%@KFZh5x61d?kNuVX`vb;6t-$_ZBG@2!Jme154UG%k2xr5s!i&Rq z!(Spe(j~GYs*84vo{Pa)wb<);GJYbFBT*#LC}~L&$;QdW$%njxdYhneqEL)Rp z%1&o@v!~fdoSO4-47Zj$!VCOhAt9_3eu$LVMf@b?l;%pmWL93SxD-Okt&~+7DxH;4 z%Dn%V0Ud|}5fleCK~vBJ3<0yjCU6p50MDTc24NQFfaPH`*cVQL3*dHm65fW-kqUVb zf%2kqs3vNIdZ3YLHrj~xpmXR6`i;#vf(2X-HW2P7PejsO4v z009610PX;f02TmF00jU60000001f~E0ssOs00sa7c-l>lfd;~06otR4QY1hC1_EkT zhys-)5-I_rYOQ6q*{1XcJxx#1gLUwmInMRn!*MTA<3@=>xegq`aDfI#!$oR543}sT z8!qR#LYt4_s`9VlCVPI&35j?UlkeJNs$ExnM`J`u?m z?l{^)Vq9!|JY^06`c$@AvtrJI4Li*ax=im6pAI!tc-muNW&nf#Sqv!*SO5Sj9|6$- zc-lS9fd;}r9LMpys;ZV+nOsqu5^1r5VK7o46ad8n2$ZS^dsd)f$wCX5;K+WFR8^8k>P!zPb7C55bKo>OZ0Ux|T1YFEnHEaOOAY9@L H;4)Fj+t)Y- literal 0 HcmV?d00001 diff --git a/www/assets/fonts/roboto/Roboto_700.woff2 b/www/assets/fonts/roboto/Roboto_700.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..e327dc95b6a3b75d2cfecfc611b84526dd360cb7 GIT binary patch literal 15436 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 CPzPE7 literal 0 HcmV?d00001 diff --git a/www/assets/fonts/roboto/Roboto_700i.woff b/www/assets/fonts/roboto/Roboto_700i.woff new file mode 100644 index 0000000000000000000000000000000000000000..a3ca246269e4b3bea46e29077b640d1d51fdf4bf GIT binary patch literal 21132 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 HVNe2CI=u4 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 + + + + Loading + + + + + +
Loading...
+ + + + + diff --git a/www/assets/js/autofill.js b/www/assets/js/autofill.js new file mode 100644 index 0000000..91ec147 --- /dev/null +++ b/www/assets/js/autofill.js @@ -0,0 +1,152 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +var autofillDB = {}; +var autofillStreetDB = []; + +if (getStorage("autofill_db") != null) { + autofillDB = JSON.parse(getStorage("autofill_db")); +} + +if (getStorage("autofill_streetdb") != null) { + autofillStreetDB = JSON.parse(getStorage("autofill_streetdb")); +} + +function addressToNumberAndStreet(address) { + var number = ""; + var street = ""; + + var addressRegex = RegExp("^[0-9]+ .+$"); + if (addressRegex.test(address)) { + number = address.split(" ", 2)[0]; + street = address.substring(address.indexOf(' ') + 1); + } + + return [number, street]; +} + +function addAutofillEntry(address) { + var [number, street] = addressToNumberAndStreet(address); + + if (number == "" || street == "") { + return; + } + + if (typeof autofillDB[number] == 'undefined') { + autofillDB[number] = [ + [street, 1] + ]; + } else { + var found = false; + for (var i = 0; i < autofillDB[number].length; i++) { + if (autofillDB[number][i][0] == street) { + autofillDB[number][i][1]++; + found = true; + break; + } + } + + if (!found) { + autofillDB[number].push([street, 1]); + } + } + + setStorage("autofill_db", JSON.stringify(autofillDB)); + + + var found = false; + for (var i = 0; i < autofillStreetDB.length; i++) { + if (autofillStreetDB[i][0] == street) { + autofillStreetDB[i][1]++; + found = true; + break; + } + } + + if (!found) { + autofillStreetDB.push([street, 1]); + } + + setStorage("autofill_streetdb", JSON.stringify(autofillStreetDB)); +} + +function searchAutofill(q, number) { + var byNumber = []; + if (typeof number != 'undefined') { + byNumber = searchAutofillByNumber(number, q); + } + + var byStreet = []; + if (q.length > 0) { + byStreet = searchAutofillByStreet(q); + } + + return byNumber.concat(byStreet.filter((item) => byNumber.indexOf(item) < 0)); +} + +function searchAutofillByNumber(number, q) { + if (typeof autofillDB[number] == 'undefined') { + return []; + } + + var sorted = autofillDB[number].sort(function (a, b) { + return b[1] - a[1]; + }); + + var query = false; + if (typeof q != 'undefined' && q != "") { + query = true; + } + + var streets = []; + + for (var i = 0; i < sorted.length; i++) { + // if there's no search query OR if the query matches the current item + if (!query || (query && sorted[i][0].toLowerCase().includes(q))) { + streets.push(sorted[i][0]); + } + } + + return streets; +} + +function searchAutofillByStreet(q) { + var streets = []; + + var sortedDB = autofillStreetDB.sort(function (a, b) { + return b[1] - a[1]; + }); + + //console.log(sortedDB); + + q = q.toLowerCase(); + + for (var i = 0; i < sortedDB.length; i++) { + //console.log(sortedDB[i][0].toLowerCase().indexOf(q)); + if (sortedDB[i][0].toLowerCase().includes(q)) { + streets.push(sortedDB[i][0]); + } + } + + return streets; +} + +function setupStreetAutofill(streetBox, numberBox) { + app.autocomplete.create({ + inputEl: streetBox, + openIn: 'dropdown', + /* If we set valueProperty to "id" then input value on select will be set according to this property */ + valueProperty: 'name', //object's "value" property name + textProperty: 'name', //object's "text" property name + limit: 10, //limit to 10 results + typeahead: true, + dropdownPlaceholderText: '', + source: function (query, render) { + var streets = searchAutofill(query, $(numberBox).val()); + render(streets); + } + }); +} \ No newline at end of file diff --git a/www/assets/js/discover.js b/www/assets/js/discover.js new file mode 100644 index 0000000..731f535 --- /dev/null +++ b/www/assets/js/discover.js @@ -0,0 +1,27 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +function setTabSwipable() { + var page = $(".page[data-name=discover]"); + + // If the page has grown larger, refresh to disable swiping tabs + if (page.width() >= 768 && $(".tabs-swipeable-wrap")[0]) { + router.refreshPage(); + } else if (page.width() < 768 && !$(".tabs-swipeable-wrap")[0]) { + router.refreshPage(); + } +} + +$(window).on('resize', setTabSwipable); + +setTabSwipable(); + +// Adjust the map when opening its tab +$(".view-main").on("click", ".tab-link#map-tab-link", function () { + var center = map.getCenter(); + map.resize(); + map.setCenter(center); +}); \ No newline at end of file diff --git a/www/assets/js/location.js b/www/assets/js/location.js new file mode 100644 index 0000000..1946577 --- /dev/null +++ b/www/assets/js/location.js @@ -0,0 +1,191 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +var lastGpsUpdateTimestamp = 0; + +var userPosition = { + coords: { + latitude: 0.0, + longitude: 0.0, + accuracy: 999999 + }, + updated: 0 +}; + +// Preload last known location while GPS warms up +if (getStorage("user_latitude") != null && getStorage("user_longitude") != null) { + userPosition.coords.latitude = getStorage("user_latitude"); + userPosition.coords.longitude = getStorage("user_longitude"); +} + +// Request the user's IP geolocation as a poor substitute for an actual location +// Should improve UX for weather tool at least +$.ajax({ + url: SETTINGS.geoipapi, + dataType: 'json', + timeout: 10 * 1000, + success: function (resp) { + if (resp.status == "OK" && userPosition.coords.accuracy > 99999) { + userPosition.coords.latitude = resp.location.latitude; + userPosition.coords.longitude = resp.location.longitude; + userPosition.coords.accuracy = 99999; + userPosition.updated = time(); + } + } +}); + +var geoerrorcount = 0; + +var mapLocationControlStarted = false; + +if ("geolocation" in navigator) { + navigator.geolocation.watchPosition(function (position) { + userPosition.coords = position.coords; + userPosition.updated = time(); + setStorage("user_latitude", userPosition.coords.latitude); + setStorage("user_longitude", userPosition.coords.longitude); + if (mapLocationControlStarted) { + // Don't send location at an interval less than one minute + var currentTimestamp = Math.floor(Date.now() / 1000); + if (lastGpsUpdateTimestamp < (currentTimestamp - 60)) { + lastGpsUpdateTimestamp = currentTimestamp; + // TODO: check if user logged in, and if so send approx. location + // to allow discovery + } + } else { + if (map != null) { + map.startLocateControl(); + mapLocationControlStarted = true; + } + } + }, function (err) { + if (typeof error == "function") { + error(err.message); + } + }, { + enableHighAccuracy: true, + timeout: 5000, + maximumAge: 0 + }); +} else { + geoerrorcount++; + console.log("Warn", "Geolocation error #" + geoerrorcount + ": ", error); + // Stop showing error toasts if they're happening a lot + if (geoerrorcount <= 3) { + app.toast.show({ + text: ' ' + error, + position: "bottom", + destroyOnClose: true, + closeTimeout: 1000 * 3 + }); + } +} + +/** + * Calculate distance between two GPS points using Vincenty Formula. + * + * From Aman Singh https://stackoverflow.com/q/30536869 + * + * @param {type} lat1 + * @param {type} lon1 + * @param {type} lat2 + * @param {type} lon2 + * @returns {Number} distance in meters + */ +function getDistance(lat1, lon1, lat2, lon2) { + + var toRad = function (value) { + return value * Math.PI / 180; + } + + var a = 6378137, b = 6356752.314245, f = 1 / 298.257223563; + var L = toRad(lon2 - lon1); + var U1 = Math.atan((1 - f) * Math.tan(toRad(lat1))); + var U2 = Math.atan((1 - f) * Math.tan(toRad(lat2))); + var sinU1 = Math.sin(U1), cosU1 = Math.cos(U1); + var sinU2 = Math.sin(U2), cosU2 = Math.cos(U2); + + var lambda = L, lambdaP, iterLimit = 100; + do + { + var sinLambda = Math.sin(lambda), cosLambda = Math.cos(lambda); + var sinSigma = Math.sqrt((cosU2 * sinLambda) * (cosU2 * sinLambda) + (cosU1 * sinU2 - sinU1 * cosU2 * cosLambda) * (cosU1 * sinU2 - sinU1 * cosU2 * cosLambda)); + if (sinSigma == 0) + return 0; + + var cosSigma = sinU1 * sinU2 + cosU1 * cosU2 * cosLambda; + var sigma = Math.atan2(sinSigma, cosSigma); + var sinAlpha = cosU1 * cosU2 * sinLambda / sinSigma; + var cosSqAlpha = 1 - sinAlpha * sinAlpha; + var cos2SigmaM = cosSigma - 2 * sinU1 * sinU2 / cosSqAlpha; + if (isNaN(cos2SigmaM)) + cos2SigmaM = 0; + var C = f / 16 * cosSqAlpha * (4 + f * (4 - 3 * cosSqAlpha)); + lambdaP = lambda; + lambda = L + (1 - C) * f * sinAlpha * (sigma + C * sinSigma * (cos2SigmaM + C * cosSigma * (-1 + 2 * cos2SigmaM * cos2SigmaM))); + } while (Math.abs(lambda - lambdaP) > 1e-12 && --iterLimit > 0); + + if (iterLimit == 0) + return NaN + + var uSq = cosSqAlpha * (a * a - b * b) / (b * b); + var A = 1 + uSq / 16384 * (4096 + uSq * (-768 + uSq * (320 - 175 * uSq))); + var B = uSq / 1024 * (256 + uSq * (-128 + uSq * (74 - 47 * uSq))); + var deltaSigma = B * sinSigma * (cos2SigmaM + B / 4 * (cosSigma * (-1 + 2 * cos2SigmaM * cos2SigmaM) - B / 6 * cos2SigmaM * (-3 + 4 * sinSigma * sinSigma) * (-3 + 4 * cos2SigmaM * cos2SigmaM))); + var s = b * A * (sigma - deltaSigma); + return s; +} + +/** + * Return a formatted string with units corresponding to a number of meters. + * Respects user "units" setting ("metric" or "imperial"). + * @param number meters + * @param bool space Add a space between number and units. Default true. + * @returns string "1000 ft", "2 mi", "3 km", + */ +function getDisplayDistance(meters, space) { + if (typeof space == 'undefined') { + space = true; + } + var units = getStorage("units"); + + if (units == null) { + units = "metric"; + } + + var number = Math.round(meters); + var label = "m"; + + if (units == "imperial") { + // Convert to feet + number = Math.round(number * 3.28084); + label = "ft"; + if (number >= 1320) { // 0.25 miles + number = (number / 5280); + if (number < 10) { + number = number.toFixed(2); + } else { + number = Math.round(number); + } + label = "mi"; + } + } else { + if (number >= 1000) { + number = (number / 1000); + if (number < 16) { + number = number.toFixed(1); + } else { + number = Math.round(number); + } + label = "km"; + } + } + + if (space) { + return number + " " + label; + } + return number + "" + label; +} \ No newline at end of file diff --git a/www/assets/js/login.js b/www/assets/js/login.js new file mode 100644 index 0000000..01ae400 --- /dev/null +++ b/www/assets/js/login.js @@ -0,0 +1,37 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + + +$(window).on("message", function (e) { + var data = e.originalEvent.data; + var parts = data.split("&"); + var u = ""; + var p = ""; + + for (var i = 0; i < parts.length; i++) { + if (parts[i].startsWith("user:")) { + u = parts[i].replace("user:", ""); + } else if (parts[i].startsWith("password:")) { + p = parts[i].replace("password:", ""); + } + } + + if (u != "" && p != "") { + setStorage("username", u); + setStorage("password", p); + // Reset last change so we won't overwrite server settings + setStorage("lastchange", 0, true); + app.toast.show({ + text: "You are now logged in!", + position: "bottom", + destroyOnClose: true, + closeTimeout: 1000 * 3 + }); + restartApplication(); + } else { + app.dialog.alert("There was a problem. Try again later.", "Error"); + } +}); \ No newline at end of file diff --git a/www/assets/js/main.js b/www/assets/js/main.js new file mode 100644 index 0000000..142dc65 --- /dev/null +++ b/www/assets/js/main.js @@ -0,0 +1,162 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +var $$ = Dom7; + +// Detect platform and run platform-specific setup code +// for Cordova, NW.js, or the browser +initPlatform(); + +var app = new Framework7({ + root: "#app", + name: "Lecte", + id: "vote.lecte.Lecte", + theme: "md", + card: { + swipeToClose: false + }, + popup: { + backdrop: true + }, + popover: { + backdrop: true + }, + init: true, + initOnDeviceReady: false, + routes: routes +}); + +var mainView = app.views.create('.view-main', { + url: "/", + animate: true +}); + +var router = mainView.router; + +function restartApplication() { + window.location = "index.html"; +} + + +router.on("pageInit", function (pagedata) { + pagedata.$el.find('script').each(function (el) { + if ($$(this).attr('src')) { + var s = document.createElement('script'); + s.src = $$(this).attr('src'); + $$('head').append(s); + } else { + eval($$(this).text()); + } + }); + // Stop text selection from popping a system toolbar even after changing pages + if (window.getSelection) { + window.getSelection().removeAllRanges(); + } else if (document.selection) { + document.selection.empty(); + } +}); + +/** + * Perform back button behavior. + * Call this function whenever the equivalent to the Android back button is pressed. + * @returns {undefined} + */ +function handleBackButton() { + // Close map sheet if it's open + if ($(".sheet-modal").hasClass("modal-in")) { + app.sheet.close(); + } else if ($(".searchbar-enabled")[0]) { + app.searchbar.disable(); + } else if (scanningBarcode) { + return; + } else { + router.back({force: true, ignoreCache: true}); + } + // Stop text selection from popping a system toolbar even after changing pages + if (window.getSelection) { + window.getSelection().removeAllRanges(); + } else if (document.selection) { + document.selection.empty(); + } +} + +$(document).keyup(function (e) { + if (e.key === "Escape" || e.keyCode == 27) { + handleBackButton(); + } +}); + +router.on("routeChange", function (newRoute) { + console.log("Info", "Navigating to ", newRoute.path); +}); + +function setAppTheme(theme) { + if (theme == "light") { + $("#app").removeClass("theme-dark"); + if (platform_type == "cordova" && cordova.platformId == 'android' && typeof StatusBar !== 'undefined') { + StatusBar.styleDefault(); + StatusBar.backgroundColorByHexString("#E0E0E0"); + } + } else if (theme == "dark") { + $("#app").addClass("theme-dark"); + if (platform_type == "cordova" && cordova.platformId == 'android' && typeof StatusBar !== 'undefined') { + StatusBar.styleLightContent(); + StatusBar.backgroundColorByHexString("#000000"); + } + } +} + +function applyColorTheme() { + if (getStorage("apptheme") == "dark") { + setAppTheme("dark"); + } else if (getStorage("apptheme") == "light") { + setAppTheme("light"); + } else { + // automatic theme, default light + if (typeof Framework7.device.prefersColorScheme() !== 'undefined' && Framework7.device.prefersColorScheme() == "dark") { + setAppTheme("dark"); + } else { + setAppTheme("light"); + } + } +} + +/** + * Turn animations on or off. + * @param {boolean} on true for on, false for off. + * @returns {undefined} + */ +function toggleAnimations(on) { + if (on) { + $("#app").removeClass("no-animation"); + } else { + $("#app").addClass("no-animation"); + } + mainView.params.animate = on; +} + +/** + * Turn animations on or off while considering user preferences. + * @param boolean enabled true to enable, false to disable, undefined to use animation=on/off setting. + * @returns {undefined} + */ +function setAnimations(enabled) { + if (getStorage("animation") == null) { + setStorage("animation", "auto"); + } + if (typeof enabled !== "undefined") { + toggleAnimations(enabled == true); + return; + } + if (getStorage("animation") == "off") { + toggleAnimations(false); + } else if (getStorage("animation") == "on") { + toggleAnimations(true); + } +} + +applyColorTheme(); +setAnimations(); + +router.navigate("/discover"); \ No newline at end of file diff --git a/www/assets/js/map.js b/www/assets/js/map.js new file mode 100644 index 0000000..1427cb0 --- /dev/null +++ b/www/assets/js/map.js @@ -0,0 +1,91 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +var map = null; + +var maptype = "mapbox"; + +function createMap() { + if (getStorage("maptype") == null) { + setStorage("maptype", "mapbox"); + } + maptype = getStorage("maptype"); + if (maptype == "mapbox") { + if (mapboxgl.supported()) { + map = mapboxMap(); + } else { + console.log("Warn", "mapbox-gl not supported, falling back to Leaflet"); + maptype = "leaflet"; + map = leafletMap(); + } + } else { + map = leafletMap(); + } + map.updateUserLayer(); +} + +/** + * Destroy and re-create the map. + * @returns {undefined} + */ +function reloadMap() { + try { + if (map != null && typeof map != 'undefined') { + var mapcenter = map.getCenter(); + var mapzoom = map.getZoom(); + if (map.maptype == "mapbox") { + var mapbearing = map.getBearing(); + var mappitch = map.getPitch(); + } + + map.off(); + map.remove(); + map = null; + + if (document.getElementById("mapbox") != null) { + createMap(); + + if (map.maptype == "mapbox") { + map.jumpTo({ + center: mapcenter, + zoom: mapzoom, + bearing: mapbearing, + pitch: mappitch + }); + } else { + map.setView(mapcenter, mapzoom); + } + } else { + console.log("Info", "Not re-creating map because #mapbox is not in DOM. Creation will be automatically triggered when map page is loaded."); + } + } else { + createMap(); + } + } catch (ex) { + // oh well ¯\(°_o)/¯ + console.log(ex); + } +} + +function setMapLocation(latitude, longitude) { + if (map == null) { + return; + } + map.setMapLocation(latitude, longitude); +} + +function animateMapIn(latitude, longitude, zoom, heading) { + if (map == null) { + return; + } + if (typeof zoom == 'undefined') { + zoom = 14; + } + if (typeof heading == 'undefined') { + heading = 0; + } + map.animateMapIn(latitude, longitude, zoom, heading); +} \ No newline at end of file diff --git a/www/assets/js/map_leaflet.js b/www/assets/js/map_leaflet.js new file mode 100644 index 0000000..29c9e4d --- /dev/null +++ b/www/assets/js/map_leaflet.js @@ -0,0 +1,119 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +function leafletMap() { + var map = L.map('mapbox', { + zoomSnap: 0.25, + minZoom: 1, + maxZoom: 19, + zoom: 12, + center: L.latLng(46.5966, -112.0180), + attributionControl: false + }); + + map.maptype = "leaflet"; + + if (getStorage("mapsource") == null) { + setStorage("mapsource", "liberty"); + } + + $("#mapbox").css("background-color", SETTINGS.maptileurls[getStorage("mapsource")].bgcolor); + + L.tileLayer(SETTINGS.maptileurls[getStorage("mapsource")].url, { + minZoom: 1, + maxZoom: 19 + }).addTo(map); + + map.locateControl = L.control.locate({ + flyTo: false, // Hopefully this will lower the number of map tile requests when location is found + showPopup: false, + locateOptions: { + enableHighAccuracy: true, + maxZoom: getStorage("trackzoom") == null ? 16 : getStorage("trackzoom") * 1 + }, + setView: "untilPanOrZoom", + icon: "far fa-compass", + iconLoading: "far fa-compass fa-spin" + }).addTo(map); + + map.userlayer = L.markerClusterGroup(); + + map.userlayer.addTo(map); + + map.setView({lat: userPosition.coords.latitude, lng: userPosition.coords.longitude}, 2); + + map.startLocateControl = function () { + map.locateControl.start(); + } + + map.stopLocateControl = function () { + + } + + map.setMapHeading = function (heading) { + + } + + map.setMapLocation = function (latitude, longitude) { + map.setView({ + lng: longitude, + lat: latitude + }); + } + + map.updateUserLayer = function () { + map.userlayer.clearLayers(); + + //console.log(data); + + for (var i = 0; i < data.length; i++) { + // JavaScript variable scope and anonymous functions are dumb + // This is necessary, otherwise all the on(click)s will fire for the last iteration + // of the loop, or something like that + (function (datai) { + var iconUrl = getMapIconForUser(datai); + //console.log(iconName); + + var icon = L.icon({ + iconUrl: iconUrl, + iconSize: [25, 25], + iconAnchor: [12.5, 12.5] + }); + + var marker = L.marker( + [ + datai.coords[0], + datai.coords[1] + ], + { + icon: icon + }) + .on("click", function () { + openProfilePopup(datai.id) + }); + + map.userlayer.addLayer(marker); + })(data[i]); + } + } + + map.animateMapIn = function (latitude, longitude, zoom, heading) { + if (typeof zoom == 'undefined') { + zoom = 14; + } + if (typeof heading == 'undefined') { + heading = 0; + } + map.flyTo([latitude, longitude], zoom); + // Set min zoom after some time to fly in + setTimeout(function () { + map.setMinZoom(12); + map.setZoom(zoom); + }, 1000); + } + + return map; +} \ No newline at end of file diff --git a/www/assets/js/map_mapbox.js b/www/assets/js/map_mapbox.js new file mode 100644 index 0000000..af0054f --- /dev/null +++ b/www/assets/js/map_mapbox.js @@ -0,0 +1,142 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +// If true, we'll do a fancy zoom/pan in +// Otherwise we'll just jump to the correct location +var firstload = true; + +function mapboxMap() { + + if (getStorage("mapsource") == null) { + setStorage("mapsource", "liberty"); + } + + $("#mapbox").css("background-color", SETTINGS.maptileurls[getStorage("mapsource")].bgcolor); + + mapboxgl.accessToken = ''; + var map = new mapboxgl.Map({ + container: 'mapbox', + style: SETTINGS.maptileurls[getStorage("mapsource")].json, + attributionControl: false, + dragPan: true, + pitch: 0, + zoom: 2, + maxZoom: 19 + }); + + map.maptype = "mapbox"; + + map.addControl(new mapboxgl.NavigationControl({ + visualizePitch: true + }), 'top-left'); + + map.addControl( + new mapboxgl.GeolocateControl({ + positionOptions: { + enableHighAccuracy: true, + timeout: 10 * 1000 + }, + fitBoundsOptions: { + maxZoom: getStorage("trackzoom") == null ? 16 : getStorage("trackzoom") * 1 + }, + trackUserLocation: true + }), 'top-left' + ); + + if (getStorage("mapscale") !== "false") { + map.addControl( + new mapboxgl.ScaleControl({ + unit: getStorage("units") == "imperial" ? "imperial" : "metric" + }) + ); + } + + map.startLocateControl = function () { + // stub + } + + map.stopLocateControl = function () { + // stub + } + + map.mapEasing = function (t) { + return t * (2 - t); + } + + map.setMapHeading = function (heading) { + if (typeof heading == 'number') { + map.easeTo({ + bearing: heading, + easing: map.mapEasing + }); + } + } + + map.setMapLocation = function (latitude, longitude) { + map.easeTo({ + center: [ + longitude, + latitude + ] + }); + } + + map.updateUserLayer = function () { + var oldmarkers = document.getElementsByClassName("user-marker"); + if (oldmarkers.length > 0) { + markerparent = oldmarkers[0].parentNode; + while (oldmarkers.length > 0) { + markerparent.removeChild(oldmarkers[0]); + } + } + + for (var i = 0; i < data.length; i++) { + // JavaScript variable scope and anonymous functions are dumb + // This is necessary, otherwise all the on(click)s will fire for the last iteration + // of the loop, or something like that + (function (datai) { + var iconUrl = getMapIconForUser(datai); + //console.log(iconName); + + var el = document.createElement("div"); + el.className = "package-marker"; + + el.style = "background-image: url(" + iconUrl + ");"; + + el.addEventListener('click', function () { + openProfilePopup(datai.id); + }); + + new mapboxgl.Marker(el) + .setLngLat([datai.coords[1], datai.coords[0]]) + .addTo(map); + })(data[i]); + } + } + + map.animateMapIn = function (latitude, longitude, zoom, heading) { + if (typeof zoom == 'undefined') { + zoom = 16; + } + if (typeof heading == 'undefined') { + heading = 0; + } + map.jumpTo({ + center: [ + longitude, + latitude + ], + speed: 1, + zoom: zoom, + heading: heading, + pitch: 0 + }); + } + + map.animateMapIn(userPosition.coords.latitude, userPosition.coords.longitude, 12); + + return map; +} \ No newline at end of file diff --git a/www/assets/js/platform.js b/www/assets/js/platform.js new file mode 100644 index 0000000..aba8657 --- /dev/null +++ b/www/assets/js/platform.js @@ -0,0 +1,166 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +var platform_type = ""; + +var platform_theme = "md"; + +var app_version = "unknown"; + +var nw_tray = null; + +/** + * If true and animations are set to "auto", animations should be disabled. + * @type Boolean + */ +var auto_disable_animations = false; + +var openBrowser = function (url) { + window.open(url); +} + +var openSystemBrowser = function (url) { + window.open(url); +} + +var scanningBarcode = false; + +var getLocation = function (success, error) { + if ("geolocation" in navigator) { + navigator.geolocation.getCurrentPosition(function (position) { + success(position); + }, function (err) { + if (typeof error == "function") { + error(err.message); + } + }, { + enableHighAccuracy: true, + timeout: 5000, + maximumAge: 0 + }); + } else { + if (typeof error == "function") { + error("Location is unavailable."); + } + } +} + +var watchLocation = function (success, error) { + if ("geolocation" in navigator) { + navigator.geolocation.watchPosition(function (position) { + success(position); + }, function (err) { + if (typeof error == "function") { + error(err.message); + } + }, { + enableHighAccuracy: true, + timeout: 5000, + maximumAge: 0 + }); + } else { + if (typeof error == "function") { + error("Location is unavailable."); + } + } +} + +function initCordova() { + platform_type = "cordova"; + + // Handle back button to close things + document.addEventListener("backbutton", handleBackButton, false); + document.addEventListener("deviceready", function () { + // Make sure the status bar color is set properly + applyColorTheme(); + }, false); + openBrowser = function (url) { + cordova.InAppBrowser.open(url, '_blank', 'location=yes'); + } + + openExternalBrowser = function (url) { + window.open(url, '_system', ''); + } + + // Handle geo: urls + $("#app").on("click", ".geolink", function (evt) { + window.open($(this).attr("href"), "_system"); + evt.preventDefault(); + }); +} + +function initNW() { + platform_type = "nw"; + platform_theme = "md"; + openBrowser = function (url) { + nw.Window.open(url, { + id: url + }, function (browserwin) { + // Add menubar so the user can navigate around if they click a link + var browsermenu = new nw.Menu({type: 'menubar'}); + browsermenu.append(new nw.MenuItem({ + label: "Back", + click: function () { + browserwin.window.history.back(); + } + })); + browsermenu.append(new nw.MenuItem({ + label: "Forward", + click: function () { + browserwin.window.history.forward(); + } + })); + browsermenu.append(new nw.MenuItem({ + label: "Home", + click: function () { + browserwin.window.location.href = url; + } + })); + browserwin.menu = browsermenu; + }); + } + + openExternalBrowser = function (url) { + require('nw.gui').Shell.openExternal(url); + } + + // Handle geo: urls + $("#app").on("click", ".geolink", function (evt) { + require('nw.gui').Shell.openExternal($(this).attr("href")); + evt.preventDefault(); + }); +} + +function initBrowser() { + platform_type = "browser"; + platform_theme = "md"; + openBrowser = function (url) { + window.open(url); + } + + openExternalBrowser = function (url) { + window.open(url); + } + + $("#app").on("click", ".geolink", function (evt) { + window.open($(this).attr("href"), "_blank"); + evt.preventDefault(); + }); +} + +function initPlatform() { + if (typeof cordova !== 'undefined') { + initCordova(); + } else if (typeof nw !== 'undefined') { + initNW(); + } else { + initBrowser(); + } + + $.getJSON("package.json", function (data) { + app_version = data.version; + }); +} \ No newline at end of file diff --git a/www/assets/js/settings.js b/www/assets/js/settings.js new file mode 100644 index 0000000..2aeab97 --- /dev/null +++ b/www/assets/js/settings.js @@ -0,0 +1,142 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + + +function logout() { + app.dialog.confirm( + "Are you sure you want to log out?", + "Log out?", + function () { + localStorage.removeItem('password'); + localStorage.removeItem('username'); + localStorage.removeItem('lastsync'); + restartApplication(); + } + ); +} + +function resyncAndRestart() { + app.toast.show({ + text: "Syncing settings and restarting...", + position: "bottom", + destroyOnClose: true, + closeTimeout: 1000 * 10 + }); + syncNow(function () { + restartApplication(); + }); +} + +function clearCaches() { + app.toast.show({ + text: "Clearing caches. You may need to restart the app to see a difference.", + position: "bottom", + destroyOnClose: true, + closeTimeout: 1000 * 10 + }); + setStorage("geocode_cache", "{}"); + if ('caches' in window) { + clearAllCaches(); + } +} + +$('.item-link[data-setting=apptheme] select').on("change", function () { + setStorage("apptheme", $('.item-link[data-setting=apptheme] select').val()); + + applyColorTheme(); +}); + +$('.item-link[data-setting=animation] select').on("change", function () { + setStorage("animation", $('.item-link[data-setting=animation] select').val()); + + if (getStorage("animation") != "auto") { + setAnimations(); + } + if (getStorage("animation") == "auto") { + toggleAnimations(auto_disable_animations == false); + } +}); + +$('.item-content[data-setting=showhelp] .toggle input').on("change", function () { + var checked = $(this).prop('checked'); + setStorage("show_help", checked); +}); + +$('.item-content[data-setting=oldhomeui] .toggle input').on("change", function () { + var checked = $(this).prop('checked'); + setStorage("oldhomeui", checked); +}); + +$('.item-link[data-setting=units] select').on("change", function () { + setStorage("units", $('.item-link[data-setting=units] select').val()); +}); + +$('.item-link[data-setting=trackzoom] select').on("change", function () { + setStorage("trackzoom", $('.item-link[data-setting=trackzoom] select').val()); +}); + +$('.item-content[data-setting=wakelock] .toggle input').on("change", function () { + var checked = $(this).prop('checked'); + setStorage("wakelock", checked); + + if (platform_type == "cordova") { + loadSettings(); + } else { + app.toast.show({ + text: "This setting won't do anything on your device.", + position: "bottom", + destroyOnClose: true, + closeTimeout: 1000 * 10 + }); + } +}); + +$('.item-content[data-setting=alertvolume] .range-slider').on('range:changed', function (e, range) { + var val = app.range.get(".item-content[data-setting=alertvolume] .range-slider").getValue(); + setStorage("alertvolume", val); + setVolume("alert", val); + playSound("alert"); +}); + +$('.item-content[data-setting=alertradius] .range-slider').on('range:changed', function (e, range) { + var val = app.range.get(".item-content[data-setting=alertradius] .range-slider").getValue(); + setStorage("alertradius", val); +}); + +$('.item-content[data-setting=alertinterval] .range-slider').on('range:changed', function (e, range) { + var val = app.range.get(".item-content[data-setting=alertinterval] .range-slider").getValue(); + setStorage("alertinterval", val); +}); + +$('.item-link[data-setting=mapsource] select').on("change", function () { + setStorage("mapsource", $('.item-link[data-setting=mapsource] select').val()); + + reloadMap(); +}); + +$('.item-content[data-setting=mapscale] .toggle input').on("change", function () { + var checked = $(this).prop('checked'); + setStorage("mapscale", checked ? "true" : "false"); + + reloadMap(); +}); + +$('.item-content[data-setting=maptype] .toggle input').on("change", function () { + var checked = $(this).prop('checked'); + setStorage("maptype", checked ? "leaflet" : "mapbox"); + + maptype = checked ? "leaflet" : "mapbox"; + + reloadMap(); +}); + +$('.item-link[data-setting=alertsound] select').on("change", function () { + setStorage("alertsound", $('.item-link[data-setting=alertsound] select').val()); + // Reload sound effect stuff to apply new sound + initSFX(); + // Play the selected sound + playSound("alert"); +}); \ No newline at end of file diff --git a/www/assets/js/storage.js b/www/assets/js/storage.js new file mode 100644 index 0000000..8e4c002 --- /dev/null +++ b/www/assets/js/storage.js @@ -0,0 +1,58 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + + +/** + * Save something to persistent storage. + * @param {string} key + * @param {string} value non-string values are converted to strings. + * @param {bool} nochangeupdate If true, the lastchange setting won't be updated. + * @returns {undefined} + */ +function setStorage(key, value, nochangeupdate) { + if (typeof nochangeupdate == 'undefined') { + nochangeupdate = false; + } + localStorage.setItem(key, value); + if (!nochangeupdate && !SETTINGS.synckeyblacklist.includes(key)) { + localStorage.setItem("lastchange", Date.now() / 1000); + } +} + +/** + * Get an item from persistent storage. + * @param {type} key + * @returns {DOMString} + */ +function getStorage(key) { + return localStorage.getItem(key); +} + +/** + * Check if an item is in the persistent storage. + * @param {string} key + * @returns {Boolean} + */ +function inStorage(key) { + return localStorage.getItem(key) != null; +} + +/** + * Get all item from persistent storage. + * @returns {Array} [{key: "", value: ""},...] + */ +function getAllStorage() { + var all = []; + for (var key in localStorage) { + if (localStorage.hasOwnProperty(key)) { + all.push({ + key: key, + value: getStorage(key) + }); + } + } + return all; +} \ No newline at end of file diff --git a/www/assets/js/sync.js b/www/assets/js/sync.js new file mode 100644 index 0000000..85ef46d --- /dev/null +++ b/www/assets/js/sync.js @@ -0,0 +1,111 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + + +function gatherSyncData() { + var data = { + localStorage: {}, + changed: getStorage("lastchange") == null ? 0 : getStorage("lastchange"), + }; + if (!inStorage("lastsync")) { + // first time syncing to the server, let's make sure + // the server settings take precedence + data.changed = 1; + } + var allitems = getAllStorage(); + for (var i = 0; i < allitems.length; i++) { + var key = allitems[i].key; + var value = allitems[i].value; + if (SETTINGS.synckeyblacklist.includes(key)) { + continue; + } + data.localStorage[key] = value; + } + return data; +} + +function syncDataToLocalStorage(data) { + for (var key in data.localStorage) { + if (data.localStorage.hasOwnProperty(key)) { + setStorage(key, data.localStorage[key], true); + } + } +} + +function resolveSync(remotedata) { + var localchangetime = getStorage("lastchange"); + if (remotedata.changed == null) { + // The server has nothing, this is the first sync + return true; + } + if (localchangetime == null) { + // No local setting changes but since we've gotten this far, + // the server has stuff for us + syncDataToLocalStorage(remotedata); + return true; + } + if (localchangetime < remotedata.changed) { + // The server has newer stuff for us + syncDataToLocalStorage(remotedata); + return true; + } + if (localchangetime >= remotedata.changed) { + // Our local data is newer or the same as the server copy + return true; + } + return false; +} + +function syncNow(callback) { + var username = getStorage("username"); + var password = getStorage("password"); + if (username == null || password == null) { + return false; + } + var data = gatherSyncData(); + + $.post(SETTINGS.syncapi, { + username: username, + password: password, + data: JSON.stringify(data) + }, function (resp) { + if (resp.status == "OK") { + resolveSync(resp.data); + setStorage("lastsync", Date.now() / 1000); + if (typeof callback == "function") { + callback(); + } + } + }, "json"); + return true; +} + +function loadSettings() { + applyColorTheme(); + + if (platform_type == "cordova") { + if (getStorage("wakelock") == "true") { + window.powerManagement.acquire(function () { + console.log("Info", 'Wakelock acquired'); + }, function () { + console.log("Warn", 'Failed to acquire wakelock'); + }); + } else { + window.powerManagement.release(function () { + console.log("Info", 'Wakelock released'); + }, function () { + console.log("Warn", 'Failed to release wakelock'); + }); + } + } +} + +syncNow(loadSettings); + +// Sync every two minutes +setInterval(function () { + syncNow(loadSettings); +}, 1000 * 60 * 2); \ No newline at end of file diff --git a/www/assets/js/util.js b/www/assets/js/util.js new file mode 100644 index 0000000..e0819ee --- /dev/null +++ b/www/assets/js/util.js @@ -0,0 +1,275 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +/** + * Generate a UUID. + * From https://stackoverflow.com/a/2117523 + * @returns {String} + */ +function uuidv4() { + return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) { + var r = Math.random() * 16 | 0, v = c == 'x' ? r : (r & 0x3 | 0x8); + return v.toString(16); + }); +} + +/** + * Take a UNIX timestamp (seconds since Jan 1 1970) and format it. + * (Mostly) compatible with PHP's date() function. + * @param {String} date format string, see https://www.php.net/manual/en/function.date.php + * @param {Integer} timestamp UNIX timestamp + * @return {String} + */ +function formatTimestamp(format, timestamp) { + if (typeof timestamp == "undefined") { + timestamp = time(); + } + var date = new Date(timestamp * 1000); + + var out = ""; + + var months = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"]; + var days = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]; + for (var i = 0; i < format.length; i++) { + var c = format.charAt(i); + // Handle backslash-escaped characters + if (c == "\\" && i < format.length - 1) { + out += format.charAt(i + 1); + i++; + continue; + } + switch (c) { + case "d": + var d = date.getDate(); + if (d < 10) { + out += "0"; + } + out += d; + break; + case "D": + out += days[date.getDay()].substring(0, 3); + break; + case "j": + out += date.getDate(); + break; + case "l": + out += days[date.getDay()]; + break; + case "N": + // TODO + break; + case "S": + // TODO + break; + case "w": + out += date.getDay(); + break; + case "z": + // TODO + break; + case "W": + // TODO + break; + case "F": + out += months[date.getMonth()]; + break; + case "m": + var m = date.getMonth() + 1; + if (m < 10) { + out += "0"; + } + out += m; + break; + case "M": + out += months[date.getMonth()].substring(0, 3); + break; + case "n": + out += date.getMonth() + 1; + break; + case "t": + // TODO + break; + case "L": + // TODO + break; + case "o": + // TODO + break; + case "Y": + out += date.getFullYear(); + break; + case "y": + var y = (date.getFullYear() + ""); + out += y.substring(y.length - 2); + break; + case "a": + if (date.getHours() < 12) { + out += "am"; + } else { + out += "pm"; + } + break; + case "A": + if (date.getHours() < 12) { + out += "AM"; + } else { + out += "PM"; + } + break; + case "B": + // TODO + break; + case "g": + var h = date.getHours() % 12; + if (h == 0) { + h = 12; + } + out += h; + break; + case "G": + out += date.getHours(); + break; + case "h": + var h = date.getHours() % 12; + if (h == 0) { + h = 12; + } + if (h < 10) { + out += "0"; + } + out += h; + break; + case "H": + var h = date.getHours(); + if (h < 10) { + out += "0"; + } + out += h; + break; + case "i": + var ii = date.getMinutes(); + if (ii < 10) { + out += "0"; + } + out += ii; + break; + case "s": + var s = date.getSeconds(); + if (s < 10) { + out += "0"; + } + out += s; + break; + case "u": + out += date.getMilliseconds() * 1000; + break; + case "v": + out += date.getMilliseconds(); + break; + case "e": + // TODO + break; + case "I": + // TODO + break; + case "O": + var off = date.getTimezoneOffset(); + var m = off % 60; + var h = (off - m) / 60; + if (off >= 0) { + out += "+"; + } else { + out += "-"; + } + if (h < 10) { + out += "0"; + } + out += h; + if (m < 10) { + out += "0"; + } + out += m; + break; + case "P": + var off = date.getTimezoneOffset(); + var m = off % 60; + var h = (off - m) / 60; + if (off >= 0) { + out += "+"; + } else { + out += "-"; + } + if (h < 10) { + out += "0"; + } + out += h; + out += ":"; + if (m < 10) { + out += "0"; + } + out += m; + break; + case "T": + // TODO + break; + case "Z": + out += date.getTimezoneOffset() * 60; + break; + case "c": + out += formatTimestamp(timestamp, "Y-m-d\\TH:i:sP"); + break; + case "r": + out += formatTimestamp(timestamp, "D, j M Y G:i:s O"); + break; + case "U": + out += Math.round(timestamp); + break; + default: + out += c; + } + } + + return out; +} + +function timestampToDateTimeString(timestamp) { + return timestampToDateString(timestamp) + " " + timestampToTimeString(timestamp); +} + +function timestampToDateString(timestamp) { + var date = new Date(timestamp * 1000); + + return date.toLocaleDateString(); +} + +function timestampToTimeString(timestamp) { + var date = new Date(timestamp * 1000); + + var pm = date.getHours() >= 12; + var hours = date.getHours() > 12 ? date.getHours() - 12 : date.getHours(); + hours = (hours == 0 ? 12 : hours); + var minutes = date.getMinutes(); + var time = hours + ":" + (minutes < 10 ? "0" + minutes : minutes) + " " + (pm ? "PM" : "AM"); + + return time; +} + +/** + * Get the current UNIX timestamp in seconds. + * @returns {Number} + */ +function time() { + return Date.now() / 1000; +} + +/** + * Get the number of seconds between now and the given timestamp. + * @param {Number} compareto + * @returns {Number} + */ +function timeDiff(compareto) { + return time() - compareto; +} \ No newline at end of file diff --git a/www/index.html b/www/index.html new file mode 100644 index 0000000..39efbc1 --- /dev/null +++ b/www/index.html @@ -0,0 +1,53 @@ + + +Lecte + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/www/manifest.json b/www/manifest.json new file mode 100644 index 0000000..0d93008 --- /dev/null +++ b/www/manifest.json @@ -0,0 +1,57 @@ +{ + "name": "Lecte", + "short_name": "Lecte", + "icons": [ + { + "src": "assets/images/icons/32x32.png", + "sizes": "32x32", + "type": "image/png" + }, + { + "src": "assets/images/icons/128x128.png", + "sizes": "128x128", + "type": "image/png" + }, + { + "src": "assets/images/icons/144x144.png", + "sizes": "144x144", + "type": "image/png" + }, + { + "src": "assets/images/icons/152x152.png", + "sizes": "152x152", + "type": "image/png" + }, + { + "src": "assets/images/icons/192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "assets/images/icons/256x256.png", + "sizes": "256x256", + "type": "image/png" + }, + { + "src": "assets/images/icons/512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "scope": "/", + "lang": "en-US", + "categories": ["social", "lifestyle", "travel"], + "prefer_related_applications": true, + "related_applications": [ + { + "platform": "play", + "url": "https://play.google.com/store/apps/details?id=vote.lecte.Lecte", + "id": "vote.lecte.Lecte" + } + ], + "start_url": "index.html", + "display": "standalone", + "background_color": "#ffffff", + "theme_color": "#4CAF50", + "iarc_rating_id": "" +} \ No newline at end of file diff --git a/www/package.json b/www/package.json new file mode 100644 index 0000000..a5f9cfd --- /dev/null +++ b/www/package.json @@ -0,0 +1,18 @@ +{ + "name": "Lecte", + "version": "1.0.0", + "main": "index.html", + "license": "MPL-2.0", + "dependencies": { + "@fortawesome/fontawesome-free": "^5.12.1", + "framework7": "^5.5.1", + "jquery": "^3.4.1", + "leaflet": "^1.5.1", + "leaflet-geometryutil": "^0.9.1", + "leaflet.locatecontrol": "^0.67.0", + "leaflet.markercluster": "^1.4.1", + "mapbox-gl": "^1.8.1", + "material-design-icons": "^3.0.1" + }, + "devDependencies": {} +} diff --git a/www/pages/credits.html b/www/pages/credits.html new file mode 100644 index 0000000..0d34162 --- /dev/null +++ b/www/pages/credits.html @@ -0,0 +1,5387 @@ + +
\ No newline at end of file diff --git a/www/pages/credits.template.html b/www/pages/credits.template.html new file mode 100644 index 0000000..d9a6e76 --- /dev/null +++ b/www/pages/credits.template.html @@ -0,0 +1,112 @@ + +
+ + + +
+ +
+

This program is licensed under the Mozilla Public License 2.0. + To get the source code, visit https://source.netsyms.com/Netsyms/Lecte. +
+ This application relies on and is bundled with third-party code. + See below for the their licenses and where to find source code. +

+ +
+

Map Data and Styles

+

+ Map data © OpenMapTiles, © OpenStreetMap contributors. +

+

OSM Liberty map style

+
+                Mapbox Open Styles are copyright (c) 2014, Mapbox, 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 Mapbox 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.
+
+                The visual design features of the Mapbox Open Styles (also known as the "look and feel" of the map) are licensed under the Creative Commons Attribution 3.0 license. To view a copy of the license, visit http://creativecommons.org/licenses/by/3.0/. Attribution need not be provided on map images, but should be reasonably accessable from maps based on on these styles (for example, in a webpage linked from copyright notice on the map).
+            
+

+ The look and feel of the OSM liberty map design is also derived (although heavily altered) from OSM Bright from Mapbox Open Styles which is licensed under the Creative Commons Attribution 3.0 license. +
OSM Liberty is using the Maki POI icon set which is licensed under CC0 1.0 Universal. +
OSM Liberty is using the Roboto font family (Copyright 2011 Google). Roboto is licensed under the Apache License, Version 2.0. +

+

Klokantech Terrain map style

+

+ The visual design features of the Klokantech Terrain style (also known as the "look and feel" of + the map) are licensed under the Creative Commons Attribution 4.0 license. +

+
+                Copyright (c) 2016, KlokanTech.com & OpenMapTiles contributors.
+                Copyright (c) 2014, Mapbox.
+                All rights reserved.
+
+                Modifications by KlokanTech.com & OpenMapTiles contributors.
+                Derived from "Mapbox Open Styles" https://github.com/mapbox/mapbox-gl-styles
+
+                # Code license: BSD 3-Clause License
+
+                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 copyright holder 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.
+            
+ +
+ +
+

Code and Libraries

+
+                {{credits}}
+            
+
+ +
+ +
\ No newline at end of file diff --git a/www/pages/discover.html b/www/pages/discover.html new file mode 100644 index 0000000..b169d80 --- /dev/null +++ b/www/pages/discover.html @@ -0,0 +1,69 @@ + + +
+ + + +
+
+ Ranking + Map +
+
+ + {{#if nottablet}} +
+ {{/if}} +
+
+ +
+
+
    +
+
+
+
+ +
+ + +
+
+
+ {{#if nottablet}} +
+ {{/if}} + + + +
\ No newline at end of file diff --git a/www/pages/login.html b/www/pages/login.html new file mode 100644 index 0000000..608853f --- /dev/null +++ b/www/pages/login.html @@ -0,0 +1,24 @@ + + +
+ + + +
+ +
+ + +
\ No newline at end of file diff --git a/www/pages/profile.html b/www/pages/profile.html new file mode 100644 index 0000000..aedc603 --- /dev/null +++ b/www/pages/profile.html @@ -0,0 +1,17 @@ + + +
+ + + +
+ +
+
\ No newline at end of file diff --git a/www/pages/settings.html b/www/pages/settings.html new file mode 100644 index 0000000..badd291 --- /dev/null +++ b/www/pages/settings.html @@ -0,0 +1,113 @@ + + +
+ + + + +
+
+
+
+
    + {{#each settings}} +
  • + {{#if link}} + + {{else}} + {{#if toggle}} +
    +
    +
    +
    + {{title}} +
    +
    + +
    +
    +
    {{text}}
    +
    +
    + {{else}} + {{#if slider}} +
    +
    +
    + {{title}} +
    +
    +
    + +
    +
    +
    +
    + {{else}} + {{#if select}} + + +
    +
    +
    {{title}}
    +
    +
    +
    + {{else}} +
    +
    +
    +
    {{title}}
    +
    +
    {{text}}
    +
    +
    + {{/if}} + {{/if}} + {{/if}} + {{/if}} +
  • + {{/each}} +
+
+
+
+
+ + + +
diff --git a/www/pages/welcome.html b/www/pages/welcome.html new file mode 100644 index 0000000..305d8c8 --- /dev/null +++ b/www/pages/welcome.html @@ -0,0 +1,17 @@ + + +
+ + + +
+ +
+
\ No newline at end of file diff --git a/www/routes.js b/www/routes.js new file mode 100644 index 0000000..e5036ac --- /dev/null +++ b/www/routes.js @@ -0,0 +1,245 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +var routes = [ + { + path: '/welcome', + name: 'welcome', + templateUrl: "pages/welcome.html" + }, + { + path: '/profile', + name: 'profile', + templateUrl: "pages/profile.html" + }, + { + path: '/discover', + name: 'discover', + async: function (routeTo, routeFrom, resolve, reject) { + let tablet = $(window).width() >= 768; + resolve({ + templateUrl: "pages/discover.html" + }, { + context: { + nottablet: !tablet + } + }) + }, + on: { + pageAfterIn: function () { + reloadMap(); + } + } + }, + { + path: '/settings', + name: 'settings', + async: function (routeTo, routeFrom, resolve, reject) { + var settings = []; + if (getStorage("username") != null && getStorage("password") != null) { + settings.push( + { + setting: "account", + title: "Account", + text: "Logged in as " + getStorage("username") + }, + { + setting: "logout", + title: "", + text: "Log out", + link: true, + onclick: "logout()" + } + ); + } else { + settings.push( + { + setting: "login", + title: "Log In / Sign Up", + text: "Sign up or log in to vote or create a profile.", + onclick: "router.navigate('/login')", + link: true + } + ); + } + settings.push( + { + setting: "maps", + title: "Map", + text: "Change map settings.", + onclick: "router.navigate('/settings/maps')", + link: true + }, + { + setting: "display", + title: "Display and Appearance", + text: "Change the app theme.", + onclick: "router.navigate('/settings/display')", + link: true + } + ); + + settings.push( + { + setting: "versions", + title: "Lecte app v" + app_version, + text: "Copyright © 2020 David Seyler and Netsyms Technologies. Licensed under the Mozilla Public License 2.0.", + onclick: "" + }, + { + setting: "opensource", + title: "Credits and open source info", + text: "", + onclick: "router.navigate('/credits')", + link: true + }, + { + setting: "privacy", + title: "Privacy policy and legal", + text: "", + onclick: "openBrowser('https://netsyms.com/legal?pk_campaign=LecteApp')", + link: true + }); + resolve({ + templateUrl: './pages/settings.html' + }, { + context: { + page_title: "Settings", + settings: settings + } + }); + }, + routes: [ + { + path: '/maps', + name: 'settings', + async: function (routeTo, routeFrom, resolve, reject) { + var mapstyles = []; + for (var id in SETTINGS.maptileurls) { + if (SETTINGS.maptileurls.hasOwnProperty(id)) { + mapstyles.push({ + value: id, + label: SETTINGS.maptileurls[id].name, + selected: getStorage("mapsource") == id + }); + } + } + + var settings = [ + { + setting: "mapsource", + title: "Map style", + select: true, + options: mapstyles, + text: "Choose which map style to use." + }, + { + setting: "units", + title: "Measurement units", + select: true, + options: [ + { + value: "metric", + label: "Meters/Kilometers", + selected: getStorage("units") == "metric" + }, + { + value: "imperial", + label: "Feet/Miles", + selected: getStorage("units") == "imperial" + } + ] + }, + { + setting: "mapscale", + title: "Map Scale Ruler", + text: "Show a scale in the corner of the map.", + toggle: true, + checked: getStorage("mapscale") !== "false", + onclick: "" + }, + { + setting: "maptype", + title: "Alternative map", + text: "Turn this on if you have problems with the map.", + toggle: true, + checked: getStorage("maptype") == "leaflet", + onclick: "" + } + ]; + resolve({ + templateUrl: './pages/settings.html' + }, { + context: { + page_title: "Map Settings", + settings: settings + } + }); + } + }, + { + path: '/display', + name: 'settings', + async: function (routeTo, routeFrom, resolve, reject) { + var settings = [ + { + setting: "apptheme", + title: "Color theme", + select: true, + options: [ + { + value: "auto", + label: "Auto", + selected: getStorage("apptheme") == null || getStorage("apptheme") == "auto" + }, + { + value: "dark", + label: "Dark", + selected: getStorage("apptheme") == "dark" + }, + { + value: "light", + label: "Light", + selected: getStorage("apptheme") == "light" + } + ] + }, + { + setting: "animation", + title: "Animations", + select: true, + options: [ + { + value: "auto", + label: "On", + selected: getStorage("animation") == null || getStorage("animation") == "auto" || getStorage("animation") == "on" + }, + { + value: "off", + label: "Off", + selected: getStorage("animation") == "off" + } + ] + } + ]; + resolve({ + templateUrl: './pages/settings.html' + }, { + context: { + page_title: "Display Settings", + settings: settings + } + }); + } + } + ] + }, + { + path: '/credits', + url: './pages/credits.html', + name: 'credits' + } +]; diff --git a/www/settings.js b/www/settings.js new file mode 100644 index 0000000..60917b8 --- /dev/null +++ b/www/settings.js @@ -0,0 +1,42 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +var SETTINGS = { + maptileurls: { + liberty: { + url: "https://maps.netsyms.net/styles/osm-liberty/{z}/{x}/{y}.png", + json: "https://maps.netsyms.net/styles/osm-liberty/style.json", + name: "Liberty", + bgcolor: "#EFEFEF" + }, + terrain: { + url: "https://maps.netsyms.net/styles/klokantech-terrain/{z}/{x}/{y}.png", + json: "https://maps.netsyms.net/styles/klokantech-terrain/style.json", + name: "Terrain", + bgcolor: "#EDF5F3" + }, + fiord: { + url: "https://maps.netsyms.net/styles/fiord-color/{z}/{x}/{y}.png", + json: "https://maps.netsyms.net/styles/fiord-color/style.json", + name: "Dark Fiord", + bgcolor: "#45516E" + }, + oledblack: { + url: "https://maps.netsyms.net/styles/oled-black/{z}/{x}/{y}.png", + json: "https://maps.netsyms.net/styles/oled-black/style.json", + name: "OLED Black", + bgcolor: "#000000" + } + }, + synckeyblacklist: [ + "username", "password", + "user_latitude", "user_longitude", + "lastsync", "lastchange" + ], + geocodeapi: "https://api.lecte.vote/geocode.php", + geoipapi: "https://api.lecte.vote/geoip.php", + loginurl: "https://auth.lecte.vote/login/" +}
+ + + +
+ +
+

This program is licensed under the Mozilla Public License 2.0. + To get the source code, visit https://source.netsyms.com/Netsyms/PackageHelper. +
+ This application relies on and is bundled with third-party code. + See below for the their licenses and where to find source code. +

+ +
+

Map Data and Styles

+

+ Map data © OpenMapTiles, © OpenStreetMap contributors. +

+

OSM Liberty map style

+
+                Mapbox Open Styles are copyright (c) 2014, Mapbox, 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 Mapbox 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.
+
+                The visual design features of the Mapbox Open Styles (also known as the "look and feel" of the map) are licensed under the Creative Commons Attribution 3.0 license. To view a copy of the license, visit http://creativecommons.org/licenses/by/3.0/. Attribution need not be provided on map images, but should be reasonably accessable from maps based on on these styles (for example, in a webpage linked from copyright notice on the map).
+            
+

+ The look and feel of the OSM liberty map design is also derived (although heavily altered) from OSM Bright from Mapbox Open Styles which is licensed under the Creative Commons Attribution 3.0 license. +
OSM Liberty is using the Maki POI icon set which is licensed under CC0 1.0 Universal. +
OSM Liberty is using the Roboto font family (Copyright 2011 Google). Roboto is licensed under the Apache License, Version 2.0. +

+

Klokantech Terrain map style

+

+ The visual design features of the Klokantech Terrain style (also known as the "look and feel" of + the map) are licensed under the Creative Commons Attribution 4.0 license. +

+
+                Copyright (c) 2016, KlokanTech.com & OpenMapTiles contributors.
+                Copyright (c) 2014, Mapbox.
+                All rights reserved.
+
+                Modifications by KlokanTech.com & OpenMapTiles contributors.
+                Derived from "Mapbox Open Styles" https://github.com/mapbox/mapbox-gl-styles
+
+                # Code license: BSD 3-Clause License
+
+                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 copyright holder 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.
+            
+ +
+ +
+

Code and Libraries

+
+THE FOLLOWING SETS FORTH ATTRIBUTION NOTICES FOR THIRD PARTY SOFTWARE THAT MAY BE CONTAINED IN PORTIONS OF THE PACKAGEHELPER PRODUCT.
+
+-----
+
+The following software may be included in this product: @fortawesome/fontawesome-free. A copy of the source code may be downloaded from https://github.com/FortAwesome/Font-Awesome. This software contains the following license and notice below:
+
+Font Awesome Free License
+-------------------------
+
+Font Awesome Free is free, open source, and GPL friendly. You can use it for
+commercial projects, open source projects, or really almost whatever you want.
+Full Font Awesome Free license: https://fontawesome.com/license/free.
+
+# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/)
+In the Font Awesome Free download, the CC BY 4.0 license applies to all icons
+packaged as SVG and JS file types.
+
+# Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL)
+In the Font Awesome Free download, the SIL OFL license applies to all icons
+packaged as web and desktop font files.
+
+# Code: MIT License (https://opensource.org/licenses/MIT)
+In the Font Awesome Free download, the MIT license applies to all non-font and
+non-icon files.
+
+# Attribution
+Attribution is required by MIT, SIL OFL, and CC BY licenses. Downloaded Font
+Awesome Free files already contain embedded comments with sufficient
+attribution, so you shouldn't need to do anything additional when using these
+files normally.
+
+We've kept attribution comments terse, so we ask that you do not actively work
+to remove them from files, especially code. They're a great way for folks to
+learn about Font Awesome.
+
+# Brand Icons
+All brand icons are trademarks of their respective owners. The use of these
+trademarks does not indicate endorsement of the trademark holder by Font
+Awesome, nor vice versa. **Please do not use brand logos for any purpose except
+to represent the company, product, or service to which they refer.**
+
+-----
+
+The following software may be included in this product: @mapbox/geojson-area. A copy of the source code may be downloaded from git@github.com:mapbox/geojson-area.git. This software contains the following license and notice below:
+
+Copyright 2005-2013 OpenLayers Contributors. All rights reserved. See
+authors.txt for full list.
+
+Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+ 1. Redistributions of source code must retain the above copyright notice, this
+list of conditions and the following disclaimer.
+
+ 2. 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.
+
+THIS SOFTWARE IS PROVIDED BY OPENLAYERS 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 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.
+
+The views and conclusions contained in the software and documentation are those
+of the authors and should not be interpreted as representing official policies,
+either expressed or implied, of OpenLayers Contributors.
+
+-----
+
+The following software may be included in this product: @mapbox/geojson-rewind. A copy of the source code may be downloaded from git://github.com/mapbox/geojson-rewind.git. This software contains the following license and notice below:
+
+Copyright (c) {{ year }}, {{ organization }}
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
+REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
+INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
+LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
+OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+PERFORMANCE OF THIS SOFTWARE.
+
+-----
+
+The following software may be included in this product: @mapbox/geojson-types. This software contains the following license and notice below:
+
+MIT License
+
+Copyright (c) 2018 Mapbox
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+-----
+
+The following software may be included in this product: @mapbox/mapbox-gl-supported. A copy of the source code may be downloaded from git+https://github.com/mapbox/mapbox-gl-supported.git. This software contains the following license and notice below:
+
+BSD 3-Clause License
+
+Copyright (c) 2017, Mapbox
+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 copyright holder 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.
+
+-----
+
+The following software may be included in this product: @mapbox/point-geometry. A copy of the source code may be downloaded from git@github.com:mapbox/point-geometry.git. This software contains the following license and notice below:
+
+Copyright (c) 2015, Mapbox <>
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+-----
+
+The following software may be included in this product: @mapbox/tiny-sdf. A copy of the source code may be downloaded from git+https://github.com/mapbox/tiny-sdf.git. This software contains the following license and notice below:
+
+Copyright © 2016-2017 Mapbox, Inc.
+This code available under the terms of the BSD 2-Clause license.
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+2. 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.
+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.
+
+-----
+
+The following software may be included in this product: @mapbox/vector-tile. A copy of the source code may be downloaded from https://github.com/mapbox/vector-tile-js.git. This software contains the following license and notice below:
+
+Copyright (c) 2014, Mapbox
+
+
+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 Mapbox 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 OWNER 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.
+
+-----
+
+The following software may be included in this product: @mapbox/whoots-js. A copy of the source code may be downloaded from https://github.com/mapbox/whoots-js.git. This software contains the following license and notice below:
+
+ISC License
+
+Copyright (c) 2017, Mapbox
+
+Permission to use, copy, modify, and/or distribute this software for any purpose
+with or without fee is hereby granted, provided that the above copyright notice
+and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
+REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
+INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
+OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
+THIS SOFTWARE.
+
+-----
+
+The following software may be included in this product: @zxing/library. A copy of the source code may be downloaded from https://github.com/zxing-js/library. This software contains the following license and notice below:
+
+MIT License
+
+Copyright (c) 2018 ZXing for JS
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+-----
+
+The following software may be included in this product: ansicolors. A copy of the source code may be downloaded from git://github.com/thlorenz/ansicolors.git. This software contains the following license and notice below:
+
+Copyright 2013 Thorsten Lorenz. 
+All rights reserved.
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: buffer-from. A copy of the source code may be downloaded from https://github.com/LinusU/buffer-from.git. This software contains the following license and notice below:
+
+MIT License
+
+Copyright (c) 2016, 2018 Linus Unnebäck
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+-----
+
+The following software may be included in this product: bwip-js. A copy of the source code may be downloaded from https://github.com/metafloor/bwip-js.git. This software contains the following license and notice below:
+
+bwip-js : Barcode Writer in Pure JavaScript
+
+Copyright (c) 2011-2019 Mark Warren
+
+The MIT License
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: cardinal, redeyed. A copy of the source code may be downloaded from git://github.com/thlorenz/cardinal.git (cardinal), git://github.com/thlorenz/redeyed.git (redeyed). This software contains the following license and notice below:
+
+Copyright 2012 Thorsten Lorenz. 
+All rights reserved.
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: concat-stream. A copy of the source code may be downloaded from http://github.com/maxogden/concat-stream.git. This software contains the following license and notice below:
+
+The MIT License
+
+Copyright (c) 2013 Max Ogden
+
+Permission is hereby granted, free of charge, 
+to any person obtaining a copy of this software and 
+associated documentation files (the "Software"), to 
+deal in the Software without restriction, including 
+without limitation the rights to use, copy, modify, 
+merge, publish, distribute, sublicense, and/or sell 
+copies of the Software, and to permit persons to whom 
+the Software is furnished to do so, 
+subject to the following conditions:
+
+The above copyright notice and this permission notice 
+shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 
+OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR 
+ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: core-util-is. A copy of the source code may be downloaded from git://github.com/isaacs/core-util-is. This software contains the following license and notice below:
+
+Copyright Node.js contributors. All rights reserved.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to
+deal in the Software without restriction, including without limitation the
+rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+sell copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: dom7. A copy of the source code may be downloaded from git+https://github.com/nolimits4web/dom7.git. This software contains the following license and notice below:
+
+MIT License
+
+Copyright (c) 2017 Vladimir Kharlampidi
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+-----
+
+The following software may be included in this product: earcut, supercluster. A copy of the source code may be downloaded from git://github.com/mapbox/earcut.git (earcut), git://github.com/mapbox/supercluster.git (supercluster). This software contains the following license and notice below:
+
+ISC License
+
+Copyright (c) 2016, Mapbox
+
+Permission to use, copy, modify, and/or distribute this software for any purpose
+with or without fee is hereby granted, provided that the above copyright notice
+and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
+REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
+INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
+OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
+THIS SOFTWARE.
+
+-----
+
+The following software may be included in this product: framework7. A copy of the source code may be downloaded from https://github.com/framework7io/framework7.git. This software contains the following license and notice below:
+
+The MIT License (MIT)
+
+Copyright (c) 2014 Vladimir Kharlampidi
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: geojson-vt. A copy of the source code may be downloaded from git://github.com/mapbox/geojson-vt.git. This software contains the following license and notice below:
+
+ISC License
+
+Copyright (c) 2015, Mapbox
+
+Permission to use, copy, modify, and/or distribute this software for any purpose
+with or without fee is hereby granted, provided that the above copyright notice
+and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
+REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
+INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
+OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
+THIS SOFTWARE.
+
+-----
+
+The following software may be included in this product: gl-matrix. A copy of the source code may be downloaded from https://github.com/toji/gl-matrix.git. This software contains the following license and notice below:
+
+Copyright (c) 2015-2020, Brandon Jones, Colin MacKenzie IV.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: grid-index. A copy of the source code may be downloaded from git+https://github.com/mapbox/grid-index.git. This software contains the following license and notice below:
+
+Copyright (c) 2016, Mapbox
+
+Permission to use, copy, modify, and/or distribute this software for any purpose
+with or without fee is hereby granted, provided that the above copyright notice
+and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
+REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
+INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
+OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
+THIS SOFTWARE.
+
+-----
+
+The following software may be included in this product: ieee754. A copy of the source code may be downloaded from git://github.com/feross/ieee754.git. This software contains the following license and notice below:
+
+Copyright 2008 Fair Oaks Labs, Inc.
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+
+2. 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.
+
+3. Neither the name of the copyright holder 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.
+
+-----
+
+The following software may be included in this product: inherits. A copy of the source code may be downloaded from git://github.com/isaacs/inherits. This software contains the following license and notice below:
+
+The ISC License
+
+Copyright (c) Isaac Z. Schlueter
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
+REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
+INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
+LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
+OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+PERFORMANCE OF THIS SOFTWARE.
+
+-----
+
+The following software may be included in this product: jquery. A copy of the source code may be downloaded from https://github.com/jquery/jquery.git. This software contains the following license and notice below:
+
+Copyright JS Foundation and other contributors, https://js.foundation/
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: kdbush, quickselect. A copy of the source code may be downloaded from git://github.com/mourner/kdbush.git (kdbush). This software contains the following license and notice below:
+
+ISC License
+
+Copyright (c) 2018, Vladimir Agafonkin
+
+Permission to use, copy, modify, and/or distribute this software for any purpose
+with or without fee is hereby granted, provided that the above copyright notice
+and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
+REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
+INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
+OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
+THIS SOFTWARE.
+
+-----
+
+The following software may be included in this product: leaflet. A copy of the source code may be downloaded from git://github.com/Leaflet/Leaflet.git. This software contains the following license and notice below:
+
+Copyright (c) 2010-2019, Vladimir Agafonkin
+Copyright (c) 2010-2011, CloudMade
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification, are
+permitted provided that the following conditions are met:
+
+   1. Redistributions of source code must retain the above copyright notice, this list of
+      conditions and the following disclaimer.
+
+   2. 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.
+
+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.
+
+-----
+
+The following software may be included in this product: leaflet-geometryutil. A copy of the source code may be downloaded from https://github.com/makinacorpus/Leaflet.GeometryUtil.git. This software contains the following license and notice below:
+
+Copyright (c) 2013, Makina Corpus
+
+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 ODE 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 OWNER 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.
+
+-----
+
+The following software may be included in this product: leaflet.locatecontrol. A copy of the source code may be downloaded from git@github.com:domoritz/leaflet-locatecontrol.git. This software contains the following license and notice below:
+
+The MIT License (MIT)
+
+Copyright (c) 2014 Dominik Moritz
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: mapbox-gl. A copy of the source code may be downloaded from git://github.com/mapbox/mapbox-gl-js.git. This software contains the following license and notice below:
+
+Copyright (c) 2016, Mapbox
+
+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 Mapbox GL JS 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 OWNER 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.
+
+-------------------------------------------------------------------------------
+
+Contains Hershey Simplex Font: http://paulbourke.net/dataformats/hershey/
+
+-------------------------------------------------------------------------------
+
+Contains code from glfx.js
+
+Copyright (C) 2011 by Evan Wallace
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+--------------------------------------------------------------------------------
+
+Contains a portion of d3-color https://github.com/d3/d3-color
+
+Copyright 2010-2016 Mike Bostock
+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 author nor the names of 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 OWNER 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.
+
+-----
+
+The following software may be included in this product: material-design-icons. A copy of the source code may be downloaded from https://github.com/google/material-design-icons. This software contains the following license and notice below:
+
+Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
+-----
+
+The following software may be included in this product: minimist. A copy of the source code may be downloaded from git://github.com/substack/minimist.git. This software contains the following license and notice below:
+
+This software is released under the MIT license:
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: path-to-regexp. A copy of the source code may be downloaded from https://github.com/pillarjs/path-to-regexp.git. This software contains the following license and notice below:
+
+The MIT License (MIT)
+
+Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: pbf. A copy of the source code may be downloaded from git@github.com:mapbox/pbf.git. This software contains the following license and notice below:
+
+Copyright (c) 2017, Mapbox
+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 pbf 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.
+
+-----
+
+The following software may be included in this product: potpack. A copy of the source code may be downloaded from git+https://github.com/mapbox/potpack.git. This software contains the following license and notice below:
+
+ISC License
+
+Copyright (c) 2018, Mapbox
+
+Permission to use, copy, modify, and/or distribute this software for any purpose
+with or without fee is hereby granted, provided that the above copyright notice
+and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
+REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
+INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
+OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
+THIS SOFTWARE.
+
+-----
+
+The following software may be included in this product: process-nextick-args. A copy of the source code may be downloaded from https://github.com/calvinmetcalf/process-nextick-args.git. This software contains the following license and notice below:
+
+# Copyright (c) 2015 Calvin Metcalf
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+**THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.**
+
+-----
+
+The following software may be included in this product: protocol-buffers-schema. A copy of the source code may be downloaded from https://github.com/mafintosh/protocol-buffers-schema. This software contains the following license and notice below:
+
+The MIT License (MIT)
+
+Copyright (c) 2014 Mathias Buus
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: readable-stream. A copy of the source code may be downloaded from git://github.com/nodejs/readable-stream. This software contains the following license and notice below:
+
+Node.js is licensed for use as follows:
+
+"""
+Copyright Node.js contributors. All rights reserved.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to
+deal in the Software without restriction, including without limitation the
+rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+sell copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+IN THE SOFTWARE.
+"""
+
+This license applies to parts of Node.js originating from the
+https://github.com/joyent/node repository:
+
+"""
+Copyright Joyent, Inc. and other Node contributors. All rights reserved.
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to
+deal in the Software without restriction, including without limitation the
+rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+sell copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+IN THE SOFTWARE.
+"""
+
+-----
+
+The following software may be included in this product: resolve-protobuf-schema. A copy of the source code may be downloaded from https://github.com/mafintosh/resolve-protobuf-schema.git. This software contains the following license and notice below:
+
+The MIT License (MIT)
+
+Copyright (c) 2014 Mathias Buus
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: rw. A copy of the source code may be downloaded from http://github.com/mbostock/rw.git. This software contains the following license and notice below:
+
+Copyright (c) 2014-2016, Michael Bostock
+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.
+
+* The name Michael Bostock may not 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 MICHAEL BOSTOCK 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.
+
+-----
+
+The following software may be included in this product: safe-buffer. A copy of the source code may be downloaded from git://github.com/feross/safe-buffer.git. This software contains the following license and notice below:
+
+The MIT License (MIT)
+
+Copyright (c) Feross Aboukhadijeh
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: ssr-window. A copy of the source code may be downloaded from git+https://github.com/nolimits4web/ssr-window.git. This software contains the following license and notice below:
+
+MIT License
+
+Copyright (c) 2018 Vladimir Kharlampidi
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+-----
+
+The following software may be included in this product: string_decoder. A copy of the source code may be downloaded from git://github.com/nodejs/string_decoder.git. This software contains the following license and notice below:
+
+Node.js is licensed for use as follows:
+
+"""
+Copyright Node.js contributors. All rights reserved.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to
+deal in the Software without restriction, including without limitation the
+rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+sell copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+IN THE SOFTWARE.
+"""
+
+This license applies to parts of Node.js originating from the
+https://github.com/joyent/node repository:
+
+"""
+Copyright Joyent, Inc. and other Node contributors. All rights reserved.
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to
+deal in the Software without restriction, including without limitation the
+rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+sell copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+IN THE SOFTWARE.
+"""
+
+-----
+
+The following software may be included in this product: template7. A copy of the source code may be downloaded from https://github.com/nolimits4web/template7.git. This software contains the following license and notice below:
+
+The MIT License (MIT)
+
+Copyright (c) 2014 Vladimir Kharlampidi
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+-----
+
+The following software may be included in this product: text-encoding. A copy of the source code may be downloaded from https://github.com/inexorabletash/text-encoding.git. This software contains the following license and notice below:
+
+The encoding indexes, algorithms, and many comments in the code
+derive from the Encoding Standard https://encoding.spec.whatwg.org/
+
+Otherwise, the code of this repository is released under the Unlicense
+license and is also dual-licensed under an Apache 2.0 license. Both
+are included below.
+
+# Unlicense
+
+This is free and unencumbered software released into the public domain.
+
+Anyone is free to copy, modify, publish, use, compile, sell, or
+distribute this software, either in source code form or as a compiled
+binary, for any purpose, commercial or non-commercial, and by any
+means.
+
+In jurisdictions that recognize copyright laws, the author or authors
+of this software dedicate any and all copyright interest in the
+software to the public domain. We make this dedication for the benefit
+of the public at large and to the detriment of our heirs and
+successors. We intend this dedication to be an overt act of
+relinquishment in perpetuity of all present and future rights to this
+software under copyright law.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
+OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
+ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
+
+For more information, please refer to 
+
+# Apache 2.0 License
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
+-----
+
+The following software may be included in this product: through. A copy of the source code may be downloaded from https://github.com/dominictarr/through.git. This software contains the following license and notice below:
+
+Apache License, Version 2.0
+
+Copyright (c) 2011 Dominic Tarr
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+
+-----
+
+The following software may be included in this product: tinyqueue. A copy of the source code may be downloaded from https://github.com/mourner/tinyqueue.git. This software contains the following license and notice below:
+
+ISC License
+
+Copyright (c) 2017, Vladimir Agafonkin
+
+Permission to use, copy, modify, and/or distribute this software for any purpose
+with or without fee is hereby granted, provided that the above copyright notice
+and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
+REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
+INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
+OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
+THIS SOFTWARE.
+
+-----
+
+The following software may be included in this product: ts-custom-error. A copy of the source code may be downloaded from https://github.com/adriengibrat/ts-custom-error.git. This software contains the following license and notice below:
+
+The MIT License
+
+Copyright (c) 2019 Adrien Gibrat https://github.com/adriengibrat
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: typedarray. A copy of the source code may be downloaded from git://github.com/substack/typedarray.git. This software contains the following license and notice below:
+
+/*
+ Copyright (c) 2010, Linden Research, Inc.
+ Copyright (c) 2012, Joshua Bell
+
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+ $/LicenseInfo$
+ */
+
+// Original can be found at:
+//   https://bitbucket.org/lindenlab/llsd
+// Modifications by Joshua Bell inexorabletash@gmail.com
+//   https://github.com/inexorabletash/polyfill
+
+// ES3/ES5 implementation of the Krhonos Typed Array Specification
+//   Ref: http://www.khronos.org/registry/typedarray/specs/latest/
+//   Date: 2011-02-01
+//
+// Variations:
+//  * Allows typed_array.get/set() as alias for subscripts (typed_array[])
+
+-----
+
+The following software may be included in this product: util-deprecate. A copy of the source code may be downloaded from git://github.com/TooTallNate/util-deprecate.git. This software contains the following license and notice below:
+
+(The MIT License)
+
+Copyright (c) 2014 Nathan Rajlich 
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: vt-pbf. A copy of the source code may be downloaded from git+https://github.com/mapbox/vt-pbf.git. This software contains the following license and notice below:
+
+The MIT License (MIT)
+
+Copyright (c) 2015 Anand Thakker
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+--------------------------------------------------------------------------------
+
+Contains geojson_wrapper.js from https://github.com/mapbox/mapbox-gl-js
+
+Copyright (c) 2014, Mapbox
+
+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 Mapbox GL JS 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 OWNER 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.
+
+THE FOLLOWING SETS FORTH ATTRIBUTION NOTICES FOR THIRD PARTY SOFTWARE THAT MAY BE CONTAINED IN PORTIONS OF THE COM.NETSYMS.PACKAGEHELPER PRODUCT.
+
+-----
+
+The following software may be included in this product: abbrev. A copy of the source code may be downloaded from http://github.com/isaacs/abbrev-js. This software contains the following license and notice below:
+
+This software is dual-licensed under the ISC and MIT licenses.
+You may use this software under EITHER of the following licenses.
+
+----------
+
+The ISC License
+
+Copyright (c) Isaac Z. Schlueter and Contributors
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
+IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+----------
+
+Copyright Isaac Z. Schlueter and Contributors
+All rights reserved.
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: accepts, mime-types. A copy of the source code may be downloaded from https://github.com/jshttp/accepts.git (accepts), https://github.com/jshttp/mime-types.git (mime-types). This software contains the following license and notice below:
+
+(The MIT License)
+
+Copyright (c) 2014 Jonathan Ong 
+Copyright (c) 2015 Douglas Christopher Wilson 
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+'Software'), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: ansi. A copy of the source code may be downloaded from git://github.com/TooTallNate/ansi.js.git. This software contains the following license and notice below:
+
+(The MIT License)
+
+Copyright (c) 2012 Nathan Rajlich 
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: ansi-styles, chalk, has-flag, opn, supports-color. A copy of the source code may be downloaded from https://github.com/chalk/ansi-styles.git (ansi-styles), https://github.com/chalk/chalk.git (chalk), https://github.com/sindresorhus/has-flag.git (has-flag), https://github.com/sindresorhus/opn.git (opn), https://github.com/chalk/supports-color.git (supports-color). This software contains the following license and notice below:
+
+MIT License
+
+Copyright (c) Sindre Sorhus  (sindresorhus.com)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: array-flatten, path-to-regexp. A copy of the source code may be downloaded from git://github.com/blakeembrey/array-flatten.git (array-flatten), https://github.com/component/path-to-regexp.git (path-to-regexp). This software contains the following license and notice below:
+
+The MIT License (MIT)
+
+Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: balanced-match. A copy of the source code may be downloaded from git://github.com/juliangruber/balanced-match.git. This software contains the following license and notice below:
+
+(MIT)
+
+Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
+of the Software, and to permit persons to whom the Software is furnished to do
+so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+-----
+
+The following software may be included in this product: base64-js. A copy of the source code may be downloaded from git://github.com/beatgammit/base64-js.git. This software contains the following license and notice below:
+
+The MIT License (MIT)
+
+Copyright (c) 2014 Jameson Little
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: big-integer. A copy of the source code may be downloaded from git@github.com:peterolson/BigInteger.js.git. This software contains the following license and notice below:
+
+This is free and unencumbered software released into the public domain.
+
+Anyone is free to copy, modify, publish, use, compile, sell, or
+distribute this software, either in source code form or as a compiled
+binary, for any purpose, commercial or non-commercial, and by any
+means.
+
+In jurisdictions that recognize copyright laws, the author or authors
+of this software dedicate any and all copyright interest in the
+software to the public domain. We make this dedication for the benefit
+of the public at large and to the detriment of our heirs and
+successors. We intend this dedication to be an overt act of
+relinquishment in perpetuity of all present and future rights to this
+software under copyright law.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
+OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
+ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
+
+For more information, please refer to 
+
+-----
+
+The following software may be included in this product: body-parser, compression, type-is. A copy of the source code may be downloaded from https://github.com/expressjs/body-parser.git (body-parser), https://github.com/expressjs/compression.git (compression), https://github.com/jshttp/type-is.git (type-is). This software contains the following license and notice below:
+
+(The MIT License)
+
+Copyright (c) 2014 Jonathan Ong 
+Copyright (c) 2014-2015 Douglas Christopher Wilson 
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+'Software'), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: brace-expansion. A copy of the source code may be downloaded from git://github.com/juliangruber/brace-expansion.git. This software contains the following license and notice below:
+
+MIT License
+
+Copyright (c) 2013 Julian Gruber 
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+-----
+
+The following software may be included in this product: bytes. A copy of the source code may be downloaded from https://github.com/visionmedia/bytes.js.git. This software contains the following license and notice below:
+
+(The MIT License)
+
+Copyright (c) 2012-2014 TJ Holowaychuk 
+Copyright (c) 2015 Jed Watson 
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+'Software'), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: color-convert. A copy of the source code may be downloaded from https://github.com/Qix-/color-convert.git. This software contains the following license and notice below:
+
+Copyright (c) 2011-2016 Heather Arthur 
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: color-name. A copy of the source code may be downloaded from git@github.com:dfcreative/color-name.git. This software contains the following license and notice below:
+
+The MIT License (MIT)
+Copyright (c) 2015 Dmitry Ivanov
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: compressible. A copy of the source code may be downloaded from https://github.com/jshttp/compressible.git. This software contains the following license and notice below:
+
+(The MIT License)
+
+Copyright (c) 2013 Jonathan Ong 
+Copyright (c) 2014 Jeremiah Senkpiel 
+Copyright (c) 2015 Douglas Christopher Wilson 
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+'Software'), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: concat-map. A copy of the source code may be downloaded from git://github.com/substack/node-concat-map.git. This software contains the following license and notice below:
+
+This software is released under the MIT license:
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: content-disposition, depd, forwarded, vary. A copy of the source code may be downloaded from https://github.com/jshttp/content-disposition.git (content-disposition), https://github.com/dougwilson/nodejs-depd.git (depd), https://github.com/jshttp/forwarded.git (forwarded), https://github.com/jshttp/vary.git (vary). This software contains the following license and notice below:
+
+(The MIT License)
+
+Copyright (c) 2014-2017 Douglas Christopher Wilson
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+'Software'), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: content-type. A copy of the source code may be downloaded from https://github.com/jshttp/content-type.git. This software contains the following license and notice below:
+
+(The MIT License)
+
+Copyright (c) 2015 Douglas Christopher Wilson
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+'Software'), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: cookie. A copy of the source code may be downloaded from https://github.com/jshttp/cookie.git. This software contains the following license and notice below:
+
+(The MIT License)
+
+Copyright (c) 2012-2014 Roman Shtylman 
+Copyright (c) 2015 Douglas Christopher Wilson 
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+'Software'), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: cordova-android. A copy of the source code may be downloaded from https://github.com/apache/cordova-android. This software contains the following license and notice below:
+
+Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright 2015 Apache Cordova
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
+ ADDITIONAL LICENSES:
+
+================================================================================
+bin/node_modules/q
+================================================================================
+
+Copyright 2009–2012 Kristopher Michael Kowal. All rights reserved.
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to
+deal in the Software without restriction, including without limitation the
+rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+sell copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+IN THE SOFTWARE.
+
+================================================================================
+bin/node_modules/shelljs
+================================================================================
+Copyright (c) 2012, Artur Adib 
+All rights reserved.
+
+You may use this project under the terms of the New BSD license as follows:
+
+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 Artur Adib nor the
+      names of the 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 ARTUR ADIB 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.
+
+================================================================================
+bin/node_modules/nopt
+================================================================================
+Copyright 2009, 2010, 2011 Isaac Z. Schlueter.
+All rights reserved.
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
+
+================================================================================
+bin/node_modules/which
+================================================================================
+
+Copyright 2009, 2010, 2011 Isaac Z. Schlueter.
+All rights reserved.
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
+
+
+
+
+NOTICE
+
+Apache Cordova
+Copyright 2015 The Apache Software Foundation
+
+This product includes software developed at
+The Apache Software Foundation (http://www.apache.org)
+
+=========================================================================
+==  NOTICE file corresponding to the section 4 d of                    ==
+==  the Apache License, Version 2.0,                                   ==
+==  in this case for the Android-specific code.                        ==
+=========================================================================
+
+This product includes software developed as part of
+The Android Open Source Project (http://source.android.com).
+
+-----
+
+The following software may be included in this product: cordova-browser. A copy of the source code may be downloaded from https://github.com/apache/cordova-browser. This software contains the following license and notice below:
+
+Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
+ ADDITIONAL LICENSES:
+
+================================================================================
+node_modules/adm-zip
+================================================================================
+
+Copyright (c) 2012 Another-D-Mention Software and other contributors,
+http://www.another-d-mention.ro/
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+================================================================================
+node_modules/shelljs
+================================================================================
+
+Copyright (c) 2012, Artur Adib 
+All rights reserved.
+
+You may use this project under the terms of the New BSD license as follows:
+
+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 Artur Adib nor the
+      names of the 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 ARTUR ADIB 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.
+
+================================================================================
+node_modules/nopt
+================================================================================
+
+Copyright 2009, 2010, 2011 Isaac Z. Schlueter.
+All rights reserved.
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
+
+================================================================================
+node_modules/nopt/node_modules/abbrev
+================================================================================
+
+Copyright 2009, 2010, 2011 Isaac Z. Schlueter.
+All rights reserved.
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
+
+
+NOTICE
+
+Apache Cordova
+Copyright 2012-2015 The Apache Software Foundation
+
+This product includes software developed at
+The Apache Software Foundation (http://www.apache.org/).
+
+-----
+
+The following software may be included in this product: cordova-plugin-battery-status, cordova-plugin-device, cordova-plugin-inappbrowser, cordova-plugin-statusbar, cordova-plugin-whitelist. A copy of the source code may be downloaded from https://github.com/apache/cordova-plugin-battery-status (cordova-plugin-battery-status), https://github.com/apache/cordova-plugin-device (cordova-plugin-device), https://github.com/apache/cordova-plugin-inappbrowser (cordova-plugin-inappbrowser), https://github.com/apache/cordova-plugin-statusbar (cordova-plugin-statusbar), https://github.com/apache/cordova-plugin-whitelist (cordova-plugin-whitelist). This software contains the following license and notice below:
+
+Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
+NOTICE
+
+Apache Cordova
+Copyright 2012 The Apache Software Foundation
+
+This product includes software developed at
+The Apache Software Foundation (http://www.apache.org/).
+
+-----
+
+The following software may be included in this product: cordova-plugin-powermanagement-netsyms. A copy of the source code may be downloaded from git+https://source.netsyms.com/Netsyms/cordova-plugin-powermanagement.git. This software contains the following license and notice below:
+
+Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
+-----
+
+The following software may be included in this product: cordova-serve. A copy of the source code may be downloaded from https://github.com/apache/cordova-serve. This software contains the following license and notice below:
+
+Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
+NOTICE
+
+Apache Cordova
+Copyright 2017 The Apache Software Foundation
+
+This product includes software developed at
+The Apache Software Foundation (http://www.apache.org/).
+
+-----
+
+The following software may be included in this product: cross-spawn. A copy of the source code may be downloaded from git@github.com:moxystudio/node-cross-spawn.git. This software contains the following license and notice below:
+
+The MIT License (MIT)
+
+Copyright (c) 2018 Made With MOXY Lda 
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: debug. A copy of the source code may be downloaded from git://github.com/visionmedia/debug.git. This software contains the following license and notice below:
+
+(The MIT License)
+
+Copyright (c) 2014 TJ Holowaychuk 
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software 
+and associated documentation files (the 'Software'), to deal in the Software without restriction, 
+including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, 
+and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial 
+portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT 
+LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: dedent. A copy of the source code may be downloaded from git://github.com/dmnd/dedent.git. This software contains the following license and notice below:
+
+The MIT License (MIT)
+
+Copyright (c) 2015 Desmond Brand (dmnd@desmondbrand.com)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: destroy, ee-first, mime-db. A copy of the source code may be downloaded from https://github.com/stream-utils/destroy.git (destroy), https://github.com/jonathanong/ee-first.git (ee-first), https://github.com/jshttp/mime-db.git (mime-db). This software contains the following license and notice below:
+
+The MIT License (MIT)
+
+Copyright (c) 2014 Jonathan Ong me@jongleberry.com
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: dot-prop, escape-string-regexp, is-obj, is-wsl, os-homedir, os-tmpdir, path-is-absolute, path-key, shebang-regex, strip-bom. A copy of the source code may be downloaded from https://github.com/sindresorhus/dot-prop.git (dot-prop), https://github.com/sindresorhus/escape-string-regexp.git (escape-string-regexp), https://github.com/sindresorhus/is-obj.git (is-obj), https://github.com/sindresorhus/is-wsl.git (is-wsl), https://github.com/sindresorhus/os-homedir.git (os-homedir), https://github.com/sindresorhus/os-tmpdir.git (os-tmpdir), https://github.com/sindresorhus/path-is-absolute.git (path-is-absolute), https://github.com/sindresorhus/path-key.git (path-key), https://github.com/sindresorhus/shebang-regex.git (shebang-regex), https://github.com/sindresorhus/strip-bom.git (strip-bom). This software contains the following license and notice below:
+
+The MIT License (MIT)
+
+Copyright (c) Sindre Sorhus  (sindresorhus.com)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: elementtree. A copy of the source code may be downloaded from git://github.com/racker/node-elementtree.git. This software contains the following license and notice below:
+
+Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
+
+
+NOTICE
+
+node-elementtree
+Copyright (c) 2011, Rackspace, Inc.
+
+The ElementTree toolkit is Copyright (c) 1999-2007 by Fredrik Lundh
+
+-----
+
+The following software may be included in this product: encodeurl. A copy of the source code may be downloaded from https://github.com/pillarjs/encodeurl.git. This software contains the following license and notice below:
+
+(The MIT License)
+
+Copyright (c) 2016 Douglas Christopher Wilson
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+'Software'), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: endent, objectorarray. A copy of the source code may be downloaded from git://github.com/ZhouHansen/endent.git (endent), git+https://github.com/ZhouHansen/objectnotnull.git (objectorarray). This software contains the following license and notice below:
+
+The MIT License (MIT)
+
+Copyright (c) 2017 Zhou Hancheng (z308114274@gmail.com)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: escape-html. A copy of the source code may be downloaded from https://github.com/component/escape-html.git. This software contains the following license and notice below:
+
+(The MIT License)
+
+Copyright (c) 2012-2013 TJ Holowaychuk
+Copyright (c) 2015 Andreas Lubbe
+Copyright (c) 2015 Tiancheng "Timothy" Gu
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+'Software'), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: etag, proxy-addr. A copy of the source code may be downloaded from https://github.com/jshttp/etag.git (etag), https://github.com/jshttp/proxy-addr.git (proxy-addr). This software contains the following license and notice below:
+
+(The MIT License)
+
+Copyright (c) 2014-2016 Douglas Christopher Wilson
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+'Software'), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: express. A copy of the source code may be downloaded from https://github.com/expressjs/express.git. This software contains the following license and notice below:
+
+(The MIT License)
+
+Copyright (c) 2009-2014 TJ Holowaychuk 
+Copyright (c) 2013-2014 Roman Shtylman 
+Copyright (c) 2014-2015 Douglas Christopher Wilson 
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+'Software'), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: fast-json-parse. A copy of the source code may be downloaded from git+https://github.com/mcollina/fast-json-parse.git. This software contains the following license and notice below:
+
+The MIT License (MIT)
+
+Copyright (c) 2016 Matteo Collina
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+-----
+
+The following software may be included in this product: finalhandler. A copy of the source code may be downloaded from https://github.com/pillarjs/finalhandler.git. This software contains the following license and notice below:
+
+(The MIT License)
+
+Copyright (c) 2014-2017 Douglas Christopher Wilson 
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+'Software'), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: fresh. A copy of the source code may be downloaded from https://github.com/jshttp/fresh.git. This software contains the following license and notice below:
+
+(The MIT License)
+
+Copyright (c) 2012 TJ Holowaychuk 
+Copyright (c) 2016-2017 Douglas Christopher Wilson 
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+'Software'), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: fs-extra. A copy of the source code may be downloaded from https://github.com/jprichardson/node-fs-extra. This software contains the following license and notice below:
+
+(The MIT License)
+
+Copyright (c) 2011-2017 JP Richardson
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files
+(the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify,
+ merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
+WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
+OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: fs.realpath. A copy of the source code may be downloaded from git+https://github.com/isaacs/fs.realpath.git. This software contains the following license and notice below:
+
+The ISC License
+
+Copyright (c) Isaac Z. Schlueter and Contributors
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
+IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+----
+
+This library bundles a version of the `fs.realpath` and `fs.realpathSync`
+methods from Node.js v0.10 under the terms of the Node.js MIT license.
+
+Node's license follows, also included at the header of `old.js` which contains
+the licensed code:
+
+  Copyright Joyent, Inc. and other Node contributors.
+
+  Permission is hereby granted, free of charge, to any person obtaining a
+  copy of this software and associated documentation files (the "Software"),
+  to deal in the Software without restriction, including without limitation
+  the rights to use, copy, modify, merge, publish, distribute, sublicense,
+  and/or sell copies of the Software, and to permit persons to whom the
+  Software is furnished to do so, subject to the following conditions:
+
+  The above copyright notice and this permission notice shall be included in
+  all copies or substantial portions of the Software.
+
+  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+  DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: glob. A copy of the source code may be downloaded from git://github.com/isaacs/node-glob.git. This software contains the following license and notice below:
+
+The ISC License
+
+Copyright (c) Isaac Z. Schlueter and Contributors
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
+IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+## Glob Logo
+
+Glob's logo created by Tanya Brassie , licensed
+under a Creative Commons Attribution-ShareAlike 4.0 International License
+https://creativecommons.org/licenses/by-sa/4.0/
+
+-----
+
+The following software may be included in this product: graceful-fs. A copy of the source code may be downloaded from https://github.com/isaacs/node-graceful-fs. This software contains the following license and notice below:
+
+The ISC License
+
+Copyright (c) Isaac Z. Schlueter, Ben Noordhuis, and Contributors
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
+IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+-----
+
+The following software may be included in this product: http-errors. A copy of the source code may be downloaded from https://github.com/jshttp/http-errors.git. This software contains the following license and notice below:
+
+The MIT License (MIT)
+
+Copyright (c) 2014 Jonathan Ong me@jongleberry.com
+Copyright (c) 2016 Douglas Christopher Wilson doug@somethingdoug.com
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: iconv-lite. A copy of the source code may be downloaded from git://github.com/ashtuchkin/iconv-lite.git. This software contains the following license and notice below:
+
+Copyright (c) 2011 Alexander Shtuchkin
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: inflight. A copy of the source code may be downloaded from https://github.com/npm/inflight.git. This software contains the following license and notice below:
+
+The ISC License
+
+Copyright (c) Isaac Z. Schlueter
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
+IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+-----
+
+The following software may be included in this product: inherits. A copy of the source code may be downloaded from git://github.com/isaacs/inherits. This software contains the following license and notice below:
+
+The ISC License
+
+Copyright (c) Isaac Z. Schlueter
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
+REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
+INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
+LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
+OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+PERFORMANCE OF THIS SOFTWARE.
+
+-----
+
+The following software may be included in this product: ipaddr.js. A copy of the source code may be downloaded from git://github.com/whitequark/ipaddr.js. This software contains the following license and notice below:
+
+Copyright (C) 2011-2017 whitequark 
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: isexe, minimatch, nopt, once, osenv, semver, which, wrappy. A copy of the source code may be downloaded from git+https://github.com/isaacs/isexe.git (isexe), git://github.com/isaacs/minimatch.git (minimatch), https://github.com/npm/nopt.git (nopt), git://github.com/isaacs/once (once), https://github.com/npm/osenv (osenv), https://github.com/npm/node-semver (semver), git://github.com/isaacs/node-which.git (which), https://github.com/npm/wrappy (wrappy). This software contains the following license and notice below:
+
+The ISC License
+
+Copyright (c) Isaac Z. Schlueter and Contributors
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
+IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+-----
+
+The following software may be included in this product: jsonfile. A copy of the source code may be downloaded from git@github.com:jprichardson/node-jsonfile.git. This software contains the following license and notice below:
+
+(The MIT License)
+
+Copyright (c) 2012-2015, JP Richardson 
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files
+(the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify,
+ merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
+WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
+OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: media-typer, on-headers. A copy of the source code may be downloaded from https://github.com/jshttp/media-typer.git (media-typer), https://github.com/jshttp/on-headers.git (on-headers). This software contains the following license and notice below:
+
+(The MIT License)
+
+Copyright (c) 2014 Douglas Christopher Wilson
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+'Software'), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: merge-descriptors. A copy of the source code may be downloaded from https://github.com/component/merge-descriptors.git. This software contains the following license and notice below:
+
+(The MIT License)
+
+Copyright (c) 2013 Jonathan Ong 
+Copyright (c) 2015 Douglas Christopher Wilson 
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+'Software'), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: methods. A copy of the source code may be downloaded from https://github.com/jshttp/methods.git. This software contains the following license and notice below:
+
+(The MIT License)
+
+Copyright (c) 2013-2014 TJ Holowaychuk 
+Copyright (c) 2015-2016 Douglas Christopher Wilson 
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+'Software'), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: mime. A copy of the source code may be downloaded from https://github.com/broofa/node-mime. This software contains the following license and notice below:
+
+The MIT License (MIT)
+
+Copyright (c) 2010 Benjamin Thomas, Robert Kieffer
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: ms. A copy of the source code may be downloaded from https://github.com/zeit/ms.git. This software contains the following license and notice below:
+
+The MIT License (MIT)
+
+Copyright (c) 2016 Zeit, Inc.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+-----
+
+The following software may be included in this product: negotiator. A copy of the source code may be downloaded from https://github.com/jshttp/negotiator.git. This software contains the following license and notice below:
+
+(The MIT License)
+
+Copyright (c) 2012-2014 Federico Romero
+Copyright (c) 2012-2014 Isaac Z. Schlueter
+Copyright (c) 2014-2015 Douglas Christopher Wilson
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+'Software'), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: nice-try. A copy of the source code may be downloaded from https://github.com/electerious/nice-try.git. This software contains the following license and notice below:
+
+The MIT License (MIT)
+
+Copyright (c) 2018 Tobias Reich
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: on-finished. A copy of the source code may be downloaded from https://github.com/jshttp/on-finished.git. This software contains the following license and notice below:
+
+(The MIT License)
+
+Copyright (c) 2013 Jonathan Ong 
+Copyright (c) 2014 Douglas Christopher Wilson 
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+'Software'), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: parseurl. A copy of the source code may be downloaded from https://github.com/pillarjs/parseurl.git. This software contains the following license and notice below:
+
+(The MIT License)
+
+Copyright (c) 2014 Jonathan Ong 
+Copyright (c) 2014-2017 Douglas Christopher Wilson 
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+'Software'), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: plist. A copy of the source code may be downloaded from git://github.com/TooTallNate/node-plist.git. This software contains the following license and notice below:
+
+(The MIT License)
+
+Copyright (c) 2010-2017 Nathan Rajlich 
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: q. A copy of the source code may be downloaded from git://github.com/kriskowal/q.git. This software contains the following license and notice below:
+
+Copyright 2009–2017 Kristopher Michael Kowal. All rights reserved.
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to
+deal in the Software without restriction, including without limitation the
+rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+sell copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: qs. A copy of the source code may be downloaded from https://github.com/ljharb/qs.git. This software contains the following license and notice below:
+
+Copyright (c) 2014 Nathan LaFreniere and other contributors.
+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.
+    * The names of any contributors may not 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 HOLDERS AND 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.
+
+                                  *   *   *
+
+The complete list of contributors can be found at: https://github.com/hapijs/qs/graphs/contributors
+
+-----
+
+The following software may be included in this product: range-parser. A copy of the source code may be downloaded from https://github.com/jshttp/range-parser.git. This software contains the following license and notice below:
+
+(The MIT License)
+
+Copyright (c) 2012-2014 TJ Holowaychuk 
+Copyright (c) 2015-2016 Douglas Christopher Wilson 
+Copyright (c) 2014-2015 Douglas Christopher Wilson 
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: safe-buffer. A copy of the source code may be downloaded from git://github.com/feross/safe-buffer.git. This software contains the following license and notice below:
+
+The MIT License (MIT)
+
+Copyright (c) Feross Aboukhadijeh
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: safer-buffer. A copy of the source code may be downloaded from git+https://github.com/ChALkeR/safer-buffer.git. This software contains the following license and notice below:
+
+MIT License
+
+Copyright (c) 2018 Nikita Skovoroda 
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+-----
+
+The following software may be included in this product: sax. A copy of the source code may be downloaded from git://github.com/isaacs/sax-js.git. This software contains the following license and notice below:
+
+The ISC License
+
+Copyright (c) Isaac Z. Schlueter and Contributors
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
+IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+====
+
+`String.fromCodePoint` by Mathias Bynens used according to terms of MIT
+License, as follows:
+
+    Copyright Mathias Bynens 
+
+    Permission is hereby granted, free of charge, to any person obtaining
+    a copy of this software and associated documentation files (the
+    "Software"), to deal in the Software without restriction, including
+    without limitation the rights to use, copy, modify, merge, publish,
+    distribute, sublicense, and/or sell copies of the Software, and to
+    permit persons to whom the Software is furnished to do so, subject to
+    the following conditions:
+
+    The above copyright notice and this permission notice shall be
+    included in all copies or substantial portions of the Software.
+
+    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: send. A copy of the source code may be downloaded from https://github.com/pillarjs/send.git. This software contains the following license and notice below:
+
+(The MIT License)
+
+Copyright (c) 2012 TJ Holowaychuk
+Copyright (c) 2014-2016 Douglas Christopher Wilson
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+'Software'), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: serve-static. A copy of the source code may be downloaded from https://github.com/expressjs/serve-static.git. This software contains the following license and notice below:
+
+(The MIT License)
+
+Copyright (c) 2010 Sencha Inc.
+Copyright (c) 2011 LearnBoost
+Copyright (c) 2011 TJ Holowaychuk
+Copyright (c) 2014-2016 Douglas Christopher Wilson
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+'Software'), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: setprototypeof. A copy of the source code may be downloaded from https://github.com/wesleytodd/setprototypeof.git. This software contains the following license and notice below:
+
+Copyright (c) 2015, Wes Todd
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
+SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
+OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
+CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+-----
+
+The following software may be included in this product: shebang-command. A copy of the source code may be downloaded from https://github.com/kevva/shebang-command.git. This software contains the following license and notice below:
+
+The MIT License (MIT)
+
+Copyright (c) Kevin Martensson  (github.com/kevva)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: shelljs. A copy of the source code may be downloaded from git://github.com/arturadib/shelljs.git. This software contains the following license and notice below:
+
+Copyright (c) 2012, Artur Adib 
+All rights reserved.
+
+You may use this project under the terms of the New BSD license as follows:
+
+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 Artur Adib nor the
+      names of the 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 ARTUR ADIB 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.
+
+-----
+
+The following software may be included in this product: statuses. A copy of the source code may be downloaded from https://github.com/jshttp/statuses.git. This software contains the following license and notice below:
+
+The MIT License (MIT)
+
+Copyright (c) 2014 Jonathan Ong 
+Copyright (c) 2016 Douglas Christopher Wilson 
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: toidentifier. A copy of the source code may be downloaded from https://github.com/component/toidentifier.git. This software contains the following license and notice below:
+
+MIT License
+
+Copyright (c) 2016 Douglas Christopher Wilson 
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+-----
+
+The following software may be included in this product: underscore. A copy of the source code may be downloaded from git://github.com/jashkenas/underscore.git. This software contains the following license and notice below:
+
+Copyright (c) 2009-2020 Jeremy Ashkenas, DocumentCloud and Investigative
+Reporters & Editors
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: universalify. A copy of the source code may be downloaded from git+https://github.com/RyanZim/universalify.git. This software contains the following license and notice below:
+
+(The MIT License)
+
+Copyright (c) 2017, Ryan Zimmerman 
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the 'Software'), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: unpipe. A copy of the source code may be downloaded from https://github.com/stream-utils/unpipe.git. This software contains the following license and notice below:
+
+(The MIT License)
+
+Copyright (c) 2015 Douglas Christopher Wilson 
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+'Software'), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: utils-merge. A copy of the source code may be downloaded from git://github.com/jaredhanson/utils-merge.git. This software contains the following license and notice below:
+
+The MIT License (MIT)
+
+Copyright (c) 2013-2017 Jared Hanson
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: xmlbuilder. A copy of the source code may be downloaded from git://github.com/oozcitak/xmlbuilder-js.git. This software contains the following license and notice below:
+
+The MIT License (MIT)
+
+Copyright (c) 2013 Ozgur Ozcitak
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+-----
+
+The following software may be included in this product: xmldom. A copy of the source code may be downloaded from git://github.com/xmldom/xmldom.git. This software contains the following license and notice below:
+
+You can choose any one of those:
+
+The MIT License (MIT):
+
+link:http://opensource.org/licenses/MIT
+
+LGPL:
+http://www.gnu.org/licenses/lgpl.html
+
+            
+
+ +
+ +