diff --git a/.browserslistrc b/.browserslistrc new file mode 100644 index 0000000..214388f --- /dev/null +++ b/.browserslistrc @@ -0,0 +1,3 @@ +> 1% +last 2 versions +not dead diff --git a/.gitignore b/.gitignore index 583ef0d..9a263c9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ node_modules bin +web/dist .pio \ No newline at end of file diff --git a/babel.config.js b/babel.config.js new file mode 100644 index 0000000..c5735a2 --- /dev/null +++ b/babel.config.js @@ -0,0 +1,5 @@ +module.exports = { + presets: [ + '@babel/preset-env' + ] +} diff --git a/devserver.js b/devserver.js index 1a97c24..ee113ae 100644 --- a/devserver.js +++ b/devserver.js @@ -13,7 +13,7 @@ app.use(bodyParser.json()); app.use(express.static('web')); app.use(express.static('web/dist')); -app.get('/api/status', function(req, res) +app.get('/api/status', (req, res) => { res.send({ systemID: 'dev-server', @@ -23,7 +23,7 @@ app.get('/api/status', function(req, res) }); }); -app.get('/api/connection', function(req, res) +app.get('/api/connection', (req, res) => { res.send({ hostname: 'dev-server', @@ -38,7 +38,7 @@ app.get('/api/connection', function(req, res) }); }); -app.get('/api/connection/status', function(req, res) +app.get('/api/connection/status', (req, res) => { res.send({ "ap": { @@ -53,12 +53,12 @@ app.get('/api/connection/status', function(req, res) }); }); -app.post('/api/connection', function(req, res) +app.post('/api/connection', (req, res) => { res.sendStatus(200); }); -app.post('/api/firmware', function(req, res) +app.post('/api/firmware', (req, res) => { res.sendStatus(200); }); @@ -73,12 +73,12 @@ var system = { ledCount: 60 }; -app.get('/api/system', function(req, res) +app.get('/api/system', (req, res) => { res.send(system); }); -app.post('/api/system', function(req, res) +app.post('/api/system', (req, res) => { var body = req.body; if (body) @@ -96,12 +96,18 @@ app.post('/api/system', function(req, res) -app.get('/api/stacktrace/get', function(req, res) +app.get('/api/stacktrace/get', (req, res) => { res.send("Nothing to see here, move along!"); }); -app.get('/api/stacktrace/delete', function(req, res) +app.get('/api/stacktrace/delete', (req, res) => +{ + res.sendStatus(200); +}); + + +app.get('/api/set/static', (req, res) => { res.sendStatus(200); }); diff --git a/gulpfile.js b/gulpfile.js index 2c39c79..112ff8a 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -19,6 +19,8 @@ const concat = require('gulp-concat'); const print = require('gulp-print'); const path = require('path'); const gzip = require('gulp-gzip'); +const webpack = require('webpack') +const webpackConfig = require('./webpack.build.js') const config = { @@ -31,6 +33,23 @@ const config = { }; +function runWebpack() +{ + return new Promise((resolve, reject) => + { + webpack(webpackConfig, (err, stats) => + { + if (err) + return reject(err); + + if (stats.hasErrors()) + return reject(new Error(stats.compilation.errors.join('\n'))); + + resolve() + }); + }); +} + const HTMLMap = { 'index.html': 'Index' }; @@ -39,10 +58,13 @@ const JSMap = { 'bundle.js': 'BundleJS' }; +/* const CSSMap = { 'bundle.css': 'BundleCSS' }; +*/ +/* // There is an issue in the AsyncWebServer where it's apparantly running // out of memory on simultaneous requests. We'll work around it by @@ -60,11 +82,10 @@ const JSSrc = [ const SCSSSrc = [ 'web/site.scss' ] +*/ - - -gulp.task('embedHTML', () => +function embedHTML() { return gulp.src(config.assetsPath + '*.html') .pipe(print(filepath => { return 'HTML: ' + filepath; })) @@ -81,9 +102,10 @@ gulp.task('embedHTML', () => byteArray: true })) .pipe(gulp.dest(config.outputPath)); -}); +} +/* gulp.task('compileScss', () => { return gulp.src(SCSSSrc) @@ -117,9 +139,10 @@ gulp.task('compileJS', () => .pipe(uglify()) .pipe(gulp.dest(config.distPath)); }); +*/ -gulp.task('embedJS', gulp.series('compileJS', () => +function embedJS() { return gulp.src([config.distPath + 'bundle.js']) .pipe(gzip({ append: false })) @@ -129,10 +152,11 @@ gulp.task('embedJS', gulp.series('compileJS', () => byteArray: true })) .pipe(gulp.dest(config.outputPath)); -})); +} -gulp.task('embedCSS', gulp.series('compileScss', () => +/* +function embedCSS() { return gulp.src([config.distPath + 'bundle.css']) .pipe(gzip({ append: false })) @@ -142,18 +166,8 @@ gulp.task('embedCSS', gulp.series('compileScss', () => byteArray: true })) .pipe(gulp.dest(config.outputPath)); -})); - - -gulp.task('watch', gulp.series( - 'compileScss', - 'compileJS', - () => - { - watch(config.assetsPath + '*.scss', () => { gulp.series('compileScss')(); }); - watch(config.assetsPath + '*.js', () => { gulp.series('compileJS')(); }); - } -)); +} +*/ @@ -198,7 +212,7 @@ function getVersion(callback) } -gulp.task('embedVersion', () => +function embedVersion() { return getVersion(version => { @@ -229,10 +243,7 @@ gulp.task('embedVersion', () => }); }) }); -}); - - -gulp.task('embedAssets', gulp.series('embedHTML', 'embedJS', 'embedCSS', 'embedVersion')); +} @@ -309,6 +320,23 @@ function platformio(target) }); } -gulp.task('upload', gulp.series('embedAssets', () => { return platformio('upload'); })); -gulp.task('build', gulp.series('embedAssets', () => { return platformio(false); })); -gulp.task('default', gulp.series('embedAssets')); + +function platformIOUpload() +{ + return platformio('upload'); +} + + +function platformIOBuild() +{ + return platformio(false); +} + + +const buildAndEmbedAssets = gulp.series(runWebpack, embedHTML, embedJS, embedVersion); + +module.exports = { + upload: gulp.series(buildAndEmbedAssets, platformIOUpload), + build: gulp.series(buildAndEmbedAssets, platformIOBuild), + default: gulp.series(buildAndEmbedAssets) +}; diff --git a/package-lock.json b/package-lock.json index 2b0a1a3..14e9468 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4,12 +4,1434 @@ "lockfileVersion": 1, "requires": true, "dependencies": { + "@babel/code-frame": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "dev": true, + "requires": { + "@babel/highlight": "^7.10.4" + } + }, + "@babel/compat-data": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.11.0.tgz", + "integrity": "sha512-TPSvJfv73ng0pfnEOh17bYMPQbI95+nGWc71Ss4vZdRBHTDqmM9Z8ZV4rYz8Ks7sfzc95n30k6ODIq5UGnXcYQ==", + "dev": true, + "requires": { + "browserslist": "^4.12.0", + "invariant": "^2.2.4", + "semver": "^5.5.0" + } + }, + "@babel/core": { + "version": "7.11.6", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.11.6.tgz", + "integrity": "sha512-Wpcv03AGnmkgm6uS6k8iwhIwTrcP0m17TL1n1sy7qD0qelDu4XNeW0dN0mHfa+Gei211yDaLoEe/VlbXQzM4Bg==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.11.6", + "@babel/helper-module-transforms": "^7.11.0", + "@babel/helpers": "^7.10.4", + "@babel/parser": "^7.11.5", + "@babel/template": "^7.10.4", + "@babel/traverse": "^7.11.5", + "@babel/types": "^7.11.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "debug": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz", + "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "json5": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz", + "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + } + } + }, + "@babel/generator": { + "version": "7.11.6", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.11.6.tgz", + "integrity": "sha512-DWtQ1PV3r+cLbySoHrwn9RWEgKMBLLma4OBQloPRyDYvc5msJM9kvTLo1YnlJd1P/ZuKbdli3ijr5q3FvAF3uA==", + "dev": true, + "requires": { + "@babel/types": "^7.11.5", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + } + }, + "@babel/helper-annotate-as-pure": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz", + "integrity": "sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==", + "dev": true, + "requires": { + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz", + "integrity": "sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg==", + "dev": true, + "requires": { + "@babel/helper-explode-assignable-expression": "^7.10.4", + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-compilation-targets": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.10.4.tgz", + "integrity": "sha512-a3rYhlsGV0UHNDvrtOXBg8/OpfV0OKTkxKPzIplS1zpx7CygDcWWxckxZeDd3gzPzC4kUT0A4nVFDK0wGMh4MQ==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.10.4", + "browserslist": "^4.12.0", + "invariant": "^2.2.4", + "levenary": "^1.1.1", + "semver": "^5.5.0" + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.10.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.5.tgz", + "integrity": "sha512-0nkdeijB7VlZoLT3r/mY3bUkw3T8WG/hNw+FATs/6+pG2039IJWjTYL0VTISqsNHMUTEnwbVnc89WIJX9Qed0A==", + "dev": true, + "requires": { + "@babel/helper-function-name": "^7.10.4", + "@babel/helper-member-expression-to-functions": "^7.10.5", + "@babel/helper-optimise-call-expression": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-replace-supers": "^7.10.4", + "@babel/helper-split-export-declaration": "^7.10.4" + } + }, + "@babel/helper-create-regexp-features-plugin": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.10.4.tgz", + "integrity": "sha512-2/hu58IEPKeoLF45DBwx3XFqsbCXmkdAay4spVr2x0jYgRxrSNp+ePwvSsy9g6YSaNDcKIQVPXk1Ov8S2edk2g==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.10.4", + "@babel/helper-regex": "^7.10.4", + "regexpu-core": "^4.7.0" + } + }, + "@babel/helper-define-map": { + "version": "7.10.5", + "resolved": "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz", + "integrity": "sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ==", + "dev": true, + "requires": { + "@babel/helper-function-name": "^7.10.4", + "@babel/types": "^7.10.5", + "lodash": "^4.17.19" + } + }, + "@babel/helper-explode-assignable-expression": { + "version": "7.11.4", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.11.4.tgz", + "integrity": "sha512-ux9hm3zR4WV1Y3xXxXkdG/0gxF9nvI0YVmKVhvK9AfMoaQkemL3sJpXw+Xbz65azo8qJiEz2XVDUpK3KYhH3ZQ==", + "dev": true, + "requires": { + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-function-name": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz", + "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==", + "dev": true, + "requires": { + "@babel/helper-get-function-arity": "^7.10.4", + "@babel/template": "^7.10.4", + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-get-function-arity": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz", + "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==", + "dev": true, + "requires": { + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz", + "integrity": "sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA==", + "dev": true, + "requires": { + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.11.0.tgz", + "integrity": "sha512-JbFlKHFntRV5qKw3YC0CvQnDZ4XMwgzzBbld7Ly4Mj4cbFy3KywcR8NtNctRToMWJOVvLINJv525Gd6wwVEx/Q==", + "dev": true, + "requires": { + "@babel/types": "^7.11.0" + } + }, + "@babel/helper-module-imports": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz", + "integrity": "sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw==", + "dev": true, + "requires": { + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-module-transforms": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.11.0.tgz", + "integrity": "sha512-02EVu8COMuTRO1TAzdMtpBPbe6aQ1w/8fePD2YgQmxZU4gpNWaL9gK3Jp7dxlkUlUCJOTaSeA+Hrm1BRQwqIhg==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.10.4", + "@babel/helper-replace-supers": "^7.10.4", + "@babel/helper-simple-access": "^7.10.4", + "@babel/helper-split-export-declaration": "^7.11.0", + "@babel/template": "^7.10.4", + "@babel/types": "^7.11.0", + "lodash": "^4.17.19" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz", + "integrity": "sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg==", + "dev": true, + "requires": { + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz", + "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==", + "dev": true + }, + "@babel/helper-regex": { + "version": "7.10.5", + "resolved": "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.10.5.tgz", + "integrity": "sha512-68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg==", + "dev": true, + "requires": { + "lodash": "^4.17.19" + } + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.11.4", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.11.4.tgz", + "integrity": "sha512-tR5vJ/vBa9wFy3m5LLv2faapJLnDFxNWff2SAYkSE4rLUdbp7CdObYFgI7wK4T/Mj4UzpjPwzR8Pzmr5m7MHGA==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.10.4", + "@babel/helper-wrap-function": "^7.10.4", + "@babel/template": "^7.10.4", + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-replace-supers": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz", + "integrity": "sha512-sPxZfFXocEymYTdVK1UNmFPBN+Hv5mJkLPsYWwGBxZAxaWfFu+xqp7b6qWD0yjNuNL2VKc6L5M18tOXUP7NU0A==", + "dev": true, + "requires": { + "@babel/helper-member-expression-to-functions": "^7.10.4", + "@babel/helper-optimise-call-expression": "^7.10.4", + "@babel/traverse": "^7.10.4", + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-simple-access": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.10.4.tgz", + "integrity": "sha512-0fMy72ej/VEvF8ULmX6yb5MtHG4uH4Dbd6I/aHDb/JVg0bbivwt9Wg+h3uMvX+QSFtwr5MeItvazbrc4jtRAXw==", + "dev": true, + "requires": { + "@babel/template": "^7.10.4", + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.11.0.tgz", + "integrity": "sha512-0XIdiQln4Elglgjbwo9wuJpL/K7AGCY26kmEt0+pRP0TAj4jjyNq1MjoRvikrTVqKcx4Gysxt4cXvVFXP/JO2Q==", + "dev": true, + "requires": { + "@babel/types": "^7.11.0" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz", + "integrity": "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==", + "dev": true, + "requires": { + "@babel/types": "^7.11.0" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", + "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", + "dev": true + }, + "@babel/helper-wrap-function": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.10.4.tgz", + "integrity": "sha512-6py45WvEF0MhiLrdxtRjKjufwLL1/ob2qDJgg5JgNdojBAZSAKnAjkyOCNug6n+OBl4VW76XjvgSFTdaMcW0Ug==", + "dev": true, + "requires": { + "@babel/helper-function-name": "^7.10.4", + "@babel/template": "^7.10.4", + "@babel/traverse": "^7.10.4", + "@babel/types": "^7.10.4" + } + }, + "@babel/helpers": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.10.4.tgz", + "integrity": "sha512-L2gX/XeUONeEbI78dXSrJzGdz4GQ+ZTA/aazfUsFaWjSe95kiCuOZ5HsXvkiw3iwF+mFHSRUfJU8t6YavocdXA==", + "dev": true, + "requires": { + "@babel/template": "^7.10.4", + "@babel/traverse": "^7.10.4", + "@babel/types": "^7.10.4" + } + }, + "@babel/highlight": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz", + "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.10.4", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "@babel/parser": { + "version": "7.11.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.11.5.tgz", + "integrity": "sha512-X9rD8qqm695vgmeaQ4fvz/o3+Wk4ZzQvSHkDBgpYKxpD4qTAUm88ZKtHkVqIOsYFFbIQ6wQYhC6q7pjqVK0E0Q==", + "dev": true + }, + "@babel/plugin-proposal-async-generator-functions": { + "version": "7.10.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.10.5.tgz", + "integrity": "sha512-cNMCVezQbrRGvXJwm9fu/1sJj9bHdGAgKodZdLqOQIpfoH3raqmRPBM17+lh7CzhiKRRBrGtZL9WcjxSoGYUSg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-remap-async-to-generator": "^7.10.4", + "@babel/plugin-syntax-async-generators": "^7.8.0" + } + }, + "@babel/plugin-proposal-class-properties": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.10.4.tgz", + "integrity": "sha512-vhwkEROxzcHGNu2mzUC0OFFNXdZ4M23ib8aRRcJSsW8BZK9pQMD7QB7csl97NBbgGZO7ZyHUyKDnxzOaP4IrCg==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-proposal-dynamic-import": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.10.4.tgz", + "integrity": "sha512-up6oID1LeidOOASNXgv/CFbgBqTuKJ0cJjz6An5tWD+NVBNlp3VNSBxv2ZdU7SYl3NxJC7agAQDApZusV6uFwQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-dynamic-import": "^7.8.0" + } + }, + "@babel/plugin-proposal-export-namespace-from": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.10.4.tgz", + "integrity": "sha512-aNdf0LY6/3WXkhh0Fdb6Zk9j1NMD8ovj3F6r0+3j837Pn1S1PdNtcwJ5EG9WkVPNHPxyJDaxMaAOVq4eki0qbg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + } + }, + "@babel/plugin-proposal-json-strings": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.10.4.tgz", + "integrity": "sha512-fCL7QF0Jo83uy1K0P2YXrfX11tj3lkpN7l4dMv9Y9VkowkhkQDwFHFd8IiwyK5MZjE8UpbgokkgtcReH88Abaw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.0" + } + }, + "@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.11.0.tgz", + "integrity": "sha512-/f8p4z+Auz0Uaf+i8Ekf1iM7wUNLcViFUGiPxKeXvxTSl63B875YPiVdUDdem7hREcI0E0kSpEhS8tF5RphK7Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + } + }, + "@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.4.tgz", + "integrity": "sha512-wq5n1M3ZUlHl9sqT2ok1T2/MTt6AXE0e1Lz4WzWBr95LsAZ5qDXe4KnFuauYyEyLiohvXFMdbsOTMyLZs91Zlw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0" + } + }, + "@babel/plugin-proposal-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.10.4.tgz", + "integrity": "sha512-73/G7QoRoeNkLZFxsoCCvlg4ezE4eM+57PnOqgaPOozd5myfj7p0muD1mRVJvbUWbOzD+q3No2bWbaKy+DJ8DA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + } + }, + "@babel/plugin-proposal-object-rest-spread": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.11.0.tgz", + "integrity": "sha512-wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.0", + "@babel/plugin-transform-parameters": "^7.10.4" + } + }, + "@babel/plugin-proposal-optional-catch-binding": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.10.4.tgz", + "integrity": "sha512-LflT6nPh+GK2MnFiKDyLiqSqVHkQnVf7hdoAvyTnnKj9xB3docGRsdPuxp6qqqW19ifK3xgc9U5/FwrSaCNX5g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.0" + } + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.11.0.tgz", + "integrity": "sha512-v9fZIu3Y8562RRwhm1BbMRxtqZNFmFA2EG+pT2diuU8PT3H6T/KXoZ54KgYisfOFZHV6PfvAiBIZ9Rcz+/JCxA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-skip-transparent-expression-wrappers": "^7.11.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.0" + } + }, + "@babel/plugin-proposal-private-methods": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.10.4.tgz", + "integrity": "sha512-wh5GJleuI8k3emgTg5KkJK6kHNsGEr0uBTDBuQUBJwckk9xs1ez79ioheEVVxMLyPscB0LfkbVHslQqIzWV6Bw==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-proposal-unicode-property-regex": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.10.4.tgz", + "integrity": "sha512-H+3fOgPnEXFL9zGYtKQe4IDOPKYlZdF1kqFDQRRb8PK4B8af1vAGK04tF5iQAAsui+mHNBQSAtd2/ndEDe9wuA==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.10.4.tgz", + "integrity": "sha512-GCSBF7iUle6rNugfURwNmCGG3Z/2+opxAMLs1nND4bhEG5PuxTIggDBoeYYSujAlLtsupzOHYJQgPS3pivwXIA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.3" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.10.4.tgz", + "integrity": "sha512-ni1brg4lXEmWyafKr0ccFWkJG0CeMt4WV1oyeBW6EFObF4oOHclbkj5cARxAPQyAQ2UTuplJyK4nfkXIMMFvsQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-arrow-functions": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.10.4.tgz", + "integrity": "sha512-9J/oD1jV0ZCBcgnoFWFq1vJd4msoKb/TCpGNFyyLt0zABdcvgK3aYikZ8HjzB14c26bc7E3Q1yugpwGy2aTPNA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-async-to-generator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.10.4.tgz", + "integrity": "sha512-F6nREOan7J5UXTLsDsZG3DXmZSVofr2tGNwfdrVwkDWHfQckbQXnXSPfD7iO+c/2HGqycwyLST3DnZ16n+cBJQ==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-remap-async-to-generator": "^7.10.4" + } + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.10.4.tgz", + "integrity": "sha512-WzXDarQXYYfjaV1szJvN3AD7rZgZzC1JtjJZ8dMHUyiK8mxPRahynp14zzNjU3VkPqPsO38CzxiWO1c9ARZ8JA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.11.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.11.1.tgz", + "integrity": "sha512-00dYeDE0EVEHuuM+26+0w/SCL0BH2Qy7LwHuI4Hi4MH5gkC8/AqMN5uWFJIsoXZrAphiMm1iXzBw6L2T+eA0ew==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-classes": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.10.4.tgz", + "integrity": "sha512-2oZ9qLjt161dn1ZE0Ms66xBncQH4In8Sqw1YWgBUZuGVJJS5c0OFZXL6dP2MRHrkU/eKhWg8CzFJhRQl50rQxA==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.10.4", + "@babel/helper-define-map": "^7.10.4", + "@babel/helper-function-name": "^7.10.4", + "@babel/helper-optimise-call-expression": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-replace-supers": "^7.10.4", + "@babel/helper-split-export-declaration": "^7.10.4", + "globals": "^11.1.0" + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.10.4.tgz", + "integrity": "sha512-JFwVDXcP/hM/TbyzGq3l/XWGut7p46Z3QvqFMXTfk6/09m7xZHJUN9xHfsv7vqqD4YnfI5ueYdSJtXqqBLyjBw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-destructuring": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.10.4.tgz", + "integrity": "sha512-+WmfvyfsyF603iPa6825mq6Qrb7uLjTOsa3XOFzlYcYDHSS4QmpOWOL0NNBY5qMbvrcf3tq0Cw+v4lxswOBpgA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.10.4.tgz", + "integrity": "sha512-ZEAVvUTCMlMFAbASYSVQoxIbHm2OkG2MseW6bV2JjIygOjdVv8tuxrCTzj1+Rynh7ODb8GivUy7dzEXzEhuPaA==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-duplicate-keys": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.10.4.tgz", + "integrity": "sha512-GL0/fJnmgMclHiBTTWXNlYjYsA7rDrtsazHG6mglaGSTh0KsrW04qml+Bbz9FL0LcJIRwBWL5ZqlNHKTkU3xAA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-exponentiation-operator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.10.4.tgz", + "integrity": "sha512-S5HgLVgkBcRdyQAHbKj+7KyuWx8C6t5oETmUuwz1pt3WTWJhsUV0WIIXuVvfXMxl/QQyHKlSCNNtaIamG8fysw==", + "dev": true, + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-for-of": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.10.4.tgz", + "integrity": "sha512-ItdQfAzu9AlEqmusA/65TqJ79eRcgGmpPPFvBnGILXZH975G0LNjP1yjHvGgfuCxqrPPueXOPe+FsvxmxKiHHQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-function-name": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.10.4.tgz", + "integrity": "sha512-OcDCq2y5+E0dVD5MagT5X+yTRbcvFjDI2ZVAottGH6tzqjx/LKpgkUepu3hp/u4tZBzxxpNGwLsAvGBvQ2mJzg==", + "dev": true, + "requires": { + "@babel/helper-function-name": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-literals": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.10.4.tgz", + "integrity": "sha512-Xd/dFSTEVuUWnyZiMu76/InZxLTYilOSr1UlHV+p115Z/Le2Fi1KXkJUYz0b42DfndostYlPub3m8ZTQlMaiqQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-member-expression-literals": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.10.4.tgz", + "integrity": "sha512-0bFOvPyAoTBhtcJLr9VcwZqKmSjFml1iVxvPL0ReomGU53CX53HsM4h2SzckNdkQcHox1bpAqzxBI1Y09LlBSw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-modules-amd": { + "version": "7.10.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.10.5.tgz", + "integrity": "sha512-elm5uruNio7CTLFItVC/rIzKLfQ17+fX7EVz5W0TMgIHFo1zY0Ozzx+lgwhL4plzl8OzVn6Qasx5DeEFyoNiRw==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.10.5", + "@babel/helper-plugin-utils": "^7.10.4", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.10.4.tgz", + "integrity": "sha512-Xj7Uq5o80HDLlW64rVfDBhao6OX89HKUmb+9vWYaLXBZOma4gA6tw4Ni1O5qVDoZWUV0fxMYA0aYzOawz0l+1w==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-simple-access": "^7.10.4", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-systemjs": { + "version": "7.10.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.10.5.tgz", + "integrity": "sha512-f4RLO/OL14/FP1AEbcsWMzpbUz6tssRaeQg11RH1BP/XnPpRoVwgeYViMFacnkaw4k4wjRSjn3ip1Uw9TaXuMw==", + "dev": true, + "requires": { + "@babel/helper-hoist-variables": "^7.10.4", + "@babel/helper-module-transforms": "^7.10.5", + "@babel/helper-plugin-utils": "^7.10.4", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-umd": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.10.4.tgz", + "integrity": "sha512-mohW5q3uAEt8T45YT7Qc5ws6mWgJAaL/8BfWD9Dodo1A3RKWli8wTS+WiQ/knF+tXlPirW/1/MqzzGfCExKECA==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.10.4.tgz", + "integrity": "sha512-V6LuOnD31kTkxQPhKiVYzYC/Jgdq53irJC/xBSmqcNcqFGV+PER4l6rU5SH2Vl7bH9mLDHcc0+l9HUOe4RNGKA==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.10.4" + } + }, + "@babel/plugin-transform-new-target": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.10.4.tgz", + "integrity": "sha512-YXwWUDAH/J6dlfwqlWsztI2Puz1NtUAubXhOPLQ5gjR/qmQ5U96DY4FQO8At33JN4XPBhrjB8I4eMmLROjjLjw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-object-super": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.10.4.tgz", + "integrity": "sha512-5iTw0JkdRdJvr7sY0vHqTpnruUpTea32JHmq/atIWqsnNussbRzjEDyWep8UNztt1B5IusBYg8Irb0bLbiEBCQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-replace-supers": "^7.10.4" + } + }, + "@babel/plugin-transform-parameters": { + "version": "7.10.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.5.tgz", + "integrity": "sha512-xPHwUj5RdFV8l1wuYiu5S9fqWGM2DrYc24TMvUiRrPVm+SM3XeqU9BcokQX/kEUe+p2RBwy+yoiR1w/Blq6ubw==", + "dev": true, + "requires": { + "@babel/helper-get-function-arity": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-property-literals": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.10.4.tgz", + "integrity": "sha512-ofsAcKiUxQ8TY4sScgsGeR2vJIsfrzqvFb9GvJ5UdXDzl+MyYCaBj/FGzXuv7qE0aJcjWMILny1epqelnFlz8g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-regenerator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.10.4.tgz", + "integrity": "sha512-3thAHwtor39A7C04XucbMg17RcZ3Qppfxr22wYzZNcVIkPHfpM9J0SO8zuCV6SZa265kxBJSrfKTvDCYqBFXGw==", + "dev": true, + "requires": { + "regenerator-transform": "^0.14.2" + } + }, + "@babel/plugin-transform-reserved-words": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.10.4.tgz", + "integrity": "sha512-hGsw1O6Rew1fkFbDImZIEqA8GoidwTAilwCyWqLBM9f+e/u/sQMQu7uX6dyokfOayRuuVfKOW4O7HvaBWM+JlQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.10.4.tgz", + "integrity": "sha512-AC2K/t7o07KeTIxMoHneyX90v3zkm5cjHJEokrPEAGEy3UCp8sLKfnfOIGdZ194fyN4wfX/zZUWT9trJZ0qc+Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-spread": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.11.0.tgz", + "integrity": "sha512-UwQYGOqIdQJe4aWNyS7noqAnN2VbaczPLiEtln+zPowRNlD+79w3oi2TWfYe0eZgd+gjZCbsydN7lzWysDt+gw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-skip-transparent-expression-wrappers": "^7.11.0" + } + }, + "@babel/plugin-transform-sticky-regex": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.10.4.tgz", + "integrity": "sha512-Ddy3QZfIbEV0VYcVtFDCjeE4xwVTJWTmUtorAJkn6u/92Z/nWJNV+mILyqHKrUxXYKA2EoCilgoPePymKL4DvQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-regex": "^7.10.4" + } + }, + "@babel/plugin-transform-template-literals": { + "version": "7.10.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.5.tgz", + "integrity": "sha512-V/lnPGIb+KT12OQikDvgSuesRX14ck5FfJXt6+tXhdkJ+Vsd0lDCVtF6jcB4rNClYFzaB2jusZ+lNISDk2mMMw==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-typeof-symbol": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.10.4.tgz", + "integrity": "sha512-QqNgYwuuW0y0H+kUE/GWSR45t/ccRhe14Fs/4ZRouNNQsyd4o3PG4OtHiIrepbM2WKUBDAXKCAK/Lk4VhzTaGA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-unicode-escapes": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.10.4.tgz", + "integrity": "sha512-y5XJ9waMti2J+e7ij20e+aH+fho7Wb7W8rNuu72aKRwCHFqQdhkdU2lo3uZ9tQuboEJcUFayXdARhcxLQ3+6Fg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-unicode-regex": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.10.4.tgz", + "integrity": "sha512-wNfsc4s8N2qnIwpO/WP2ZiSyjfpTamT2C9V9FDH/Ljub9zw6P3SjkXcFmc0RQUt96k2fmIvtla2MMjgTwIAC+A==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/preset-env": { + "version": "7.11.5", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.11.5.tgz", + "integrity": "sha512-kXqmW1jVcnB2cdueV+fyBM8estd5mlNfaQi6lwLgRwCby4edpavgbFhiBNjmWA3JpB/yZGSISa7Srf+TwxDQoA==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.11.0", + "@babel/helper-compilation-targets": "^7.10.4", + "@babel/helper-module-imports": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-proposal-async-generator-functions": "^7.10.4", + "@babel/plugin-proposal-class-properties": "^7.10.4", + "@babel/plugin-proposal-dynamic-import": "^7.10.4", + "@babel/plugin-proposal-export-namespace-from": "^7.10.4", + "@babel/plugin-proposal-json-strings": "^7.10.4", + "@babel/plugin-proposal-logical-assignment-operators": "^7.11.0", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4", + "@babel/plugin-proposal-numeric-separator": "^7.10.4", + "@babel/plugin-proposal-object-rest-spread": "^7.11.0", + "@babel/plugin-proposal-optional-catch-binding": "^7.10.4", + "@babel/plugin-proposal-optional-chaining": "^7.11.0", + "@babel/plugin-proposal-private-methods": "^7.10.4", + "@babel/plugin-proposal-unicode-property-regex": "^7.10.4", + "@babel/plugin-syntax-async-generators": "^7.8.0", + "@babel/plugin-syntax-class-properties": "^7.10.4", + "@babel/plugin-syntax-dynamic-import": "^7.8.0", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.0", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.0", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.0", + "@babel/plugin-syntax-top-level-await": "^7.10.4", + "@babel/plugin-transform-arrow-functions": "^7.10.4", + "@babel/plugin-transform-async-to-generator": "^7.10.4", + "@babel/plugin-transform-block-scoped-functions": "^7.10.4", + "@babel/plugin-transform-block-scoping": "^7.10.4", + "@babel/plugin-transform-classes": "^7.10.4", + "@babel/plugin-transform-computed-properties": "^7.10.4", + "@babel/plugin-transform-destructuring": "^7.10.4", + "@babel/plugin-transform-dotall-regex": "^7.10.4", + "@babel/plugin-transform-duplicate-keys": "^7.10.4", + "@babel/plugin-transform-exponentiation-operator": "^7.10.4", + "@babel/plugin-transform-for-of": "^7.10.4", + "@babel/plugin-transform-function-name": "^7.10.4", + "@babel/plugin-transform-literals": "^7.10.4", + "@babel/plugin-transform-member-expression-literals": "^7.10.4", + "@babel/plugin-transform-modules-amd": "^7.10.4", + "@babel/plugin-transform-modules-commonjs": "^7.10.4", + "@babel/plugin-transform-modules-systemjs": "^7.10.4", + "@babel/plugin-transform-modules-umd": "^7.10.4", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.10.4", + "@babel/plugin-transform-new-target": "^7.10.4", + "@babel/plugin-transform-object-super": "^7.10.4", + "@babel/plugin-transform-parameters": "^7.10.4", + "@babel/plugin-transform-property-literals": "^7.10.4", + "@babel/plugin-transform-regenerator": "^7.10.4", + "@babel/plugin-transform-reserved-words": "^7.10.4", + "@babel/plugin-transform-shorthand-properties": "^7.10.4", + "@babel/plugin-transform-spread": "^7.11.0", + "@babel/plugin-transform-sticky-regex": "^7.10.4", + "@babel/plugin-transform-template-literals": "^7.10.4", + "@babel/plugin-transform-typeof-symbol": "^7.10.4", + "@babel/plugin-transform-unicode-escapes": "^7.10.4", + "@babel/plugin-transform-unicode-regex": "^7.10.4", + "@babel/preset-modules": "^0.1.3", + "@babel/types": "^7.11.5", + "browserslist": "^4.12.0", + "core-js-compat": "^3.6.2", + "invariant": "^2.2.2", + "levenary": "^1.1.1", + "semver": "^5.5.0" + } + }, + "@babel/preset-modules": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz", + "integrity": "sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + } + }, + "@babel/runtime": { + "version": "7.11.2", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.11.2.tgz", + "integrity": "sha512-TeWkU52so0mPtDcaCTxNBI/IHiz0pZgr8VEFqXFtZWpYD08ZB6FaSwVAS8MKRQAP3bYKiVjwysOJgMFY28o6Tw==", + "dev": true, + "requires": { + "regenerator-runtime": "^0.13.4" + } + }, + "@babel/template": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz", + "integrity": "sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/parser": "^7.10.4", + "@babel/types": "^7.10.4" + } + }, + "@babel/traverse": { + "version": "7.11.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.11.5.tgz", + "integrity": "sha512-EjiPXt+r7LiCZXEfRpSJd+jUMnBd4/9OUv7Nx3+0u9+eimMwJmG0Q98lw4/289JCoxSE8OolDMNZaaF/JZ69WQ==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.11.5", + "@babel/helper-function-name": "^7.10.4", + "@babel/helper-split-export-declaration": "^7.11.0", + "@babel/parser": "^7.11.5", + "@babel/types": "^7.11.5", + "debug": "^4.1.0", + "globals": "^11.1.0", + "lodash": "^4.17.19" + }, + "dependencies": { + "debug": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz", + "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + } + } + }, + "@babel/types": { + "version": "7.11.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.5.tgz", + "integrity": "sha512-bvM7Qz6eKnJVFIn+1LPtjlBFPVN5jNDc1XmN15vWe7Q3DPBufWWsLiIvUu7xW87uTG6QoggpIDnUgLQvPheU+Q==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.10.4", + "lodash": "^4.17.19", + "to-fast-properties": "^2.0.0" + } + }, + "@npmcli/move-file": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.0.1.tgz", + "integrity": "sha512-Uv6h1sT+0DrblvIrolFtbvM1FgWm+/sy4B3pvLp67Zys+thcukzS5ekn7HsZFGpWP4Q3fYJCljbWQE/XivMRLw==", + "dev": true, + "requires": { + "mkdirp": "^1.0.4" + }, + "dependencies": { + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true + } + } + }, + "@types/anymatch": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@types/anymatch/-/anymatch-1.3.1.tgz", + "integrity": "sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA==", + "dev": true + }, "@types/color-name": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz", "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==", "dev": true }, + "@types/glob": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.3.tgz", + "integrity": "sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w==", + "dev": true, + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "@types/html-minifier-terser": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-5.1.0.tgz", + "integrity": "sha512-iYCgjm1dGPRuo12+BStjd1HiVQqhlRhWDOQigNxn023HcjnhsiFz9pc6CzJj4HwDCSQca9bxTL4PxJDbkdm3PA==", + "dev": true + }, + "@types/json-schema": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.6.tgz", + "integrity": "sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw==", + "dev": true + }, + "@types/minimatch": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz", + "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==", + "dev": true + }, + "@types/node": { + "version": "14.11.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.11.1.tgz", + "integrity": "sha512-oTQgnd0hblfLsJ6BvJzzSL+Inogp3lq9fGgqRkMB/ziKMgEUaFl801OncOzUmalfzt14N0oPHMK47ipl+wbTIw==", + "dev": true + }, + "@types/source-list-map": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz", + "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==", + "dev": true + }, + "@types/tapable": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.6.tgz", + "integrity": "sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA==", + "dev": true + }, + "@types/uglify-js": { + "version": "3.9.3", + "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.9.3.tgz", + "integrity": "sha512-KswB5C7Kwduwjj04Ykz+AjvPcfgv/37Za24O2EDzYNbwyzOo8+ydtvzUfZ5UMguiVu29Gx44l1A6VsPPcmYu9w==", + "dev": true, + "requires": { + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "@types/webpack": { + "version": "4.41.22", + "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.22.tgz", + "integrity": "sha512-JQDJK6pj8OMV9gWOnN1dcLCyU9Hzs6lux0wBO4lr1+gyEhIBR9U3FMrz12t2GPkg110XAxEAw2WHF6g7nZIbRQ==", + "dev": true, + "requires": { + "@types/anymatch": "*", + "@types/node": "*", + "@types/tapable": "*", + "@types/uglify-js": "*", + "@types/webpack-sources": "*", + "source-map": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "@types/webpack-sources": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-1.4.2.tgz", + "integrity": "sha512-77T++JyKow4BQB/m9O96n9d/UUHWLQHlcqXb9Vsf4F1+wKNrrlWNFPDLKNT92RJnCSL6CieTc+NDXtCVZswdTw==", + "dev": true, + "requires": { + "@types/node": "*", + "@types/source-list-map": "*", + "source-map": "^0.7.3" + }, + "dependencies": { + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "dev": true + } + } + }, + "@vue/component-compiler-utils": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@vue/component-compiler-utils/-/component-compiler-utils-3.2.0.tgz", + "integrity": "sha512-lejBLa7xAMsfiZfNp7Kv51zOzifnb29FwdnMLa96z26kXErPFioSf9BMcePVIQ6/Gc6/mC0UrPpxAWIHyae0vw==", + "dev": true, + "requires": { + "consolidate": "^0.15.1", + "hash-sum": "^1.0.2", + "lru-cache": "^4.1.2", + "merge-source-map": "^1.1.0", + "postcss": "^7.0.14", + "postcss-selector-parser": "^6.0.2", + "prettier": "^1.18.2", + "source-map": "~0.6.1", + "vue-template-es2015-compiler": "^1.9.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", + "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", + "dev": true, + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", + "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==", + "dev": true + }, + "@webassemblyjs/helper-api-error": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", + "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==", + "dev": true + }, + "@webassemblyjs/helper-buffer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", + "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==", + "dev": true + }, + "@webassemblyjs/helper-code-frame": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", + "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", + "dev": true, + "requires": { + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "@webassemblyjs/helper-fsm": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", + "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==", + "dev": true + }, + "@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", + "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", + "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==", + "dev": true + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", + "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", + "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", + "dev": true, + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", + "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", + "dev": true, + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", + "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==", + "dev": true + }, + "@webassemblyjs/wasm-edit": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", + "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/helper-wasm-section": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-opt": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", + "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", + "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", + "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", + "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", + "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, "abbrev": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", @@ -26,6 +1448,30 @@ "negotiator": "0.6.2" } }, + "acorn": { + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.1.tgz", + "integrity": "sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==", + "dev": true + }, + "aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "dependencies": { + "indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true + } + } + }, "ajv": { "version": "6.12.5", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.5.tgz", @@ -38,6 +1484,18 @@ "uri-js": "^4.2.2" } }, + "ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "dev": true + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true + }, "amdefine": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", @@ -48,6 +1506,7 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz", "integrity": "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==", + "dev": true, "requires": { "ansi-wrap": "^0.1.0" } @@ -65,10 +1524,17 @@ "version": "0.1.1", "resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz", "integrity": "sha1-KWLPVOyXksSFEKPetSRDaGHvclE=", + "dev": true, "requires": { "ansi-wrap": "0.1.0" } }, + "ansi-html": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", + "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=", + "dev": true + }, "ansi-red": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz", @@ -81,7 +1547,8 @@ "ansi-regex": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true }, "ansi-styles": { "version": "2.2.1", @@ -92,7 +1559,8 @@ "ansi-wrap": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", - "integrity": "sha1-qCJQ3bABXponyoLoLqYDu/pF768=" + "integrity": "sha1-qCJQ3bABXponyoLoLqYDu/pF768=", + "dev": true }, "any-promise": { "version": "1.3.0", @@ -104,6 +1572,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, "requires": { "micromatch": "^3.1.4", "normalize-path": "^2.1.1" @@ -113,6 +1582,7 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, "requires": { "remove-trailing-separator": "^1.0.1" } @@ -123,6 +1593,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz", "integrity": "sha1-2CIM9GYIFSXv6lBhTz3mUU36WPE=", + "dev": true, "requires": { "buffer-equal": "^1.0.0" } @@ -136,7 +1607,8 @@ "archy": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", - "integrity": "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=" + "integrity": "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=", + "dev": true }, "are-we-there-yet": { "version": "1.1.5", @@ -151,12 +1623,14 @@ "arr-diff": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "dev": true }, "arr-filter": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/arr-filter/-/arr-filter-1.1.2.tgz", "integrity": "sha1-Q/3d0JHo7xGqTEXZzcGOLf8XEe4=", + "dev": true, "requires": { "make-iterator": "^1.0.0" } @@ -164,12 +1638,14 @@ "arr-flatten": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true }, "arr-map": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/arr-map/-/arr-map-2.0.2.tgz", "integrity": "sha1-Onc0X/wc814qkYJWAfnljy4kysQ=", + "dev": true, "requires": { "make-iterator": "^1.0.0" } @@ -177,7 +1653,8 @@ "arr-union": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=" + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "dev": true }, "array-differ": { "version": "1.0.0", @@ -188,7 +1665,8 @@ "array-each": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz", - "integrity": "sha1-p5SvDAWrF1KEbudTofIRoFugxE8=" + "integrity": "sha1-p5SvDAWrF1KEbudTofIRoFugxE8=", + "dev": true }, "array-find-index": { "version": "1.0.2", @@ -206,6 +1684,7 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/array-initial/-/array-initial-1.1.0.tgz", "integrity": "sha1-L6dLJnOTccOUe9enrcc74zSz15U=", + "dev": true, "requires": { "array-slice": "^1.0.0", "is-number": "^4.0.0" @@ -214,7 +1693,8 @@ "is-number": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==" + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "dev": true } } }, @@ -222,6 +1702,7 @@ "version": "1.3.0", "resolved": "https://registry.npmjs.org/array-last/-/array-last-1.3.0.tgz", "integrity": "sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==", + "dev": true, "requires": { "is-number": "^4.0.0" }, @@ -229,19 +1710,22 @@ "is-number": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==" + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "dev": true } } }, "array-slice": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz", - "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==" + "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==", + "dev": true }, "array-sort": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/array-sort/-/array-sort-1.0.0.tgz", "integrity": "sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==", + "dev": true, "requires": { "default-compare": "^1.0.0", "get-value": "^2.0.6", @@ -251,10 +1735,20 @@ "kind-of": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true } } }, + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dev": true, + "requires": { + "array-uniq": "^1.0.1" + } + }, "array-uniq": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", @@ -264,7 +1758,8 @@ "array-unique": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "dev": true }, "asn1": { "version": "0.2.4", @@ -275,6 +1770,59 @@ "safer-buffer": "~2.1.0" } }, + "asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "dev": true, + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + }, + "dependencies": { + "bn.js": { + "version": "4.11.9", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", + "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", + "dev": true + } + } + }, + "assert": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", + "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", + "dev": true, + "requires": { + "object-assign": "^4.1.1", + "util": "0.10.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true + }, + "util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", + "dev": true, + "requires": { + "inherits": "2.0.1" + } + } + } + }, "assert-plus": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", @@ -284,12 +1832,23 @@ "assign-symbols": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=" + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "dev": true + }, + "async": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", + "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "dev": true, + "requires": { + "lodash": "^4.17.14" + } }, "async-done": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/async-done/-/async-done-1.3.2.tgz", "integrity": "sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==", + "dev": true, "requires": { "end-of-stream": "^1.1.0", "once": "^1.3.2", @@ -300,7 +1859,8 @@ "async-each": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", - "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==" + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", + "dev": true }, "async-foreach": { "version": "0.1.3", @@ -308,10 +1868,17 @@ "integrity": "sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI=", "dev": true }, + "async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", + "dev": true + }, "async-settle": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/async-settle/-/async-settle-1.0.0.tgz", "integrity": "sha1-HQqRS7Aldb7IqPOnTlCA9yssDGs=", + "dev": true, "requires": { "async-done": "^1.2.2" } @@ -325,7 +1892,8 @@ "atob": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true }, "aws-sign2": { "version": "0.7.0", @@ -348,10 +1916,52 @@ "follow-redirects": "^1.10.0" } }, + "babel-loader": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.1.0.tgz", + "integrity": "sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw==", + "dev": true, + "requires": { + "find-cache-dir": "^2.1.0", + "loader-utils": "^1.4.0", + "mkdirp": "^0.5.3", + "pify": "^4.0.1", + "schema-utils": "^2.6.5" + }, + "dependencies": { + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "dev": true, + "requires": { + "object.assign": "^4.1.0" + } + }, "bach": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz", "integrity": "sha1-Szzpa/JxNPeaG0FKUcFONMO9mIA=", + "dev": true, "requires": { "arr-filter": "^1.1.1", "arr-flatten": "^1.0.1", @@ -367,12 +1977,14 @@ "balanced-match": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true }, "base": { "version": "0.11.2", "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, "requires": { "cache-base": "^1.0.1", "class-utils": "^0.3.5", @@ -387,6 +1999,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, "requires": { "is-descriptor": "^1.0.0" } @@ -395,6 +2008,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, "requires": { "kind-of": "^6.0.0" } @@ -403,6 +2017,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, "requires": { "kind-of": "^6.0.0" } @@ -411,6 +2026,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, "requires": { "is-accessor-descriptor": "^1.0.0", "is-data-descriptor": "^1.0.0", @@ -419,6 +2035,18 @@ } } }, + "base64-js": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz", + "integrity": "sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==", + "dev": true + }, + "batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=", + "dev": true + }, "bcrypt-pbkdf": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", @@ -434,15 +2062,23 @@ "integrity": "sha1-5tXqjF2tABMEpwsiY4RH9pyy+Ak=", "dev": true }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, "binary-extensions": { "version": "1.13.1", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==" + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true }, "bindings": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, "optional": true, "requires": { "file-uri-to-path": "1.0.0" @@ -457,6 +2093,18 @@ "inherits": "~2.0.0" } }, + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true + }, + "bn.js": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.1.3.tgz", + "integrity": "sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ==", + "dev": true + }, "body-parser": { "version": "1.19.0", "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", @@ -475,10 +2123,39 @@ "type-is": "~1.6.17" } }, + "bonjour": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "dev": true, + "requires": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + }, + "dependencies": { + "array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "dev": true + } + } + }, + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", + "dev": true + }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -488,6 +2165,7 @@ "version": "2.3.2", "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, "requires": { "arr-flatten": "^1.1.0", "array-unique": "^0.3.2", @@ -505,21 +2183,165 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, "requires": { "is-extendable": "^0.1.0" } } } }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", + "dev": true + }, + "browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "dev": true, + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "dev": true, + "requires": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "dev": true, + "requires": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "browserify-rsa": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", + "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "randombytes": "^2.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.11.9", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", + "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", + "dev": true + } + } + }, + "browserify-sign": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", + "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", + "dev": true, + "requires": { + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + } + } + }, + "browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "dev": true, + "requires": { + "pako": "~1.0.5" + } + }, + "browserslist": { + "version": "4.14.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.3.tgz", + "integrity": "sha512-GcZPC5+YqyPO4SFnz48/B0YaCwS47Q9iPChRGi6t7HhflKBcINzFrJvRfC+jp30sRMKxF+d4EHGs27Z0XP1NaQ==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001131", + "electron-to-chromium": "^1.3.570", + "escalade": "^3.1.0", + "node-releases": "^1.1.61" + } + }, + "buffer": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", + "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", + "dev": true, + "requires": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, "buffer-equal": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.0.tgz", - "integrity": "sha1-WWFrSYME1Var1GaWayLu2j7KX74=" + "integrity": "sha1-WWFrSYME1Var1GaWayLu2j7KX74=", + "dev": true }, "buffer-from": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", - "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" + "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", + "dev": true + }, + "buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", + "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", + "dev": true + }, + "buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", + "dev": true }, "bufferstreams": { "version": "1.1.3", @@ -530,16 +2352,103 @@ "readable-stream": "^2.0.2" } }, + "builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=", + "dev": true + }, "bytes": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", "dev": true }, + "cacache": { + "version": "15.0.5", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.0.5.tgz", + "integrity": "sha512-lloiL22n7sOjEEXdL8NAjTgv9a1u43xICE9/203qonkZUCj5X1UEWIdf2/Y0d6QcCtMzbKQyhrcDbdvlZTs/+A==", + "dev": true, + "requires": { + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.0", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + }, + "dependencies": { + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true + }, + "p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dev": true, + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "tar": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.0.5.tgz", + "integrity": "sha512-0b4HOimQHj9nXNEAA7zWwMM91Zhhba3pspja6sQbgTpynOJf+bkjBnfybNYzbpLbnwXnbyB4LOREvlyXLkCHSg==", + "dev": true, + "requires": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, "cache-base": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, "requires": { "collection-visit": "^1.0.0", "component-emitter": "^1.2.1", @@ -578,6 +2487,12 @@ "map-obj": "^1.0.0" } }, + "caniuse-lite": { + "version": "1.0.30001133", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001133.tgz", + "integrity": "sha512-s3XAUFaC/ntDb1O3lcw9K8MPeOW7KO3z9+GzAoBxfz1B0VdacXPMKgFUtG4KIsgmnbexmi013s9miVu4h+qMHw==", + "dev": true + }, "caseless": { "version": "0.12.0", "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", @@ -607,6 +2522,7 @@ "version": "2.1.8", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "dev": true, "requires": { "anymatch": "^2.0.0", "async-each": "^1.0.1", @@ -622,10 +2538,36 @@ "upath": "^1.1.1" } }, + "chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "dev": true + }, + "chrome-trace-event": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz", + "integrity": "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==", + "dev": true, + "requires": { + "tslib": "^1.9.0" + } + }, + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, "class-utils": { "version": "0.3.6", "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, "requires": { "arr-union": "^3.1.0", "define-property": "^0.2.5", @@ -637,6 +2579,7 @@ "version": "0.2.5", "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, "requires": { "is-descriptor": "^0.1.0" } @@ -660,6 +2603,12 @@ } } }, + "clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true + }, "cliui": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", @@ -708,22 +2657,37 @@ "clone": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=" + "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=", + "dev": true }, "clone-buffer": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", - "integrity": "sha1-4+JbIHrE5wGvch4staFnksrD3Fg=" + "integrity": "sha1-4+JbIHrE5wGvch4staFnksrD3Fg=", + "dev": true + }, + "clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + } }, "clone-stats": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", - "integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=" + "integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=", + "dev": true }, "cloneable-readable": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz", "integrity": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==", + "dev": true, "requires": { "inherits": "^2.0.1", "process-nextick-args": "^2.0.0", @@ -733,12 +2697,14 @@ "code-point-at": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", + "dev": true }, "collection-map": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/collection-map/-/collection-map-1.0.0.tgz", "integrity": "sha1-rqDwb40mx4DCt1SUOFVEsiVa8Yw=", + "dev": true, "requires": { "arr-map": "^2.0.2", "for-own": "^1.0.0", @@ -749,6 +2715,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "dev": true, "requires": { "map-visit": "^1.0.0", "object-visit": "^1.0.0" @@ -772,7 +2739,8 @@ "color-support": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==" + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "dev": true }, "combined-stream": { "version": "1.0.8", @@ -789,20 +2757,61 @@ "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==", "dev": true }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", + "dev": true + }, "component-emitter": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", - "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "dev": true + }, + "compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dev": true, + "requires": { + "mime-db": ">= 1.43.0 < 2" + } + }, + "compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dev": true, + "requires": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "dependencies": { + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", + "dev": true + } + } }, "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true }, "concat-stream": { "version": "1.6.2", "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "dev": true, "requires": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", @@ -827,12 +2836,39 @@ } } }, + "connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", + "dev": true + }, + "console-browserify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==", + "dev": true + }, "console-control-strings": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", "dev": true }, + "consolidate": { + "version": "0.15.1", + "resolved": "https://registry.npmjs.org/consolidate/-/consolidate-0.15.1.tgz", + "integrity": "sha512-DW46nrsMJgy9kqAbPt5rKaCr7uFtpo4mSUvLHIUbJEjm0vo+aY5QLwBUq3FK4tRnJr/X0Psc0C4jf/h+HtXSMw==", + "dev": true, + "requires": { + "bluebird": "^3.1.1" + } + }, + "constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=", + "dev": true + }, "content-disposition": { "version": "0.5.3", "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", @@ -852,6 +2888,7 @@ "version": "1.7.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", + "dev": true, "requires": { "safe-buffer": "~5.1.1" } @@ -868,24 +2905,110 @@ "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", "dev": true }, + "copy-concurrently": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", + "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", + "dev": true, + "requires": { + "aproba": "^1.1.1", + "fs-write-stream-atomic": "^1.0.8", + "iferr": "^0.1.5", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.0" + } + }, "copy-descriptor": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=" + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "dev": true }, "copy-props": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/copy-props/-/copy-props-2.0.4.tgz", "integrity": "sha512-7cjuUME+p+S3HZlbllgsn2CDwS+5eCCX16qBgNC4jgSTf49qR1VKy/Zhl400m0IQXl/bPGEVqncgUUMjrr4s8A==", + "dev": true, "requires": { "each-props": "^1.3.0", "is-plain-object": "^2.0.1" } }, + "core-js": { + "version": "3.6.5", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.6.5.tgz", + "integrity": "sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA==", + "dev": true + }, + "core-js-compat": { + "version": "3.6.5", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.6.5.tgz", + "integrity": "sha512-7ItTKOhOZbznhXAQ2g/slGg1PJV5zDO/WdkTwi7UEOJmkvsE32PWvx6mKtDjiMpjnR2CNf6BAD6sSxIlv7ptng==", + "dev": true, + "requires": { + "browserslist": "^4.8.5", + "semver": "7.0.0" + }, + "dependencies": { + "semver": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", + "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", + "dev": true + } + } + }, "core-util-is": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + }, + "dependencies": { + "bn.js": { + "version": "4.11.9", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", + "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", + "dev": true + } + } + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "dev": true, + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "dev": true, + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } }, "cross-spawn": { "version": "3.0.1", @@ -897,6 +3020,114 @@ "which": "^1.2.9" } }, + "crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "dev": true, + "requires": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + } + }, + "css-loader": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-4.3.0.tgz", + "integrity": "sha512-rdezjCjScIrsL8BSYszgT4s476IcNKt6yX69t0pHjJVnPUTDpn4WfIpDQTN3wCJvUvfsz/mFjuGOekf3PY3NUg==", + "dev": true, + "requires": { + "camelcase": "^6.0.0", + "cssesc": "^3.0.0", + "icss-utils": "^4.1.1", + "loader-utils": "^2.0.0", + "postcss": "^7.0.32", + "postcss-modules-extract-imports": "^2.0.0", + "postcss-modules-local-by-default": "^3.0.3", + "postcss-modules-scope": "^2.2.0", + "postcss-modules-values": "^3.0.0", + "postcss-value-parser": "^4.1.0", + "schema-utils": "^2.7.1", + "semver": "^7.3.2" + }, + "dependencies": { + "camelcase": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.0.0.tgz", + "integrity": "sha512-8KMDF1Vz2gzOq54ONPJS65IvTUaB1cHJ2DMM7MbPmLZljDH1qpzzLsWdiN9pHh6qvkRVDTi/07+eNGch/oLU4w==", + "dev": true + }, + "json5": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz", + "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "loader-utils": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", + "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + }, + "semver": { + "version": "7.3.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz", + "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==", + "dev": true + } + } + }, + "css-select": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", + "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=", + "dev": true, + "requires": { + "boolbase": "~1.0.0", + "css-what": "2.1", + "domutils": "1.5.1", + "nth-check": "~1.0.1" + } + }, + "css-what": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz", + "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==", + "dev": true + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true + }, "currently-unhandled": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", @@ -906,10 +3137,17 @@ "array-find-index": "^1.0.1" } }, + "cyclist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz", + "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=", + "dev": true + }, "d": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", + "dev": true, "requires": { "es5-ext": "^0.10.50", "type": "^1.0.1" @@ -930,6 +3168,12 @@ "integrity": "sha1-QGXiATz5+5Ft39gu+1Bq1MZ2kGI=", "dev": true }, + "de-indent": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz", + "integrity": "sha1-sgOOhG3DO6pXlhKNCAS0VbjB4h0=", + "dev": true + }, "debounce-hashed": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/debounce-hashed/-/debounce-hashed-0.1.2.tgz", @@ -940,6 +3184,7 @@ "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "requires": { "ms": "2.0.0" } @@ -947,17 +3192,34 @@ "decamelize": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true }, "decode-uri-component": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=" + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "dev": true + }, + "deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "dev": true, + "requires": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + } }, "default-compare": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/default-compare/-/default-compare-1.0.0.tgz", "integrity": "sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==", + "dev": true, "requires": { "kind-of": "^5.0.2" }, @@ -965,19 +3227,32 @@ "kind-of": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true } } }, + "default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", + "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "dev": true, + "requires": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + } + }, "default-resolution": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/default-resolution/-/default-resolution-2.0.0.tgz", - "integrity": "sha1-vLgrqnKtebQmp2cy8aga1t8m1oQ=" + "integrity": "sha1-vLgrqnKtebQmp2cy8aga1t8m1oQ=", + "dev": true }, "define-properties": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dev": true, "requires": { "object-keys": "^1.0.12" } @@ -986,6 +3261,7 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, "requires": { "is-descriptor": "^1.0.2", "isobject": "^3.0.1" @@ -995,6 +3271,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, "requires": { "kind-of": "^6.0.0" } @@ -1003,6 +3280,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, "requires": { "kind-of": "^6.0.0" } @@ -1011,6 +3289,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, "requires": { "is-accessor-descriptor": "^1.0.0", "is-data-descriptor": "^1.0.0", @@ -1019,6 +3298,29 @@ } } }, + "del": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", + "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "dev": true, + "requires": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + }, + "dependencies": { + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true + } + } + }, "delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", @@ -1037,6 +3339,16 @@ "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", "dev": true }, + "des.js": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", + "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, "destroy": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", @@ -1046,7 +3358,147 @@ "detect-file": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", - "integrity": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=" + "integrity": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=", + "dev": true + }, + "detect-node": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.0.4.tgz", + "integrity": "sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==", + "dev": true + }, + "diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + }, + "dependencies": { + "bn.js": { + "version": "4.11.9", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", + "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", + "dev": true + } + } + }, + "dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=", + "dev": true + }, + "dns-packet": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz", + "integrity": "sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg==", + "dev": true, + "requires": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + } + }, + "dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", + "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", + "dev": true, + "requires": { + "buffer-indexof": "^1.0.0" + } + }, + "dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "dev": true, + "requires": { + "utila": "~0.4" + } + }, + "dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.0.2.tgz", + "integrity": "sha512-wFwTwCVebUrMgGeAwRL/NhZtHAUyT9n9yg4IMDwf10+6iCMxSkVq9MGCVEH+QZWo1nNidy8kNvwmv4zWHDTqvA==", + "dev": true + } + } + }, + "domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", + "dev": true + }, + "domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", + "dev": true + }, + "domhandler": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", + "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", + "dev": true, + "requires": { + "domelementtype": "1" + } + }, + "domutils": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", + "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", + "dev": true, + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "dot-case": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.3.tgz", + "integrity": "sha512-7hwEmg6RiSQfm/GwPL4AAWXKy3YNNZA3oFv2Pdiey0mwkRCPZ9x6SZbkLcn8Ma5PYeVokzoD4Twv2n7LKp5WeA==", + "dev": true, + "requires": { + "no-case": "^3.0.3", + "tslib": "^1.10.0" + }, + "dependencies": { + "lower-case": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.1.tgz", + "integrity": "sha512-LiWgfDLLb1dwbFQZsSglpRj+1ctGnayXz3Uv0/WO8n558JycT5fg6zkNcnW0G68Nn0aEldTFeEfmjCfmqry/rQ==", + "dev": true, + "requires": { + "tslib": "^1.10.0" + } + }, + "no-case": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.3.tgz", + "integrity": "sha512-ehY/mVQCf9BL0gKfsJBvFJen+1V//U+0HQMPrWct40ixE4jnv0bfvxDbWtAHL9EcaPEOJHVVYKoQn1TlZUB8Tw==", + "dev": true, + "requires": { + "lower-case": "^2.0.1", + "tslib": "^1.10.0" + } + } + } }, "duplexer2": { "version": "0.0.2", @@ -1087,6 +3539,7 @@ "version": "3.7.1", "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "dev": true, "requires": { "end-of-stream": "^1.0.0", "inherits": "^2.0.1", @@ -1098,6 +3551,7 @@ "version": "1.3.2", "resolved": "https://registry.npmjs.org/each-props/-/each-props-1.3.2.tgz", "integrity": "sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA==", + "dev": true, "requires": { "is-plain-object": "^2.0.1", "object.defaults": "^1.1.0" @@ -1119,12 +3573,47 @@ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", "dev": true }, + "electron-to-chromium": { + "version": "1.3.570", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.570.tgz", + "integrity": "sha512-Y6OCoVQgFQBP5py6A/06+yWxUZHDlNr/gNDGatjH8AZqXl8X0tE4LfjLJsXGz/JmWJz8a6K7bR1k+QzZ+k//fg==", + "dev": true + }, + "elliptic": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.3.tgz", + "integrity": "sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw==", + "dev": true, + "requires": { + "bn.js": "^4.4.0", + "brorand": "^1.0.1", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.0" + }, + "dependencies": { + "bn.js": { + "version": "4.11.9", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", + "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", + "dev": true + } + } + }, "emoji-regex": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", "dev": true }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, "encodeurl": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", @@ -1135,14 +3624,54 @@ "version": "1.4.4", "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, "requires": { "once": "^1.4.0" } }, + "enhanced-resolve": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.3.0.tgz", + "integrity": "sha512-3e87LvavsdxyoCfGusJnrZ5G8SLPOFeHSNpZI/ATL9a5leXo2k0w6MKnbqhdBad9qTobSfB20Ld7UmgoNbAZkQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "dependencies": { + "memory-fs": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "dev": true, + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + } + } + }, + "entities": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.3.tgz", + "integrity": "sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ==", + "dev": true + }, + "errno": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz", + "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==", + "dev": true, + "requires": { + "prr": "~1.0.1" + } + }, "error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, "requires": { "is-arrayish": "^0.2.1" } @@ -1151,6 +3680,7 @@ "version": "1.18.0-next.0", "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.0.tgz", "integrity": "sha512-elZXTZXKn51hUBdJjSZGYRujuzilgXo8vSPQzjGYXLvSlGiCo8VO8ZGV3kjo9a0WNJJ57hENagwbtlRuHuzkcQ==", + "dev": true, "requires": { "es-to-primitive": "^1.2.1", "function-bind": "^1.1.1", @@ -1170,6 +3700,7 @@ "version": "1.2.1", "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, "requires": { "is-callable": "^1.1.4", "is-date-object": "^1.0.1", @@ -1180,6 +3711,7 @@ "version": "0.10.53", "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz", "integrity": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==", + "dev": true, "requires": { "es6-iterator": "~2.0.3", "es6-symbol": "~3.1.3", @@ -1190,6 +3722,7 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", + "dev": true, "requires": { "d": "1", "es5-ext": "^0.10.35", @@ -1200,6 +3733,7 @@ "version": "3.1.3", "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", + "dev": true, "requires": { "d": "^1.0.1", "ext": "^1.1.2" @@ -1209,6 +3743,7 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", + "dev": true, "requires": { "d": "1", "es5-ext": "^0.10.46", @@ -1234,16 +3769,117 @@ "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", "dev": true }, + "eslint-scope": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", + "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", + "dev": true, + "requires": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "dev": true + } + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true + }, "etag": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", "dev": true }, + "eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "dev": true + }, + "events": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.2.0.tgz", + "integrity": "sha512-/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg==", + "dev": true + }, + "eventsource": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.0.7.tgz", + "integrity": "sha512-4Ln17+vVT0k8aWq+t/bF5arcS3EpT9gYtW66EPacdj/mAFevznsnyoHLPy2BA8gbIQeIHoPsvwmfBftfcG//BQ==", + "dev": true, + "requires": { + "original": "^1.0.0" + } + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "dev": true, + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + } + } + }, "expand-brackets": { "version": "2.1.4", "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "dev": true, "requires": { "debug": "^2.3.3", "define-property": "^0.2.5", @@ -1258,6 +3894,7 @@ "version": "0.2.5", "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, "requires": { "is-descriptor": "^0.1.0" } @@ -1266,6 +3903,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, "requires": { "is-extendable": "^0.1.0" } @@ -1327,6 +3965,7 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=", + "dev": true, "requires": { "homedir-polyfill": "^1.0.1" } @@ -1373,6 +4012,7 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/ext/-/ext-1.4.0.tgz", "integrity": "sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==", + "dev": true, "requires": { "type": "^2.0.0" }, @@ -1380,19 +4020,22 @@ "type": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/type/-/type-2.1.0.tgz", - "integrity": "sha512-G9absDWvhAWCV2gmF1zKud3OyC61nZDwWvBL2DApaVFogI07CprggiQAOOjvp2NRjYWFzPyu7vwtDrQFq8jeSA==" + "integrity": "sha512-G9absDWvhAWCV2gmF1zKud3OyC61nZDwWvBL2DApaVFogI07CprggiQAOOjvp2NRjYWFzPyu7vwtDrQFq8jeSA==", + "dev": true } } }, "extend": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true }, "extend-shallow": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, "requires": { "assign-symbols": "^1.0.0", "is-extendable": "^1.0.1" @@ -1402,6 +4045,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, "requires": { "is-plain-object": "^2.0.4" } @@ -1412,6 +4056,7 @@ "version": "2.0.4", "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, "requires": { "array-unique": "^0.3.2", "define-property": "^1.0.0", @@ -1427,6 +4072,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, "requires": { "is-descriptor": "^1.0.0" } @@ -1435,6 +4081,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, "requires": { "is-extendable": "^0.1.0" } @@ -1443,6 +4090,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, "requires": { "kind-of": "^6.0.0" } @@ -1451,6 +4099,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, "requires": { "kind-of": "^6.0.0" } @@ -1459,6 +4108,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, "requires": { "is-accessor-descriptor": "^1.0.0", "is-data-descriptor": "^1.0.0", @@ -1477,6 +4127,7 @@ "version": "1.3.3", "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz", "integrity": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==", + "dev": true, "requires": { "ansi-gray": "^0.1.1", "color-support": "^1.1.3", @@ -1499,12 +4150,72 @@ "fast-levenshtein": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.1.4.tgz", - "integrity": "sha1-5qdUzI8V5YmHqpy9J69m/W9OWvk=" + "integrity": "sha1-5qdUzI8V5YmHqpy9J69m/W9OWvk=", + "dev": true + }, + "faye-websocket": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz", + "integrity": "sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=", + "dev": true, + "requires": { + "websocket-driver": ">=0.5.1" + } + }, + "figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", + "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==", + "dev": true + }, + "file-loader": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.1.0.tgz", + "integrity": "sha512-26qPdHyTsArQ6gU4P1HJbAbnFTyT2r0pG7czh1GFAd9TZbj0n94wWbupgixZH/ET/meqi2/5+F7DhW4OAXD+Lg==", + "dev": true, + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^2.7.1" + }, + "dependencies": { + "json5": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz", + "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "loader-utils": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", + "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + } + } }, "file-uri-to-path": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true, "optional": true }, "filename-regex": { @@ -1517,6 +4228,7 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, "requires": { "extend-shallow": "^2.0.1", "is-number": "^3.0.0", @@ -1528,6 +4240,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, "requires": { "is-extendable": "^0.1.0" } @@ -1549,10 +4262,22 @@ "unpipe": "~1.0.0" } }, + "find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + } + }, "find-up": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "dev": true, "requires": { "path-exists": "^2.0.0", "pinkie-promise": "^2.0.0" @@ -1562,6 +4287,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", + "dev": true, "requires": { "detect-file": "^1.0.0", "is-glob": "^4.0.0", @@ -1573,6 +4299,7 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz", "integrity": "sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==", + "dev": true, "requires": { "expand-tilde": "^2.0.2", "is-plain-object": "^2.0.3", @@ -1593,12 +4320,14 @@ "flagged-respawn": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz", - "integrity": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==" + "integrity": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==", + "dev": true }, "flush-write-stream": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "dev": true, "requires": { "inherits": "^2.0.3", "readable-stream": "^2.3.6" @@ -1613,12 +4342,14 @@ "for-in": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=" + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true }, "for-own": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", "integrity": "sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=", + "dev": true, "requires": { "for-in": "^1.0.1" } @@ -1650,6 +4381,7 @@ "version": "0.2.1", "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "dev": true, "requires": { "map-cache": "^0.2.2" } @@ -1660,24 +4392,58 @@ "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", "dev": true }, + "from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, "fs-mkdirp-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz", "integrity": "sha1-C3gV/DIBxqaeFNuYzgmMFpNSWes=", + "dev": true, "requires": { "graceful-fs": "^4.1.11", "through2": "^2.0.3" } }, + "fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", + "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + } + }, "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true }, "fsevents": { "version": "1.2.13", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "dev": true, "optional": true, "requires": { "bindings": "^1.5.0", @@ -1699,7 +4465,8 @@ "function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true }, "gauge": { "version": "2.7.4", @@ -1734,6 +4501,12 @@ "globule": "^1.0.0" } }, + "gensync": { + "version": "1.0.0-beta.1", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.1.tgz", + "integrity": "sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg==", + "dev": true + }, "get-caller-file": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", @@ -1746,10 +4519,32 @@ "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", "dev": true }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "requires": { + "pump": "^3.0.0" + }, + "dependencies": { + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + } + } + }, "get-value": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=" + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", + "dev": true }, "getpass": { "version": "0.1.7", @@ -1764,6 +4559,7 @@ "version": "7.1.6", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "dev": true, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -1813,6 +4609,7 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "dev": true, "requires": { "is-glob": "^3.1.0", "path-dirname": "^1.0.0" @@ -1822,6 +4619,7 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dev": true, "requires": { "is-extglob": "^2.1.0" } @@ -1832,6 +4630,7 @@ "version": "6.1.0", "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz", "integrity": "sha1-cEXJlBOz65SIjYOrRtC0BMx73eQ=", + "dev": true, "requires": { "extend": "^3.0.0", "glob": "^7.1.1", @@ -1849,6 +4648,7 @@ "version": "5.0.5", "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-5.0.5.tgz", "integrity": "sha512-zOZgGGEHPklZNjZQaZ9f41i7F2YwE+tS5ZHrDhbBCk3stwahn5vQxnFmBJZHoYdusR6R1bLSXeGUy/BhctwKzw==", + "dev": true, "requires": { "anymatch": "^2.0.0", "async-done": "^1.2.0", @@ -1863,6 +4663,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, "requires": { "global-prefix": "^1.0.1", "is-windows": "^1.0.1", @@ -1873,6 +4674,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=", + "dev": true, "requires": { "expand-tilde": "^2.0.2", "homedir-polyfill": "^1.0.1", @@ -1881,6 +4683,33 @@ "which": "^1.2.14" } }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true + }, + "globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", + "dev": true, + "requires": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": { + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true + } + } + }, "globule": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/globule/-/globule-1.3.2.tgz", @@ -1896,6 +4725,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.2.tgz", "integrity": "sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==", + "dev": true, "requires": { "sparkles": "^1.0.0" } @@ -1903,12 +4733,14 @@ "graceful-fs": { "version": "4.2.4", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz", - "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==" + "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==", + "dev": true }, "gulp": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/gulp/-/gulp-4.0.2.tgz", "integrity": "sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA==", + "dev": true, "requires": { "glob-watcher": "^5.0.3", "gulp-cli": "^2.2.0", @@ -1919,12 +4751,14 @@ "camelcase": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=" + "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", + "dev": true }, "cliui": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", + "dev": true, "requires": { "string-width": "^1.0.1", "strip-ansi": "^3.0.1", @@ -1934,12 +4768,14 @@ "get-caller-file": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", - "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==" + "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", + "dev": true }, "gulp-cli": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/gulp-cli/-/gulp-cli-2.3.0.tgz", "integrity": "sha512-zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A==", + "dev": true, "requires": { "ansi-colors": "^1.0.1", "archy": "^1.0.0", @@ -1965,6 +4801,7 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", + "dev": true, "requires": { "lcid": "^1.0.0" } @@ -1972,17 +4809,20 @@ "require-main-filename": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", - "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=" + "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=", + "dev": true }, "which-module": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", - "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=" + "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=", + "dev": true }, "wrap-ansi": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", + "dev": true, "requires": { "string-width": "^1.0.1", "strip-ansi": "^3.0.1" @@ -1991,12 +4831,14 @@ "y18n": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz", - "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=" + "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=", + "dev": true }, "yargs": { "version": "7.1.1", "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.1.tgz", "integrity": "sha512-huO4Fr1f9PmiJJdll5kwoS2e4GqzGSsMT3PPMpOwoVkOK8ckqAewMTZyA6LXVQWflleb/Z8oPBEvNsMft0XE+g==", + "dev": true, "requires": { "camelcase": "^3.0.0", "cliui": "^3.2.0", @@ -2017,6 +4859,7 @@ "version": "5.0.0-security.0", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0-security.0.tgz", "integrity": "sha512-T69y4Ps64LNesYxeYGYPvfoMTt/7y1XtfpIslUeK4um+9Hu7hlGoRtaDLvdXb7+/tfq4opVa2HRY5xGip022rQ==", + "dev": true, "requires": { "camelcase": "^3.0.0", "object.assign": "^4.1.0" @@ -2463,10 +5306,17 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz", "integrity": "sha1-4oxNRdBey77YGDY86PnFkmIp/+U=", + "dev": true, "requires": { "glogg": "^1.0.0" } }, + "handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "dev": true + }, "har-schema": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", @@ -2487,6 +5337,7 @@ "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, "requires": { "function-bind": "^1.1.1" } @@ -2500,6 +5351,12 @@ "ansi-regex": "^2.0.0" } }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, "has-gulplog": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz", @@ -2512,7 +5369,8 @@ "has-symbols": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz", - "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==" + "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==", + "dev": true }, "has-unicode": { "version": "2.0.1", @@ -2524,6 +5382,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "dev": true, "requires": { "get-value": "^2.0.6", "has-values": "^1.0.0", @@ -2534,6 +5393,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "dev": true, "requires": { "is-number": "^3.0.0", "kind-of": "^4.0.0" @@ -2543,22 +5403,81 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "dev": true, "requires": { "is-buffer": "^1.1.5" } } } }, + "hash-base": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", + "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "dev": true, + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + } + } + }, + "hash-sum": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz", + "integrity": "sha1-M7QHd3VMZDJXPBIMw4CLvRDUfwQ=", + "dev": true + }, + "hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, "he": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", "dev": true }, + "hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "dev": true, + "requires": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, "homedir-polyfill": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "dev": true, "requires": { "parse-passwd": "^1.0.0" } @@ -2566,7 +5485,26 @@ "hosted-git-info": { "version": "2.8.8", "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz", - "integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==" + "integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==", + "dev": true + }, + "hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "html-entities": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.3.1.tgz", + "integrity": "sha512-rhE/4Z3hIhzHAUKbW8jVcCyuT5oJCXXqhN/6mXXVCpzTmvJnoH2HL/bt3EZ6p55jbFJBeAe1ZNpL5BugLujxNA==", + "dev": true }, "html-minifier": { "version": "3.5.21", @@ -2583,6 +5521,120 @@ "uglify-js": "3.4.x" } }, + "html-minifier-terser": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", + "integrity": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==", + "dev": true, + "requires": { + "camel-case": "^4.1.1", + "clean-css": "^4.2.3", + "commander": "^4.1.1", + "he": "^1.2.0", + "param-case": "^3.0.3", + "relateurl": "^0.2.7", + "terser": "^4.6.3" + }, + "dependencies": { + "camel-case": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.1.tgz", + "integrity": "sha512-7fa2WcG4fYFkclIvEmxBbTvmibwF2/agfEBc6q3lOpVu0A13ltLsA+Hr/8Hp6kp5f+G7hKi6t8lys6XxP+1K6Q==", + "dev": true, + "requires": { + "pascal-case": "^3.1.1", + "tslib": "^1.10.0" + } + }, + "clean-css": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz", + "integrity": "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==", + "dev": true, + "requires": { + "source-map": "~0.6.0" + } + }, + "commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true + }, + "param-case": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.3.tgz", + "integrity": "sha512-VWBVyimc1+QrzappRs7waeN2YmoZFCGXWASRYX1/rGHtXqEcrGEIDm+jqIwFa2fRXNgQEwrxaYuIrX0WcAguTA==", + "dev": true, + "requires": { + "dot-case": "^3.0.3", + "tslib": "^1.10.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "html-webpack-plugin": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-4.4.1.tgz", + "integrity": "sha512-nEtdEIsIGXdXGG7MjTTZlmhqhpHU9pJFc1OYxcP36c5/ZKP6b0BJMww2QTvJGQYA9aMxUnjDujpZdYcVOXiBCQ==", + "dev": true, + "requires": { + "@types/html-minifier-terser": "^5.0.0", + "@types/tapable": "^1.0.5", + "@types/webpack": "^4.41.8", + "html-minifier-terser": "^5.0.1", + "loader-utils": "^1.2.3", + "lodash": "^4.17.15", + "pretty-error": "^2.1.1", + "tapable": "^1.1.3", + "util.promisify": "1.0.0" + } + }, + "htmlparser2": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", + "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", + "dev": true, + "requires": { + "domelementtype": "^1.3.1", + "domhandler": "^2.3.0", + "domutils": "^1.5.1", + "entities": "^1.1.1", + "inherits": "^2.0.1", + "readable-stream": "^3.1.1" + }, + "dependencies": { + "entities": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", + "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==", + "dev": true + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, + "http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=", + "dev": true + }, "http-errors": { "version": "1.7.2", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", @@ -2604,6 +5656,29 @@ } } }, + "http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dev": true, + "requires": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + } + }, + "http-proxy-middleware": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", + "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", + "dev": true, + "requires": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + } + }, "http-signature": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", @@ -2615,6 +5690,12 @@ "sshpk": "^1.7.0" } }, + "https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=", + "dev": true + }, "iconv-lite": { "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", @@ -2624,6 +5705,43 @@ "safer-buffer": ">= 2.1.2 < 3" } }, + "icss-utils": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz", + "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==", + "dev": true, + "requires": { + "postcss": "^7.0.14" + } + }, + "ieee754": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz", + "integrity": "sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==", + "dev": true + }, + "iferr": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", + "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=", + "dev": true + }, + "import-local": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "dev": true, + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true + }, "in-publish": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/in-publish/-/in-publish-2.0.1.tgz", @@ -2639,10 +5757,23 @@ "repeating": "^2.0.0" } }, + "indexes-of": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", + "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=", + "dev": true + }, + "infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", + "dev": true + }, "inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, "requires": { "once": "^1.3.0", "wrappy": "1" @@ -2651,22 +5782,57 @@ "inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true }, "ini": { "version": "1.3.5", "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", - "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==" + "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==", + "dev": true + }, + "internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "dev": true, + "requires": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + } }, "interpret": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", - "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==" + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "dev": true + }, + "invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "dev": true, + "requires": { + "loose-envify": "^1.0.0" + } }, "invert-kv": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", - "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=" + "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=", + "dev": true + }, + "ip": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", + "dev": true + }, + "ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=", + "dev": true }, "ipaddr.js": { "version": "1.9.1", @@ -2678,15 +5844,23 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", + "dev": true, "requires": { "is-relative": "^1.0.0", "is-windows": "^1.0.1" } }, + "is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "dev": true + }, "is-accessor-descriptor": { "version": "0.1.6", "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dev": true, "requires": { "kind-of": "^3.0.2" }, @@ -2695,21 +5869,30 @@ "version": "3.2.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, "requires": { "is-buffer": "^1.1.5" } } } }, + "is-arguments": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.0.4.tgz", + "integrity": "sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA==", + "dev": true + }, "is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true }, "is-binary-path": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "dev": true, "requires": { "binary-extensions": "^1.0.0" } @@ -2717,17 +5900,20 @@ "is-buffer": { "version": "1.1.6", "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true }, "is-callable": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.1.tgz", - "integrity": "sha512-wliAfSzx6V+6WfMOmus1xy0XvSgf/dlStkvTfq7F0g4bOIW0PSUbnyse3NhDwdyYS1ozfUtAAySqTws3z9Eqgg==" + "integrity": "sha512-wliAfSzx6V+6WfMOmus1xy0XvSgf/dlStkvTfq7F0g4bOIW0PSUbnyse3NhDwdyYS1ozfUtAAySqTws3z9Eqgg==", + "dev": true }, "is-data-descriptor": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dev": true, "requires": { "kind-of": "^3.0.2" }, @@ -2736,6 +5922,7 @@ "version": "3.2.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, "requires": { "is-buffer": "^1.1.5" } @@ -2745,12 +5932,14 @@ "is-date-object": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", - "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==" + "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==", + "dev": true }, "is-descriptor": { "version": "0.1.6", "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, "requires": { "is-accessor-descriptor": "^0.1.6", "is-data-descriptor": "^0.1.4", @@ -2760,7 +5949,8 @@ "kind-of": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true } } }, @@ -2782,12 +5972,14 @@ "is-extendable": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true }, "is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true }, "is-finite": { "version": "1.1.0", @@ -2799,6 +5991,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true, "requires": { "number-is-nan": "^1.0.0" } @@ -2807,6 +6000,7 @@ "version": "4.0.1", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "dev": true, "requires": { "is-extglob": "^2.1.1" } @@ -2814,17 +6008,20 @@ "is-negated-glob": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", - "integrity": "sha1-aRC8pdqMleeEtXUbl2z1oQ/uNtI=" + "integrity": "sha1-aRC8pdqMleeEtXUbl2z1oQ/uNtI=", + "dev": true }, "is-negative-zero": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.0.tgz", - "integrity": "sha1-lVOxIbD6wohp2p7UWeIMdUN4hGE=" + "integrity": "sha1-lVOxIbD6wohp2p7UWeIMdUN4hGE=", + "dev": true }, "is-number": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, "requires": { "kind-of": "^3.0.2" }, @@ -2833,16 +6030,42 @@ "version": "3.2.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, "requires": { "is-buffer": "^1.1.5" } } } }, + "is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "dev": true + }, + "is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "dev": true, + "requires": { + "is-path-inside": "^2.1.0" + } + }, + "is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "dev": true, + "requires": { + "path-is-inside": "^1.0.2" + } + }, "is-plain-object": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, "requires": { "isobject": "^3.0.1" } @@ -2863,6 +6086,7 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz", "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==", + "dev": true, "requires": { "has-symbols": "^1.0.1" } @@ -2871,14 +6095,22 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", + "dev": true, "requires": { "is-unc-path": "^1.0.0" } }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true + }, "is-symbol": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", + "dev": true, "requires": { "has-symbols": "^1.0.1" } @@ -2893,6 +6125,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", + "dev": true, "requires": { "unc-path-regex": "^0.1.2" } @@ -2900,32 +6133,44 @@ "is-utf8": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=" + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", + "dev": true }, "is-valid-glob": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz", - "integrity": "sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao=" + "integrity": "sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao=", + "dev": true }, "is-windows": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true + }, + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "dev": true }, "isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true }, "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true }, "isobject": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true }, "isstream": { "version": "0.1.2", @@ -2933,18 +6178,64 @@ "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", "dev": true }, + "jest-worker": { + "version": "26.3.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.3.0.tgz", + "integrity": "sha512-Vmpn2F6IASefL+DVBhPzI2J9/GJUsqzomdeN+P+dK8/jKxbh8R3BtFnx3FIta7wYlPU62cpJMJQo4kuOowcMnw==", + "dev": true, + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, "js-base64": { "version": "2.6.4", "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz", "integrity": "sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==", "dev": true }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, "jsbn": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", "dev": true }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, "json-schema": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", @@ -2960,7 +6251,8 @@ "json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=" + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "dev": true }, "json-stringify-safe": { "version": "5.0.1", @@ -2968,6 +6260,21 @@ "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", "dev": true }, + "json3": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.3.tgz", + "integrity": "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==", + "dev": true + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + }, "jsprim": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", @@ -2983,17 +6290,26 @@ "just-debounce": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/just-debounce/-/just-debounce-1.0.0.tgz", - "integrity": "sha1-h/zPrv/AtozRnVX2cilD+SnqNeo=" + "integrity": "sha1-h/zPrv/AtozRnVX2cilD+SnqNeo=", + "dev": true + }, + "killable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", + "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==", + "dev": true }, "kind-of": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true }, "last-run": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/last-run/-/last-run-1.1.1.tgz", "integrity": "sha1-RblpQsF7HHnHchmCWbqUO+v4yls=", + "dev": true, "requires": { "default-resolution": "^2.0.0", "es6-weak-map": "^2.0.1" @@ -3003,6 +6319,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.0.tgz", "integrity": "sha1-9plf4PggOS9hOWvolGJAe7dxaOQ=", + "dev": true, "requires": { "readable-stream": "^2.0.5" } @@ -3011,6 +6328,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", + "dev": true, "requires": { "invert-kv": "^1.0.0" } @@ -3019,14 +6337,31 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz", "integrity": "sha1-bxT5mje+Op3XhPVJVpDlkDRm7kI=", + "dev": true, "requires": { "flush-write-stream": "^1.0.2" } }, + "leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true + }, + "levenary": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/levenary/-/levenary-1.1.1.tgz", + "integrity": "sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ==", + "dev": true, + "requires": { + "leven": "^3.1.0" + } + }, "liftoff": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-3.1.0.tgz", "integrity": "sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==", + "dev": true, "requires": { "extend": "^3.0.0", "findup-sync": "^3.0.0", @@ -3042,6 +6377,7 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", + "dev": true, "requires": { "graceful-fs": "^4.1.2", "parse-json": "^2.2.0", @@ -3050,6 +6386,23 @@ "strip-bom": "^2.0.0" } }, + "loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", + "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", + "dev": true + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, "locate-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", @@ -3199,6 +6552,21 @@ "lodash.escape": "^3.0.0" } }, + "loglevel": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.7.0.tgz", + "integrity": "sha512-i2sY04nal5jDcagM3FMfG++T69GEEM8CYuOfeOIvmXzOIcwE9a/CJPR0MFM97pYMj/u10lzz7/zd7+qwhrBTqQ==", + "dev": true + }, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dev": true, + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, "loud-rejection": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", @@ -3225,6 +6593,24 @@ "yallist": "^2.1.2" } }, + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "dependencies": { + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true + } + } + }, "make-error": { "version": "1.3.6", "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", @@ -3244,6 +6630,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz", "integrity": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==", + "dev": true, "requires": { "kind-of": "^6.0.2" } @@ -3251,7 +6638,8 @@ "map-cache": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=" + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "dev": true }, "map-obj": { "version": "1.0.1", @@ -3269,6 +6657,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "dev": true, "requires": { "object-visit": "^1.0.0" } @@ -3277,6 +6666,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/matchdep/-/matchdep-2.0.0.tgz", "integrity": "sha1-xvNINKDY28OzfCfui7yyfHd1WC4=", + "dev": true, "requires": { "findup-sync": "^2.0.0", "micromatch": "^3.0.4", @@ -3288,6 +6678,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz", "integrity": "sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw=", + "dev": true, "requires": { "detect-file": "^1.0.0", "is-glob": "^3.1.0", @@ -3299,6 +6690,7 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dev": true, "requires": { "is-extglob": "^2.1.0" } @@ -3311,12 +6703,39 @@ "integrity": "sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==", "dev": true }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "dev": true, + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, "media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", "dev": true }, + "memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "dev": true, + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "memorystream": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", + "integrity": "sha1-htcJCzDORV1j+64S3aUaR93K+bI=", + "dev": true + }, "meow": { "version": "3.7.0", "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", @@ -3349,6 +6768,29 @@ "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", "dev": true }, + "merge-source-map": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.1.0.tgz", + "integrity": "sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw==", + "dev": true, + "requires": { + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, "methods": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", @@ -3359,6 +6801,7 @@ "version": "3.1.10", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, "requires": { "arr-diff": "^4.0.0", "array-unique": "^0.3.2", @@ -3375,6 +6818,24 @@ "to-regex": "^3.0.2" } }, + "miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "dev": true, + "requires": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.11.9", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", + "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", + "dev": true + } + } + }, "mime": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", @@ -3396,10 +6857,23 @@ "mime-db": "1.44.0" } }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=", + "dev": true + }, "minimatch": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, "requires": { "brace-expansion": "^1.1.7" } @@ -3410,10 +6884,103 @@ "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", "dev": true }, + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz", + "integrity": "sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + }, + "dependencies": { + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dev": true, + "requires": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "dependencies": { + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "mississippi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", + "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", + "dev": true, + "requires": { + "concat-stream": "^1.5.0", + "duplexify": "^3.4.2", + "end-of-stream": "^1.1.0", + "flush-write-stream": "^1.0.0", + "from2": "^2.1.0", + "parallel-transform": "^1.1.0", + "pump": "^3.0.0", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" + }, + "dependencies": { + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + } + } + }, "mixin-deep": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dev": true, "requires": { "for-in": "^1.0.2", "is-extendable": "^1.0.1" @@ -3423,6 +6990,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, "requires": { "is-plain-object": "^2.0.4" } @@ -3438,10 +7006,41 @@ "minimist": "^1.2.5" } }, + "move-concurrently": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", + "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=", + "dev": true, + "requires": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + } + }, "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", + "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "dev": true, + "requires": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + } + }, + "multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=", + "dev": true }, "multipipe": { "version": "0.1.2", @@ -3455,17 +7054,20 @@ "mute-stdout": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/mute-stdout/-/mute-stdout-1.0.1.tgz", - "integrity": "sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg==" + "integrity": "sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg==", + "dev": true }, "nan": { "version": "2.14.1", "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.1.tgz", - "integrity": "sha512-isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw==" + "integrity": "sha512-isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw==", + "dev": true }, "nanomatch": { "version": "1.2.13", "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, "requires": { "arr-diff": "^4.0.0", "array-unique": "^0.3.2", @@ -3486,10 +7088,23 @@ "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", "dev": true }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, "next-tick": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", - "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=" + "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=", + "dev": true + }, + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true }, "no-case": { "version": "2.3.2", @@ -3500,6 +7115,12 @@ "lower-case": "^1.1.1" } }, + "node-forge": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", + "dev": true + }, "node-gyp": { "version": "3.8.0", "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-3.8.0.tgz", @@ -3528,6 +7149,66 @@ } } }, + "node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", + "dev": true, + "requires": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", + "dev": true + }, + "util": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", + "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "dev": true, + "requires": { + "inherits": "2.0.3" + } + } + } + }, + "node-releases": { + "version": "1.1.61", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.61.tgz", + "integrity": "sha512-DD5vebQLg8jLCOzwupn954fbIiZht05DAZs0k2u8NStSe6h9XdsuIQL8hSRKYiU8WUQRznmSDrKGbv3ObOmC7g==", + "dev": true + }, "node-sass": { "version": "4.14.1", "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-4.14.1.tgz", @@ -3566,6 +7247,7 @@ "version": "2.5.0", "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, "requires": { "hosted-git-info": "^2.1.4", "resolve": "^1.10.0", @@ -3576,12 +7258,14 @@ "normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true }, "now-and-later": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.1.tgz", "integrity": "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==", + "dev": true, "requires": { "once": "^1.3.2" } @@ -3590,6 +7274,7 @@ "version": "6.14.8", "resolved": "https://registry.npmjs.org/npm/-/npm-6.14.8.tgz", "integrity": "sha512-HBZVBMYs5blsj94GTeQZel7s9odVuuSUHy1+AlZh7rPVux1os2ashvEGLy/STNK7vUjbrCg5Kq9/GXisJgdf6A==", + "dev": true, "requires": { "JSONStream": "^1.3.5", "abbrev": "~1.1.1", @@ -3719,6 +7404,7 @@ "JSONStream": { "version": "1.3.5", "bundled": true, + "dev": true, "requires": { "jsonparse": "^1.2.0", "through": ">=2.2.7 <3" @@ -3726,11 +7412,13 @@ }, "abbrev": { "version": "1.1.1", - "bundled": true + "bundled": true, + "dev": true }, "agent-base": { "version": "4.3.0", "bundled": true, + "dev": true, "requires": { "es6-promisify": "^5.0.0" } @@ -3738,6 +7426,7 @@ "agentkeepalive": { "version": "3.5.2", "bundled": true, + "dev": true, "requires": { "humanize-ms": "^1.2.1" } @@ -3745,6 +7434,7 @@ "ajv": { "version": "5.5.2", "bundled": true, + "dev": true, "requires": { "co": "^4.6.0", "fast-deep-equal": "^1.0.0", @@ -3755,40 +7445,48 @@ "ansi-align": { "version": "2.0.0", "bundled": true, + "dev": true, "requires": { "string-width": "^2.0.0" } }, "ansi-regex": { "version": "2.1.1", - "bundled": true + "bundled": true, + "dev": true }, "ansi-styles": { "version": "3.2.1", "bundled": true, + "dev": true, "requires": { "color-convert": "^1.9.0" } }, "ansicolors": { "version": "0.3.2", - "bundled": true + "bundled": true, + "dev": true }, "ansistyles": { "version": "0.1.3", - "bundled": true + "bundled": true, + "dev": true }, "aproba": { "version": "2.0.0", - "bundled": true + "bundled": true, + "dev": true }, "archy": { "version": "1.0.0", - "bundled": true + "bundled": true, + "dev": true }, "are-we-there-yet": { "version": "1.1.4", "bundled": true, + "dev": true, "requires": { "delegates": "^1.0.0", "readable-stream": "^2.0.6" @@ -3797,6 +7495,7 @@ "readable-stream": { "version": "2.3.6", "bundled": true, + "dev": true, "requires": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -3810,6 +7509,7 @@ "string_decoder": { "version": "1.1.1", "bundled": true, + "dev": true, "requires": { "safe-buffer": "~5.1.0" } @@ -3818,38 +7518,46 @@ }, "asap": { "version": "2.0.6", - "bundled": true + "bundled": true, + "dev": true }, "asn1": { "version": "0.2.4", "bundled": true, + "dev": true, "requires": { "safer-buffer": "~2.1.0" } }, "assert-plus": { "version": "1.0.0", - "bundled": true + "bundled": true, + "dev": true }, "asynckit": { "version": "0.4.0", - "bundled": true + "bundled": true, + "dev": true }, "aws-sign2": { "version": "0.7.0", - "bundled": true + "bundled": true, + "dev": true }, "aws4": { "version": "1.8.0", - "bundled": true + "bundled": true, + "dev": true }, "balanced-match": { "version": "1.0.0", - "bundled": true + "bundled": true, + "dev": true }, "bcrypt-pbkdf": { "version": "1.0.2", "bundled": true, + "dev": true, "optional": true, "requires": { "tweetnacl": "^0.14.3" @@ -3858,6 +7566,7 @@ "bin-links": { "version": "1.1.8", "bundled": true, + "dev": true, "requires": { "bluebird": "^3.5.3", "cmd-shim": "^3.0.0", @@ -3869,11 +7578,13 @@ }, "bluebird": { "version": "3.5.5", - "bundled": true + "bundled": true, + "dev": true }, "boxen": { "version": "1.3.0", "bundled": true, + "dev": true, "requires": { "ansi-align": "^2.0.0", "camelcase": "^4.0.0", @@ -3887,6 +7598,7 @@ "brace-expansion": { "version": "1.1.11", "bundled": true, + "dev": true, "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -3894,23 +7606,28 @@ }, "buffer-from": { "version": "1.0.0", - "bundled": true + "bundled": true, + "dev": true }, "builtins": { "version": "1.0.3", - "bundled": true + "bundled": true, + "dev": true }, "byline": { "version": "5.0.0", - "bundled": true + "bundled": true, + "dev": true }, "byte-size": { "version": "5.0.1", - "bundled": true + "bundled": true, + "dev": true }, "cacache": { "version": "12.0.3", "bundled": true, + "dev": true, "requires": { "bluebird": "^3.5.5", "chownr": "^1.1.1", @@ -3931,23 +7648,28 @@ }, "call-limit": { "version": "1.1.1", - "bundled": true + "bundled": true, + "dev": true }, "camelcase": { "version": "4.1.0", - "bundled": true + "bundled": true, + "dev": true }, "capture-stack-trace": { "version": "1.0.0", - "bundled": true + "bundled": true, + "dev": true }, "caseless": { "version": "0.12.0", - "bundled": true + "bundled": true, + "dev": true }, "chalk": { "version": "2.4.1", "bundled": true, + "dev": true, "requires": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", @@ -3956,26 +7678,31 @@ }, "chownr": { "version": "1.1.4", - "bundled": true + "bundled": true, + "dev": true }, "ci-info": { "version": "2.0.0", - "bundled": true + "bundled": true, + "dev": true }, "cidr-regex": { "version": "2.0.10", "bundled": true, + "dev": true, "requires": { "ip-regex": "^2.1.0" } }, "cli-boxes": { "version": "1.0.0", - "bundled": true + "bundled": true, + "dev": true }, "cli-columns": { "version": "3.1.2", "bundled": true, + "dev": true, "requires": { "string-width": "^2.0.0", "strip-ansi": "^3.0.1" @@ -3984,6 +7711,7 @@ "cli-table3": { "version": "0.5.1", "bundled": true, + "dev": true, "requires": { "colors": "^1.1.2", "object-assign": "^4.1.0", @@ -3993,6 +7721,7 @@ "cliui": { "version": "5.0.0", "bundled": true, + "dev": true, "requires": { "string-width": "^3.1.0", "strip-ansi": "^5.2.0", @@ -4001,15 +7730,18 @@ "dependencies": { "ansi-regex": { "version": "4.1.0", - "bundled": true + "bundled": true, + "dev": true }, "is-fullwidth-code-point": { "version": "2.0.0", - "bundled": true + "bundled": true, + "dev": true }, "string-width": { "version": "3.1.0", "bundled": true, + "dev": true, "requires": { "emoji-regex": "^7.0.1", "is-fullwidth-code-point": "^2.0.0", @@ -4019,6 +7751,7 @@ "strip-ansi": { "version": "5.2.0", "bundled": true, + "dev": true, "requires": { "ansi-regex": "^4.1.0" } @@ -4027,11 +7760,13 @@ }, "clone": { "version": "1.0.4", - "bundled": true + "bundled": true, + "dev": true }, "cmd-shim": { "version": "3.0.3", "bundled": true, + "dev": true, "requires": { "graceful-fs": "^4.1.2", "mkdirp": "~0.5.0" @@ -4039,31 +7774,37 @@ }, "co": { "version": "4.6.0", - "bundled": true + "bundled": true, + "dev": true }, "code-point-at": { "version": "1.1.0", - "bundled": true + "bundled": true, + "dev": true }, "color-convert": { "version": "1.9.1", "bundled": true, + "dev": true, "requires": { "color-name": "^1.1.1" } }, "color-name": { "version": "1.1.3", - "bundled": true + "bundled": true, + "dev": true }, "colors": { "version": "1.3.3", "bundled": true, + "dev": true, "optional": true }, "columnify": { "version": "1.5.4", "bundled": true, + "dev": true, "requires": { "strip-ansi": "^3.0.0", "wcwidth": "^1.0.0" @@ -4072,17 +7813,20 @@ "combined-stream": { "version": "1.0.6", "bundled": true, + "dev": true, "requires": { "delayed-stream": "~1.0.0" } }, "concat-map": { "version": "0.0.1", - "bundled": true + "bundled": true, + "dev": true }, "concat-stream": { "version": "1.6.2", "bundled": true, + "dev": true, "requires": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", @@ -4093,6 +7837,7 @@ "readable-stream": { "version": "2.3.6", "bundled": true, + "dev": true, "requires": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -4106,6 +7851,7 @@ "string_decoder": { "version": "1.1.1", "bundled": true, + "dev": true, "requires": { "safe-buffer": "~5.1.0" } @@ -4115,6 +7861,7 @@ "config-chain": { "version": "1.1.12", "bundled": true, + "dev": true, "requires": { "ini": "^1.3.4", "proto-list": "~1.2.1" @@ -4123,6 +7870,7 @@ "configstore": { "version": "3.1.5", "bundled": true, + "dev": true, "requires": { "dot-prop": "^4.2.1", "graceful-fs": "^4.1.2", @@ -4134,11 +7882,13 @@ }, "console-control-strings": { "version": "1.1.0", - "bundled": true + "bundled": true, + "dev": true }, "copy-concurrently": { "version": "1.0.5", "bundled": true, + "dev": true, "requires": { "aproba": "^1.1.1", "fs-write-stream-atomic": "^1.0.8", @@ -4150,21 +7900,25 @@ "dependencies": { "aproba": { "version": "1.2.0", - "bundled": true + "bundled": true, + "dev": true }, "iferr": { "version": "0.1.5", - "bundled": true + "bundled": true, + "dev": true } } }, "core-util-is": { "version": "1.0.2", - "bundled": true + "bundled": true, + "dev": true }, "create-error-class": { "version": "3.0.2", "bundled": true, + "dev": true, "requires": { "capture-stack-trace": "^1.0.0" } @@ -4172,6 +7926,7 @@ "cross-spawn": { "version": "5.1.0", "bundled": true, + "dev": true, "requires": { "lru-cache": "^4.0.1", "shebang-command": "^1.2.0", @@ -4181,6 +7936,7 @@ "lru-cache": { "version": "4.1.5", "bundled": true, + "dev": true, "requires": { "pseudomap": "^1.0.2", "yallist": "^2.1.2" @@ -4188,21 +7944,25 @@ }, "yallist": { "version": "2.1.2", - "bundled": true + "bundled": true, + "dev": true } } }, "crypto-random-string": { "version": "1.0.0", - "bundled": true + "bundled": true, + "dev": true }, "cyclist": { "version": "0.2.2", - "bundled": true + "bundled": true, + "dev": true }, "dashdash": { "version": "1.14.1", "bundled": true, + "dev": true, "requires": { "assert-plus": "^1.0.0" } @@ -4210,35 +7970,42 @@ "debug": { "version": "3.1.0", "bundled": true, + "dev": true, "requires": { "ms": "2.0.0" }, "dependencies": { "ms": { "version": "2.0.0", - "bundled": true + "bundled": true, + "dev": true } } }, "debuglog": { "version": "1.0.1", - "bundled": true + "bundled": true, + "dev": true }, "decamelize": { "version": "1.2.0", - "bundled": true + "bundled": true, + "dev": true }, "decode-uri-component": { "version": "0.2.0", - "bundled": true + "bundled": true, + "dev": true }, "deep-extend": { "version": "0.6.0", - "bundled": true + "bundled": true, + "dev": true }, "defaults": { "version": "1.0.3", "bundled": true, + "dev": true, "requires": { "clone": "^1.0.2" } @@ -4246,29 +8013,35 @@ "define-properties": { "version": "1.1.3", "bundled": true, + "dev": true, "requires": { "object-keys": "^1.0.12" } }, "delayed-stream": { "version": "1.0.0", - "bundled": true + "bundled": true, + "dev": true }, "delegates": { "version": "1.0.0", - "bundled": true + "bundled": true, + "dev": true }, "detect-indent": { "version": "5.0.0", - "bundled": true + "bundled": true, + "dev": true }, "detect-newline": { "version": "2.1.0", - "bundled": true + "bundled": true, + "dev": true }, "dezalgo": { "version": "1.0.3", "bundled": true, + "dev": true, "requires": { "asap": "^2.0.0", "wrappy": "1" @@ -4277,21 +8050,25 @@ "dot-prop": { "version": "4.2.1", "bundled": true, + "dev": true, "requires": { "is-obj": "^1.0.0" } }, "dotenv": { "version": "5.0.1", - "bundled": true + "bundled": true, + "dev": true }, "duplexer3": { "version": "0.1.4", - "bundled": true + "bundled": true, + "dev": true }, "duplexify": { "version": "3.6.0", "bundled": true, + "dev": true, "requires": { "end-of-stream": "^1.0.0", "inherits": "^2.0.1", @@ -4302,6 +8079,7 @@ "readable-stream": { "version": "2.3.6", "bundled": true, + "dev": true, "requires": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -4315,6 +8093,7 @@ "string_decoder": { "version": "1.1.1", "bundled": true, + "dev": true, "requires": { "safe-buffer": "~5.1.0" } @@ -4324,6 +8103,7 @@ "ecc-jsbn": { "version": "0.1.2", "bundled": true, + "dev": true, "optional": true, "requires": { "jsbn": "~0.1.0", @@ -4332,15 +8112,18 @@ }, "editor": { "version": "1.0.0", - "bundled": true + "bundled": true, + "dev": true }, "emoji-regex": { "version": "7.0.3", - "bundled": true + "bundled": true, + "dev": true }, "encoding": { "version": "0.1.12", "bundled": true, + "dev": true, "requires": { "iconv-lite": "~0.4.13" } @@ -4348,21 +8131,25 @@ "end-of-stream": { "version": "1.4.1", "bundled": true, + "dev": true, "requires": { "once": "^1.4.0" } }, "env-paths": { "version": "2.2.0", - "bundled": true + "bundled": true, + "dev": true }, "err-code": { "version": "1.1.2", - "bundled": true + "bundled": true, + "dev": true }, "errno": { "version": "0.1.7", "bundled": true, + "dev": true, "requires": { "prr": "~1.0.1" } @@ -4370,6 +8157,7 @@ "es-abstract": { "version": "1.12.0", "bundled": true, + "dev": true, "requires": { "es-to-primitive": "^1.1.1", "function-bind": "^1.1.1", @@ -4381,6 +8169,7 @@ "es-to-primitive": { "version": "1.2.0", "bundled": true, + "dev": true, "requires": { "is-callable": "^1.1.4", "is-date-object": "^1.0.1", @@ -4389,22 +8178,26 @@ }, "es6-promise": { "version": "4.2.8", - "bundled": true + "bundled": true, + "dev": true }, "es6-promisify": { "version": "5.0.0", "bundled": true, + "dev": true, "requires": { "es6-promise": "^4.0.3" } }, "escape-string-regexp": { "version": "1.0.5", - "bundled": true + "bundled": true, + "dev": true }, "execa": { "version": "0.7.0", "bundled": true, + "dev": true, "requires": { "cross-spawn": "^5.0.1", "get-stream": "^3.0.0", @@ -4417,37 +8210,45 @@ "dependencies": { "get-stream": { "version": "3.0.0", - "bundled": true + "bundled": true, + "dev": true } } }, "extend": { "version": "3.0.2", - "bundled": true + "bundled": true, + "dev": true }, "extsprintf": { "version": "1.3.0", - "bundled": true + "bundled": true, + "dev": true }, "fast-deep-equal": { "version": "1.1.0", - "bundled": true + "bundled": true, + "dev": true }, "fast-json-stable-stringify": { "version": "2.0.0", - "bundled": true + "bundled": true, + "dev": true }, "figgy-pudding": { "version": "3.5.1", - "bundled": true + "bundled": true, + "dev": true }, "find-npm-prefix": { "version": "1.0.2", - "bundled": true + "bundled": true, + "dev": true }, "flush-write-stream": { "version": "1.0.3", "bundled": true, + "dev": true, "requires": { "inherits": "^2.0.1", "readable-stream": "^2.0.4" @@ -4456,6 +8257,7 @@ "readable-stream": { "version": "2.3.6", "bundled": true, + "dev": true, "requires": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -4469,6 +8271,7 @@ "string_decoder": { "version": "1.1.1", "bundled": true, + "dev": true, "requires": { "safe-buffer": "~5.1.0" } @@ -4477,11 +8280,13 @@ }, "forever-agent": { "version": "0.6.1", - "bundled": true + "bundled": true, + "dev": true }, "form-data": { "version": "2.3.2", "bundled": true, + "dev": true, "requires": { "asynckit": "^0.4.0", "combined-stream": "1.0.6", @@ -4491,6 +8296,7 @@ "from2": { "version": "2.3.0", "bundled": true, + "dev": true, "requires": { "inherits": "^2.0.1", "readable-stream": "^2.0.0" @@ -4499,6 +8305,7 @@ "readable-stream": { "version": "2.3.6", "bundled": true, + "dev": true, "requires": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -4512,6 +8319,7 @@ "string_decoder": { "version": "1.1.1", "bundled": true, + "dev": true, "requires": { "safe-buffer": "~5.1.0" } @@ -4521,6 +8329,7 @@ "fs-minipass": { "version": "1.2.7", "bundled": true, + "dev": true, "requires": { "minipass": "^2.6.0" }, @@ -4528,6 +8337,7 @@ "minipass": { "version": "2.9.0", "bundled": true, + "dev": true, "requires": { "safe-buffer": "^5.1.2", "yallist": "^3.0.0" @@ -4538,6 +8348,7 @@ "fs-vacuum": { "version": "1.2.10", "bundled": true, + "dev": true, "requires": { "graceful-fs": "^4.1.2", "path-is-inside": "^1.0.1", @@ -4547,6 +8358,7 @@ "fs-write-stream-atomic": { "version": "1.0.10", "bundled": true, + "dev": true, "requires": { "graceful-fs": "^4.1.2", "iferr": "^0.1.5", @@ -4556,11 +8368,13 @@ "dependencies": { "iferr": { "version": "0.1.5", - "bundled": true + "bundled": true, + "dev": true }, "readable-stream": { "version": "2.3.6", "bundled": true, + "dev": true, "requires": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -4574,6 +8388,7 @@ "string_decoder": { "version": "1.1.1", "bundled": true, + "dev": true, "requires": { "safe-buffer": "~5.1.0" } @@ -4582,15 +8397,18 @@ }, "fs.realpath": { "version": "1.0.0", - "bundled": true + "bundled": true, + "dev": true }, "function-bind": { "version": "1.1.1", - "bundled": true + "bundled": true, + "dev": true }, "gauge": { "version": "2.7.4", "bundled": true, + "dev": true, "requires": { "aproba": "^1.0.3", "console-control-strings": "^1.0.0", @@ -4604,11 +8422,13 @@ "dependencies": { "aproba": { "version": "1.2.0", - "bundled": true + "bundled": true, + "dev": true }, "string-width": { "version": "1.0.2", "bundled": true, + "dev": true, "requires": { "code-point-at": "^1.0.0", "is-fullwidth-code-point": "^1.0.0", @@ -4619,11 +8439,13 @@ }, "genfun": { "version": "5.0.0", - "bundled": true + "bundled": true, + "dev": true }, "gentle-fs": { "version": "2.3.1", "bundled": true, + "dev": true, "requires": { "aproba": "^1.1.2", "chownr": "^1.1.2", @@ -4640,21 +8462,25 @@ "dependencies": { "aproba": { "version": "1.2.0", - "bundled": true + "bundled": true, + "dev": true }, "iferr": { "version": "0.1.5", - "bundled": true + "bundled": true, + "dev": true } } }, "get-caller-file": { "version": "2.0.5", - "bundled": true + "bundled": true, + "dev": true }, "get-stream": { "version": "4.1.0", "bundled": true, + "dev": true, "requires": { "pump": "^3.0.0" } @@ -4662,6 +8488,7 @@ "getpass": { "version": "0.1.7", "bundled": true, + "dev": true, "requires": { "assert-plus": "^1.0.0" } @@ -4669,6 +8496,7 @@ "glob": { "version": "7.1.6", "bundled": true, + "dev": true, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -4681,6 +8509,7 @@ "global-dirs": { "version": "0.1.1", "bundled": true, + "dev": true, "requires": { "ini": "^1.3.4" } @@ -4688,6 +8517,7 @@ "got": { "version": "6.7.1", "bundled": true, + "dev": true, "requires": { "create-error-class": "^3.0.0", "duplexer3": "^0.1.4", @@ -4704,21 +8534,25 @@ "dependencies": { "get-stream": { "version": "3.0.0", - "bundled": true + "bundled": true, + "dev": true } } }, "graceful-fs": { "version": "4.2.4", - "bundled": true + "bundled": true, + "dev": true }, "har-schema": { "version": "2.0.0", - "bundled": true + "bundled": true, + "dev": true }, "har-validator": { "version": "5.1.0", "bundled": true, + "dev": true, "requires": { "ajv": "^5.3.0", "har-schema": "^2.0.0" @@ -4727,33 +8561,40 @@ "has": { "version": "1.0.3", "bundled": true, + "dev": true, "requires": { "function-bind": "^1.1.1" } }, "has-flag": { "version": "3.0.0", - "bundled": true + "bundled": true, + "dev": true }, "has-symbols": { "version": "1.0.0", - "bundled": true + "bundled": true, + "dev": true }, "has-unicode": { "version": "2.0.1", - "bundled": true + "bundled": true, + "dev": true }, "hosted-git-info": { "version": "2.8.8", - "bundled": true + "bundled": true, + "dev": true }, "http-cache-semantics": { "version": "3.8.1", - "bundled": true + "bundled": true, + "dev": true }, "http-proxy-agent": { "version": "2.1.0", "bundled": true, + "dev": true, "requires": { "agent-base": "4", "debug": "3.1.0" @@ -4762,6 +8603,7 @@ "http-signature": { "version": "1.2.0", "bundled": true, + "dev": true, "requires": { "assert-plus": "^1.0.0", "jsprim": "^1.2.2", @@ -4771,6 +8613,7 @@ "https-proxy-agent": { "version": "2.2.4", "bundled": true, + "dev": true, "requires": { "agent-base": "^4.3.0", "debug": "^3.1.0" @@ -4779,6 +8622,7 @@ "humanize-ms": { "version": "1.2.1", "bundled": true, + "dev": true, "requires": { "ms": "^2.0.0" } @@ -4786,36 +8630,43 @@ "iconv-lite": { "version": "0.4.23", "bundled": true, + "dev": true, "requires": { "safer-buffer": ">= 2.1.2 < 3" } }, "iferr": { "version": "1.0.2", - "bundled": true + "bundled": true, + "dev": true }, "ignore-walk": { "version": "3.0.3", "bundled": true, + "dev": true, "requires": { "minimatch": "^3.0.4" } }, "import-lazy": { "version": "2.1.0", - "bundled": true + "bundled": true, + "dev": true }, "imurmurhash": { "version": "0.1.4", - "bundled": true + "bundled": true, + "dev": true }, "infer-owner": { "version": "1.0.4", - "bundled": true + "bundled": true, + "dev": true }, "inflight": { "version": "1.0.6", "bundled": true, + "dev": true, "requires": { "once": "^1.3.0", "wrappy": "1" @@ -4823,15 +8674,18 @@ }, "inherits": { "version": "2.0.4", - "bundled": true + "bundled": true, + "dev": true }, "ini": { "version": "1.3.5", - "bundled": true + "bundled": true, + "dev": true }, "init-package-json": { "version": "1.10.3", "bundled": true, + "dev": true, "requires": { "glob": "^7.1.1", "npm-package-arg": "^4.0.0 || ^5.0.0 || ^6.0.0", @@ -4845,43 +8699,51 @@ }, "ip": { "version": "1.1.5", - "bundled": true + "bundled": true, + "dev": true }, "ip-regex": { "version": "2.1.0", - "bundled": true + "bundled": true, + "dev": true }, "is-callable": { "version": "1.1.4", - "bundled": true + "bundled": true, + "dev": true }, "is-ci": { "version": "1.2.1", "bundled": true, + "dev": true, "requires": { "ci-info": "^1.5.0" }, "dependencies": { "ci-info": { "version": "1.6.0", - "bundled": true + "bundled": true, + "dev": true } } }, "is-cidr": { "version": "3.0.0", "bundled": true, + "dev": true, "requires": { "cidr-regex": "^2.0.10" } }, "is-date-object": { "version": "1.0.1", - "bundled": true + "bundled": true, + "dev": true }, "is-fullwidth-code-point": { "version": "1.0.0", "bundled": true, + "dev": true, "requires": { "number-is-nan": "^1.0.0" } @@ -4889,6 +8751,7 @@ "is-installed-globally": { "version": "0.1.0", "bundled": true, + "dev": true, "requires": { "global-dirs": "^0.1.0", "is-path-inside": "^1.0.0" @@ -4896,89 +8759,108 @@ }, "is-npm": { "version": "1.0.0", - "bundled": true + "bundled": true, + "dev": true }, "is-obj": { "version": "1.0.1", - "bundled": true + "bundled": true, + "dev": true }, "is-path-inside": { "version": "1.0.1", "bundled": true, + "dev": true, "requires": { "path-is-inside": "^1.0.1" } }, "is-redirect": { "version": "1.0.0", - "bundled": true + "bundled": true, + "dev": true }, "is-regex": { "version": "1.0.4", "bundled": true, + "dev": true, "requires": { "has": "^1.0.1" } }, "is-retry-allowed": { "version": "1.2.0", - "bundled": true + "bundled": true, + "dev": true }, "is-stream": { "version": "1.1.0", - "bundled": true + "bundled": true, + "dev": true }, "is-symbol": { "version": "1.0.2", "bundled": true, + "dev": true, "requires": { "has-symbols": "^1.0.0" } }, "is-typedarray": { "version": "1.0.0", - "bundled": true + "bundled": true, + "dev": true }, "isarray": { "version": "1.0.0", - "bundled": true + "bundled": true, + "dev": true }, "isexe": { "version": "2.0.0", - "bundled": true + "bundled": true, + "dev": true }, "isstream": { "version": "0.1.2", - "bundled": true + "bundled": true, + "dev": true }, "jsbn": { "version": "0.1.1", "bundled": true, + "dev": true, "optional": true }, "json-parse-better-errors": { "version": "1.0.2", - "bundled": true + "bundled": true, + "dev": true }, "json-schema": { "version": "0.2.3", - "bundled": true + "bundled": true, + "dev": true }, "json-schema-traverse": { "version": "0.3.1", - "bundled": true + "bundled": true, + "dev": true }, "json-stringify-safe": { "version": "5.0.1", - "bundled": true + "bundled": true, + "dev": true }, "jsonparse": { "version": "1.3.1", - "bundled": true + "bundled": true, + "dev": true }, "jsprim": { "version": "1.4.1", "bundled": true, + "dev": true, "requires": { "assert-plus": "1.0.0", "extsprintf": "1.3.0", @@ -4989,17 +8871,20 @@ "latest-version": { "version": "3.1.0", "bundled": true, + "dev": true, "requires": { "package-json": "^4.0.0" } }, "lazy-property": { "version": "1.0.0", - "bundled": true + "bundled": true, + "dev": true }, "libcipm": { "version": "4.0.8", "bundled": true, + "dev": true, "requires": { "bin-links": "^1.1.2", "bluebird": "^3.5.1", @@ -5021,6 +8906,7 @@ "libnpm": { "version": "3.0.1", "bundled": true, + "dev": true, "requires": { "bin-links": "^1.1.2", "bluebird": "^3.5.3", @@ -5047,6 +8933,7 @@ "libnpmaccess": { "version": "3.0.2", "bundled": true, + "dev": true, "requires": { "aproba": "^2.0.0", "get-stream": "^4.0.0", @@ -5057,6 +8944,7 @@ "libnpmconfig": { "version": "1.2.1", "bundled": true, + "dev": true, "requires": { "figgy-pudding": "^3.5.1", "find-up": "^3.0.0", @@ -5066,6 +8954,7 @@ "find-up": { "version": "3.0.0", "bundled": true, + "dev": true, "requires": { "locate-path": "^3.0.0" } @@ -5073,6 +8962,7 @@ "locate-path": { "version": "3.0.0", "bundled": true, + "dev": true, "requires": { "p-locate": "^3.0.0", "path-exists": "^3.0.0" @@ -5081,6 +8971,7 @@ "p-limit": { "version": "2.2.0", "bundled": true, + "dev": true, "requires": { "p-try": "^2.0.0" } @@ -5088,19 +8979,22 @@ "p-locate": { "version": "3.0.0", "bundled": true, + "dev": true, "requires": { "p-limit": "^2.0.0" } }, "p-try": { "version": "2.2.0", - "bundled": true + "bundled": true, + "dev": true } } }, "libnpmhook": { "version": "5.0.3", "bundled": true, + "dev": true, "requires": { "aproba": "^2.0.0", "figgy-pudding": "^3.4.1", @@ -5111,6 +9005,7 @@ "libnpmorg": { "version": "1.0.1", "bundled": true, + "dev": true, "requires": { "aproba": "^2.0.0", "figgy-pudding": "^3.4.1", @@ -5121,6 +9016,7 @@ "libnpmpublish": { "version": "1.1.2", "bundled": true, + "dev": true, "requires": { "aproba": "^2.0.0", "figgy-pudding": "^3.5.1", @@ -5136,6 +9032,7 @@ "libnpmsearch": { "version": "2.0.2", "bundled": true, + "dev": true, "requires": { "figgy-pudding": "^3.5.1", "get-stream": "^4.0.0", @@ -5145,6 +9042,7 @@ "libnpmteam": { "version": "1.0.2", "bundled": true, + "dev": true, "requires": { "aproba": "^2.0.0", "figgy-pudding": "^3.4.1", @@ -5155,6 +9053,7 @@ "libnpx": { "version": "10.2.4", "bundled": true, + "dev": true, "requires": { "dotenv": "^5.0.1", "npm-package-arg": "^6.0.0", @@ -5169,6 +9068,7 @@ "lock-verify": { "version": "2.1.0", "bundled": true, + "dev": true, "requires": { "npm-package-arg": "^6.1.0", "semver": "^5.4.1" @@ -5177,17 +9077,20 @@ "lockfile": { "version": "1.0.4", "bundled": true, + "dev": true, "requires": { "signal-exit": "^3.0.2" } }, "lodash._baseindexof": { "version": "3.1.0", - "bundled": true + "bundled": true, + "dev": true }, "lodash._baseuniq": { "version": "4.6.0", "bundled": true, + "dev": true, "requires": { "lodash._createset": "~4.0.0", "lodash._root": "~3.0.0" @@ -5195,58 +9098,71 @@ }, "lodash._bindcallback": { "version": "3.0.1", - "bundled": true + "bundled": true, + "dev": true }, "lodash._cacheindexof": { "version": "3.0.2", - "bundled": true + "bundled": true, + "dev": true }, "lodash._createcache": { "version": "3.1.2", "bundled": true, + "dev": true, "requires": { "lodash._getnative": "^3.0.0" } }, "lodash._createset": { "version": "4.0.3", - "bundled": true + "bundled": true, + "dev": true }, "lodash._getnative": { "version": "3.9.1", - "bundled": true + "bundled": true, + "dev": true }, "lodash._root": { "version": "3.0.1", - "bundled": true + "bundled": true, + "dev": true }, "lodash.clonedeep": { "version": "4.5.0", - "bundled": true + "bundled": true, + "dev": true }, "lodash.restparam": { "version": "3.6.1", - "bundled": true + "bundled": true, + "dev": true }, "lodash.union": { "version": "4.6.0", - "bundled": true + "bundled": true, + "dev": true }, "lodash.uniq": { "version": "4.5.0", - "bundled": true + "bundled": true, + "dev": true }, "lodash.without": { "version": "4.4.0", - "bundled": true + "bundled": true, + "dev": true }, "lowercase-keys": { "version": "1.0.1", - "bundled": true + "bundled": true, + "dev": true }, "lru-cache": { "version": "5.1.1", "bundled": true, + "dev": true, "requires": { "yallist": "^3.0.2" } @@ -5254,6 +9170,7 @@ "make-dir": { "version": "1.3.0", "bundled": true, + "dev": true, "requires": { "pify": "^3.0.0" } @@ -5261,6 +9178,7 @@ "make-fetch-happen": { "version": "5.0.2", "bundled": true, + "dev": true, "requires": { "agentkeepalive": "^3.4.1", "cacache": "^12.0.0", @@ -5277,15 +9195,18 @@ }, "meant": { "version": "1.0.2", - "bundled": true + "bundled": true, + "dev": true }, "mime-db": { "version": "1.35.0", - "bundled": true + "bundled": true, + "dev": true }, "mime-types": { "version": "2.1.19", "bundled": true, + "dev": true, "requires": { "mime-db": "~1.35.0" } @@ -5293,17 +9214,20 @@ "minimatch": { "version": "3.0.4", "bundled": true, + "dev": true, "requires": { "brace-expansion": "^1.1.7" } }, "minimist": { "version": "1.2.5", - "bundled": true + "bundled": true, + "dev": true }, "minizlib": { "version": "1.3.3", "bundled": true, + "dev": true, "requires": { "minipass": "^2.9.0" }, @@ -5311,6 +9235,7 @@ "minipass": { "version": "2.9.0", "bundled": true, + "dev": true, "requires": { "safe-buffer": "^5.1.2", "yallist": "^3.0.0" @@ -5321,6 +9246,7 @@ "mississippi": { "version": "3.0.0", "bundled": true, + "dev": true, "requires": { "concat-stream": "^1.5.0", "duplexify": "^3.4.2", @@ -5337,19 +9263,22 @@ "mkdirp": { "version": "0.5.5", "bundled": true, + "dev": true, "requires": { "minimist": "^1.2.5" }, "dependencies": { "minimist": { "version": "1.2.5", - "bundled": true + "bundled": true, + "dev": true } } }, "move-concurrently": { "version": "1.0.1", "bundled": true, + "dev": true, "requires": { "aproba": "^1.1.1", "copy-concurrently": "^1.0.0", @@ -5361,21 +9290,25 @@ "dependencies": { "aproba": { "version": "1.2.0", - "bundled": true + "bundled": true, + "dev": true } } }, "ms": { "version": "2.1.1", - "bundled": true + "bundled": true, + "dev": true }, "mute-stream": { "version": "0.0.7", - "bundled": true + "bundled": true, + "dev": true }, "node-fetch-npm": { "version": "2.0.2", "bundled": true, + "dev": true, "requires": { "encoding": "^0.1.11", "json-parse-better-errors": "^1.0.0", @@ -5385,6 +9318,7 @@ "node-gyp": { "version": "5.1.0", "bundled": true, + "dev": true, "requires": { "env-paths": "^2.2.0", "glob": "^7.1.4", @@ -5402,6 +9336,7 @@ "nopt": { "version": "4.0.3", "bundled": true, + "dev": true, "requires": { "abbrev": "1", "osenv": "^0.1.4" @@ -5410,6 +9345,7 @@ "normalize-package-data": { "version": "2.5.0", "bundled": true, + "dev": true, "requires": { "hosted-git-info": "^2.1.4", "resolve": "^1.10.0", @@ -5420,6 +9356,7 @@ "resolve": { "version": "1.10.0", "bundled": true, + "dev": true, "requires": { "path-parse": "^1.0.6" } @@ -5429,6 +9366,7 @@ "npm-audit-report": { "version": "1.3.3", "bundled": true, + "dev": true, "requires": { "cli-table3": "^0.5.0", "console-control-strings": "^1.1.0" @@ -5437,17 +9375,20 @@ "npm-bundled": { "version": "1.1.1", "bundled": true, + "dev": true, "requires": { "npm-normalize-package-bin": "^1.0.1" } }, "npm-cache-filename": { "version": "1.0.2", - "bundled": true + "bundled": true, + "dev": true }, "npm-install-checks": { "version": "3.0.2", "bundled": true, + "dev": true, "requires": { "semver": "^2.3.0 || 3.x || 4 || 5" } @@ -5455,6 +9396,7 @@ "npm-lifecycle": { "version": "3.1.5", "bundled": true, + "dev": true, "requires": { "byline": "^5.0.0", "graceful-fs": "^4.1.15", @@ -5468,15 +9410,18 @@ }, "npm-logical-tree": { "version": "1.2.1", - "bundled": true + "bundled": true, + "dev": true }, "npm-normalize-package-bin": { "version": "1.0.1", - "bundled": true + "bundled": true, + "dev": true }, "npm-package-arg": { "version": "6.1.1", "bundled": true, + "dev": true, "requires": { "hosted-git-info": "^2.7.1", "osenv": "^0.1.5", @@ -5487,6 +9432,7 @@ "npm-packlist": { "version": "1.4.8", "bundled": true, + "dev": true, "requires": { "ignore-walk": "^3.0.1", "npm-bundled": "^1.0.1", @@ -5496,6 +9442,7 @@ "npm-pick-manifest": { "version": "3.0.2", "bundled": true, + "dev": true, "requires": { "figgy-pudding": "^3.5.1", "npm-package-arg": "^6.0.0", @@ -5505,6 +9452,7 @@ "npm-profile": { "version": "4.0.4", "bundled": true, + "dev": true, "requires": { "aproba": "^1.1.2 || 2", "figgy-pudding": "^3.4.1", @@ -5514,6 +9462,7 @@ "npm-registry-fetch": { "version": "4.0.7", "bundled": true, + "dev": true, "requires": { "JSONStream": "^1.3.4", "bluebird": "^3.5.1", @@ -5526,24 +9475,28 @@ "dependencies": { "safe-buffer": { "version": "5.2.1", - "bundled": true + "bundled": true, + "dev": true } } }, "npm-run-path": { "version": "2.0.2", "bundled": true, + "dev": true, "requires": { "path-key": "^2.0.0" } }, "npm-user-validate": { "version": "1.0.0", - "bundled": true + "bundled": true, + "dev": true }, "npmlog": { "version": "4.1.2", "bundled": true, + "dev": true, "requires": { "are-we-there-yet": "~1.1.2", "console-control-strings": "~1.1.0", @@ -5553,23 +9506,28 @@ }, "number-is-nan": { "version": "1.0.1", - "bundled": true + "bundled": true, + "dev": true }, "oauth-sign": { "version": "0.9.0", - "bundled": true + "bundled": true, + "dev": true }, "object-assign": { "version": "4.1.1", - "bundled": true + "bundled": true, + "dev": true }, "object-keys": { "version": "1.0.12", - "bundled": true + "bundled": true, + "dev": true }, "object.getownpropertydescriptors": { "version": "2.0.3", "bundled": true, + "dev": true, "requires": { "define-properties": "^1.1.2", "es-abstract": "^1.5.1" @@ -5578,25 +9536,30 @@ "once": { "version": "1.4.0", "bundled": true, + "dev": true, "requires": { "wrappy": "1" } }, "opener": { "version": "1.5.1", - "bundled": true + "bundled": true, + "dev": true }, "os-homedir": { "version": "1.0.2", - "bundled": true + "bundled": true, + "dev": true }, "os-tmpdir": { "version": "1.0.2", - "bundled": true + "bundled": true, + "dev": true }, "osenv": { "version": "0.1.5", "bundled": true, + "dev": true, "requires": { "os-homedir": "^1.0.0", "os-tmpdir": "^1.0.0" @@ -5604,11 +9567,13 @@ }, "p-finally": { "version": "1.0.0", - "bundled": true + "bundled": true, + "dev": true }, "package-json": { "version": "4.0.1", "bundled": true, + "dev": true, "requires": { "got": "^6.7.1", "registry-auth-token": "^3.0.1", @@ -5619,6 +9584,7 @@ "pacote": { "version": "9.5.12", "bundled": true, + "dev": true, "requires": { "bluebird": "^3.5.3", "cacache": "^12.0.2", @@ -5655,6 +9621,7 @@ "minipass": { "version": "2.9.0", "bundled": true, + "dev": true, "requires": { "safe-buffer": "^5.1.2", "yallist": "^3.0.0" @@ -5665,6 +9632,7 @@ "parallel-transform": { "version": "1.1.0", "bundled": true, + "dev": true, "requires": { "cyclist": "~0.2.2", "inherits": "^2.0.3", @@ -5674,6 +9642,7 @@ "readable-stream": { "version": "2.3.6", "bundled": true, + "dev": true, "requires": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -5687,6 +9656,7 @@ "string_decoder": { "version": "1.1.1", "bundled": true, + "dev": true, "requires": { "safe-buffer": "~5.1.0" } @@ -5695,47 +9665,58 @@ }, "path-exists": { "version": "3.0.0", - "bundled": true + "bundled": true, + "dev": true }, "path-is-absolute": { "version": "1.0.1", - "bundled": true + "bundled": true, + "dev": true }, "path-is-inside": { "version": "1.0.2", - "bundled": true + "bundled": true, + "dev": true }, "path-key": { "version": "2.0.1", - "bundled": true + "bundled": true, + "dev": true }, "path-parse": { "version": "1.0.6", - "bundled": true + "bundled": true, + "dev": true }, "performance-now": { "version": "2.1.0", - "bundled": true + "bundled": true, + "dev": true }, "pify": { "version": "3.0.0", - "bundled": true + "bundled": true, + "dev": true }, "prepend-http": { "version": "1.0.4", - "bundled": true + "bundled": true, + "dev": true }, "process-nextick-args": { "version": "2.0.0", - "bundled": true + "bundled": true, + "dev": true }, "promise-inflight": { "version": "1.0.1", - "bundled": true + "bundled": true, + "dev": true }, "promise-retry": { "version": "1.1.1", "bundled": true, + "dev": true, "requires": { "err-code": "^1.0.0", "retry": "^0.10.0" @@ -5743,43 +9724,51 @@ "dependencies": { "retry": { "version": "0.10.1", - "bundled": true + "bundled": true, + "dev": true } } }, "promzard": { "version": "0.3.0", "bundled": true, + "dev": true, "requires": { "read": "1" } }, "proto-list": { "version": "1.2.4", - "bundled": true + "bundled": true, + "dev": true }, "protoduck": { "version": "5.0.1", "bundled": true, + "dev": true, "requires": { "genfun": "^5.0.0" } }, "prr": { "version": "1.0.1", - "bundled": true + "bundled": true, + "dev": true }, "pseudomap": { "version": "1.0.2", - "bundled": true + "bundled": true, + "dev": true }, "psl": { "version": "1.1.29", - "bundled": true + "bundled": true, + "dev": true }, "pump": { "version": "3.0.0", "bundled": true, + "dev": true, "requires": { "end-of-stream": "^1.1.0", "once": "^1.3.1" @@ -5788,6 +9777,7 @@ "pumpify": { "version": "1.5.1", "bundled": true, + "dev": true, "requires": { "duplexify": "^3.6.0", "inherits": "^2.0.3", @@ -5797,6 +9787,7 @@ "pump": { "version": "2.0.1", "bundled": true, + "dev": true, "requires": { "end-of-stream": "^1.1.0", "once": "^1.3.1" @@ -5806,19 +9797,23 @@ }, "punycode": { "version": "1.4.1", - "bundled": true + "bundled": true, + "dev": true }, "qrcode-terminal": { "version": "0.12.0", - "bundled": true + "bundled": true, + "dev": true }, "qs": { "version": "6.5.2", - "bundled": true + "bundled": true, + "dev": true }, "query-string": { "version": "6.8.2", "bundled": true, + "dev": true, "requires": { "decode-uri-component": "^0.2.0", "split-on-first": "^1.0.0", @@ -5827,11 +9822,13 @@ }, "qw": { "version": "1.0.1", - "bundled": true + "bundled": true, + "dev": true }, "rc": { "version": "1.2.8", "bundled": true, + "dev": true, "requires": { "deep-extend": "^0.6.0", "ini": "~1.3.0", @@ -5842,6 +9839,7 @@ "read": { "version": "1.0.7", "bundled": true, + "dev": true, "requires": { "mute-stream": "~0.0.4" } @@ -5849,6 +9847,7 @@ "read-cmd-shim": { "version": "1.0.5", "bundled": true, + "dev": true, "requires": { "graceful-fs": "^4.1.2" } @@ -5856,6 +9855,7 @@ "read-installed": { "version": "4.0.3", "bundled": true, + "dev": true, "requires": { "debuglog": "^1.0.1", "graceful-fs": "^4.1.2", @@ -5869,6 +9869,7 @@ "read-package-json": { "version": "2.1.1", "bundled": true, + "dev": true, "requires": { "glob": "^7.1.1", "graceful-fs": "^4.1.2", @@ -5880,6 +9881,7 @@ "read-package-tree": { "version": "5.3.1", "bundled": true, + "dev": true, "requires": { "read-package-json": "^2.0.0", "readdir-scoped-modules": "^1.0.0", @@ -5889,6 +9891,7 @@ "readable-stream": { "version": "3.6.0", "bundled": true, + "dev": true, "requires": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -5898,6 +9901,7 @@ "readdir-scoped-modules": { "version": "1.1.0", "bundled": true, + "dev": true, "requires": { "debuglog": "^1.0.1", "dezalgo": "^1.0.0", @@ -5908,6 +9912,7 @@ "registry-auth-token": { "version": "3.4.0", "bundled": true, + "dev": true, "requires": { "rc": "^1.1.6", "safe-buffer": "^5.0.1" @@ -5916,6 +9921,7 @@ "registry-url": { "version": "3.1.0", "bundled": true, + "dev": true, "requires": { "rc": "^1.0.1" } @@ -5923,6 +9929,7 @@ "request": { "version": "2.88.0", "bundled": true, + "dev": true, "requires": { "aws-sign2": "~0.7.0", "aws4": "^1.8.0", @@ -5948,23 +9955,28 @@ }, "require-directory": { "version": "2.1.1", - "bundled": true + "bundled": true, + "dev": true }, "require-main-filename": { "version": "2.0.0", - "bundled": true + "bundled": true, + "dev": true }, "resolve-from": { "version": "4.0.0", - "bundled": true + "bundled": true, + "dev": true }, "retry": { "version": "0.12.0", - "bundled": true + "bundled": true, + "dev": true }, "rimraf": { "version": "2.7.1", "bundled": true, + "dev": true, "requires": { "glob": "^7.1.3" } @@ -5972,42 +9984,50 @@ "run-queue": { "version": "1.0.3", "bundled": true, + "dev": true, "requires": { "aproba": "^1.1.1" }, "dependencies": { "aproba": { "version": "1.2.0", - "bundled": true + "bundled": true, + "dev": true } } }, "safe-buffer": { "version": "5.1.2", - "bundled": true + "bundled": true, + "dev": true }, "safer-buffer": { "version": "2.1.2", - "bundled": true + "bundled": true, + "dev": true }, "semver": { "version": "5.7.1", - "bundled": true + "bundled": true, + "dev": true }, "semver-diff": { "version": "2.1.0", "bundled": true, + "dev": true, "requires": { "semver": "^5.0.3" } }, "set-blocking": { "version": "2.0.0", - "bundled": true + "bundled": true, + "dev": true }, "sha": { "version": "3.0.0", "bundled": true, + "dev": true, "requires": { "graceful-fs": "^4.1.2" } @@ -6015,29 +10035,35 @@ "shebang-command": { "version": "1.2.0", "bundled": true, + "dev": true, "requires": { "shebang-regex": "^1.0.0" } }, "shebang-regex": { "version": "1.0.0", - "bundled": true + "bundled": true, + "dev": true }, "signal-exit": { "version": "3.0.2", - "bundled": true + "bundled": true, + "dev": true }, "slide": { "version": "1.1.6", - "bundled": true + "bundled": true, + "dev": true }, "smart-buffer": { "version": "4.1.0", - "bundled": true + "bundled": true, + "dev": true }, "socks": { "version": "2.3.3", "bundled": true, + "dev": true, "requires": { "ip": "1.1.5", "smart-buffer": "^4.1.0" @@ -6046,6 +10072,7 @@ "socks-proxy-agent": { "version": "4.0.2", "bundled": true, + "dev": true, "requires": { "agent-base": "~4.2.1", "socks": "~2.3.2" @@ -6054,6 +10081,7 @@ "agent-base": { "version": "4.2.1", "bundled": true, + "dev": true, "requires": { "es6-promisify": "^5.0.0" } @@ -6062,11 +10090,13 @@ }, "sorted-object": { "version": "2.0.1", - "bundled": true + "bundled": true, + "dev": true }, "sorted-union-stream": { "version": "2.1.3", "bundled": true, + "dev": true, "requires": { "from2": "^1.3.0", "stream-iterate": "^1.1.0" @@ -6075,6 +10105,7 @@ "from2": { "version": "1.3.0", "bundled": true, + "dev": true, "requires": { "inherits": "~2.0.1", "readable-stream": "~1.1.10" @@ -6082,11 +10113,13 @@ }, "isarray": { "version": "0.0.1", - "bundled": true + "bundled": true, + "dev": true }, "readable-stream": { "version": "1.1.14", "bundled": true, + "dev": true, "requires": { "core-util-is": "~1.0.0", "inherits": "~2.0.1", @@ -6096,13 +10129,15 @@ }, "string_decoder": { "version": "0.10.31", - "bundled": true + "bundled": true, + "dev": true } } }, "spdx-correct": { "version": "3.0.0", "bundled": true, + "dev": true, "requires": { "spdx-expression-parse": "^3.0.0", "spdx-license-ids": "^3.0.0" @@ -6110,11 +10145,13 @@ }, "spdx-exceptions": { "version": "2.1.0", - "bundled": true + "bundled": true, + "dev": true }, "spdx-expression-parse": { "version": "3.0.0", "bundled": true, + "dev": true, "requires": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" @@ -6122,15 +10159,18 @@ }, "spdx-license-ids": { "version": "3.0.5", - "bundled": true + "bundled": true, + "dev": true }, "split-on-first": { "version": "1.1.0", - "bundled": true + "bundled": true, + "dev": true }, "sshpk": { "version": "1.14.2", "bundled": true, + "dev": true, "requires": { "asn1": "~0.2.3", "assert-plus": "^1.0.0", @@ -6146,6 +10186,7 @@ "ssri": { "version": "6.0.1", "bundled": true, + "dev": true, "requires": { "figgy-pudding": "^3.5.1" } @@ -6153,6 +10194,7 @@ "stream-each": { "version": "1.2.2", "bundled": true, + "dev": true, "requires": { "end-of-stream": "^1.1.0", "stream-shift": "^1.0.0" @@ -6161,6 +10203,7 @@ "stream-iterate": { "version": "1.2.0", "bundled": true, + "dev": true, "requires": { "readable-stream": "^2.1.5", "stream-shift": "^1.0.0" @@ -6169,6 +10212,7 @@ "readable-stream": { "version": "2.3.6", "bundled": true, + "dev": true, "requires": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -6182,6 +10226,7 @@ "string_decoder": { "version": "1.1.1", "bundled": true, + "dev": true, "requires": { "safe-buffer": "~5.1.0" } @@ -6190,15 +10235,18 @@ }, "stream-shift": { "version": "1.0.0", - "bundled": true + "bundled": true, + "dev": true }, "strict-uri-encode": { "version": "2.0.0", - "bundled": true + "bundled": true, + "dev": true }, "string-width": { "version": "2.1.1", "bundled": true, + "dev": true, "requires": { "is-fullwidth-code-point": "^2.0.0", "strip-ansi": "^4.0.0" @@ -6206,15 +10254,18 @@ "dependencies": { "ansi-regex": { "version": "3.0.0", - "bundled": true + "bundled": true, + "dev": true }, "is-fullwidth-code-point": { "version": "2.0.0", - "bundled": true + "bundled": true, + "dev": true }, "strip-ansi": { "version": "4.0.0", "bundled": true, + "dev": true, "requires": { "ansi-regex": "^3.0.0" } @@ -6224,38 +10275,45 @@ "string_decoder": { "version": "1.3.0", "bundled": true, + "dev": true, "requires": { "safe-buffer": "~5.2.0" }, "dependencies": { "safe-buffer": { "version": "5.2.0", - "bundled": true + "bundled": true, + "dev": true } } }, "stringify-package": { "version": "1.0.1", - "bundled": true + "bundled": true, + "dev": true }, "strip-ansi": { "version": "3.0.1", "bundled": true, + "dev": true, "requires": { "ansi-regex": "^2.0.0" } }, "strip-eof": { "version": "1.0.0", - "bundled": true + "bundled": true, + "dev": true }, "strip-json-comments": { "version": "2.0.1", - "bundled": true + "bundled": true, + "dev": true }, "supports-color": { "version": "5.4.0", "bundled": true, + "dev": true, "requires": { "has-flag": "^3.0.0" } @@ -6263,6 +10321,7 @@ "tar": { "version": "4.4.13", "bundled": true, + "dev": true, "requires": { "chownr": "^1.1.1", "fs-minipass": "^1.2.5", @@ -6276,6 +10335,7 @@ "minipass": { "version": "2.9.0", "bundled": true, + "dev": true, "requires": { "safe-buffer": "^5.1.2", "yallist": "^3.0.0" @@ -6286,21 +10346,25 @@ "term-size": { "version": "1.2.0", "bundled": true, + "dev": true, "requires": { "execa": "^0.7.0" } }, "text-table": { "version": "0.2.0", - "bundled": true + "bundled": true, + "dev": true }, "through": { "version": "2.3.8", - "bundled": true + "bundled": true, + "dev": true }, "through2": { "version": "2.0.3", "bundled": true, + "dev": true, "requires": { "readable-stream": "^2.1.5", "xtend": "~4.0.1" @@ -6309,6 +10373,7 @@ "readable-stream": { "version": "2.3.6", "bundled": true, + "dev": true, "requires": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -6322,6 +10387,7 @@ "string_decoder": { "version": "1.1.1", "bundled": true, + "dev": true, "requires": { "safe-buffer": "~5.1.0" } @@ -6330,15 +10396,18 @@ }, "timed-out": { "version": "4.0.1", - "bundled": true + "bundled": true, + "dev": true }, "tiny-relative-date": { "version": "1.3.0", - "bundled": true + "bundled": true, + "dev": true }, "tough-cookie": { "version": "2.4.3", "bundled": true, + "dev": true, "requires": { "psl": "^1.1.24", "punycode": "^1.4.1" @@ -6347,6 +10416,7 @@ "tunnel-agent": { "version": "0.6.0", "bundled": true, + "dev": true, "requires": { "safe-buffer": "^5.0.1" } @@ -6354,23 +10424,28 @@ "tweetnacl": { "version": "0.14.5", "bundled": true, + "dev": true, "optional": true }, "typedarray": { "version": "0.0.6", - "bundled": true + "bundled": true, + "dev": true }, "uid-number": { "version": "0.0.6", - "bundled": true + "bundled": true, + "dev": true }, "umask": { "version": "1.1.0", - "bundled": true + "bundled": true, + "dev": true }, "unique-filename": { "version": "1.1.1", "bundled": true, + "dev": true, "requires": { "unique-slug": "^2.0.0" } @@ -6378,6 +10453,7 @@ "unique-slug": { "version": "2.0.0", "bundled": true, + "dev": true, "requires": { "imurmurhash": "^0.1.4" } @@ -6385,21 +10461,25 @@ "unique-string": { "version": "1.0.0", "bundled": true, + "dev": true, "requires": { "crypto-random-string": "^1.0.0" } }, "unpipe": { "version": "1.0.0", - "bundled": true + "bundled": true, + "dev": true }, "unzip-response": { "version": "2.0.1", - "bundled": true + "bundled": true, + "dev": true }, "update-notifier": { "version": "2.5.0", "bundled": true, + "dev": true, "requires": { "boxen": "^1.2.1", "chalk": "^2.0.1", @@ -6416,32 +10496,38 @@ "url-parse-lax": { "version": "1.0.0", "bundled": true, + "dev": true, "requires": { "prepend-http": "^1.0.1" } }, "util-deprecate": { "version": "1.0.2", - "bundled": true + "bundled": true, + "dev": true }, "util-extend": { "version": "1.0.3", - "bundled": true + "bundled": true, + "dev": true }, "util-promisify": { "version": "2.1.0", "bundled": true, + "dev": true, "requires": { "object.getownpropertydescriptors": "^2.0.3" } }, "uuid": { "version": "3.3.3", - "bundled": true + "bundled": true, + "dev": true }, "validate-npm-package-license": { "version": "3.0.4", "bundled": true, + "dev": true, "requires": { "spdx-correct": "^3.0.0", "spdx-expression-parse": "^3.0.0" @@ -6450,6 +10536,7 @@ "validate-npm-package-name": { "version": "3.0.0", "bundled": true, + "dev": true, "requires": { "builtins": "^1.0.3" } @@ -6457,6 +10544,7 @@ "verror": { "version": "1.10.0", "bundled": true, + "dev": true, "requires": { "assert-plus": "^1.0.0", "core-util-is": "1.0.2", @@ -6466,6 +10554,7 @@ "wcwidth": { "version": "1.0.1", "bundled": true, + "dev": true, "requires": { "defaults": "^1.0.3" } @@ -6473,17 +10562,20 @@ "which": { "version": "1.3.1", "bundled": true, + "dev": true, "requires": { "isexe": "^2.0.0" } }, "which-module": { "version": "2.0.0", - "bundled": true + "bundled": true, + "dev": true }, "wide-align": { "version": "1.1.2", "bundled": true, + "dev": true, "requires": { "string-width": "^1.0.2" }, @@ -6491,6 +10583,7 @@ "string-width": { "version": "1.0.2", "bundled": true, + "dev": true, "requires": { "code-point-at": "^1.0.0", "is-fullwidth-code-point": "^1.0.0", @@ -6502,6 +10595,7 @@ "widest-line": { "version": "2.0.1", "bundled": true, + "dev": true, "requires": { "string-width": "^2.1.1" } @@ -6509,6 +10603,7 @@ "worker-farm": { "version": "1.7.0", "bundled": true, + "dev": true, "requires": { "errno": "~0.1.7" } @@ -6516,6 +10611,7 @@ "wrap-ansi": { "version": "5.1.0", "bundled": true, + "dev": true, "requires": { "ansi-styles": "^3.2.0", "string-width": "^3.0.0", @@ -6524,15 +10620,18 @@ "dependencies": { "ansi-regex": { "version": "4.1.0", - "bundled": true + "bundled": true, + "dev": true }, "is-fullwidth-code-point": { "version": "2.0.0", - "bundled": true + "bundled": true, + "dev": true }, "string-width": { "version": "3.1.0", "bundled": true, + "dev": true, "requires": { "emoji-regex": "^7.0.1", "is-fullwidth-code-point": "^2.0.0", @@ -6542,6 +10641,7 @@ "strip-ansi": { "version": "5.2.0", "bundled": true, + "dev": true, "requires": { "ansi-regex": "^4.1.0" } @@ -6550,11 +10650,13 @@ }, "wrappy": { "version": "1.0.2", - "bundled": true + "bundled": true, + "dev": true }, "write-file-atomic": { "version": "2.4.3", "bundled": true, + "dev": true, "requires": { "graceful-fs": "^4.1.11", "imurmurhash": "^0.1.4", @@ -6563,23 +10665,28 @@ }, "xdg-basedir": { "version": "3.0.0", - "bundled": true + "bundled": true, + "dev": true }, "xtend": { "version": "4.0.1", - "bundled": true + "bundled": true, + "dev": true }, "y18n": { "version": "4.0.0", - "bundled": true + "bundled": true, + "dev": true }, "yallist": { "version": "3.0.3", - "bundled": true + "bundled": true, + "dev": true }, "yargs": { "version": "14.2.3", "bundled": true, + "dev": true, "requires": { "cliui": "^5.0.0", "decamelize": "^1.2.0", @@ -6596,22 +10703,26 @@ "dependencies": { "ansi-regex": { "version": "4.1.0", - "bundled": true + "bundled": true, + "dev": true }, "find-up": { "version": "3.0.0", "bundled": true, + "dev": true, "requires": { "locate-path": "^3.0.0" } }, "is-fullwidth-code-point": { "version": "2.0.0", - "bundled": true + "bundled": true, + "dev": true }, "locate-path": { "version": "3.0.0", "bundled": true, + "dev": true, "requires": { "p-locate": "^3.0.0", "path-exists": "^3.0.0" @@ -6620,6 +10731,7 @@ "p-limit": { "version": "2.3.0", "bundled": true, + "dev": true, "requires": { "p-try": "^2.0.0" } @@ -6627,17 +10739,20 @@ "p-locate": { "version": "3.0.0", "bundled": true, + "dev": true, "requires": { "p-limit": "^2.0.0" } }, "p-try": { "version": "2.2.0", - "bundled": true + "bundled": true, + "dev": true }, "string-width": { "version": "3.1.0", "bundled": true, + "dev": true, "requires": { "emoji-regex": "^7.0.1", "is-fullwidth-code-point": "^2.0.0", @@ -6647,6 +10762,7 @@ "strip-ansi": { "version": "5.2.0", "bundled": true, + "dev": true, "requires": { "ansi-regex": "^4.1.0" } @@ -6656,6 +10772,7 @@ "yargs-parser": { "version": "15.0.1", "bundled": true, + "dev": true, "requires": { "camelcase": "^5.0.0", "decamelize": "^1.2.0" @@ -6663,12 +10780,137 @@ "dependencies": { "camelcase": { "version": "5.3.1", - "bundled": true + "bundled": true, + "dev": true } } } } }, + "npm-run-all": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz", + "integrity": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "chalk": "^2.4.1", + "cross-spawn": "^6.0.5", + "memorystream": "^0.3.1", + "minimatch": "^3.0.4", + "pidtree": "^0.3.0", + "read-pkg": "^3.0.0", + "shell-quote": "^1.6.1", + "string.prototype.padend": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + } + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "dev": true, + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, + "path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dev": true, + "requires": { + "pify": "^3.0.0" + } + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + }, + "read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", + "dev": true, + "requires": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dev": true, + "requires": { + "path-key": "^2.0.0" + } + }, "npmlog": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", @@ -6681,10 +10923,20 @@ "set-blocking": "~2.0.0" } }, + "nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "dev": true, + "requires": { + "boolbase": "~1.0.0" + } + }, "number-is-nan": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "dev": true }, "oauth-sign": { "version": "0.9.0", @@ -6702,6 +10954,7 @@ "version": "0.1.0", "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "dev": true, "requires": { "copy-descriptor": "^0.1.0", "define-property": "^0.2.5", @@ -6712,6 +10965,7 @@ "version": "0.2.5", "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, "requires": { "is-descriptor": "^0.1.0" } @@ -6720,6 +10974,7 @@ "version": "3.2.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, "requires": { "is-buffer": "^1.1.5" } @@ -6729,17 +10984,51 @@ "object-inspect": { "version": "1.8.0", "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz", - "integrity": "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==" + "integrity": "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==", + "dev": true + }, + "object-is": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.2.tgz", + "integrity": "sha512-5lHCz+0uufF6wZ7CRFWJN3hp8Jqblpgve06U5CMQ3f//6iDjPr2PEo9MWCjEssDsa+UZEL4PkFpr+BMop6aKzQ==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.5" + }, + "dependencies": { + "es-abstract": { + "version": "1.17.6", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz", + "integrity": "sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==", + "dev": true, + "requires": { + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1", + "is-callable": "^1.2.0", + "is-regex": "^1.1.0", + "object-inspect": "^1.7.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.0", + "string.prototype.trimend": "^1.0.1", + "string.prototype.trimstart": "^1.0.1" + } + } + } }, "object-keys": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true }, "object-visit": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "dev": true, "requires": { "isobject": "^3.0.0" } @@ -6748,6 +11037,7 @@ "version": "4.1.1", "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.1.tgz", "integrity": "sha512-VT/cxmx5yaoHSOTSyrCygIDFco+RsibY2NM0a4RdEeY/4KgqezwFtK1yr3U67xYhqJSlASm2pKhLVzPj2lr4bA==", + "dev": true, "requires": { "define-properties": "^1.1.3", "es-abstract": "^1.18.0-next.0", @@ -6759,6 +11049,7 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz", "integrity": "sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8=", + "dev": true, "requires": { "array-each": "^1.0.1", "array-slice": "^1.0.0", @@ -6766,10 +11057,42 @@ "isobject": "^3.0.0" } }, + "object.getownpropertydescriptors": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz", + "integrity": "sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.0-next.1" + }, + "dependencies": { + "es-abstract": { + "version": "1.17.6", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz", + "integrity": "sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==", + "dev": true, + "requires": { + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1", + "is-callable": "^1.2.0", + "is-regex": "^1.1.0", + "object-inspect": "^1.7.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.0", + "string.prototype.trimend": "^1.0.1", + "string.prototype.trimstart": "^1.0.1" + } + } + } + }, "object.map": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz", "integrity": "sha1-z4Plncj8wK1fQlDh94s7gb2AHTc=", + "dev": true, "requires": { "for-own": "^1.0.0", "make-iterator": "^1.0.0" @@ -6800,6 +11123,7 @@ "version": "1.3.0", "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "dev": true, "requires": { "isobject": "^3.0.1" } @@ -6808,11 +11132,18 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/object.reduce/-/object.reduce-1.0.1.tgz", "integrity": "sha1-b+NI8qx/oPlcpiEiZZkJaCW7A60=", + "dev": true, "requires": { "for-own": "^1.0.0", "make-iterator": "^1.0.0" } }, + "obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "dev": true + }, "on-finished": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", @@ -6822,22 +11153,54 @@ "ee-first": "1.1.1" } }, + "on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true + }, "once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, "requires": { "wrappy": "1" } }, + "opn": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", + "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", + "dev": true, + "requires": { + "is-wsl": "^1.1.0" + } + }, "ordered-read-streams": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz", "integrity": "sha1-d8DLN8QVJdZBZtmQ/61+xqDhNj4=", + "dev": true, "requires": { "readable-stream": "^2.0.1" } }, + "original": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/original/-/original-1.0.2.tgz", + "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==", + "dev": true, + "requires": { + "url-parse": "^1.4.3" + } + }, + "os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=", + "dev": true + }, "os-homedir": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", @@ -6860,6 +11223,12 @@ "os-tmpdir": "^1.0.0" } }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "dev": true + }, "p-limit": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", @@ -6878,12 +11247,44 @@ "p-limit": "^2.0.0" } }, + "p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "dev": true + }, + "p-retry": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", + "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", + "dev": true, + "requires": { + "retry": "^0.12.0" + } + }, "p-try": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true }, + "pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "dev": true + }, + "parallel-transform": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", + "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", + "dev": true, + "requires": { + "cyclist": "^1.0.1", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" + } + }, "param-case": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", @@ -6893,10 +11294,24 @@ "no-case": "^2.2.0" } }, + "parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", + "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "dev": true, + "requires": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, "parse-filepath": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", "integrity": "sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE=", + "dev": true, "requires": { "is-absolute": "^1.0.0", "map-cache": "^0.2.0", @@ -6936,6 +11351,7 @@ "version": "2.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "dev": true, "requires": { "error-ex": "^1.2.0" } @@ -6943,12 +11359,14 @@ "parse-node-version": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", - "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==" + "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", + "dev": true }, "parse-passwd": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", - "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=" + "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=", + "dev": true }, "parseurl": { "version": "1.3.3", @@ -6956,10 +11374,42 @@ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", "dev": true }, + "pascal-case": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.1.tgz", + "integrity": "sha512-XIeHKqIrsquVTQL2crjq3NfJUxmdLasn3TYOU0VBM+UX2a6ztAWBlJQBePLGY7VHW8+2dRadeIPK5+KImwTxQA==", + "dev": true, + "requires": { + "no-case": "^3.0.3", + "tslib": "^1.10.0" + }, + "dependencies": { + "lower-case": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.1.tgz", + "integrity": "sha512-LiWgfDLLb1dwbFQZsSglpRj+1ctGnayXz3Uv0/WO8n558JycT5fg6zkNcnW0G68Nn0aEldTFeEfmjCfmqry/rQ==", + "dev": true, + "requires": { + "tslib": "^1.10.0" + } + }, + "no-case": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.3.tgz", + "integrity": "sha512-ehY/mVQCf9BL0gKfsJBvFJen+1V//U+0HQMPrWct40ixE4jnv0bfvxDbWtAHL9EcaPEOJHVVYKoQn1TlZUB8Tw==", + "dev": true, + "requires": { + "lower-case": "^2.0.1", + "tslib": "^1.10.0" + } + } + } + }, "pascalcase": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=" + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", + "dev": true }, "path": { "version": "0.12.7", @@ -6971,15 +11421,23 @@ "util": "^0.10.3" } }, + "path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", + "dev": true + }, "path-dirname": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=" + "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", + "dev": true }, "path-exists": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "dev": true, "requires": { "pinkie-promise": "^2.0.0" } @@ -6987,17 +11445,32 @@ "path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", + "dev": true + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true }, "path-parse": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", - "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==" + "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", + "dev": true }, "path-root": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", "integrity": "sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=", + "dev": true, "requires": { "path-root-regex": "^0.1.0" } @@ -7005,7 +11478,8 @@ "path-root-regex": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", - "integrity": "sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0=" + "integrity": "sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0=", + "dev": true }, "path-to-regexp": { "version": "0.1.7", @@ -7017,36 +11491,86 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", + "dev": true, "requires": { "graceful-fs": "^4.1.2", "pify": "^2.0.0", "pinkie-promise": "^2.0.0" } }, + "pbkdf2": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.1.tgz", + "integrity": "sha512-4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg==", + "dev": true, + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, "performance-now": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", "dev": true }, + "picomatch": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", + "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", + "dev": true, + "optional": true + }, + "pidtree": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz", + "integrity": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==", + "dev": true + }, "pify": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true }, "pinkie": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "dev": true }, "pinkie-promise": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dev": true, "requires": { "pinkie": "^2.0.0" } }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "requires": { + "find-up": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + } + } + }, "plugin-error": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-1.0.1.tgz", @@ -7059,10 +11583,156 @@ "extend-shallow": "^3.0.2" } }, + "portfinder": { + "version": "1.0.28", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz", + "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==", + "dev": true, + "requires": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "dependencies": { + "debug": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", + "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + } + } + }, "posix-character-classes": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=" + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", + "dev": true + }, + "postcss": { + "version": "7.0.34", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.34.tgz", + "integrity": "sha512-H/7V2VeNScX9KE83GDrDZNiGT1m2H+UTnlinIzhjlLX9hfMUn1mHNnGeX81a1c8JSBdBvqk7c2ZOG6ZPn5itGw==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-modules-extract-imports": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz", + "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==", + "dev": true, + "requires": { + "postcss": "^7.0.5" + } + }, + "postcss-modules-local-by-default": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz", + "integrity": "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==", + "dev": true, + "requires": { + "icss-utils": "^4.1.1", + "postcss": "^7.0.32", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-modules-scope": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz", + "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==", + "dev": true, + "requires": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^6.0.0" + } + }, + "postcss-modules-values": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz", + "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==", + "dev": true, + "requires": { + "icss-utils": "^4.0.0", + "postcss": "^7.0.6" + } + }, + "postcss-selector-parser": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz", + "integrity": "sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg==", + "dev": true, + "requires": { + "cssesc": "^3.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + }, + "postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", + "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==", + "dev": true }, "preserve": { "version": "0.2.0", @@ -7070,10 +11740,28 @@ "integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=", "dev": true }, + "prettier": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.19.1.tgz", + "integrity": "sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==", + "dev": true, + "optional": true + }, + "pretty-error": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.1.tgz", + "integrity": "sha1-X0+HyPkeWuPzuoerTPXgOxoX8aM=", + "dev": true, + "requires": { + "renderkid": "^2.0.1", + "utila": "~0.4" + } + }, "pretty-hrtime": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", - "integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=" + "integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=", + "dev": true }, "process": { "version": "0.11.10", @@ -7084,7 +11772,14 @@ "process-nextick-args": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", + "dev": true }, "proxy-addr": { "version": "2.0.6", @@ -7096,6 +11791,12 @@ "ipaddr.js": "1.9.1" } }, + "prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", + "dev": true + }, "pseudomap": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", @@ -7108,10 +11809,33 @@ "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==", "dev": true }, + "public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": { + "bn.js": { + "version": "4.11.9", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", + "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", + "dev": true + } + } + }, "pump": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dev": true, "requires": { "end-of-stream": "^1.1.0", "once": "^1.3.1" @@ -7121,6 +11845,7 @@ "version": "1.5.1", "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "dev": true, "requires": { "duplexify": "^3.6.0", "inherits": "^2.0.3", @@ -7139,6 +11864,24 @@ "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", "dev": true }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", + "dev": true + }, + "querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", + "dev": true + }, + "querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true + }, "randomatic": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-3.1.1.tgz", @@ -7158,6 +11901,25 @@ } } }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "dev": true, + "requires": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, "range-parser": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", @@ -7180,6 +11942,7 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", + "dev": true, "requires": { "load-json-file": "^1.0.0", "normalize-package-data": "^2.3.2", @@ -7190,6 +11953,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", + "dev": true, "requires": { "find-up": "^1.0.0", "read-pkg": "^1.0.0" @@ -7199,6 +11963,7 @@ "version": "2.3.7", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, "requires": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -7213,6 +11978,7 @@ "version": "2.2.1", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, "requires": { "graceful-fs": "^4.1.11", "micromatch": "^3.1.10", @@ -7223,6 +11989,7 @@ "version": "0.6.2", "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", + "dev": true, "requires": { "resolve": "^1.1.6" } @@ -7237,6 +12004,36 @@ "strip-indent": "^1.0.1" } }, + "regenerate": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.1.tgz", + "integrity": "sha512-j2+C8+NtXQgEKWk49MMP5P/u2GhnahTtVkRIHr5R5lVRlbKvmQ+oS+A5aLKWp2ma5VkT8sh6v+v4hbH0YHR66A==", + "dev": true + }, + "regenerate-unicode-properties": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz", + "integrity": "sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==", + "dev": true, + "requires": { + "regenerate": "^1.4.0" + } + }, + "regenerator-runtime": { + "version": "0.13.7", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", + "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==", + "dev": true + }, + "regenerator-transform": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz", + "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==", + "dev": true, + "requires": { + "@babel/runtime": "^7.8.4" + } + }, "regex-cache": { "version": "0.4.4", "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz", @@ -7250,11 +12047,80 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, "requires": { "extend-shallow": "^3.0.2", "safe-regex": "^1.1.0" } }, + "regexp.prototype.flags": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz", + "integrity": "sha512-2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.0-next.1" + }, + "dependencies": { + "es-abstract": { + "version": "1.17.6", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz", + "integrity": "sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==", + "dev": true, + "requires": { + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1", + "is-callable": "^1.2.0", + "is-regex": "^1.1.0", + "object-inspect": "^1.7.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.0", + "string.prototype.trimend": "^1.0.1", + "string.prototype.trimstart": "^1.0.1" + } + } + } + }, + "regexpu-core": { + "version": "4.7.1", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz", + "integrity": "sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==", + "dev": true, + "requires": { + "regenerate": "^1.4.0", + "regenerate-unicode-properties": "^8.2.0", + "regjsgen": "^0.5.1", + "regjsparser": "^0.6.4", + "unicode-match-property-ecmascript": "^1.0.4", + "unicode-match-property-value-ecmascript": "^1.2.0" + } + }, + "regjsgen": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz", + "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==", + "dev": true + }, + "regjsparser": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.4.tgz", + "integrity": "sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==", + "dev": true, + "requires": { + "jsesc": "~0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", + "dev": true + } + } + }, "relateurl": { "version": "0.2.7", "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", @@ -7265,6 +12131,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz", "integrity": "sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==", + "dev": true, "requires": { "is-buffer": "^1.1.5", "is-utf8": "^0.2.1" @@ -7274,6 +12141,7 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz", "integrity": "sha1-BfGlk/FuQuH7kOv1nejlaVJflSM=", + "dev": true, "requires": { "remove-bom-buffer": "^3.0.0", "safe-buffer": "^5.1.0", @@ -7283,17 +12151,33 @@ "remove-trailing-separator": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "dev": true + }, + "renderkid": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.3.tgz", + "integrity": "sha512-z8CLQp7EZBPCwCnncgf9C4XAi3WR0dv+uWu/PjIyhhAb5d6IJ/QZqlHFprHeKT+59//V6BNUsLbvN8+2LarxGA==", + "dev": true, + "requires": { + "css-select": "^1.1.0", + "dom-converter": "^0.2", + "htmlparser2": "^3.3.0", + "strip-ansi": "^3.0.0", + "utila": "^0.4.0" + } }, "repeat-element": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", - "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==" + "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==", + "dev": true }, "repeat-string": { "version": "1.6.1", "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true }, "repeating": { "version": "2.0.1", @@ -7307,12 +12191,14 @@ "replace-ext": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", - "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==" + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "dev": true }, "replace-homedir": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/replace-homedir/-/replace-homedir-1.0.0.tgz", "integrity": "sha1-6H9tUTuSjd6AgmDBK+f+xv9ueYw=", + "dev": true, "requires": { "homedir-polyfill": "^1.0.1", "is-absolute": "^1.0.0", @@ -7358,7 +12244,8 @@ "require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "dev": true }, "require-main-filename": { "version": "2.0.0", @@ -7366,27 +12253,51 @@ "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", "dev": true }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", + "dev": true + }, "resolve": { "version": "1.17.0", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", + "dev": true, "requires": { "path-parse": "^1.0.6" } }, + "resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "dev": true, + "requires": { + "resolve-from": "^3.0.0" + } + }, "resolve-dir": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=", + "dev": true, "requires": { "expand-tilde": "^2.0.0", "global-modules": "^1.0.0" } }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "dev": true + }, "resolve-options": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz", "integrity": "sha1-MrueOcBtZzONyTeMDW1gdFZq0TE=", + "dev": true, "requires": { "value-or-function": "^3.0.0" } @@ -7394,12 +12305,20 @@ "resolve-url": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=" + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "dev": true }, "ret": { "version": "0.1.15", "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==" + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true + }, + "retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", + "dev": true }, "rimraf": { "version": "2.7.1", @@ -7410,15 +12329,36 @@ "glob": "^7.1.3" } }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "dev": true, + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "run-queue": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", + "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", + "dev": true, + "requires": { + "aproba": "^1.1.1" + } + }, "safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true }, "safe-regex": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "dev": true, "requires": { "ret": "~0.1.10" } @@ -7429,6 +12369,15 @@ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", "dev": true }, + "sass": { + "version": "1.26.11", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.26.11.tgz", + "integrity": "sha512-W1l/+vjGjIamsJ6OnTe0K37U2DBO/dgsv2Z4c89XQ8ZOO6l/VwkqwLSqoYzJeJs6CLuGSTRWc91GbQFL3lvrvw==", + "dev": true, + "requires": { + "chokidar": ">=2.0.0 <4.0.0" + } + }, "sass-graph": { "version": "2.2.5", "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-2.2.5.tgz", @@ -7502,6 +12451,49 @@ } } }, + "sass-loader": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-8.0.2.tgz", + "integrity": "sha512-7o4dbSK8/Ol2KflEmSco4jTjQoV988bM82P9CZdmo9hR3RLnvNc0ufMNdMrB0caq38JQ/FgF4/7RcbcfKzxoFQ==", + "dev": true, + "requires": { + "clone-deep": "^4.0.1", + "loader-utils": "^1.2.3", + "neo-async": "^2.6.1", + "schema-utils": "^2.6.1", + "semver": "^6.3.0" + }, + "dependencies": { + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dev": true, + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + } + }, "scss-tokenizer": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz", @@ -7523,15 +12515,32 @@ } } }, + "select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=", + "dev": true + }, + "selfsigned": { + "version": "1.10.8", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.8.tgz", + "integrity": "sha512-2P4PtieJeEwVgTU9QEcwIRDQ/mXJLX8/+I3ur+Pg16nS8oNbrGxEso9NyYWy8NAmXiNl4dlAp5MwoNeCWzON4w==", + "dev": true, + "requires": { + "node-forge": "^0.10.0" + } + }, "semver": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true }, "semver-greatest-satisfied-range": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-1.1.0.tgz", "integrity": "sha1-E+jCZYq5aRywzXEJMkAoDTb3els=", + "dev": true, "requires": { "sver-compat": "^1.5.0" } @@ -7565,6 +12574,56 @@ } } }, + "serialize-javascript": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz", + "integrity": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==", + "dev": true, + "requires": { + "randombytes": "^2.1.0" + } + }, + "serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "dev": true, + "requires": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "dependencies": { + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "dev": true, + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + } + } + }, "serve-static": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", @@ -7580,12 +12639,14 @@ "set-blocking": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "dev": true }, "set-value": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, "requires": { "extend-shallow": "^2.0.1", "is-extendable": "^0.1.1", @@ -7597,18 +12658,65 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, "requires": { "is-extendable": "^0.1.0" } } } }, + "setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=", + "dev": true + }, "setprototypeof": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==", "dev": true }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "dev": true, + "requires": { + "kind-of": "^6.0.2" + } + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true + }, + "shell-quote": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz", + "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==", + "dev": true + }, "signal-exit": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", @@ -7625,6 +12733,7 @@ "version": "0.8.2", "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, "requires": { "base": "^0.11.1", "debug": "^2.2.0", @@ -7640,6 +12749,7 @@ "version": "0.2.5", "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, "requires": { "is-descriptor": "^0.1.0" } @@ -7648,6 +12758,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, "requires": { "is-extendable": "^0.1.0" } @@ -7658,6 +12769,7 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, "requires": { "define-property": "^1.0.0", "isobject": "^3.0.0", @@ -7668,6 +12780,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, "requires": { "is-descriptor": "^1.0.0" } @@ -7676,6 +12789,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, "requires": { "kind-of": "^6.0.0" } @@ -7684,6 +12798,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, "requires": { "kind-of": "^6.0.0" } @@ -7692,6 +12807,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, "requires": { "is-accessor-descriptor": "^1.0.0", "is-data-descriptor": "^1.0.0", @@ -7704,6 +12820,7 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, "requires": { "kind-of": "^3.2.0" }, @@ -7712,21 +12829,81 @@ "version": "3.2.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, "requires": { "is-buffer": "^1.1.5" } } } }, + "sockjs": { + "version": "0.3.20", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.20.tgz", + "integrity": "sha512-SpmVOVpdq0DJc0qArhF3E5xsxvaiqGNb73XfgBpK1y3UD5gs8DSo8aCTsuT5pX8rssdc2NDIzANwP9eCAiSdTA==", + "dev": true, + "requires": { + "faye-websocket": "^0.10.0", + "uuid": "^3.4.0", + "websocket-driver": "0.6.5" + } + }, + "sockjs-client": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.4.0.tgz", + "integrity": "sha512-5zaLyO8/nri5cua0VtOrFXBPK1jbL4+1cebT/mmKA1E1ZXOvJrII75bPu0l0k843G/+iAbhEqzyKr0w/eCCj7g==", + "dev": true, + "requires": { + "debug": "^3.2.5", + "eventsource": "^1.0.7", + "faye-websocket": "~0.11.1", + "inherits": "^2.0.3", + "json3": "^3.3.2", + "url-parse": "^1.4.3" + }, + "dependencies": { + "debug": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", + "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "faye-websocket": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz", + "integrity": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==", + "dev": true, + "requires": { + "websocket-driver": ">=0.5.1" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + } + } + }, + "source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", + "dev": true + }, "source-map": { "version": "0.5.7", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true }, "source-map-resolve": { "version": "0.5.3", "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "dev": true, "requires": { "atob": "^2.1.2", "decode-uri-component": "^0.2.0", @@ -7735,20 +12912,41 @@ "urix": "^0.1.0" } }, + "source-map-support": { + "version": "0.5.19", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", + "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, "source-map-url": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", - "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=" + "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=", + "dev": true }, "sparkles": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.1.tgz", - "integrity": "sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==" + "integrity": "sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==", + "dev": true }, "spdx-correct": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "dev": true, "requires": { "spdx-expression-parse": "^3.0.0", "spdx-license-ids": "^3.0.0" @@ -7757,12 +12955,14 @@ "spdx-exceptions": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true }, "spdx-expression-parse": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, "requires": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" @@ -7771,12 +12971,86 @@ "spdx-license-ids": { "version": "3.0.6", "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.6.tgz", - "integrity": "sha512-+orQK83kyMva3WyPf59k1+Y525csj5JejicWut55zeTWANuN17qSiSLUXWtzHeNWORSvT7GLDJ/E/XiIWoXBTw==" + "integrity": "sha512-+orQK83kyMva3WyPf59k1+Y525csj5JejicWut55zeTWANuN17qSiSLUXWtzHeNWORSvT7GLDJ/E/XiIWoXBTw==", + "dev": true + }, + "spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dev": true, + "requires": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "dependencies": { + "debug": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz", + "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + } + } + }, + "spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dev": true, + "requires": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + }, + "dependencies": { + "debug": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz", + "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } }, "split-string": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, "requires": { "extend-shallow": "^3.0.0" } @@ -7798,15 +13072,26 @@ "tweetnacl": "~0.14.0" } }, + "ssri": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.0.tgz", + "integrity": "sha512-aq/pz989nxVYwn16Tsbj1TqFpD5LLrQxHf5zaHuieFV+R0Bbr4y8qUsOA45hXT/N4/9UNXTarBjnjVmjSOVaAA==", + "dev": true, + "requires": { + "minipass": "^3.1.1" + } + }, "stack-trace": { "version": "0.0.10", "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", - "integrity": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=" + "integrity": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=", + "dev": true }, "static-extend": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "dev": true, "requires": { "define-property": "^0.2.5", "object-copy": "^0.1.0" @@ -7816,6 +13101,7 @@ "version": "0.2.5", "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, "requires": { "is-descriptor": "^0.1.0" } @@ -7837,15 +13123,50 @@ "readable-stream": "^2.0.1" } }, + "stream-browserify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", + "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", + "dev": true, + "requires": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + } + }, + "stream-each": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", + "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + } + }, "stream-exhaust": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/stream-exhaust/-/stream-exhaust-1.0.2.tgz", - "integrity": "sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==" + "integrity": "sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==", + "dev": true + }, + "stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", + "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "dev": true, + "requires": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + } }, "stream-shift": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", - "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==" + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", + "dev": true }, "stream-to-array": { "version": "2.3.0", @@ -7860,16 +13181,49 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dev": true, "requires": { "code-point-at": "^1.0.0", "is-fullwidth-code-point": "^1.0.0", "strip-ansi": "^3.0.0" } }, + "string.prototype.padend": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.0.tgz", + "integrity": "sha512-3aIv8Ffdp8EZj8iLwREGpQaUZiPyrWrpzMBHvkiSW/bK/EGve9np07Vwy7IJ5waydpGXzQZu/F8Oze2/IWkBaA==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.0-next.1" + }, + "dependencies": { + "es-abstract": { + "version": "1.17.6", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz", + "integrity": "sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==", + "dev": true, + "requires": { + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1", + "is-callable": "^1.2.0", + "is-regex": "^1.1.0", + "object-inspect": "^1.7.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.0", + "string.prototype.trimend": "^1.0.1", + "string.prototype.trimstart": "^1.0.1" + } + } + } + }, "string.prototype.trimend": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz", "integrity": "sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g==", + "dev": true, "requires": { "define-properties": "^1.1.3", "es-abstract": "^1.17.5" @@ -7879,6 +13233,7 @@ "version": "1.17.6", "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz", "integrity": "sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==", + "dev": true, "requires": { "es-to-primitive": "^1.2.1", "function-bind": "^1.1.1", @@ -7899,6 +13254,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz", "integrity": "sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw==", + "dev": true, "requires": { "define-properties": "^1.1.3", "es-abstract": "^1.17.5" @@ -7908,6 +13264,7 @@ "version": "1.17.6", "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz", "integrity": "sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==", + "dev": true, "requires": { "es-to-primitive": "^1.2.1", "function-bind": "^1.1.1", @@ -7928,6 +13285,7 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, "requires": { "safe-buffer": "~5.1.0" } @@ -7936,6 +13294,7 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, "requires": { "ansi-regex": "^2.0.0" } @@ -7944,6 +13303,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "dev": true, "requires": { "is-utf8": "^0.2.0" } @@ -7958,6 +13318,12 @@ "strip-bom": "^2.0.0" } }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "dev": true + }, "strip-indent": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", @@ -7967,6 +13333,49 @@ "get-stdin": "^4.0.1" } }, + "style-loader": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-1.2.1.tgz", + "integrity": "sha512-ByHSTQvHLkWE9Ir5+lGbVOXhxX10fbprhLvdg96wedFZb4NDekDPxVKv5Fwmio+QcMlkkNfuK+5W1peQ5CUhZg==", + "dev": true, + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^2.6.6" + }, + "dependencies": { + "json5": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz", + "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "loader-utils": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", + "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + } + } + }, "supports-color": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", @@ -7977,11 +13386,18 @@ "version": "1.5.0", "resolved": "https://registry.npmjs.org/sver-compat/-/sver-compat-1.5.0.tgz", "integrity": "sha1-PPh9/rTQe0o/FIJ7wYaz/QxkXNg=", + "dev": true, "requires": { "es6-iterator": "^2.0.1", "es6-symbol": "^3.1.1" } }, + "tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "dev": true + }, "tar": { "version": "2.2.2", "resolved": "https://registry.npmjs.org/tar/-/tar-2.2.2.tgz", @@ -7993,10 +13409,178 @@ "inherits": "2" } }, + "terser": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz", + "integrity": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==", + "dev": true, + "requires": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "terser-webpack-plugin": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-4.2.2.tgz", + "integrity": "sha512-3qAQpykRTD5DReLu5/cwpsg7EZFzP3Q0Hp2XUWJUw2mpq2jfgOKTZr8IZKKnNieRVVo1UauROTdhbQJZveGKtQ==", + "dev": true, + "requires": { + "cacache": "^15.0.5", + "find-cache-dir": "^3.3.1", + "jest-worker": "^26.3.0", + "p-limit": "^3.0.2", + "schema-utils": "^2.7.1", + "serialize-javascript": "^5.0.1", + "source-map": "^0.6.1", + "terser": "^5.3.2", + "webpack-sources": "^1.4.3" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "find-cache-dir": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", + "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "requires": { + "semver": "^6.0.0" + } + }, + "p-limit": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.0.2.tgz", + "integrity": "sha512-iwqZSOoWIW+Ew4kAGUlN16J4M7OB3ysMLSZtnhmqx7njIHFPlxWBX8xo3lVTyFVq6mI/lL9qt2IsN1sHwaxJkg==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + }, + "dependencies": { + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + } + } + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "requires": { + "find-up": "^4.0.0" + } + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "terser": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.3.2.tgz", + "integrity": "sha512-H67sydwBz5jCUA32ZRL319ULu+Su1cAoZnnc+lXnenGRYWyLE3Scgkt8mNoAsMx0h5kdo758zdoS0LG9rYZXDQ==", + "dev": true, + "requires": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + } + } + } + }, "through2": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, "requires": { "readable-stream": "~2.3.6", "xtend": "~4.0.1" @@ -8006,29 +13590,60 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/through2-filter/-/through2-filter-3.0.0.tgz", "integrity": "sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==", + "dev": true, "requires": { "through2": "~2.0.0", "xtend": "~4.0.0" } }, + "thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", + "dev": true + }, "time-stamp": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz", - "integrity": "sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=" + "integrity": "sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=", + "dev": true + }, + "timers-browserify": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.11.tgz", + "integrity": "sha512-60aV6sgJ5YEbzUdn9c8kYGIqOubPoUdqQCul3SBAsRCZ40s6Y5cMcrW4dt3/k/EsbLVJNl9n6Vz3fTc+k2GeKQ==", + "dev": true, + "requires": { + "setimmediate": "^1.0.4" + } }, "to-absolute-glob": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz", "integrity": "sha1-GGX0PZ50sIItufFFt4z/fQ98hJs=", + "dev": true, "requires": { "is-absolute": "^1.0.0", "is-negated-glob": "^1.0.0" } }, + "to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=", + "dev": true + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "dev": true + }, "to-object-path": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "dev": true, "requires": { "kind-of": "^3.0.2" }, @@ -8037,6 +13652,7 @@ "version": "3.2.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, "requires": { "is-buffer": "^1.1.5" } @@ -8047,6 +13663,7 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, "requires": { "define-property": "^2.0.2", "extend-shallow": "^3.0.2", @@ -8058,6 +13675,7 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, "requires": { "is-number": "^3.0.0", "repeat-string": "^1.6.1" @@ -8067,6 +13685,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz", "integrity": "sha1-/JKtq6ByZHvAtn1rA2ZKoZUJOvY=", + "dev": true, "requires": { "through2": "^2.0.3" } @@ -8108,6 +13727,18 @@ "integrity": "sha1-OTvnMKlEb9Hq1tpZoBQwjzbCics=", "dev": true }, + "tslib": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz", + "integrity": "sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q==", + "dev": true + }, + "tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=", + "dev": true + }, "tunnel-agent": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", @@ -8126,7 +13757,8 @@ "type": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", - "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==" + "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==", + "dev": true }, "type-is": { "version": "1.6.18", @@ -8141,7 +13773,8 @@ "typedarray": { "version": "0.0.6", "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", + "dev": true }, "uglify-js": { "version": "3.4.10", @@ -8170,12 +13803,14 @@ "unc-path-regex": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", - "integrity": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo=" + "integrity": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo=", + "dev": true }, "undertaker": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/undertaker/-/undertaker-1.3.0.tgz", "integrity": "sha512-/RXwi5m/Mu3H6IHQGww3GNt1PNXlbeCuclF2QYR14L/2CHPz3DFZkvB5hZ0N/QUkiXWCACML2jXViIQEQc2MLg==", + "dev": true, "requires": { "arr-flatten": "^1.0.1", "arr-map": "^2.0.0", @@ -8192,12 +13827,42 @@ "undertaker-registry": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/undertaker-registry/-/undertaker-registry-1.0.1.tgz", - "integrity": "sha1-XkvaMI5KiirlhPm5pDWaSZglzFA=" + "integrity": "sha1-XkvaMI5KiirlhPm5pDWaSZglzFA=", + "dev": true + }, + "unicode-canonical-property-names-ecmascript": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz", + "integrity": "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==", + "dev": true + }, + "unicode-match-property-ecmascript": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz", + "integrity": "sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==", + "dev": true, + "requires": { + "unicode-canonical-property-names-ecmascript": "^1.0.4", + "unicode-property-aliases-ecmascript": "^1.0.4" + } + }, + "unicode-match-property-value-ecmascript": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz", + "integrity": "sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==", + "dev": true + }, + "unicode-property-aliases-ecmascript": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz", + "integrity": "sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==", + "dev": true }, "union-value": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, "requires": { "arr-union": "^3.1.0", "get-value": "^2.0.6", @@ -8205,10 +13870,35 @@ "set-value": "^2.0.1" } }, + "uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=", + "dev": true + }, + "unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "dev": true, + "requires": { + "unique-slug": "^2.0.0" + } + }, + "unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4" + } + }, "unique-stream": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.3.1.tgz", "integrity": "sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==", + "dev": true, "requires": { "json-stable-stringify-without-jsonify": "^1.0.1", "through2-filter": "^3.0.0" @@ -8224,6 +13914,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "dev": true, "requires": { "has-value": "^0.3.1", "isobject": "^3.0.0" @@ -8233,6 +13924,7 @@ "version": "0.3.1", "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "dev": true, "requires": { "get-value": "^2.0.3", "has-values": "^0.1.4", @@ -8243,6 +13935,7 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, "requires": { "isarray": "1.0.0" } @@ -8252,14 +13945,16 @@ "has-values": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=" + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", + "dev": true } } }, "upath": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", - "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==" + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "dev": true }, "upper-case": { "version": "1.1.3", @@ -8279,12 +13974,42 @@ "urix": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=" + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "dev": true + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "dev": true, + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + }, + "dependencies": { + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=", + "dev": true + } + } + }, + "url-parse": { + "version": "1.4.7", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.4.7.tgz", + "integrity": "sha512-d3uaVyzDB9tQoSXFvuSUNFibTd9zxd2bkVrDRvF5TmvWWQwqE4lgYJ5m+x1DbecWkw+LK4RNl2CU1hHuOKPVlg==", + "dev": true, + "requires": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } }, "use": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", - "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==" + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true }, "util": { "version": "0.10.4", @@ -8306,7 +14031,24 @@ "util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "util.promisify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz", + "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", + "dev": true, + "requires": { + "define-properties": "^1.1.2", + "object.getownpropertydescriptors": "^2.0.3" + } + }, + "utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=", + "dev": true }, "utils-merge": { "version": "1.0.1", @@ -8320,10 +14062,17 @@ "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", "dev": true }, + "v8-compile-cache": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz", + "integrity": "sha512-8OQ9CL+VWyt3JStj7HX7/ciTL2V3Rl1Wf5OL+SNTm0yK1KvtReVulksyeRnCANHHuUxHlQig+JJDlUhBt1NQDQ==", + "dev": true + }, "v8flags": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz", "integrity": "sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==", + "dev": true, "requires": { "homedir-polyfill": "^1.0.1" } @@ -8332,6 +14081,7 @@ "version": "3.0.4", "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, "requires": { "spdx-correct": "^3.0.0", "spdx-expression-parse": "^3.0.0" @@ -8340,7 +14090,8 @@ "value-or-function": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz", - "integrity": "sha1-HCQ6ULWVwb5Up1S/7OhWO5/42BM=" + "integrity": "sha1-HCQ6ULWVwb5Up1S/7OhWO5/42BM=", + "dev": true }, "vary": { "version": "1.1.2", @@ -8363,6 +14114,7 @@ "version": "2.2.0", "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.0.tgz", "integrity": "sha512-MBH+yP0kC/GQ5GwBqrTPTzEfiiLjta7hTtvQtbxBgTeSXsmKQRQecjibMbxIXzVT3Y9KJK+drOz1/k+vsu8Nkg==", + "dev": true, "requires": { "clone": "^2.1.1", "clone-buffer": "^1.0.0", @@ -8421,6 +14173,7 @@ "version": "3.0.3", "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz", "integrity": "sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==", + "dev": true, "requires": { "fs-mkdirp-stream": "^1.0.0", "glob-stream": "^6.1.0", @@ -8445,6 +14198,7 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz", "integrity": "sha1-kqgAWTo4cDqM2xHYswCtS+Y7PhY=", + "dev": true, "requires": { "append-buffer": "^1.0.2", "convert-source-map": "^1.5.0", @@ -8459,6 +14213,7 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, "requires": { "remove-trailing-separator": "^1.0.1" } @@ -8474,22 +14229,715 @@ "source-map": "^0.5.1" } }, + "vm-browserify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==", + "dev": true + }, "vue": { "version": "2.6.12", "resolved": "https://registry.npmjs.org/vue/-/vue-2.6.12.tgz", "integrity": "sha512-uhmLFETqPPNyuLLbsKz6ioJ4q7AZHzD8ZVFNATNyICSZouqP2Sz0rotWQC8UNBF6VGSCs5abnKJoStA6JbCbfg==", "dev": true }, + "vue-hot-reload-api": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz", + "integrity": "sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog==", + "dev": true + }, "vue-i18n": { "version": "7.8.1", "resolved": "https://registry.npmjs.org/vue-i18n/-/vue-i18n-7.8.1.tgz", "integrity": "sha512-BzB+EAPo/iFyFn/GXd/qVdDe67jfk+gmQaWUKD5BANhUclGrFxzRExzW2pYEAbhNm2pg0F12Oo+gL2IMLDcTAw==", "dev": true }, + "vue-loader": { + "version": "15.9.3", + "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-15.9.3.tgz", + "integrity": "sha512-Y67VnGGgVLH5Voostx8JBZgPQTlDQeOVBLOEsjc2cXbCYBKexSKEpOA56x0YZofoDOTszrLnIShyOX1p9uCEHA==", + "dev": true, + "requires": { + "@vue/component-compiler-utils": "^3.1.0", + "hash-sum": "^1.0.2", + "loader-utils": "^1.1.0", + "vue-hot-reload-api": "^2.3.0", + "vue-style-loader": "^4.1.0" + } + }, + "vue-router": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-3.4.3.tgz", + "integrity": "sha512-BADg1mjGWX18Dpmy6bOGzGNnk7B/ZA0RxuA6qedY/YJwirMfKXIDzcccmHbQI0A6k5PzMdMloc0ElHfyOoX35A==", + "dev": true + }, + "vue-style-loader": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/vue-style-loader/-/vue-style-loader-4.1.2.tgz", + "integrity": "sha512-0ip8ge6Gzz/Bk0iHovU9XAUQaFt/G2B61bnWa2tCcqqdgfHs1lF9xXorFbE55Gmy92okFT+8bfmySuUOu13vxQ==", + "dev": true, + "requires": { + "hash-sum": "^1.0.2", + "loader-utils": "^1.0.2" + } + }, + "vue-template-compiler": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.6.12.tgz", + "integrity": "sha512-OzzZ52zS41YUbkCBfdXShQTe69j1gQDZ9HIX8miuC9C3rBCk9wIRjLiZZLrmX9V+Ftq/YEyv1JaVr5Y/hNtByg==", + "dev": true, + "requires": { + "de-indent": "^1.0.2", + "he": "^1.1.0" + } + }, + "vue-template-es2015-compiler": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz", + "integrity": "sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==", + "dev": true + }, + "vuex": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/vuex/-/vuex-3.5.1.tgz", + "integrity": "sha512-w7oJzmHQs0FM9LXodfskhw9wgKBiaB+totOdb8sNzbTB2KDCEEwEs29NzBZFh/lmEK1t5tDmM1vtsO7ubG1DFw==", + "dev": true + }, + "watchpack": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.4.tgz", + "integrity": "sha512-aWAgTW4MoSJzZPAicljkO1hsi1oKj/RRq/OJQh2PKI2UKL04c2Bs+MBOB+BBABHTXJpf9mCwHN7ANCvYsvY2sg==", + "dev": true, + "requires": { + "chokidar": "^3.4.1", + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0", + "watchpack-chokidar2": "^2.0.0" + }, + "dependencies": { + "anymatch": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", + "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", + "dev": true, + "optional": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "binary-extensions": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz", + "integrity": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==", + "dev": true, + "optional": true + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "optional": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "chokidar": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.2.tgz", + "integrity": "sha512-IZHaDeBeI+sZJRX7lGcXsdzgvZqKv6sECqsbErJA4mHWfpRrD8B97kSFN4cQz6nGBGiuFia1MKR4d6c1o8Cv7A==", + "dev": true, + "optional": true, + "requires": { + "anymatch": "~3.1.1", + "braces": "~3.0.2", + "fsevents": "~2.1.2", + "glob-parent": "~5.1.0", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.4.0" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "optional": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "fsevents": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz", + "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==", + "dev": true, + "optional": true + }, + "glob-parent": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", + "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", + "dev": true, + "optional": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "optional": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "optional": true + }, + "readdirp": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.4.0.tgz", + "integrity": "sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ==", + "dev": true, + "optional": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "optional": true, + "requires": { + "is-number": "^7.0.0" + } + } + } + }, + "watchpack-chokidar2": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.0.tgz", + "integrity": "sha512-9TyfOyN/zLUbA288wZ8IsMZ+6cbzvsNyEzSBp6e/zkifi6xxbl8SmQ/CxQq32k8NNqrdVEVUVSEf56L4rQ/ZxA==", + "dev": true, + "optional": true, + "requires": { + "chokidar": "^2.1.8" + } + }, + "wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dev": true, + "requires": { + "minimalistic-assert": "^1.0.0" + } + }, + "webpack": { + "version": "4.44.2", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.44.2.tgz", + "integrity": "sha512-6KJVGlCxYdISyurpQ0IPTklv+DULv05rs2hseIXer6D7KrUicRDLFb4IUM1S6LUAKypPM/nSiVSuv8jHu1m3/Q==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/wasm-edit": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "acorn": "^6.4.1", + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^4.3.0", + "eslint-scope": "^4.0.3", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^2.4.0", + "loader-utils": "^1.2.3", + "memory-fs": "^0.4.1", + "micromatch": "^3.1.10", + "mkdirp": "^0.5.3", + "neo-async": "^2.6.1", + "node-libs-browser": "^2.2.1", + "schema-utils": "^1.0.0", + "tapable": "^1.1.3", + "terser-webpack-plugin": "^1.4.3", + "watchpack": "^1.7.4", + "webpack-sources": "^1.4.1" + }, + "dependencies": { + "cacache": { + "version": "12.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", + "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", + "dev": true, + "requires": { + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" + } + }, + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "requires": { + "yallist": "^3.0.2" + } + }, + "serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "dev": true, + "requires": { + "randombytes": "^2.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "ssri": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz", + "integrity": "sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==", + "dev": true, + "requires": { + "figgy-pudding": "^3.5.1" + } + }, + "terser-webpack-plugin": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", + "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", + "dev": true, + "requires": { + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" + } + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + } + } + }, + "webpack-cli": { + "version": "3.3.12", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.12.tgz", + "integrity": "sha512-NVWBaz9k839ZH/sinurM+HcDvJOTXwSjYp1ku+5XKeOC03z8v5QitnK/x+lAxGXFyhdayoIf/GOpv85z3/xPag==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "cross-spawn": "^6.0.5", + "enhanced-resolve": "^4.1.1", + "findup-sync": "^3.0.0", + "global-modules": "^2.0.0", + "import-local": "^2.0.0", + "interpret": "^1.4.0", + "loader-utils": "^1.4.0", + "supports-color": "^6.1.0", + "v8-compile-cache": "^2.1.1", + "yargs": "^13.3.2" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "dev": true, + "requires": { + "global-prefix": "^3.0.0" + } + }, + "global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "dev": true, + "requires": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + } + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dev": true, + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + } + } + }, + "webpack-dev-middleware": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.2.tgz", + "integrity": "sha512-1xC42LxbYoqLNAhV6YzTYacicgMZQTqRd27Sim9wn5hJrX3I5nxYy1SxSd4+gjUFsz1dQFj+yEe6zEVmSkeJjw==", + "dev": true, + "requires": { + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" + }, + "dependencies": { + "mime": { + "version": "2.4.6", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.6.tgz", + "integrity": "sha512-RZKhC3EmpBchfTGBVb8fb+RL2cWyw/32lshnsETttkBAyAUXSGHxbEJWWRXc751DrIxG1q04b8QwMbAwkRPpUA==", + "dev": true + } + } + }, + "webpack-dev-server": { + "version": "3.11.0", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.0.tgz", + "integrity": "sha512-PUxZ+oSTxogFQgkTtFndEtJIPNmml7ExwufBZ9L2/Xyyd5PnOL5UreWe5ZT7IU25DSdykL9p1MLQzmLh2ljSeg==", + "dev": true, + "requires": { + "ansi-html": "0.0.7", + "bonjour": "^3.5.0", + "chokidar": "^2.1.8", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "debug": "^4.1.1", + "del": "^4.1.1", + "express": "^4.17.1", + "html-entities": "^1.3.1", + "http-proxy-middleware": "0.19.1", + "import-local": "^2.0.0", + "internal-ip": "^4.3.0", + "ip": "^1.1.5", + "is-absolute-url": "^3.0.3", + "killable": "^1.0.1", + "loglevel": "^1.6.8", + "opn": "^5.5.0", + "p-retry": "^3.0.1", + "portfinder": "^1.0.26", + "schema-utils": "^1.0.0", + "selfsigned": "^1.10.7", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "0.3.20", + "sockjs-client": "1.4.0", + "spdy": "^4.0.2", + "strip-ansi": "^3.0.1", + "supports-color": "^6.1.0", + "url": "^0.11.0", + "webpack-dev-middleware": "^3.7.2", + "webpack-log": "^2.0.0", + "ws": "^6.2.1", + "yargs": "^13.3.2" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "debug": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz", + "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "dependencies": { + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dev": true, + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + } + } + }, + "webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", + "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", + "dev": true, + "requires": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", + "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", + "dev": true + } + } + }, + "webpack-merge": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.1.4.tgz", + "integrity": "sha512-LSmRD59mxREGkCBm9PCW3AaV4doDqxykGlx1NvioEE0FgkT2GQI54Wyvg39ptkiq2T11eRVoV39udNPsQvK+QQ==", + "dev": true, + "requires": { + "clone-deep": "^4.0.1", + "wildcard": "^2.0.0" + } + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "dev": true, + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "websocket-driver": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.6.5.tgz", + "integrity": "sha1-XLJVbOuF9Dc8bYI4qmkchFThOjY=", + "dev": true, + "requires": { + "websocket-extensions": ">=0.1.1" + } + }, + "websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "dev": true + }, "which": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, "requires": { "isexe": "^2.0.0" } @@ -8509,6 +14957,21 @@ "string-width": "^1.0.2 || 2" } }, + "wildcard": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz", + "integrity": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==", + "dev": true + }, + "worker-farm": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", + "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", + "dev": true, + "requires": { + "errno": "~0.1.7" + } + }, "wrap-ansi": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", @@ -8566,12 +15029,23 @@ "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "ws": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz", + "integrity": "sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==", + "dev": true, + "requires": { + "async-limiter": "~1.0.0" + } }, "xtend": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true }, "y18n": { "version": "4.0.0", diff --git a/package.json b/package.json index 829921d..ee7b3d8 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,12 @@ "main": "gulpfile.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", - "dev": "node devserver.js" + "upload": "gulp upload", + "build": "gulp build", + "webpack": "gulp", + "dev": "npm-run-all -p start-webpack-devserver start-api-devserver", + "start-webpack-devserver": "webpack-dev-server --config ./webpack.dev.js", + "start-api-devserver": "supervisor -w \"devserver.js\" devserver.js" }, "repository": { "type": "git", @@ -14,10 +19,17 @@ "author": "Mark van Renswoude ", "license": "Unlicense", "devDependencies": { + "@babel/core": "^7.11.6", + "@babel/preset-env": "^7.11.5", "axios": "^0.20.0", + "babel-loader": "^8.1.0", "body-parser": "^1.18.2", "child_process": "^1.0.2", + "core-js": "^3.6.5", + "css-loader": "^4.3.0", "express": "^4.16.2", + "file-loader": "^6.1.0", + "gulp": "^4.0.2", "gulp-clean-css": "^3.9.0", "gulp-concat": "^2.6.1", "gulp-debounced-watch": "^1.0.4", @@ -27,16 +39,29 @@ "gulp-print": "^2.0.1", "gulp-sass": "^3.1.0", "gulp-uglify": "^3.0.0", + "html-webpack-plugin": "^4.4.1", "lodash": "^4.17.4", + "node-sass": "^4.14.1", + "npm": "^6.14.8", + "npm-run-all": "^4.1.5", "path": "^0.12.7", + "sass": "^1.26.5", + "sass-loader": "^8.0.2", + "style-loader": "^1.2.1", + "terser-webpack-plugin": "^4.2.2", "through2": "^2.0.3", "vinyl": "^2.1.0", - "vue": "^2.5.13", + "vue": "^2.6.11", "vue-i18n": "^7.3.3", + "vue-loader": "^15.9.3", + "vue-router": "^3.2.0", + "vue-style-loader": "^4.1.2", + "vue-template-compiler": "^2.6.11", + "vuex": "^3.4.0", + "webpack": "^4.44.2", + "webpack-cli": "^3.3.12", + "webpack-dev-server": "^3.11.0", + "webpack-merge": "^5.1.4", "yargs": "^16.0.3" - }, - "dependencies": { - "gulp": "^4.0.2", - "npm": "^6.14.8" } } diff --git a/src/assets/css.h b/src/assets/css.h deleted file mode 100644 index 9267213..0000000 --- a/src/assets/css.h +++ /dev/null @@ -1,108 +0,0 @@ -#ifndef __embed_css -#define __embed_css - -#include - -const uint8_t EmbeddedBundleCSS[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0xad,0x59,0xd9,0x8e,0xa3,0x3a,0x1a,0x7e,0x95,0x48, - 0xa5,0x96,0xba,0x46,0x80,0x08,0x49,0xa8,0x2a,0xd0,0x19,0xcd,0x68,0xde,0x60,0x2e,0xe6,0xa6,0x55,0x17, - 0x06,0x4c,0xb0,0x8a,0x60,0x64,0x9c,0x5a,0x1a,0xf1,0xee,0xf3,0x7b,0x4b,0x6c,0x30,0xe9,0xf4,0x39,0x47, - 0xa8,0x16,0x6c,0xff,0xab,0xff,0xe5,0xb3,0x69,0xf8,0xa9,0x1d,0xe9,0x3b,0x66,0x43,0xc9,0x68,0xdb,0x86, - 0x05,0x6e,0xd0,0x3b,0xa1,0x2c,0xfc,0xcc,0x4a,0xda,0x71,0x44,0xba,0xbc,0xa0,0x9f,0xe1,0x40,0x7e,0x92, - 0xee,0x98,0x15,0x94,0x55,0x98,0x85,0x30,0x92,0xd7,0x30,0x2b,0x86,0x71,0x96,0x26,0xd1,0xe1,0xdb,0xf4, - 0x8f,0x20,0x43,0x35,0xc7,0x2c,0xc8,0x0a,0x5c,0x53,0x86,0x47,0x8b,0x8c,0x74,0x0d,0x66,0x84,0x4f,0x05, - 0xad,0xbe,0x7e,0x25,0x0c,0x95,0x6f,0x47,0x46,0xcf,0x5d,0x15,0x96,0xb4,0xa5,0x2c,0x7b,0xd8,0xee,0xc5, - 0x93,0xeb,0xb7,0xba,0xae,0x95,0xe8,0x1a,0x9d,0x48,0xfb,0x95,0xfd,0x0f,0xb3,0x0a,0x75,0x28,0xf8,0x37, - 0x23,0xa8,0x0d,0x06,0xd4,0x0d,0xe1,0x00,0xb2,0x6a,0x4b,0xbf,0x6d,0xb4,0xc3,0x27,0xf5,0xfe,0x81,0xc9, - 0xb1,0xe1,0xd9,0x2e,0x8e,0xf3,0x16,0x73,0xd0,0x36,0x1c,0x7a,0x54,0x0a,0x15,0xa3,0x78,0x0b,0x8b,0x5a, - 0xd2,0xe1,0xb0,0x51,0x8b,0x80,0x2c,0xef,0x51,0x55,0xc1,0x2c,0x18,0xcc,0x39,0x3d,0x65,0x3b,0x86,0x4f, - 0xd3,0xbf,0x4e,0xb8,0x22,0x68,0x03,0x26,0x60,0xdc,0x6d,0x50,0x57,0x6d,0xbe,0x9f,0x48,0x17,0x7e,0x90, - 0x8a,0x37,0xd9,0x53,0xfa,0xdc,0x7f,0x3e,0x8e,0xd2,0x50,0x43,0xcc,0x69,0xaf,0x28,0x27,0x34,0x72,0xfc, - 0xc9,0xc3,0x0a,0x97,0x94,0x21,0x4e,0x68,0x97,0x75,0xb4,0xc3,0xd3,0x8f,0xf7,0xb0,0x6c,0x29,0x7a,0x7b, - 0x1d,0x2b,0x32,0xf4,0x2d,0xfa,0x52,0xc3,0x0f,0xda,0x27,0x98,0x8d,0x57,0xaf,0x64,0x0f,0x49,0x2c,0x9e, - 0xfc,0x84,0xd8,0x11,0xc4,0x0a,0xe6,0x09,0x30,0x37,0xaa,0x66,0x5b,0xf1,0x22,0x7d,0xdf,0xa0,0x8a,0x7e, - 0x64,0xf1,0x26,0xde,0x1c,0xe2,0xfe,0x73,0xf3,0x50,0x97,0x75,0x5a,0xd6,0xb9,0xda,0xc3,0x6c,0xa0,0x2d, - 0xa9,0x36,0x5b,0x31,0x11,0xc7,0xf1,0x5d,0x56,0x59,0x0a,0x59,0xe3,0x46,0x93,0x16,0xd7,0x3c,0x43,0x67, - 0x4e,0xcd,0x00,0x93,0x6e,0x14,0x23,0xd3,0x14,0x35,0x18,0x81,0xd4,0xb1,0xa7,0x03,0x91,0x86,0x33,0xdc, - 0x82,0x07,0xde,0xb1,0x99,0xd9,0x90,0xd3,0x71,0xac,0xc1,0x0b,0x3c,0x13,0x8c,0x5c,0x1e,0xdb,0x35,0xbf, - 0xa3,0xcf,0x8b,0x86,0x4f,0x42,0x43,0xc3,0x2c,0xfa,0x20,0x35,0x19,0x38,0xe2,0xe7,0x61,0x2c,0x5b,0x8c, - 0x18,0x44,0x2e,0x6f,0x6c,0x9f,0xa9,0x0d,0xb9,0xc7,0x6a,0x1f,0xcf,0x8b,0x19,0xa8,0x00,0x3f,0x9e,0x39, - 0xce,0x95,0xa2,0x71,0x2e,0x78,0xc7,0x17,0x7b,0x6d,0xa2,0x4d,0x44,0xba,0x8a,0x94,0x88,0x53,0x76,0xd9, - 0x67,0xd2,0xc9,0x88,0x2b,0x5a,0x5a,0xbe,0xe5,0x4a,0xaa,0xdc,0x3f,0x13,0x82,0x6a,0x2f,0x65,0xce,0x31, - 0x54,0x91,0xf3,0x90,0x1d,0xe2,0x6f,0xae,0x6f,0xa2,0x83,0xb0,0xe4,0xb6,0xbc,0x1f,0x15,0xe2,0x28,0x54, - 0xc3,0x7f,0xc0,0x26,0x76,0xb8,0xe4,0xb8,0x7a,0x1d,0x97,0xc9,0xb6,0x7b,0x49,0x7f,0x87,0x17,0xd8,0x61, - 0xb3,0x9b,0x47,0xd6,0x91,0xe1,0xaf,0x3f,0xa1,0x1a,0x84,0xb1,0x4f,0xb7,0xfa,0x65,0xf7,0x3b,0xcc,0x30, - 0x63,0x94,0xf9,0xf8,0x94,0x10,0xee,0x51,0x71,0x86,0x8c,0xee,0x82,0xa8,0x6c,0x70,0xf9,0xb6,0x89,0x44, - 0x64,0x43,0x49,0x0a,0xa2,0x8e,0x72,0xe0,0x5c,0xca,0xec,0x0c,0xa2,0x1e,0x75,0xb8,0xdd,0xa8,0x3f,0xa1, - 0x48,0xea,0xd9,0x90,0xd2,0x26,0x88,0xc4,0xe6,0x50,0x8b,0xcb,0x07,0x62,0x1d,0x58,0x11,0x68,0x29,0xcd, - 0x2e,0x20,0x5d,0x7f,0xe6,0x3f,0xf8,0x57,0x8f,0xff,0x18,0xce,0xc5,0x89,0xf0,0xd7,0x60,0xc0,0x2d,0x18, - 0x6b,0xbc,0x26,0xfc,0xa5,0x3c,0xf7,0xb0,0xdd,0x6e,0x67,0xbb,0xbe,0x83,0x34,0xb3,0x72,0x9a,0x74,0x03, - 0xe6,0x90,0xd7,0x82,0x86,0x1d,0x0b,0xf4,0x3d,0x39,0x1c,0x02,0xf3,0x13,0x6d,0x1f,0x03,0xb3,0x20,0x14, - 0x2b,0x76,0x66,0x55,0x1c,0x88,0x27,0xda,0x5d,0xe7,0xe3,0x55,0x26,0xf1,0xf3,0x63,0xa0,0xe6,0x92,0x19, - 0xf9,0xf6,0xf0,0x68,0xdc,0x17,0xa1,0x52,0xe4,0x70,0xa0,0x5f,0x33,0xfd,0xea,0x4e,0xba,0x73,0xd2,0x0f, - 0x7a,0xca,0x75,0x87,0xe5,0xa1,0xee,0x7c,0x2a,0x30,0x73,0x86,0x7a,0x34,0x0c,0x1f,0xe0,0x93,0x57,0x8f, - 0x27,0x1d,0xde,0x6a,0x46,0xd4,0xd9,0xd7,0x40,0xfc,0x46,0x0c,0xa3,0xdb,0x3e,0xd6,0x61,0x01,0x55,0x50, - 0x0e,0x9b,0x39,0xaf,0xb7,0xe7,0xce,0x48,0x0e,0xc6,0x4d,0x5e,0x17,0x4e,0x3a,0x00,0xa4,0x66,0xe3,0x3d, - 0x7d,0x6b,0x52,0x4b,0xa1,0x53,0x15,0x6f,0x84,0x87,0xa8,0xef,0xa1,0x7a,0xa1,0xae,0xc4,0xb2,0x27,0xe4, - 0xe1,0x89,0xfe,0x5c,0x0c,0xce,0xde,0x2f,0xc1,0x6d,0x0b,0x77,0x1c,0xe6,0xaf,0x3f,0xa6,0x83,0x80,0x3d, - 0x60,0xa6,0x69,0xb8,0x55,0x55,0xe5,0x76,0xfb,0xd9,0xc7,0xe2,0xc9,0xcb,0x33,0x1b,0x60,0xba,0xa7,0xa4, - 0x83,0x36,0xea,0x34,0x4e,0x59,0x5a,0x4d,0x84,0xd4,0xb4,0x3c,0x0f,0x97,0x00,0x71,0xdf,0x1a,0x01,0x05, - 0x02,0x67,0xa1,0xb3,0xce,0x59,0xb6,0xb4,0x42,0x93,0x78,0xe2,0x61,0x75,0x42,0xb2,0x1a,0x57,0x2c,0x3b, - 0xc4,0xe2,0xc9,0xe9,0x99,0x0b,0x6b,0xb2,0xf8,0xaf,0x46,0xb9,0xab,0xec,0xea,0x8c,0xa6,0x31,0x5a,0x95, - 0x65,0xe9,0x68,0x95,0x3c,0x8b,0xc7,0xe8,0x12,0xf6,0x8c,0x40,0xf9,0xff,0xf2,0x6d,0xaa,0x43,0x95,0xa4, - 0x07,0xb4,0x9d,0x53,0xb9,0xbb,0x61,0x46,0x33,0xff,0xe8,0xdf,0xee,0x76,0x47,0xbf,0xf4,0x29,0x29,0xd2, - 0x09,0x69,0xa1,0x7e,0x5c,0x14,0x75,0x80,0x0e,0x8f,0x72,0xe0,0x56,0x17,0x8f,0x38,0x74,0xe1,0x7f,0x1a, - 0x4e,0x36,0x1a,0x11,0xe5,0x6f,0x56,0x49,0x63,0x77,0x79,0x56,0x13,0x36,0xf0,0xb0,0x6c,0x48,0x5b,0x39, - 0xa4,0xf1,0xb2,0x02,0xcb,0x6a,0x09,0x7f,0x67,0x1c,0x5a,0x74,0x61,0x30,0x13,0x25,0x2b,0xaf,0x24,0x9c, - 0x0b,0x15,0x8e,0x5a,0x62,0xa1,0xfc,0x67,0x08,0xad,0x0c,0x7f,0x66,0xb0,0x71,0x02,0x24,0x4b,0xbb,0x65, - 0x54,0x88,0x46,0x6a,0x21,0xda,0xe7,0x9e,0xe7,0xd2,0x63,0xa8,0x25,0xc7,0x2e,0x2b,0xb1,0xcc,0xc1,0x19, - 0x22,0x9c,0x9c,0x5e,0xf6,0x9f,0x0b,0x74,0xbb,0x88,0xad,0xc9,0x27,0xae,0xf2,0x0b,0x80,0x34,0xc2,0xd3, - 0x34,0xbd,0x0f,0x17,0xf9,0xd9,0xab,0x35,0x07,0x59,0x42,0xa4,0x27,0x01,0xb1,0x4c,0xae,0x2e,0x6e,0x24, - 0xbc,0x3c,0xa1,0xe2,0x79,0x8e,0x58,0xb7,0xb1,0x06,0xa6,0x36,0xee,0x9f,0xd5,0x1c,0x53,0xaf,0xa2,0x03, - 0x68,0xaf,0x8d,0xd7,0x40,0x5d,0x21,0xe2,0x05,0xd6,0xfc,0x6d,0xb3,0x46,0x15,0x46,0x4b,0x13,0x36,0xd1, - 0x09,0x0f,0x03,0x3a,0xe2,0xf1,0xa3,0x21,0x1c,0xcb,0x63,0x04,0xce,0x7a,0x86,0xdd,0x65,0x91,0x04,0x21, - 0x8e,0xbd,0x2f,0x4f,0x3b,0xb4,0x83,0x7c,0x96,0xc0,0x43,0x23,0x07,0x7f,0x3d,0x9e,0x99,0x7b,0x1e,0xc4, - 0x71,0x45,0x62,0x06,0x55,0xf6,0x6d,0xc9,0x1d,0xfd,0x60,0xa8,0xb7,0x43,0xc0,0xe3,0x15,0x31,0x34,0x2d, - 0x10,0x8f,0x8b,0x5d,0x46,0x4f,0xad,0xbf,0x85,0x56,0x53,0xd8,0x66,0x83,0x56,0xc5,0xff,0x1e,0x80,0xaf, - 0x05,0xb6,0xa8,0xc0,0x57,0x71,0xf2,0xcd,0x6f,0xb7,0x9d,0x86,0xd2,0x0a,0xc8,0x05,0x0e,0x0e,0x6d,0x75, - 0xb8,0x83,0x75,0x9a,0xa9,0xfa,0x8d,0xab,0xb9,0x35,0x8b,0x71,0xc7,0xaa,0x34,0x16,0x8f,0x61,0x01,0x2a, - 0xa0,0xa2,0xc5,0x95,0x21,0x35,0xef,0xa3,0x76,0x3f,0x6c,0x27,0xc8,0x6d,0xe9,0x07,0xae,0xe6,0x24,0xae, - 0x4d,0xf3,0x61,0x2b,0x75,0xa7,0x05,0x40,0x74,0xdf,0x05,0x84,0x95,0xc7,0xbc,0x39,0xd4,0x9f,0x13,0x9a, - 0x85,0x57,0xc8,0x92,0x2f,0x8f,0x22,0x62,0xf7,0xf7,0x26,0xfb,0xc4,0x3f,0x6a,0xab,0xac,0x9d,0x4a,0x45, - 0x11,0xf3,0x7b,0xea,0xa2,0x8a,0xe5,0x30,0xd9,0x92,0xec,0xfc,0xdc,0xce,0x50,0x90,0x40,0x84,0x6e,0x58, - 0x19,0x36,0x7e,0xed,0x0e,0x37,0xb5,0x93,0x25,0xd6,0xbf,0xbf,0xae,0xa3,0xf4,0x49,0x63,0x89,0xbc,0x9e, - 0x1f,0x4d,0xf5,0x56,0xcc,0x45,0x45,0x49,0x14,0x7a,0xcb,0x39,0x00,0xa5,0xa1,0xa6,0xec,0x94,0x31,0x0a, - 0x07,0x05,0xfc,0x3d,0xdc,0x1f,0x2a,0x7c,0x7c,0xb4,0x2d,0x94,0xb0,0x39,0x76,0x81,0x9e,0x83,0xf3,0x2c, - 0xbb,0x05,0xab,0xd0,0x84,0x99,0x95,0x7f,0x5b,0xc8,0xb5,0x3f,0x01,0x69,0xe7,0xc0,0xd5,0x83,0xbc,0xae, - 0x05,0xd1,0xa9,0x80,0x3a,0x21,0x63,0x88,0x1a,0x73,0xb2,0xb8,0x49,0x7c,0xd7,0x2d,0x8a,0x2d,0xc1,0x36, - 0x07,0x9c,0x78,0xc4,0xaf,0x8e,0xbd,0x6c,0x51,0x6f,0xe4,0xb1,0xbd,0xd9,0x8e,0xd7,0xc6,0x95,0x5c,0x17, - 0x41,0x27,0x6e,0x12,0x1d,0xc8,0x03,0x69,0x21,0xc7,0x9d,0x2b,0x9b,0xd9,0xca,0x9d,0xdd,0x08,0x97,0xf0, - 0x68,0x49,0x7a,0x55,0x5c,0x2a,0xb1,0x1f,0xed,0x15,0x7b,0x76,0xb1,0xc6,0x24,0xed,0xab,0x27,0xdf,0xf3, - 0x35,0x99,0xa9,0x78,0x26,0xb7,0x84,0x39,0xb5,0xeb,0x66,0x01,0x96,0x74,0xa1,0x2a,0x79,0xa3,0x73,0x96, - 0x4f,0xee,0xbd,0x5f,0x8a,0x1a,0xca,0xc8,0x4f,0xd1,0x73,0x5b,0x0b,0x19,0x4d,0xd6,0xf0,0x66,0xbd,0xc0, - 0x3a,0xcb,0x3c,0x21,0xba,0x32,0x7d,0x0d,0xd7,0x95,0x05,0x2a,0x74,0xed,0xc9,0x4b,0x18,0x7b,0xeb,0xbc, - 0xba,0xed,0x91,0x96,0xeb,0xe0,0x95,0x15,0xef,0x4a,0xaf,0x2e,0x14,0x6d,0x03,0x61,0x16,0x9a,0xe1,0xcc, - 0xe7,0x2e,0x2e,0xb2,0xf6,0x6c,0x16,0x8d,0xfa,0xa6,0x04,0xa4,0x8a,0xc8,0x18,0x67,0x30,0x72,0x09,0xa8, - 0xa6,0x08,0xf0,0x2b,0xed,0x45,0xf9,0x1a,0x1c,0x6c,0x78,0xb0,0x0e,0x38,0xce,0xfd,0xd2,0x4d,0x4c,0x26, - 0xb3,0x21,0x1a,0xa0,0x62,0x01,0xb4,0x1b,0x17,0x60,0x4d,0x4d,0x5c,0x6f,0xd8,0x56,0x28,0x57,0x4f,0x86, - 0xd7,0xf4,0x37,0x75,0x54,0xda,0x3b,0x83,0xb1,0x70,0x60,0x95,0x83,0xcb,0xca,0x60,0x1d,0x7b,0x94,0xa4, - 0x2c,0x33,0xa2,0xd4,0x7b,0xc8,0x1b,0x08,0x90,0x55,0xf9,0x7e,0x7d,0x12,0xeb,0x36,0x2b,0xf1,0xdf,0x66, - 0xd9,0xba,0xe8,0x2b,0x4a,0x17,0xf9,0x58,0x0a,0x89,0xd3,0xaf,0x2c,0x3d,0x5a,0x99,0xbf,0x5f,0x48,0xc4, - 0x70,0xb5,0x62,0xb9,0xd3,0x12,0xf1,0x2e,0xdd,0xa5,0x33,0xa2,0xb9,0x76,0x37,0x08,0x8e,0x22,0xb9,0xef, - 0x90,0xb3,0x4b,0x8a,0xa7,0x5d,0xb2,0x20,0xbb,0x25,0x69,0x46,0x52,0xb4,0x67,0x7c,0x87,0xa0,0x7d,0xba, - 0x4f,0xcb,0x72,0x4e,0x75,0x4b,0x8e,0xa1,0xd0,0x77,0x5d,0x1e,0x90,0xfb,0x4b,0x84,0xbe,0x88,0xf1,0x8e, - 0x8a,0x1b,0x3c,0xbb,0xd6,0x7b,0xb2,0x52,0x26,0x9c,0x53,0xf6,0xe4,0x65,0xdc,0xe8,0x3b,0x02,0x98,0x2b, - 0x8d,0xc9,0x77,0x6f,0x37,0x2e,0x8f,0x78,0xfa,0x98,0x97,0x5f,0x3e,0x74,0x08,0x5e,0x06,0x45,0xb8,0xf6, - 0xdc,0xec,0xae,0x5e,0x79,0xba,0x26,0x5b,0x9d,0x48,0xd8,0xec,0x5b,0x28,0x6f,0x0b,0x44,0x71,0xb1,0x6a, - 0xe4,0xca,0x4a,0x0d,0x41,0x7d,0x73,0xc6,0x91,0x1e,0x85,0xe4,0x07,0x8a,0xf9,0x71,0xf5,0x72,0x60,0x75, - 0x6c,0xdb,0xc5,0xe2,0xb9,0xd8,0xae,0xaa,0x95,0xe4,0xa2,0xef,0x34,0xe6,0x4e,0xb5,0x69,0x8b,0x3d,0x3a, - 0x3c,0x3b,0x7e,0xd1,0x7d,0xef,0xc6,0x99,0x42,0x7e,0x31,0x88,0x6a,0x60,0x16,0xca,0x1d,0x0f,0xcd,0xfd, - 0x8b,0x1c,0x82,0x6d,0x7f,0xc7,0x7a,0x68,0x94,0x60,0x4e,0x01,0x4c,0x2a,0x3e,0xe4,0xf0,0xaf,0x4d,0x74, - 0x18,0x6c,0x62,0x87,0x8a,0xd3,0x51,0x2f,0x13,0x11,0x21,0x03,0xdb,0x89,0x23,0x39,0xb2,0x89,0x06,0x68, - 0x5a,0xdc,0x73,0x3c,0xbf,0xa1,0xf3,0xfe,0xe5,0x9b,0x4b,0xbe,0x59,0x2b,0xe8,0xaa,0xd3,0xef,0x85,0x13, - 0xdd,0xf5,0xef,0x08,0x72,0xee,0x17,0x5f,0x16,0x54,0x0f,0xcb,0xdd,0x93,0x85,0x64,0x82,0xbb,0xea,0x5e, - 0x8d,0x57,0xfa,0xee,0x95,0xd1,0xaa,0xee,0x0a,0xb3,0x5b,0xaa,0xcb,0xc5,0x6b,0x8a,0xeb,0x7b,0x94,0x5b, - 0x7a,0x2f,0x3b,0x3c,0x94,0xd2,0x01,0xf3,0xff,0x62,0x34,0xcc,0xee,0x72,0x12,0x10,0xfb,0x7f,0x44,0x42, - 0x49,0x9a,0xad,0x1c,0x00,0x00}; - -#endif diff --git a/src/assets/js.h b/src/assets/js.h index 1d53828..3ec4a7d 100644 --- a/src/assets/js.h +++ b/src/assets/js.h @@ -4,2402 +4,3170 @@ #include const uint8_t EmbeddedBundleJS[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0xbc,0xbd,0x69,0x77,0xdb,0xc6,0xb2,0x2e,0xfc,0x57, - 0x24,0x5c,0x1f,0x05,0xd8,0x6a,0xd1,0x52,0x92,0x3d,0x04,0x34,0x0e,0x97,0xc7,0xc4,0x89,0xa7,0xd8,0xce, - 0xb4,0x65,0x6d,0x2d,0x88,0x6c,0x49,0xb0,0x28,0x80,0x01,0x40,0xc9,0x8a,0xc8,0xfb,0xdb,0x6f,0x3d,0x55, - 0x3d,0x01,0x84,0x9c,0x9c,0x7b,0xdf,0xf5,0x7e,0x90,0x08,0x74,0x37,0x7a,0xac,0xae,0xae,0xb9,0xb7,0x4f, - 0x97,0xe5,0xb4,0x2d,0xaa,0x32,0xd6,0xaa,0x4d,0x6e,0xa3,0xea,0xe4,0xa3,0x9e,0xb6,0x51,0x96,0xb5,0x37, - 0x0b,0x5d,0x9d,0x6e,0xe9,0x4f,0x8b,0xaa,0x6e,0x9b,0x9d,0x9d,0x8d,0x9c,0xcb,0x6a,0xb6,0x9c,0xeb,0x89, - 0xfc,0x8c,0x4c,0xb9,0xac,0x8d,0x93,0x34,0xb2,0x75,0xfa,0xc2,0x33,0x7d,0x5a,0x94,0x7a,0x67,0x47,0x7e, - 0x47,0xf9,0xe5,0x6c,0x22,0x8f,0xf1,0xe1,0x11,0xb5,0x9b,0xde,0xd5,0xee,0xc4,0xfc,0x8e,0xf2,0x4f,0x45, - 0x25,0xb5,0x6b,0xff,0xbc,0x8e,0xdb,0xf3,0xa2,0x51,0x6e,0x08,0xc9,0x6d,0xad,0xdb,0x65,0x5d,0x6e,0xb9, - 0x94,0x32,0xb9,0xb5,0xcf,0x5b,0x75,0xac,0x93,0xdb,0xe2,0x34,0x2e,0x0e,0xf5,0x51,0x62,0x0a,0xe2,0xd9, - 0xf6,0x7d,0x7c,0x95,0xd7,0x5b,0x6d,0x86,0xa4,0xec,0xd6,0xa4,0xa5,0xb7,0x6b,0x55,0xcc,0x52,0xad,0xe6, - 0x55,0x3e,0xd3,0xb3,0x74,0xfb,0x60,0x3d,0x36,0x9f,0x96,0xf8,0x74,0x9a,0xcf,0xe7,0x71,0x6b,0x6b,0x50, - 0xad,0xf2,0xcf,0x75,0x42,0x2f,0xf2,0x59,0xb6,0xbd,0xef,0x33,0xd6,0x68,0xa6,0xc8,0x6e,0x5d,0x45,0xf5, - 0xe8,0x32,0x2b,0x55,0x3d,0x9a,0x66,0x05,0xfd,0x5f,0x64,0x51,0xa4,0xea,0x78,0x9f,0x06,0x77,0x18,0xae, - 0x8d,0xa2,0xa1,0xf8,0x69,0x2e,0xe3,0x83,0x64,0xad,0xfa,0xf9,0xd1,0xb2,0xd1,0x5b,0x4d,0x5b,0x17,0x34, - 0x93,0xe3,0xee,0xb8,0x65,0x6c,0xa5,0xbe,0xde,0xca,0xe9,0x55,0x95,0x59,0x15,0xe7,0xa3,0x45,0x5d,0xb5, - 0x15,0x26,0x7c,0x54,0xeb,0xdf,0x97,0xba,0xa1,0xee,0x27,0xb6,0x57,0x05,0xb5,0xd5,0xea,0x72,0x16,0x97, - 0x2a,0x28,0x48,0x05,0x54,0x90,0x43,0x6f,0xa5,0x19,0x4f,0x19,0x7f,0x99,0xa8,0x8a,0x7e,0xbe,0x4a,0x54, - 0x4e,0x3f,0x5f,0x27,0x0a,0xdd,0xfc,0x92,0x52,0xa7,0x59,0x1d,0x53,0x87,0xf7,0x93,0x64,0x3c,0x1d,0x3d, - 0xe4,0xc5,0xcb,0xd5,0x74,0x34,0xad,0x75,0xde,0xea,0xcc,0x0f,0xc2,0x2d,0x5f,0x1d,0x37,0xf1,0x74,0x44, - 0x00,0x92,0x2f,0xe7,0x34,0x93,0x3a,0xa1,0xb1,0x4e,0x47,0x8f,0xf3,0x72,0xaa,0xe7,0xa8,0x93,0x9a,0xb0, - 0xaf,0xef,0xab,0x0b,0x5d,0x22,0xed,0x6b,0xa4,0x15,0x8d,0x2b,0xf4,0x0d,0xde,0x69,0x75,0x86,0xea,0x7f, - 0x53,0x57,0x97,0x45,0xa3,0x91,0x4d,0xa9,0xa8,0xbb,0x59,0x50,0x67,0x66,0xa8,0xe7,0xef,0x89,0xf2,0xd3, - 0x3c,0xf5,0xcf,0xb6,0x3b,0xd9,0xf4,0xaf,0xce,0x7b,0xe5,0x5b,0x8c,0x0e,0x05,0xbe,0xb7,0x1e,0xd6,0x75, - 0x7e,0x73,0x44,0x60,0x9e,0xcd,0x05,0x76,0xa8,0xf9,0xee,0x42,0x99,0x2e,0x5e,0x55,0xc5,0x6c,0x6b,0x9f, - 0xca,0x69,0x9f,0x5f,0x04,0xf9,0xe5,0x72,0x3e,0xdf,0xa6,0xdc,0x81,0x8d,0x19,0x7c,0x91,0x1b,0x90,0x77, - 0xed,0xbf,0xe6,0x9f,0xa3,0x68,0x3b,0xe8,0x80,0xd9,0x0b,0xdb,0x07,0x66,0x03,0x48,0x99,0xd1,0x99,0x6e, - 0xdf,0xd8,0x65,0x7f,0x7d,0x4a,0xe5,0xc6,0x41,0xd3,0xd4,0xb1,0x76,0xb5,0x6a,0xe9,0xc7,0x94,0x76,0x10, - 0xe2,0x1b,0x6f,0x06,0xc6,0xff,0xcc,0x64,0xde,0x35,0x05,0x53,0x41,0x43,0xd4,0x65,0x19,0xa0,0x4e,0xd0, - 0x7b,0x33,0xc2,0x6d,0x37,0xc2,0x9d,0x9d,0x58,0x67,0xd8,0xc6,0x0a,0x93,0x9c,0x9c,0x56,0x75,0x8c,0xbe, - 0x97,0xd9,0xbe,0xaa,0x33,0x3d,0x9a,0xeb,0xf2,0xac,0x3d,0x1f,0x97,0x0f,0xea,0x71,0xb9,0xbb,0x9b,0xb4, - 0xd2,0x0e,0x6a,0x54,0xfa,0xb0,0x3c,0x52,0x25,0x81,0xd4,0x58,0xcf,0x69,0xd1,0xec,0x97,0xc5,0x56,0x51, - 0x6e,0xe9,0xa4,0x3f,0x98,0xd1,0x79,0xde,0xbc,0xbe,0x2e,0x69,0x1e,0x16,0xba,0x6e,0x6f,0x4c,0x7f,0x55, - 0x91,0xec,0xec,0x74,0x2b,0x2d,0x8e,0x54,0x41,0x95,0xf2,0x5e,0x58,0xca,0x26,0x98,0x6f,0x4c,0xcd,0xa8, - 0xad,0xde,0x11,0x90,0x94,0x67,0x63,0x0f,0x61,0xb7,0x45,0xc3,0x30,0x91,0x56,0xca,0x3c,0x3d,0x5a,0x9e, - 0x9e,0xea,0x3a,0xdd,0x04,0xdb,0x2e,0x10,0x49,0xb1,0xde,0x3c,0x52,0x1d,0x77,0x7e,0x1e,0x80,0xcc,0x36, - 0x20,0x6d,0x67,0xc7,0x26,0x8c,0xa6,0x55,0x49,0xd0,0xbb,0x9c,0xb6,0x55,0x2d,0x99,0x61,0x0a,0x15,0x1c, - 0x40,0xe8,0x9d,0x22,0x23,0xdb,0xec,0xce,0xce,0x70,0xba,0xe9,0xdb,0xb3,0xaa,0xbe,0x7c,0x92,0xb7,0xf9, - 0xd0,0xe0,0x96,0xa5,0x1c,0x08,0x33,0xbf,0xcc,0xb6,0x38,0xd5,0x4a,0xcb,0xd3,0xb4,0xd8,0xda,0x41,0xf2, - 0xba,0x3b,0x63,0x3f,0x17,0xfa,0xfa,0x2f,0x56,0x1c,0x7c,0xb5,0xb3,0x13,0xbc,0x50,0x7f,0x51,0xcb,0x64, - 0x33,0x89,0xea,0x4b,0x35,0x46,0x77,0xe2,0xc6,0x29,0x4f,0x61,0xc7,0x82,0xcf,0xd0,0x37,0x59,0xeb,0xa1, - 0x2e,0x35,0x9c,0x13,0xee,0x58,0x2a,0xfe,0x6a,0x79,0x79,0x32,0xbc,0xee,0x25,0xe7,0xf4,0x8a,0x0b,0x70, - 0xa5,0x05,0x3d,0xbe,0x99,0xe7,0x45,0x69,0xde,0x73,0x7a,0xff,0xc9,0x8e,0x38,0xad,0xe9,0x8d,0xa6,0x4a, - 0x7f,0x0e,0x9a,0x90,0xbf,0x09,0x46,0xcf,0x8a,0xf9,0x67,0xbf,0x42,0xfe,0x00,0xf0,0xcd,0xab,0x93,0xcf, - 0x7d,0x85,0xfc,0x81,0xb6,0xcc,0x07,0x69,0x23,0xb3,0xa6,0xf3,0xcb,0x21,0xf8,0x2d,0x18,0x68,0x09,0xab, - 0x8c,0x16,0xc5,0x42,0xbe,0xfc,0xe9,0xed,0x8b,0x77,0x3a,0xaf,0xa7,0xe7,0x6f,0xf2,0x3a,0xbf,0x6c,0xfe, - 0xe2,0xf2,0xf7,0xbe,0xea,0x81,0x57,0x2f,0x57,0x56,0x32,0x2f,0x67,0x79,0x3d,0x7b,0x54,0x57,0xd7,0x8d, - 0xae,0x9f,0x96,0x57,0xe9,0x06,0xcd,0x11,0x07,0x2d,0xb9,0x95,0x2a,0xf3,0xab,0xe2,0x2c,0xa7,0x9d,0xb0, - 0x5a,0x45,0x6f,0x75,0x3e,0x6d,0x5f,0xe5,0x6d,0x71,0xa5,0x81,0x7e,0x5d,0x16,0xf0,0xc3,0x8c,0xb6,0x0b, - 0x6d,0x33,0xc9,0x7d,0x37,0xad,0x8b,0x45,0x7b,0x67,0x99,0x77,0x83,0x39,0xd8,0xa5,0x03,0x43,0xbd,0x2e, - 0xca,0x59,0x75,0x3d,0x9c,0x37,0xab,0xa6,0xcb,0x4b,0x5d,0xb6,0x74,0x9e,0x55,0xf5,0xd3,0x7c,0x7a,0x9e, - 0x4e,0xd5,0xa5,0xae,0xcf,0xfc,0xba,0x6f,0x61,0x78,0xee,0x45,0x0b,0x6e,0xce,0xe3,0xfa,0xb0,0x3d,0xa2, - 0xf6,0x70,0xb8,0x4c,0xf0,0x4c,0xf8,0x0e,0x3f,0x84,0xff,0xd2,0x30,0x8d,0x48,0x27,0x4a,0xa9,0x5c,0x8a, - 0x1e,0x35,0xf3,0x62,0xaa,0x89,0x84,0x93,0xd7,0xb5,0x45,0xbe,0x35,0x11,0x43,0xaa,0x25,0xdc,0x5d,0x64, - 0x79,0x7d,0xc6,0x7d,0x6a,0x2c,0x0e,0x6f,0x1f,0x14,0xe3,0x96,0x70,0xf8,0x34,0x76,0x59,0xd2,0x94,0xa3, - 0x9e,0xa8,0x15,0x26,0x47,0xfc,0x92,0x10,0x7a,0x27,0xea,0xcb,0x82,0x0d,0x8e,0x94,0x2e,0x91,0x5b,0xa2, - 0xf9,0x7a,0x18,0xad,0x4d,0x96,0x31,0x3e,0x4e,0xf5,0x1a,0xa4,0x8d,0xa2,0x8d,0x3a,0x08,0x8b,0xa0,0x98, - 0x16,0xf3,0x9c,0x46,0x73,0xff,0x3f,0x1f,0x9a,0xbf,0xdd,0x57,0x51,0x94,0xf8,0x24,0x4a,0xb9,0xc7,0x49, - 0x6b,0x85,0xad,0xbe,0x78,0xf4,0xfa,0xe5,0x50,0x25,0xff,0xf8,0xfb,0x97,0xff,0xfc,0x26,0x63,0x04,0x7c, - 0x9e,0xd7,0x8f,0xab,0x99,0x7e,0xd8,0x12,0xe1,0xc7,0x87,0x9b,0x9d,0xac,0x83,0x84,0xe8,0x91,0xf5,0x7a, - 0xdd,0x1b,0x42,0x87,0xe2,0xf0,0xa7,0x49,0x30,0x05,0xf5,0x26,0x31,0x4c,0x6b,0x69,0x66,0x5c,0x33,0x25, - 0xc8,0xf8,0x2a,0xee,0x4f,0x79,0x82,0xa5,0xa0,0x79,0x77,0xc7,0x28,0xa6,0x5f,0x63,0xca,0xc2,0x15,0x70, - 0xc4,0xc0,0x28,0x5f,0x2c,0xe6,0x37,0x71,0x8d,0xd3,0x6f,0xfd,0x57,0x49,0x23,0xa6,0x64,0x40,0xbb,0x3b, - 0x22,0x2f,0xa3,0xf2,0x78,0x2f,0xca,0x56,0xd7,0x53,0xbd,0x20,0xd0,0xa6,0xc3,0xd1,0x90,0xa5,0x29,0xd3, - 0xad,0xaa,0xd6,0xcd,0x82,0x0e,0x17,0x2d,0xaf,0xeb,0xb5,0xc0,0x8e,0x23,0x3c,0xff,0x2e,0x84,0xe7,0x3f, - 0x84,0xf0,0xfc,0x27,0xe8,0x4e,0xa6,0x3f,0xc7,0xc5,0x26,0xa1,0xdb,0xa1,0x0a,0x37,0xf1,0xf1,0x84,0x56, - 0xc0,0x8f,0xf6,0xe0,0x68,0xb5,0xba,0x5d,0x27,0xa3,0x65,0x3d,0x0f,0x52,0xf7,0x8f,0x52,0x5a,0x26,0xe4, - 0x28,0x2a,0x3d,0x8d,0x3b,0xc3,0x01,0xcd,0x3a,0xba,0xd4,0xed,0x79,0x35,0x9b,0x68,0xf3,0x90,0xd9,0x07, - 0xa2,0x03,0x5e,0x54,0xd7,0xba,0x7e,0x9c,0x37,0xd8,0x0d,0x9d,0x0f,0x37,0x3e,0x1a,0xca,0xed,0x55,0xe0, - 0xca,0x46,0x44,0xb3,0x45,0x86,0x8a,0x3b,0x6c,0x94,0xd0,0x90,0x44,0xee,0x64,0x96,0xe0,0xa5,0x19,0xac, - 0xe6,0x57,0x1a,0xc4,0x1c,0x40,0x61,0x63,0xc6,0xed,0xf4,0x8c,0x0c,0x46,0x88,0xc3,0x69,0x6a,0x47,0xcb, - 0xb2,0x39,0x2f,0x4e,0x5b,0xc2,0xc0,0xa7,0xcb,0xf9,0x69,0x31,0x9f,0xeb,0x99,0x42,0xa5,0xc0,0xed,0x7a, - 0x96,0xd0,0x96,0x19,0xaa,0x51,0x16,0xed,0x8e,0x2a,0x17,0xcb,0xe6,0xfc,0xee,0xfa,0xc6,0xad,0x05,0xc2, - 0x84,0x88,0xfc,0x51,0x7b,0xae,0x4b,0xe2,0xb6,0xa4,0x13,0x60,0xaf,0xcc,0x93,0x27,0x4d,0x09,0x5b,0x07, - 0x8b,0x4d,0xd3,0xf1,0x53,0x5d,0x0c,0x71,0x00,0x43,0x0b,0x06,0x5a,0x12,0x6b,0x4c,0x5d,0x58,0x30,0xea, - 0x77,0x0f,0xef,0x74,0x5d,0xe4,0xf3,0xe2,0x0f,0x5d,0x27,0xe1,0xbe,0x9f,0x98,0x3d,0x5e,0xbb,0xb1,0x1d, - 0x46,0x33,0x3d,0xd7,0xad,0x8e,0x14,0x2f,0x85,0x8a,0xce,0x89,0xab,0xa0,0x9f,0x6a,0x81,0xf6,0x9b,0xe8, - 0xc8,0xef,0x0f,0xda,0x1b,0x41,0x57,0x89,0x2a,0xcd,0xba,0x3b,0xdc,0x74,0x94,0x3b,0x69,0x56,0x25,0xa6, - 0x3e,0x33,0xbc,0xdd,0xca,0x7a,0xa7,0xa5,0xa2,0xee,0x02,0x55,0xd1,0xd6,0x4b,0x3a,0xdd,0x58,0x54,0x0d, - 0x9a,0x5f,0x2c,0xf9,0x7f,0xde,0x4e,0xcf,0xc3,0xb6,0xeb,0x6e,0xdb,0x75,0xb7,0x6d,0x6c,0xdb,0xe1,0xd6, - 0xcb,0x4e,0xeb,0xb5,0xb4,0xae,0x66,0xa0,0xe8,0x5a,0xd3,0x09,0x8f,0x8b,0x8a,0xbf,0x8a,0x0c,0xf2,0x70, - 0x5d,0xca,0x29,0xa1,0xc1,0x9f,0xde,0x3e,0x7f,0x5c,0x5d,0x12,0xd8,0xd0,0x46,0xa3,0x4c,0x3f,0xe7,0xff, - 0xf5,0xd5,0xc3,0xfb,0x67,0x85,0x8a,0xd2,0x10,0xdb,0xfe,0xd7,0x97,0x5f,0xdf,0x3f,0x53,0xd1,0xbd,0x6e, - 0xda,0x63,0x2e,0xa8,0xba,0x89,0xfb,0x28,0xb8,0xdb,0x49,0xfb,0xfb,0x23,0x2e,0x78,0xd8,0x4d,0x7c,0xc2, - 0x89,0x47,0x91,0x50,0xf4,0xcc,0xc8,0x26,0x43,0x78,0xd6,0x0c,0x8c,0x98,0x94,0xed,0xd6,0xca,0x14,0x34, - 0xef,0xc0,0x7a,0x0c,0x26,0x26,0x01,0x7e,0x6a,0x0d,0xb3,0x41,0x09,0xb4,0x39,0xfa,0x44,0x0b,0x65,0x53, - 0xa9,0xd6,0x31,0x07,0xb1,0x94,0xbe,0x15,0xb6,0xfa,0xf0,0x68,0xdc,0xb8,0x75,0x6d,0xfb,0x07,0x99,0xf0, - 0x48,0x74,0x60,0xa0,0x5e,0x41,0xe7,0x74,0xda,0xb6,0xbb,0x59,0x74,0x78,0x14,0xa5,0xcc,0x22,0x29,0xff, - 0x79,0x78,0x0e,0x26,0xb7,0xf8,0x04,0xb4,0x1f,0xbe,0xc0,0x79,0xd3,0x56,0xcf,0xdf,0xbd,0xb6,0x5d,0x48, - 0x91,0x2b,0x24,0x25,0x53,0x5d,0x84,0xe1,0xbe,0x7f,0xf7,0xfa,0xd5,0x48,0x30,0x65,0x71,0x8a,0x76,0x20, - 0x09,0xe0,0xed,0x9b,0xd3,0x10,0x76,0xa3,0x2c,0xda,0xc5,0x4a,0x26,0x00,0x04,0x02,0xc6,0xac,0x18,0x7d, - 0xac,0x0a,0x22,0x8b,0x76,0x68,0x12,0x69,0xe4,0xb5,0xc8,0x20,0x2a,0x6a,0x89,0x68,0x12,0xfd,0x89,0x58, - 0xca,0xe8,0x7f,0x45,0xc9,0x78,0xef,0x80,0xc8,0x99,0xaa,0x73,0xe6,0xed,0xab,0x0a,0xa7,0xde,0x6e,0x16, - 0xef,0x1d,0xf0,0xf1,0xe8,0x3e,0x98,0x44,0xc9,0x84,0xfe,0xa5,0xa8,0x74,0xb7,0x5e,0xdb,0x09,0xff,0xcb, - 0xe7,0x4e,0x1d,0x9b,0x63,0xe7,0x9c,0x08,0xba,0xb9,0xa6,0x23,0xe6,0xf0,0x28,0x90,0x5f,0x8c,0xeb,0x00, - 0x79,0x50,0x05,0x9f,0xd9,0x92,0xb6,0x02,0x99,0x81,0x5b,0x87,0xbf,0x68,0x3f,0x58,0xfc,0x85,0x3d,0xa1, - 0xba,0x85,0x05,0x99,0xed,0x1d,0x00,0x67,0xf8,0x96,0xb8,0x7c,0x07,0x4b,0x75,0xbe,0xa2,0x45,0xa4,0xe9, - 0xe9,0x27,0x65,0x58,0xfc,0xa4,0x5b,0x91,0x59,0x68,0x5f,0x15,0x58,0x69,0x0f,0x3d,0x61,0x0d,0x1d,0x50, - 0xf0,0x9c,0x21,0x56,0x7b,0x4d,0xb5,0x7a,0x50,0xaf,0xff,0x47,0x62,0x26,0x22,0x65,0xbc,0x58,0x86,0xb9, - 0x41,0xff,0x4a,0xe8,0x9b,0xe8,0xe7,0xe7,0xa7,0x6f,0x05,0x9f,0xe8,0x59,0x9c,0xf4,0x65,0x47,0xff,0x92, - 0x23,0xfc,0x1b,0x39,0xc2,0x0f,0xf6,0x07,0xf7,0x5c,0x1b,0xc8,0x89,0x5a,0x9c,0x02,0x40,0xb2,0x58,0x4b, - 0xf7,0xc4,0x68,0xaa,0x1d,0x01,0x31,0x65,0x55,0x2c,0x0f,0xbe,0x1c,0x3d,0xb5,0x75,0x5e,0x36,0x34,0x2f, - 0x97,0xa6,0x2f,0x61,0x2d,0xc5,0x88,0x89,0xe0,0xd8,0xa5,0x10,0x47,0x7b,0x79,0x59,0x95,0xa6,0x52,0x93, - 0x78,0xd8,0x9a,0x43,0xf7,0xa8,0x9b,0x8e,0x4d,0xf1,0x67,0xa7,0xc1,0x00,0x72,0x56,0x91,0x34,0x12,0x62, - 0x69,0x9a,0x4e,0xf9,0x7e,0xcb,0xb7,0xaa,0x8f,0x08,0xa6,0xa8,0x6b,0xf9,0x2c,0x5f,0xd0,0x21,0xbb,0x5a, - 0x35,0xf6,0x31,0xa1,0xb9,0x90,0x03,0x72,0x50,0xa0,0xd6,0x02,0x35,0x9b,0x09,0x91,0x07,0x7a,0x1f,0x9c, - 0x10,0x39,0xae,0x41,0x75,0xaa,0x81,0x9a,0xb0,0xc5,0x57,0xab,0x58,0x2a,0xc4,0x02,0xdb,0xf3,0x1d,0x3b, - 0xd8,0x1f,0xf6,0xae,0xa5,0x4e,0x8a,0x0a,0xde,0x3f,0xd7,0x36,0xed,0x7e,0x4f,0xb1,0x18,0x1c,0x44,0x50, - 0xf9,0x27,0x90,0xe8,0xc9,0xc1,0x41,0xa8,0x61,0xa9,0x8f,0x9b,0x90,0x3b,0x90,0x62,0x9b,0x69,0x94,0x64, - 0x52,0xe6,0x7f,0x4c,0x74,0xbb,0xea,0xb7,0xe3,0x6d,0x22,0x0c,0xb7,0xf5,0xe8,0xf8,0xf8,0xf1,0xc3,0x57, - 0x8f,0x9f,0xbe,0x38,0x3e,0xfe,0xd3,0xde,0x87,0xfb,0x08,0x8d,0x6d,0x57,0xa3,0x80,0x93,0x67,0x24,0xdc, - 0x4b,0x39,0x8c,0x1e,0x57,0x44,0x69,0x95,0xed,0xde,0x7b,0xda,0xfc,0xd1,0x11,0xa3,0xe9,0x7e,0x62,0xd6, - 0x9a,0x4d,0xc6,0xfb,0xeb,0x4b,0xd9,0x5f,0x07,0x07,0xd8,0x60,0xb7,0xdd,0xa2,0x69,0x04,0x4a,0xbe,0x98, - 0xe6,0xe8,0xc5,0xfd,0x4f,0x7b,0xd7,0xd7,0xd7,0x7b,0x58,0x95,0x3d,0x3a,0xe5,0xe5,0x58,0x9e,0x45,0x6b, - 0xa2,0xa9,0x6f,0x0d,0xc0,0xa5,0xf1,0x10,0x53,0xf9,0xeb,0xcb,0x17,0xdf,0xb5,0xed,0xc2,0xec,0xab,0x09, - 0xf6,0xf6,0xc1,0x97,0x49,0x3a,0x54,0x94,0xf0,0xd6,0x54,0x37,0x50,0x2d,0x58,0xf1,0x80,0x49,0x61,0x09, - 0xc1,0x9d,0xc2,0x33,0x91,0x1c,0x98,0xa2,0x18,0xb3,0x69,0x83,0x76,0x1e,0x2d,0x5a,0x6f,0x63,0xa7,0x87, - 0x83,0x28,0x9c,0x4e,0x2c,0x15,0x3d,0x9c,0x82,0x46,0x8d,0x68,0x4a,0xf0,0xd6,0x99,0x0b,0xc2,0x46,0x23, - 0x2f,0xae,0x62,0x90,0xaf,0x46,0x1d,0x69,0x93,0x4b,0xeb,0xbd,0x8a,0xf8,0xc2,0xbd,0x42,0x4c,0xe2,0x8b, - 0xce,0xab,0x13,0x3e,0x6d,0xd3,0x5e,0x65,0x46,0xc2,0x34,0xb1,0x42,0x25,0xce,0xef,0x93,0x09,0x94,0x8f, - 0x6d,0xa7,0xfe,0x7c,0x99,0xc6,0x60,0x27,0x1b,0xdd,0x66,0xcb,0xf6,0x74,0xef,0x5f,0x11,0x76,0xbe,0x27, - 0x2e,0x12,0xae,0xdc,0x1d,0xed,0x03,0x75,0x7e,0x6c,0xaa,0x72,0xa3,0x8a,0xcd,0xd3,0x9f,0xe8,0xce,0x23, - 0xb5,0xb1,0x77,0xc3,0x09,0x17,0xd1,0xf3,0x06,0x73,0x95,0xb4,0xf5,0xcd,0xad,0xa1,0x27,0x16,0x68,0x05, - 0xbb,0x7b,0x0a,0x34,0x88,0x4f,0xfc,0xa1,0x4e,0xb5,0x17,0x97,0xba,0x5a,0xb6,0xe9,0xbe,0xfa,0xd4,0xd4, - 0xa7,0x8f,0xab,0xea,0xa2,0xd0,0xaf,0xf2,0x4b,0x9d,0x46,0xbf,0xbe,0x7b,0xfb,0x6c,0xef,0xfd,0xeb,0x1f, - 0x9e,0xbe,0x8a,0x38,0xef,0x3b,0xc6,0x26,0x26,0x6f,0x2f,0xcc,0xbd,0xcc,0x3f,0x99,0xa5,0x7d,0xc1,0x87, - 0x6f,0xba,0x77,0x80,0xb4,0x47,0xd5,0xec,0xc6,0x27,0x5c,0x11,0x75,0x4f,0x08,0x4a,0xbf,0x6b,0xf3,0x76, - 0x39,0x24,0x46,0xda,0xfa,0x72,0x7f,0xff,0x01,0x0e,0x48,0xfd,0xe0,0xab,0xfd,0xfd,0xf5,0x7a,0x3c,0x75, - 0xe7,0xc5,0xad,0x60,0xee,0xf4,0x56,0xe0,0x29,0xdd,0x98,0x4b,0xb5,0xd5,0xea,0x4f,0xed,0xfd,0x05,0xa4, - 0x74,0x6a,0xeb,0x6f,0xf7,0xff,0x16,0x11,0x2e,0xa8,0xfe,0xe4,0x94,0xe8,0x9e,0x03,0xd3,0xe0,0x00,0xc8, - 0x6e,0x41,0x67,0x57,0x7f,0x99,0xd8,0xef,0x7f,0x5e,0x99,0xf3,0xad,0x49,0x3a,0xe4,0xfa,0x9f,0xa9,0x35, - 0x02,0x2a,0xe9,0x2e,0x79,0x83,0x3f,0xf9,0xca,0x1e,0xe6,0x6c,0x89,0xba,0xa8,0x21,0x33,0x6f,0xab,0x9f, - 0x16,0x0b,0xcb,0xb8,0xd2,0x2e,0xaf,0xbb,0x29,0xb4,0x9b,0x4b,0xb0,0x23,0xc4,0x54,0xc8,0xc9,0x07,0x51, - 0xcd,0x5f,0x44,0xfd,0x73,0xc1,0x6f,0xa7,0xc0,0x06,0x5f,0x25,0x0a,0xca,0x9c,0x83,0x7f,0x24,0x6a,0x21, - 0x92,0x81,0x73,0xbc,0xfe,0x33,0x51,0x57,0x28,0xb5,0x9f,0xa8,0x4b,0xfc,0x12,0x1a,0x3c,0x43,0xfa,0xd7, - 0x83,0x63,0x5a,0x7a,0xc9,0xb9,0xbe,0xb6,0x3a,0xa3,0xb8,0x3b,0x64,0x99,0x95,0xa5,0x9c,0x6e,0x15,0x3d, - 0x98,0x89,0x1e,0xcf,0x43,0xfc,0x01,0x7d,0x81,0x19,0x50,0xd5,0x47,0xd0,0x2a,0x9e,0x5b,0xd4,0x50,0x10, - 0x9e,0x98,0x5b,0xa4,0x51,0x24,0xf4,0x51,0x31,0xc2,0xa6,0xb9,0xfb,0x63,0x1e,0x78,0xce,0xc2,0x9c,0x2e, - 0xe2,0x05,0xf3,0xb1,0x1c,0xe5,0xcb,0xf6,0x5c,0xfa,0xa8,0x33,0x79,0x03,0x55,0x5b,0x97,0xb4,0x4d,0x56, - 0xab,0x28,0x52,0xb4,0xbd,0x4b,0xdd,0x4c,0xf3,0x05,0x6d,0xc1,0x4d,0xc6,0xcb,0x7c,0xb1,0xc8,0x9b,0xe6, - 0xba,0xaa,0x67,0x49,0x82,0x6f,0xc6,0xd5,0xe8,0x21,0xa5,0x56,0x75,0xf1,0x07,0x43,0x78,0x16,0x3d,0xca, - 0x9b,0x62,0xba,0x15,0xed,0x9e,0xb4,0x15,0x61,0xca,0x5d,0x3a,0x47,0x76,0x5b,0xcb,0x36,0x9d,0x53,0x25, - 0x27,0xb4,0xb2,0x84,0xcb,0xd4,0x12,0xbc,0x75,0x82,0x8e,0xe5,0xa3,0x6a,0x41,0x74,0xca,0xd2,0x4b,0x33, - 0x02,0x10,0x50,0x8b,0xb8,0xa1,0xb2,0x86,0x03,0x5f,0x6e,0x72,0xe0,0x6a,0x9b,0x96,0x2f,0x1f,0x19,0xdc, - 0x40,0xe3,0x32,0x4f,0x94,0x56,0x95,0xd0,0xe2,0xdd,0x34,0xb4,0x8b,0x35,0x21,0xb0,0xf2,0x2c,0xa0,0xe0, - 0x19,0x19,0xe5,0x3b,0x3b,0x5f,0x13,0xd4,0xe5,0x23,0x2e,0x87,0xdd,0x0e,0xba,0x65,0x7f,0x1b,0x49,0x0d, - 0xef,0xfd,0xd5,0x2a,0x77,0x34,0x0a,0xf5,0x7a,0x67,0x67,0xdf,0x94,0x77,0x49,0x9e,0x1b,0x39,0x85,0x8c, - 0x3c,0x22,0x6a,0xc5,0x4c,0x31,0xf6,0xef,0xc3,0xf9,0xdc,0xa2,0x42,0xc1,0x49,0x4d,0x54,0xd0,0x79,0x33, - 0xb9,0xa2,0x51,0x0f,0x66,0x03,0x23,0xb3,0x12,0xa9,0xcd,0x6e,0x99,0x93,0x5e,0xba,0xc6,0xde,0xf3,0xda, - 0x47,0xc0,0x1e,0x90,0xf9,0x76,0x33,0x26,0xbe,0x53,0xa9,0x7f,0x7c,0x4f,0x65,0x95,0x8c,0x24,0xb5,0x43, - 0x32,0xef,0xc8,0x72,0x69,0x5c,0xce,0xc0,0x2a,0xb1,0x2c,0xd3,0xaa,0x3c,0x2d,0xce,0xd2,0xa5,0xb2,0x02, - 0xb7,0x7c,0x3d,0x3e,0x05,0x84,0x43,0xc3,0x9b,0x33,0xab,0x41,0x5b,0x10,0x13,0x9c,0x9f,0xd0,0x26,0x09, - 0x67,0x95,0xa6,0x94,0x8e,0x90,0xb3,0x38,0x32,0x90,0xb7,0xc5,0x25,0xe8,0x9c,0x57,0x4b,0x15,0x3d,0x7d, - 0xfc,0xfa,0xd5,0xab,0x87,0x8f,0x5e,0xbf,0x7d,0xff,0xf4,0x49,0xa4,0xf2,0xc4,0x56,0x96,0x48,0x65,0xba, - 0xae,0xab,0x3a,0xac,0x8c,0x2b,0x7a,0xa5,0x5b,0x82,0xb7,0x8b,0xad,0xa7,0xc8,0x45,0x35,0x3c,0x3d,0xfe, - 0x63,0xf9,0xd6,0xae,0x7f,0xf0,0xb5,0x59,0x05,0x93,0xb3,0x45,0x67,0x4d,0xb4,0xeb,0xc0,0x63,0x37,0xba, - 0x6c,0xb6,0xf4,0xa7,0xa9,0xd6,0x20,0x64,0xc6,0x2e,0x9d,0x5b,0x79,0x49,0xa4,0x44,0x7e,0x26,0x6a,0xc5, - 0xc1,0x1c,0x62,0x68,0xa9,0x6b,0xfa,0x73,0x63,0x5a,0xab,0xf9,0x68,0x48,0x55,0x10,0x1b,0xf8,0x98,0x66, - 0x04,0xf1,0xd7,0x45,0x7b,0xfe,0xb8,0xa6,0x2e,0x50,0xff,0xf3,0x39,0x41,0xdb,0x25,0xe1,0x61,0xda,0xe8, - 0xcb,0x51,0xf7,0x84,0x9b,0xcc,0x18,0x44,0xe3,0x7e,0x7a,0x92,0x8a,0x50,0x6f,0x3c,0xa5,0xbe,0x56,0x87, - 0x92,0xed,0x0f,0xbf,0xa3,0x6c,0xca,0xcc,0x76,0x44,0x47,0xb7,0x59,0x0f,0xc9,0x64,0x20,0xdc,0xd9,0x99, - 0x3b,0x0c,0x5d,0xf5,0x30,0xb4,0xd3,0x37,0x17,0x04,0x71,0x53,0x83,0x64,0x80,0x7c,0x40,0x8b,0xb5,0x5d, - 0x81,0xe3,0xc4,0xa1,0xa3,0xf6,0x08,0x10,0xd5,0x6b,0x8b,0xe8,0x09,0x90,0xeb,0x3c,0x1d,0x9e,0x5c,0xdd, - 0x18,0x3b,0xd8,0x88,0xbc,0x9f,0x98,0x6d,0x6f,0x6f,0x16,0x54,0x5d,0xc8,0x67,0xfa,0x21,0xef,0x24,0xf5, - 0xf6,0x86,0xa1,0x26,0x44,0x30,0x13,0xe1,0x0c,0xde,0xdc,0x3f,0x09,0x73,0xa3,0x5b,0xe5,0x7a,0x40,0x0b, - 0xb0,0x24,0xf8,0x7a,0x52,0x5d,0x97,0xb0,0xde,0x20,0xbc,0x7f,0x56,0x33,0x99,0x9a,0x13,0xab,0x35,0x7b, - 0x7a,0x05,0x4a,0xa2,0x20,0xf6,0x95,0xa0,0x37,0x8e,0x16,0x26,0x97,0xc0,0x74,0xe0,0x9b,0x44,0xdd,0x51, - 0xf9,0x4f,0x8b,0x7e,0xd5,0x4b,0x4e,0xf1,0x4f,0x7f,0xda,0x56,0xb7,0x0a,0xcc,0x51,0x87,0xf3,0xee,0xbc, - 0x82,0x8a,0x66,0x6e,0x6a,0x83,0x3f,0xc4,0xee,0xa5,0x71,0x61,0xcb,0xc6,0x80,0x71,0xed,0x77,0x28,0xd1, - 0xd3,0xb4,0x42,0x85,0xbc,0x29,0x2c,0x73,0x39,0xa3,0x53,0xe9,0xaf,0x1d,0xc6,0xc5,0xdd,0xc7,0xaa,0xf9, - 0xc4,0x70,0x6b,0x23,0x41,0x3d,0xa3,0x2e,0x05,0x36,0x2e,0x0d,0x9e,0xda,0xd9,0x11,0x8d,0xb4,0x7d,0x4f, - 0x26,0x6d,0x5c,0x78,0x5c,0x73,0x9a,0x13,0x0a,0x9e,0x6d,0x01,0x60,0xb6,0xa4,0xc0,0x16,0x8e,0x31,0xda, - 0xf7,0xf6,0x03,0x65,0x5b,0x10,0x2c,0x52,0x3a,0x4b,0x97,0x12,0x14,0x2c,0x81,0xc8,0x5f,0x19,0x0d,0xf3, - 0x4c,0x7f,0xbf,0x7b,0x34,0x84,0x27,0x0b,0x2b,0xde,0xc2,0x59,0xcc,0x98,0x23,0xb0,0x98,0xc8,0x69,0xbb, - 0xd9,0x62,0xff,0x73,0xae,0xd2,0xb7,0xe0,0x94,0x4f,0x32,0xa4,0x8c,0x32,0x98,0xed,0xc6,0x98,0xb3,0x32, - 0x51,0x5e,0xbd,0x51,0x07,0xac,0x76,0x56,0xd0,0x0b,0xf1,0x1b,0x30,0xbc,0xe1,0x9e,0xc1,0x1c,0x09,0x2c, - 0x01,0x28,0xf0,0x0e,0xf6,0xe5,0xea,0x6f,0x2f,0x05,0xe5,0x89,0x5e,0xc2,0xbc,0x28,0xd0,0x0c,0x92,0x82, - 0x27,0x22,0xcf,0x1a,0xd6,0x52,0x42,0x6b,0x6b,0xe4,0xe8,0x2e,0x41,0x89,0xbe,0xda,0x94,0xe6,0x67,0x85, - 0xa3,0xf2,0x95,0xab,0xc2,0xbe,0xa9,0x39,0xa1,0x86,0x57,0x41,0x69,0xff,0x4e,0x47,0xd2,0x7c,0x79,0x59, - 0x86,0x99,0x61,0x0a,0xce,0xb4,0xe9,0x85,0xa4,0xf3,0xa3,0x3d,0xc2,0x4c,0x49,0x5e,0x71,0x4c,0x8b,0x4d, - 0x98,0x41,0x48,0xf8,0xa7,0x82,0xc2,0x41,0x61,0x6f,0x73,0x07,0x5a,0x9f,0xdc,0x5e,0xd7,0x45,0x47,0xb7, - 0x6e,0x57,0x4a,0x55,0x02,0x0d,0x39,0xc4,0xb7,0xb9,0xd1,0x71,0xb0,0x84,0x74,0x80,0xcc,0x6a,0xe9,0x04, - 0x41,0x13,0x32,0x30,0x82,0x48,0x20,0x01,0xfe,0x24,0xa2,0x1e,0x14,0xb4,0x8a,0xf4,0x1d,0xa0,0x8a,0x85, - 0xb5,0x65,0x42,0x0b,0xf7,0xed,0xcb,0xf7,0x8e,0x9d,0x53,0xd2,0x3d,0x7e,0xab,0x83,0x6f,0x89,0x0f,0x38, - 0xa7,0x0f,0xeb,0x4e,0x81,0x22,0x28,0x30,0xab,0x2e,0x89,0x21,0xa1,0x22,0x05,0x48,0xaa,0x8c,0x85,0xb0, - 0x36,0xaf,0xd1,0xd3,0x65,0x0d,0x36,0xd8,0xea,0x88,0x69,0x06,0x71,0x04,0x11,0x25,0x24,0x42,0xdd,0xf1, - 0x16,0x2b,0x3e,0x08,0xdf,0x77,0x98,0x25,0x51,0x3d,0xf5,0x3e,0x1a,0x5d,0x0a,0x36,0xa6,0x21,0xbc,0xd5, - 0x67,0x4f,0x3f,0x2d,0xe2,0x28,0xfe,0xcf,0x6a,0xfc,0xe1,0x43,0xf3,0xb7,0x24,0xa6,0x29,0xd9,0x8d,0x92, - 0x2c,0x3e,0xfc,0xcf,0xf8,0xe8,0x6f,0x49,0xe4,0x55,0x39,0x2d,0x9d,0x32,0x9b,0x73,0x75,0xf8,0xd5,0x91, - 0x90,0x4b,0x68,0xfc,0xb2,0xba,0xea,0xda,0x28,0xf0,0x5a,0xf3,0xa2,0xd0,0x5a,0x10,0x7d,0x8b,0x19,0x1b, - 0x95,0xd5,0x75,0x9c,0xec,0xfd,0xeb,0x1f,0x5f,0xeb,0xbf,0xd3,0xe6,0x4b,0xfb,0x8b,0x46,0x1c,0x67,0x6f, - 0x1c,0x1d,0x83,0x99,0xcd,0x76,0xe8,0x83,0xbf,0x2a,0x89,0x3a,0xf8,0x17,0x21,0x51,0xfc,0x7e,0x73,0x17, - 0xee,0xf0,0x7b,0x9a,0xd1,0x5c,0x9b,0x4c,0x0a,0x4e,0x4e,0xff,0x1f,0xa4,0x4f,0xf7,0xff,0x13,0x1f,0xe6, - 0x7b,0x7f,0x1c,0xe1,0xdf,0x87,0xd9,0x87,0xdd,0x0f,0x7b,0x1f,0x46,0x47,0x7f,0x4b,0x93,0xc9,0x87,0xfb, - 0x1f,0xee,0xdf,0x27,0x96,0x02,0xca,0x1c,0xfd,0x7f,0x85,0x88,0xbc,0x0c,0x7c,0x12,0x68,0xc0,0x3f,0xdc, - 0xdf,0x15,0x75,0xf7,0x6e,0x74,0x9f,0x88,0xff,0x50,0x45,0x76,0x7f,0x97,0x33,0xd2,0xbf,0xb4,0xf3,0x9c, - 0x84,0xea,0x30,0x22,0x94,0x43,0xbc,0x6c,0x1e,0x72,0x1a,0x2c,0x23,0x15,0xba,0x44,0xc4,0xe8,0x41,0x02, - 0x13,0x2a,0x2a,0xd2,0x6d,0x7e,0x86,0x1f,0xd9,0x36,0xf4,0x74,0x4a,0xe7,0x1e,0x38,0x6a,0x61,0x90,0x8b, - 0xd3,0xbd,0xcb,0x6a,0x56,0x9c,0x16,0x7a,0xb6,0xd7,0x14,0x74,0x3a,0x4a,0xda,0xb2,0xdc,0x48,0x9d,0xe7, - 0x4d,0xeb,0xca,0xe2,0xbd,0x9a,0xda,0x3e,0x5c,0xe6,0x9f,0x20,0x6f,0xb9,0x26,0x64,0x80,0x16,0xe8,0x64, - 0xfd,0x74,0xb3,0xd7,0xef,0x68,0xad,0x4f,0x75,0x4d,0x54,0x17,0x9e,0x88,0x5a,0xd9,0xcb,0x4f,0x5b,0x7e, - 0x03,0xf7,0xb5,0x47,0x63,0x2b,0x5b,0xe2,0xdd,0x86,0xd7,0x90,0xb7,0x90,0xa0,0x91,0xc0,0x46,0x54,0x43, - 0xfa,0xe7,0x44,0x96,0xa3,0x66,0x31,0x2f,0xda,0x38,0xfa,0x50,0xd2,0x16,0xed,0xc9,0x5b,0xea,0x50,0x5f, - 0x42,0xdc,0x09,0xf1,0x15,0xd5,0x08,0x66,0x0c,0xf8,0x6c,0x79,0x42,0xf3,0x1d,0xef,0x13,0xe7,0x9a,0x74, - 0x49,0x3a,0x18,0x84,0xf6,0x4a,0xd5,0xbb,0xb0,0x3d,0x68,0x8d,0xc9,0x6c,0x7b,0x44,0xac,0xd0,0x03,0xda, - 0xff,0xb6,0xee,0xd6,0xda,0x0d,0x8e,0x91,0x99,0x81,0xe2,0xdc,0x93,0xfd,0xce,0x14,0xe3,0x84,0xbf,0x99, - 0xe0,0x5f,0x7a,0x78,0x94,0x00,0x25,0xd3,0x14,0xc6,0x87,0x25,0xed,0x5f,0x97,0xb3,0x1b,0x29,0x1c,0xd5, - 0x69,0x09,0x89,0x46,0xf1,0x57,0x4f,0xe2,0x0e,0x72,0xce,0xef,0x42,0xce,0xa1,0xd5,0x83,0x37,0x67,0x71, - 0x38,0x4a,0x3b,0x3b,0x57,0x10,0xd2,0xa0,0x61,0x1f,0xb6,0xd4,0xce,0xc9,0x92,0x70,0x47,0x74,0x4e,0xeb, - 0x17,0x81,0xf5,0xc1,0xdc,0xe1,0x05,0xf2,0x96,0x3b,0x8a,0xdc,0xe2,0x29,0x95,0x62,0x8a,0xa5,0x95,0x74, - 0x4e,0xd1,0xbb,0x7d,0x9c,0xf8,0x47,0xbf,0x31,0x52,0xd9,0x2f,0x29,0xe1,0x28,0xc0,0x26,0x3e,0xa7,0x1f, - 0xd5,0xb0,0xbc,0x2f,0x45,0x5b,0x78,0x98,0xd8,0x87,0x4d,0xa5,0x33,0x7f,0x99,0x37,0x28,0x8b,0x9f,0x89, - 0xfc,0x04,0xe5,0xfe,0x57,0xa7,0x01,0x3e,0xbd,0xa5,0x11,0x3e,0xbe,0x31,0x77,0xe8,0x23,0xfd,0x28,0x1c, - 0x14,0x9c,0x4f,0x9b,0x17,0xa7,0xc0,0xc8,0x26,0xb0,0x55,0x0a,0x5b,0xa4,0x4c,0x7c,0x22,0x4a,0xed,0xfa, - 0x57,0x63,0x84,0x41,0xb0,0x7a,0x3f,0xbe,0x6c,0x0a,0xbd,0xa2,0x09,0x02,0xdd,0x9e,0x58,0x3c,0xe3,0x0d, - 0x95,0x00,0xfb,0x0f,0x01,0xfa,0x50,0xf5,0xf8,0x23,0x82,0x8d,0x80,0x9f,0xce,0x35,0xde,0xe2,0x28,0x8f, - 0xbc,0x61,0x0f,0x2d,0xb5,0x98,0x2f,0x8d,0xec,0xf6,0x33,0x6b,0xb1,0x79,0xe2,0xe4,0xfe,0x88,0xd3,0xc9, - 0xa4,0x64,0x6b,0x3d,0x77,0x90,0xb8,0xf9,0x67,0x79,0x93,0x7d,0x81,0x34,0x0a,0xf3,0xc1,0x89,0x78,0x58, - 0xaf,0xe3,0x64,0xf3,0x10,0xd8,0xde,0xff,0x2b,0x60,0x79,0xfa,0x39,0xb5,0x43,0xd7,0x04,0x3d,0x40,0xa2, - 0xa7,0xa3,0x8e,0xed,0x1e,0xcb,0xf8,0xfb,0x69,0x74,0x22,0x9c,0x1a,0x81,0x1d,0x9f,0x0b,0x9f,0xc9,0x87, - 0x1a,0x4a,0x0a,0x88,0x26,0x98,0xb2,0x5a,0x67,0x72,0xd5,0x7a,0x1b,0x5b,0xc8,0x5b,0x6f,0x4f,0x3b,0xcc, - 0x19,0x6c,0xd9,0x51,0x51,0x98,0xd6,0x22,0x0d,0x1c,0x00,0x84,0x86,0x75,0x2c,0x0c,0xa2,0xe2,0x54,0x6c, - 0x61,0x4e,0xc4,0x9b,0xe2,0x8f,0xd7,0x65,0xc6,0x1a,0xb2,0xb1,0xb5,0x6e,0xa7,0x45,0x3e,0x8c,0x96,0xf5, - 0x1c,0x28,0x93,0xc5,0x3c,0xf4,0x00,0xf9,0x46,0x74,0xc4,0x08,0xde,0xc8,0x1e,0x0c,0x92,0xb7,0x88,0x94, - 0xe5,0x97,0x90,0xf7,0x50,0xa9,0x86,0x4a,0x19,0xd9,0x11,0x25,0xf7,0x05,0xfb,0xdd,0x24,0x21,0x74,0xdd, - 0xd7,0x5e,0x5a,0x84,0x62,0xc2,0xcd,0xfb,0x27,0xc3,0xd2,0x53,0x42,0x8f,0xd1,0x44,0x67,0x44,0xb7,0xc1, - 0x88,0xdb,0xf3,0x8a,0xf4,0xda,0x65,0xc3,0x4d,0x82,0x67,0xbc,0x61,0xe3,0xd1,0x63,0xc9,0x38,0xa9,0xcf, - 0x11,0x62,0x12,0x88,0xac,0xb9,0x5c,0x98,0x97,0xbe,0x74,0x5a,0x92,0xbc,0x70,0x5a,0xde,0xdf,0xea,0x19, - 0x1d,0x68,0xd3,0xb6,0xb1,0xa3,0x06,0x90,0xe1,0x5c,0x6b,0xdb,0x05,0x6f,0x29,0xf3,0xdc,0xd8,0x97,0x80, - 0xf7,0xa3,0xb7,0xa6,0x9a,0x5e,0xe8,0xf6,0x4d,0xce,0xd5,0xd9,0x71,0x3d,0x05,0x25,0x0a,0xc1,0xfc,0x91, - 0x9a,0xd2,0x4c,0x77,0xf9,0x2f,0x3a,0x9d,0x4e,0x07,0x45,0x05,0x83,0x80,0xb3,0x01,0x24,0x9c,0x0a,0x0e, - 0xd2,0x57,0x92,0xc3,0xc0,0xc6,0xbf,0x36,0x7f,0x56,0xe7,0xff,0x05,0x30,0x86,0x8d,0x77,0xda,0x9e,0x76, - 0x1a,0x83,0xb1,0xe7,0x56,0x39,0xd9,0x80,0xe0,0x94,0x33,0x5a,0x28,0x94,0x06,0x1a,0x59,0x27,0x63,0xb1, - 0xed,0xae,0xec,0x51,0x96,0xbb,0x43,0xad,0x71,0x4f,0xd3,0xc0,0xec,0xfb,0x42,0xdf,0xc0,0xb6,0xc3,0x66, - 0x85,0xa9,0xc4,0x7b,0x82,0x07,0x22,0x40,0x1b,0x50,0xd6,0xb2,0xcd,0xc3,0xd2,0x9d,0xb3,0x10,0xa5,0x8c, - 0x1d,0xc2,0xb0,0x43,0x9a,0x63,0x3a,0xfb,0x27,0xe6,0x5d,0x1a,0x45,0x4f,0x1b,0x1b,0x6e,0x2e,0xd3,0xeb, - 0x72,0x40,0xb3,0xb6,0xc9,0x0b,0x46,0xe2,0x4e,0x11,0xed,0xc6,0xe1,0xe7,0x93,0x28,0xa5,0x63,0x3b,0x4c, - 0x49,0xd9,0x0e,0x2a,0xac,0xd3,0x6b,0x3e,0x85,0xdb,0x74,0x8e,0x2b,0xff,0x23,0x73,0x02,0x88,0x6f,0x9c, - 0x04,0x65,0x3b,0xd0,0x20,0x89,0xec,0x86,0x38,0x0a,0x6c,0x4f,0x61,0xb7,0x89,0xec,0x23,0xae,0x85,0x4e, - 0x9a,0xad,0xcb,0x65,0xd3,0x6e,0x9d,0xe8,0xad,0xdc,0x99,0x3e,0x8e,0x22,0x59,0xbe,0x76,0xcc,0xbd,0x36, - 0xe2,0x90,0x6c,0x50,0xae,0x2f,0x5a,0x60,0xb3,0xde,0x25,0xdb,0xdf,0x8d,0xbb,0xd9,0x10,0x22,0xe4,0x0d, - 0x2c,0x02,0x62,0xfb,0xc8,0x55,0xc1,0xaa,0x51,0xb5,0x2e,0x0d,0x40,0xe3,0x0d,0x1c,0xbe,0xea,0x5a,0x97, - 0xf4,0x6d,0x21,0x7a,0x82,0x6a,0x63,0x78,0xc5,0xd5,0xc8,0x60,0x83,0x14,0x18,0x7d,0x34,0xd5,0xb2,0x9e, - 0xea,0xbe,0xf4,0xb3,0x35,0x90,0x72,0xdb,0x62,0xeb,0xb3,0x9d,0x64,0xbd,0x39,0x32,0x25,0xe8,0x81,0x79, - 0x8c,0x3b,0x0d,0x3d,0xfe,0x9c,0x1f,0x68,0x37,0x2d,0x4c,0xbd,0xbe,0xac,0x35,0x76,0xa1,0xe2,0x1f,0x01, - 0xd3,0x50,0xd9,0x94,0xdd,0x16,0xee,0xf6,0x36,0x1b,0xd0,0x17,0xff,0x7f,0xe4,0x70,0x46,0x67,0x64,0xcc, - 0x86,0x9b,0x8d,0x9e,0x9f,0x26,0xa3,0x9f,0x97,0x7a,0xd8,0x95,0x6c,0xe3,0x90,0x3f,0xb3,0x3b,0xfb,0xb4, - 0xd6,0xfa,0x0f,0x9c,0xb7,0x89,0x07,0xd7,0x17,0x3d,0x47,0x8b,0x8e,0xe3,0xce,0x9b,0x0d,0x2f,0x8c,0x20, - 0xf3,0x61,0x60,0x37,0xd0,0x73,0xf8,0x79,0xff,0x39,0x9f,0x81,0xd5,0x6a,0xd3,0x31,0x80,0xd2,0x9a,0x9b, - 0xcb,0x93,0x6a,0xde,0x4d,0x3b,0xa9,0xaa,0xb9,0xce,0xcb,0x41,0x17,0xa1,0xe7,0x7f,0xd5,0xa9,0x48,0x98, - 0xda,0xbb,0x7d,0x5a,0x5c,0x8d,0xd3,0x01,0xc3,0x7f,0xeb,0x77,0xc4,0xd4,0xd6,0x86,0xd7,0x4f,0xe1,0x29, - 0x39,0x56,0x08,0x3f,0xa3,0x23,0xb3,0x8d,0x1d,0x41,0xe7,0xf0,0x1f,0x31,0x20,0x84,0x9f,0x5f,0xd2,0x41, - 0x36,0x3a,0x9d,0x57,0x30,0x60,0x85,0x0e,0x91,0x92,0xa0,0x33,0x2b,0x99,0xed,0x0f,0x6a,0xbd,0x09,0x3d, - 0xbe,0x98,0xb8,0x1a,0xf4,0x63,0x81,0x4c,0xf4,0x2e,0x17,0x17,0x08,0x2e,0x7c,0x85,0xed,0xe6,0x1a,0x4f, - 0xa2,0x28,0x65,0x6a,0x2b,0xb0,0xbf,0x5b,0xad,0xa6,0xdc,0x5a,0x80,0x58,0x69,0xd4,0x93,0xbe,0x06,0x5d, - 0x04,0x92,0x5f,0x26,0xa9,0x1b,0xa7,0x6f,0xe9,0xed,0xe0,0x84,0x78,0x81,0x62,0xd1,0xbc,0xca,0x5f,0x81, - 0xc0,0xd3,0x21,0x61,0x97,0xcb,0xae,0xf2,0xde,0x50,0x66,0xb1,0x84,0xc6,0x8e,0x45,0x90,0x0b,0xfe,0xd0, - 0xb0,0x8f,0x2a,0x82,0x78,0x62,0x7f,0x5c,0x3c,0xa8,0xad,0x99,0x6d,0xb1,0xbb,0x9b,0x94,0x87,0xf5,0x61, - 0x71,0x74,0x44,0x78,0xdb,0xcb,0x62,0x06,0x76,0x38,0x1d,0x9a,0x5d,0x1e,0xf2,0x68,0x3d,0xe8,0x75,0x04, - 0x9b,0x25,0xe3,0x17,0x95,0xc7,0x51,0x33,0xaf,0x5a,0x35,0xb5,0x02,0x9d,0x88,0x95,0x79,0x73,0x64,0xd0, - 0xc1,0xa8,0xc0,0x42,0x71,0x01,0xfc,0xdb,0x6b,0xa6,0xd5,0x42,0xab,0xa2,0x89,0x82,0x6d,0x76,0xec,0xfc, - 0xc3,0xac,0x79,0xba,0xcc,0x53,0x19,0x70,0xbd,0x2d,0x2b,0x19,0xf7,0x0e,0x1e,0x94,0xce,0x22,0x93,0x47, - 0x4c,0x74,0x70,0xa9,0x0e,0x12,0xe9,0x4c,0xb9,0x09,0xc9,0x5d,0x5f,0x2f,0xdf,0xe6,0x69,0x87,0x68,0x2f, - 0xad,0x13,0x58,0x9b,0x84,0x24,0x75,0x6b,0xfb,0x31,0x30,0xe7,0xe3,0xbb,0xd1,0x24,0x66,0x07,0xc7,0x08, - 0x28,0x8e,0x96,0xad,0x27,0xd7,0x22,0x09,0xb9,0xbf,0x17,0x7f,0xb8,0x4e,0xee,0x9f,0xa9,0x93,0x4c,0x0f, - 0x59,0x74,0x79,0xf1,0x4b,0x5f,0x93,0xe3,0xd6,0xac,0xa7,0x6d,0xa7,0x33,0x7a,0x0d,0x14,0xdc,0xdc,0x55, - 0xa1,0x63,0xf7,0xba,0xdf,0xed,0x7a,0x57,0x84,0x35,0xd4,0xea,0xf7,0x3f,0x3c,0x8a,0x0f,0x1f,0xee,0xfd, - 0xfb,0x08,0xbd,0xbb,0xfe,0xb3,0xde,0xcd,0x54,0xb4,0x77,0xef,0x20,0xea,0x89,0x1b,0xd6,0xd0,0xcb,0x5b, - 0xb7,0x9f,0x60,0x09,0x4e,0x68,0x0d,0x27,0x83,0xc3,0x91,0x3c,0x9a,0xe6,0x75,0xe8,0xe7,0x51,0x77,0xdd, - 0x53,0x1c,0x3b,0xd8,0xf7,0x22,0x71,0x73,0x72,0xf0,0xa0,0x9d,0x78,0x97,0x05,0x57,0x2e,0x49,0xcd,0xb2, - 0xc2,0x8d,0xc1,0x3d,0x27,0xce,0x16,0x65,0x74,0x2c,0x15,0x65,0xa5,0xa9,0x51,0xe9,0xb5,0x07,0x90,0x73, - 0x63,0xe4,0x00,0x97,0xc8,0xfd,0xb1,0xdf,0x7e,0x16,0x44,0xf7,0x5a,0xda,0x75,0xde,0xe1,0xa2,0x4c,0xc6, - 0xe5,0xde,0xde,0x38,0xa9,0x61,0xf4,0xad,0x0f,0xcb,0x5d,0xef,0x4d,0x51,0x7b,0x90,0xba,0xea,0x6d,0x66, - 0x26,0x4e,0x13,0x36,0x14,0x6f,0xe9,0x9f,0x13,0x0c,0xf9,0x2f,0x2e,0x99,0x94,0x36,0xe5,0x5b,0xb0,0x60, - 0x25,0x6d,0xee,0xd2,0x3b,0x72,0x94,0xec,0xc8,0x51,0x1e,0xed,0xec,0x5c,0x41,0x47,0x07,0x59,0x8c,0x9b, - 0x19,0x5f,0xcd,0x85,0xa5,0xcb,0x18,0x12,0x5f,0xdf,0x61,0x1a,0xbe,0x7d,0xb0,0x56,0xf7,0x06,0x2d,0xeb, - 0x83,0x89,0xf9,0x14,0x5b,0xeb,0x68,0xb0,0xd9,0x76,0x3b,0x12,0x5e,0x11,0x4d,0xed,0x73,0x18,0x11,0xd6, - 0xf4,0x53,0xf2,0x8e,0x65,0x9b,0xb9,0xda,0x16,0x62,0x81,0xe8,0xce,0x8e,0x41,0x8e,0x8c,0xe8,0xcd,0x33, - 0x95,0x86,0x06,0x50,0x28,0xab,0x2e,0xf2,0x65,0xd9,0x42,0x37,0x49,0xea,0x2e,0x76,0x76,0xaa,0xc4,0x91, - 0x26,0x66,0x31,0x33,0xb7,0x9c,0x10,0x06,0xe8,0x2b,0x5d,0xdf,0xc4,0x83,0xc0,0xf7,0x09,0xd8,0x5a,0x2c, - 0x51,0x50,0x59,0x1b,0xba,0x8b,0x3d,0x61,0x1b,0x82,0xb2,0x9f,0xe4,0x1b,0x3b,0xd3,0xed,0x7b,0x62,0x3c, - 0xd9,0xdc,0xa5,0xf4,0x6f,0xdc,0xab,0xd5,0xaa,0xea,0x7a,0xdf,0xe6,0x3d,0xee,0x81,0x76,0x6b,0x97,0x71, - 0x70,0x2a,0x25,0x3f,0x88,0xc6,0x0d,0x22,0xdf,0x18,0x44,0x30,0x84,0x80,0x57,0xb7,0xe6,0x56,0x6d,0xb0, - 0x9a,0x1e,0x00,0xde,0xf5,0x8f,0x91,0x0d,0x20,0xa2,0xae,0xd3,0x94,0xc0,0x93,0xd6,0x49,0x01,0xb7,0xca, - 0xb1,0x65,0x5f,0x7c,0x4d,0x2f,0xfd,0x96,0xa4,0xf1,0x6d,0xba,0x23,0xd1,0x7e,0x21,0xc8,0x60,0xfe,0x40, - 0xb6,0x24,0xd3,0x60,0x7e,0x57,0x1a,0x6c,0xf8,0x24,0x63,0xc9,0xc1,0x5e,0xa3,0x6b,0x1a,0xde,0x5e,0xad, - 0x09,0xd1,0xd7,0x90,0xcb,0x3e,0x26,0xc6,0x35,0x38,0x4b,0x22,0xe1,0x92,0xe1,0x60,0xa7,0x22,0xe1,0xaf, - 0x88,0xbb,0x7d,0x0a,0x39,0x82,0xa6,0xd1,0xe8,0xc7,0x8c,0x93,0xc1,0x1e,0xf3,0x03,0x24,0x12,0x92,0xf1, - 0xb2,0x5a,0xf2,0xf7,0x97,0xf8,0x0d,0xd2,0x7f,0x5a,0xcc,0xe4,0x83,0x25,0x3f,0xf8,0x8c,0x27,0x44,0xb3, - 0xd7,0xd5,0x0d,0x73,0xf3,0xfc,0xc4,0x79,0x39,0xda,0x36,0xe5,0x66,0x3a,0x7c,0x63,0x43,0x87,0xc7,0xf9, - 0x82,0x26,0x80,0xdf,0x65,0x24,0x6f,0x20,0x26,0x16,0x6b,0xad,0x8f,0xd9,0xad,0xf8,0x88,0xbc,0x84,0x28, - 0x87,0x00,0x9d,0x3e,0x3c,0x2b,0x74,0x93,0x0e,0x1d,0xe1,0x4d,0x41,0x6b,0xd1,0xa6,0xdb,0x07,0xca,0x38, - 0xff,0xd1,0x77,0xef,0x8b,0x05,0x12,0x66,0xfa,0xaa,0x25,0x62,0xaf,0xe1,0x4c,0x5d,0x43,0x3a,0x02,0xa0, - 0xc4,0x2b,0xf7,0xe1,0x3b,0x31,0xff,0x16,0x8b,0x93,0xeb,0xbc,0x2e,0x3b,0x09,0xc5,0x59,0x49,0x83,0x9b, - 0x19,0x69,0x5c,0x93,0x1e,0x1e,0x29,0x02,0x3b,0x38,0xa6,0x0d,0x77,0xa4,0x68,0xde,0x6a,0x1e,0xca,0xec, - 0x7d,0x7e,0x96,0xbe,0x0e,0xde,0x21,0x29,0xe5,0x84,0x9f,0xca,0x8b,0xb2,0xba,0x2e,0x4d,0x95,0x94,0x84, - 0x0d,0x90,0x9f,0x41,0x66,0xd2,0x2c,0xe8,0x80,0x48,0x2f,0x14,0x53,0x38,0x6f,0xe6,0x79,0x8b,0xde,0x9a, - 0xbc,0xf4,0x9e,0x02,0x17,0xf7,0x13,0x65,0xd0,0x79,0x4c,0x9f,0xe5,0xcd,0x4d,0x39,0x4d,0x09,0x54,0x8e, - 0xe7,0xc5,0xa9,0x9e,0xde,0x4c,0xe7,0xfa,0xbb,0xaa,0xba,0x68,0xd2,0xa7,0x6b,0xf5,0x2c,0xbb,0x9f,0xef, - 0xfd,0x41,0x47,0xd2,0x87,0xe5,0xfe,0xfe,0xa3,0x7f,0xe2,0xff,0xe3,0xfd,0x3d,0xfc,0x3c,0xf9,0x07,0xff, - 0xff,0x17,0xbf,0x3c,0xe3,0x97,0x67,0xfc,0xf2,0xd5,0x3f,0x9f,0xf0,0xff,0x67,0xf4,0x72,0xf0,0xec,0xd9, - 0xb3,0x0f,0xcb,0x2f,0xe9,0xa3,0x3d,0xfe,0x79,0x82,0xff,0x5f,0x3d,0xe3,0x97,0xaf,0xf7,0xf1,0xff,0x9f, - 0xa8,0xed,0xcb,0x83,0x7f,0xa1,0xd8,0xe3,0x7d,0x7e,0x79,0xf6,0x94,0x5e,0xbe,0xda,0xdf,0x3f,0xa0,0x97, - 0x27,0xff,0x44,0x05,0xcf,0xbe,0xe1,0x9c,0x67,0x4f,0x1e,0xe3,0xe5,0xc9,0x33,0x7e,0x79,0xf6,0xec,0xc9, - 0x7d,0x8f,0x0f,0x5f,0x59,0x15,0x61,0x72,0x6b,0xa6,0x53,0x78,0x12,0x4b,0x73,0x70,0x36,0x6d,0x98,0xf9, - 0x52,0xa7,0xa5,0xd2,0x44,0xde,0xeb,0x3a,0x3f,0x99,0xd3,0xf2,0x6d,0xd7,0x0a,0x7a,0x2b,0x79,0xd9,0x37, - 0xca,0xce,0xa5,0xc9,0xdc,0x37,0x7c,0xe6,0x23,0xf5,0x53,0x16,0x6a,0xd9,0x0e,0xff,0x13,0xed,0x3e,0x33, - 0x9c,0xe2,0x6e,0x34,0xba,0x77,0xfc,0xe1,0xc3,0xec,0x88,0x68,0xbe,0xef,0xb2,0xe8,0xf8,0x98,0x0f,0xdd, - 0xe3,0xe3,0xa8,0x28,0xe9,0xa0,0xf8,0x25,0xbb,0xdb,0x79,0x54,0xfd,0x3c,0x98,0xf9,0xcb,0xaf,0x4f,0xcb, - 0xab,0xa2,0xae,0x4a,0xac,0x2b,0xe1,0xea,0xed,0x4e,0xc2,0x68,0x61,0xd6,0x53,0xfd,0x91,0xfd,0xbc,0xb3, - 0x33,0x9c,0xd7,0x53,0x41,0xfc,0x9e,0xfd,0xb2,0xb3,0x63,0x24,0xbe,0x03,0x62,0xe3,0x5e,0xe9,0x1f,0xb2, - 0xdf,0x77,0x76,0xee,0x87,0x32,0xe7,0xfb,0x22,0x71,0xfe,0x3d,0x51,0xdf,0x23,0x6f,0xff,0xc1,0xef,0x5e, - 0x11,0x82,0x72,0x5b,0xdf,0x8c,0xf6,0x69,0xf4,0xdf,0x6e,0x64,0xea,0xd9,0x99,0xbe,0x4f,0x39,0xbf,0x66, - 0x31,0x65,0x05,0x19,0xb4,0x37,0xea,0xaa,0x98,0x51,0x16,0xda,0x2a,0x16,0xe7,0x84,0x68,0x56,0xc5,0x22, - 0x9f,0xd1,0xbf,0x8a,0xfe,0x55,0x8d,0x6b,0x93,0xb8,0x2c,0x7a,0x05,0x7f,0xf3,0x47,0xa2,0xfe,0xcd,0x15, - 0xdd,0x9f,0x12,0xe3,0x7e,0xa9,0x3f,0xdc,0xff,0x30,0xdb,0xf5,0x7d,0x43,0xc6,0xe2,0x3c,0x2f,0xdb,0xea, - 0xf2,0x63,0xd3,0x49,0xfe,0xdd,0x28,0x4a,0xef,0x9f,0x12,0x1a,0x3b,0xad,0x3e,0x7d,0xb8,0x1f,0xd3,0x97, - 0xc9,0xfd,0x24,0x51,0xbf,0xd1,0x69,0x3e,0xba,0x46,0xae,0xfa,0x11,0xa8,0x94,0x10,0xf0,0x2f,0x89,0x3d, - 0x04,0xb5,0x86,0xa2,0xe8,0x0e,0x80,0xd2,0x90,0x89,0x36,0x0d,0xe3,0xc4,0x5b,0xda,0x7b,0xa1,0x84,0x9b, - 0xaa,0xda,0x87,0xe6,0xc5,0xcc,0xf9,0xa6,0xc5,0x09,0x3a,0xb7,0xe7,0x3e,0x17,0x56,0xde,0xd9,0xea,0x9e, - 0x19,0x0a,0xa1,0xd5,0x9b,0x72,0x23,0x1f,0xbe,0xe2,0xd1,0xce,0x4e,0xfc,0x28,0xdb,0xa6,0x95,0xdd,0xfe, - 0x79,0x98,0xad,0x3f,0x9b,0x57,0x27,0xf9,0x7c,0x67,0x47,0x7e,0x47,0xde,0x2a,0x5c,0x90,0x24,0xa6,0xb4, - 0x9b,0x35,0xd2,0xe5,0xd5,0xe8,0xe7,0x9f,0x9e,0x1e,0x3f,0x7d,0xf5,0x73,0xa2,0x1e,0x11,0x99,0xa3,0x03, - 0xc8,0x39,0x3e,0x46,0xd6,0x93,0xa7,0x3f,0xbf,0x7f,0xfd,0xfa,0xc5,0xbb,0xe3,0x6f,0x5f,0xbc,0x7e,0xf4, - 0xf0,0xc5,0xf1,0x77,0xaf,0x5f,0xff,0x70,0x7c,0x1c,0x48,0x97,0x74,0xc0,0xa4,0x0e,0xb0,0x7e,0xb4,0x48, - 0x25,0x3b,0x63,0xb3,0x3d,0x89,0x59,0xa6,0x8e,0x19,0xb5,0x48,0x76,0xb4,0xaa,0xf4,0xe0,0xf6,0x78,0xc7, - 0x6c,0xf8,0xce,0x0e,0x35,0x24,0x8f,0x77,0x38,0x68,0xbf,0xd5,0xa7,0x73,0x0d,0xc7,0x6e,0x2a,0x68,0x9e, - 0x47,0x84,0x2f,0x7f,0xa0,0xd3,0x9e,0x48,0x84,0x3b,0xea,0xd6,0x52,0x9e,0x7e,0x93,0xc9,0xbb,0xee,0x9a, - 0x06,0xe4,0xb0,0x91,0xf9,0xc1,0x8a,0x7b,0x00,0x79,0x7b,0xda,0xb6,0xc3,0x01,0x0d,0x79,0x33,0x60,0x1d, - 0x6d,0x55,0xe0,0xe6,0x54,0xf8,0x0d,0x41,0xcd,0xa6,0xeb,0x92,0x14,0x04,0x78,0x75,0xca,0x12,0xd2,0xce, - 0x3b,0xf6,0x7e,0x9f,0xed,0x20,0xd1,0xd8,0xb1,0x48,0xe1,0x72,0x9d,0x5d,0xa8,0x46,0x67,0x84,0xf8,0xf4, - 0xc6,0xe7,0xc5,0x2c,0x6b,0xf4,0xee,0xae,0x78,0x5a,0x41,0x77,0x09,0x9f,0xae,0xf1,0xb4,0xd7,0xc7,0x77, - 0xcb,0x93,0x81,0x6e,0x52,0x69,0x63,0x9d,0x81,0x28,0x30,0xba,0xe3,0x27,0x0c,0xad,0x7f,0xff,0xab,0xe3, - 0xd8,0x7d,0xa7,0x36,0x3e,0x99,0xe9,0x05,0x51,0x26,0x61,0xff,0x28,0xbb,0x25,0x6a,0x06,0xcb,0xe5,0x1e, - 0xd1,0x99,0x27,0x7a,0xc1,0x15,0xf5,0x6b,0x28,0xab,0xb6,0x38,0xbd,0x09,0x6b,0xf0,0x0e,0xdb,0xbe,0xc3, - 0x46,0xa5,0xc3,0x1e,0xf3,0x9e,0xc9,0x18,0xb7,0x0f,0x4a,0xe7,0xaa,0x3d,0x12,0x82,0x25,0x96,0x06,0xa4, - 0x61,0x36,0xe4,0x12,0x21,0xb6,0x86,0x5d,0x8a,0x83,0x14,0xf6,0x50,0xb8,0x5d,0x6a,0x3b,0x13,0xc1,0x27, - 0x01,0x77,0x71,0x0a,0x80,0x42,0xa1,0x6a,0x11,0x87,0x45,0x96,0xfa,0x70,0xe9,0x18,0x9d,0x03,0xf1,0xa6, - 0x9b,0xe9,0x01,0xf3,0x25,0x55,0xa9,0x5c,0x35,0x66,0xe6,0xdb,0xfc,0xcc,0x7a,0x7c,0xb3,0xab,0x50,0x2b, - 0xcf,0xd3,0xf3,0x62,0x3e,0xab,0x11,0xd0,0x47,0xde,0x61,0xfa,0x9a,0xd5,0xf2,0xac,0xe7,0x97,0x59,0x21, - 0x8f,0x65,0x93,0x59,0xe1,0xbc,0x31,0xf7,0xe1,0x82,0x95,0xbc,0x9e,0x96,0x8f,0x4d,0x42,0x58,0xe8,0xb4, - 0x7c,0x2d,0x4e,0xb8,0xbd,0xd4,0x77,0x90,0x32,0x3c,0x9f,0x75,0x52,0x89,0xe8,0x81,0x54,0x89,0x89,0x6e, - 0xdb,0x84,0xa1,0x32,0x6d,0x25,0x79,0x2f,0xfd,0xb9,0x21,0xff,0x3b,0xf5,0x10,0x65,0x43,0x59,0x9d,0xa4, - 0x3a,0xbf,0x26,0x04,0x6e,0xfc,0xa4,0xa1,0xb9,0x6e,0x8b,0x69,0x90,0xf0,0xb6,0xaa,0x50,0x15,0xe1,0x6e, - 0x8e,0x19,0x25,0x89,0x8f,0xab,0x4b,0x9c,0x9b,0x41,0xb1,0xc7,0x73,0x6a,0x74,0x16,0x24,0xbc,0x46,0xd3, - 0xf6,0x95,0x69,0xa5,0x67,0x39,0x22,0xb0,0xdc,0x64,0x4d,0x90,0xf6,0x52,0xd3,0x54,0x87,0xbd,0x21,0x26, - 0x09,0xe9,0x6f,0xc0,0xaa,0x9f,0x57,0x73,0x22,0xab,0x33,0x30,0x76,0x0b,0x3a,0x51,0x78,0x29,0xd2,0xdb, - 0x3e,0xa5,0xb1,0x1e,0x63,0x1f,0x23,0x0f,0xac,0xcc,0x00,0xe6,0x1f,0x9e,0x96,0xb5,0x1a,0x3a,0x9f,0x88, - 0xc0,0x8d,0x67,0xc1,0x06,0xa0,0x86,0x65,0xc3,0x9f,0x77,0xc3,0x42,0xf9,0x60,0x48,0x6c,0xa1,0x1b,0x59, - 0x69,0x3e,0x53,0x3b,0xb3,0x40,0xd3,0xcb,0xab,0x4e,0x70,0x15,0x4e,0x1a,0x0d,0x35,0x60,0x49,0xaf,0x74, - 0x28,0x7d,0xe1,0xcf,0xad,0xa2,0xa7,0xfb,0xe3,0xa5,0x8f,0x01,0x87,0x1d,0xc8,0x18,0xcc,0xb7,0xd8,0x07, - 0x67,0xca,0xb9,0xb7,0x59,0x00,0x66,0xd7,0x47,0xf3,0xec,0x36,0xac,0xe6,0xfe,0x41,0xe4,0x3e,0xbf,0x54, - 0xda,0x82,0x2d,0x3f,0x75,0xa1,0x0b,0xfc,0x50,0xb0,0x86,0x9e,0x4b,0x07,0xe4,0x13,0x9a,0x68,0x78,0x84, - 0x06,0x78,0xb4,0x7b,0x54,0x0c,0xb0,0x94,0xc0,0x60,0x1b,0xcc,0x81,0xf6,0xcf,0x94,0xee,0xf7,0x87,0xf6, - 0xcf,0x9c,0x6e,0x81,0x5b,0xfb,0x67,0x4e,0xb7,0x7b,0x44,0xfb,0x67,0x4a,0xf7,0x20,0xa5,0xfd,0xb3,0xb4, - 0x6b,0xc0,0x13,0x53,0xcf,0x92,0x73,0x6d,0x98,0x72,0xbf,0xd2,0x37,0xba,0x87,0xf3,0xcf,0x68,0xe9,0x0f, - 0x23,0xa0,0x20,0xf6,0x90,0x5c,0x80,0x4b,0x82,0x77,0x3f,0xb8,0xaf,0xd2,0x3e,0x89,0x18,0x8f,0x55,0x9a, - 0xac,0x00,0xad,0xc1,0xef,0x36,0x3a,0x3a,0xda,0x8c,0x2e,0xe0,0x4c,0xf0,0xce,0xf4,0x61,0x75,0x34,0x7e, - 0x15,0xdf,0xd0,0x59,0xad,0x06,0x51,0x2b,0x42,0xd0,0x0d,0x44,0x1e,0x81,0x8c,0x66,0x33,0xee,0x05,0xb3, - 0xc4,0xaa,0xce,0xf2,0x90,0x65,0x85,0x32,0x4e,0x30,0xf4,0xf1,0x71,0x75,0x42,0x84,0x46,0x73,0x5d,0x80, - 0x46,0xa2,0x4e,0x4c,0x89,0x5c,0x95,0x61,0xa5,0xfc,0x68,0x07,0x93,0x12,0xea,0x1e,0x9f,0xd0,0xd8,0x2f, - 0xc6,0x9c,0x6e,0x86,0x86,0x64,0x03,0x30,0x5f,0xba,0x33,0xba,0x84,0x27,0x48,0x75,0xc2,0x04,0x91,0x95, - 0x6a,0xa8,0x02,0x07,0x8e,0x39,0x32,0x60,0xbb,0xbb,0xb6,0x3a,0xca,0x63,0x1d,0x84,0xf0,0x0a,0x24,0x9a, - 0xcc,0x73,0xd1,0x34,0x24,0xea,0x44,0x43,0xb8,0xeb,0xc0,0xfa,0x9a,0xc1,0xfa,0x04,0x6a,0x41,0x7c,0x7f, - 0xa1,0x37,0x0d,0x92,0x44,0x6f,0xc6,0x9c,0x89,0xc3,0xdb,0x7a,0xc1,0x9b,0x60,0x6a,0xde,0xaf,0x2e,0x1f, - 0x83,0x7d,0xa6,0x43,0x09,0x6c,0x4e,0x24,0x13,0x11,0x71,0x5e,0xa2,0xfa,0x32,0xf2,0x49,0xfc,0xdd,0x84, - 0x58,0x7f,0x5a,0x13,0xa8,0x0a,0x0d,0x2f,0x92,0xb5,0x49,0xcf,0x98,0xd2,0xaf,0x52,0xcd,0xe1,0x61,0x4a, - 0x27,0xd0,0x7b,0x50,0x8c,0x6b,0x3a,0xec,0xac,0xd1,0xed,0x61,0x8d,0x25,0xc6,0x0a,0xb7,0xb4,0xda,0xc9, - 0x7a,0x1d,0x03,0xc4,0xd4,0xb1,0x36,0x1e,0xd8,0x9d,0xc9,0x83,0xf3,0x9a,0x98,0x0a,0xe6,0xf3,0x0b,0x1c, - 0xfd,0x7e,0x2a,0xee,0x99,0x20,0x37,0xbc,0xca,0x20,0xb3,0x9f,0xb3,0x28,0x7f,0x3b,0xee,0x84,0x08,0x9a, - 0xb9,0xa0,0x69,0x2c,0x1c,0xb6,0x63,0x65,0x99,0xbf,0x3c,0x87,0xa5,0x2f,0xf4,0x04,0x8b,0x2a,0x19,0xe9, - 0x09,0x04,0x5b,0xad,0xf8,0x3a,0x0d,0x6b,0x0e,0x28,0xc7,0xac,0x5f,0xd1,0x3c,0x45,0x68,0x9b,0xa6,0x38, - 0xe1,0x33,0x9a,0x3e,0xa4,0x6a,0x8a,0xe6,0xe7,0x25,0xf0,0xa0,0xe8,0x1c,0x2f,0x34,0x7b,0xe2,0xd3,0x69, - 0x45,0x40,0x52,0xda,0x45,0x20,0x72,0xa8,0xf4,0x68,0xeb,0x93,0x96,0x90,0x38,0x34,0xa3,0x1d,0x33,0x65, - 0x5a,0xb9,0x7c,0x18,0x54,0x9e,0x18,0x6b,0x5e,0x9a,0x7c,0x8e,0x95,0x06,0xe9,0x5c,0xbe,0x5a,0x6d,0x1f, - 0xb0,0xa7,0x4c,0x78,0x26,0x48,0x7d,0x74,0x1e,0x42,0xfa,0x44,0x95,0xa8,0xa9,0x3c,0x12,0x51,0x37,0x26, - 0x22,0x7e,0x7b,0xba,0x5a,0x7d,0x89,0x8f,0x7a,0xbb,0x0b,0x2e,0xc4,0x19,0x0b,0xa3,0x8c,0x5a,0x7d,0xbb, - 0xd8,0xd9,0xa1,0xc9,0xaf,0x93,0x3b,0x18,0x19,0x0c,0xe0,0x36,0xe4,0x88,0x37,0x98,0x60,0xd5,0xe3,0x6e, - 0x64,0x6f,0x37,0x93,0xc6,0x04,0x6a,0x4b,0xd2,0xda,0xe2,0xd1,0x80,0x2e,0x8b,0x2b,0x43,0xb7,0xd1,0x16, - 0x5a,0xd2,0xeb,0x92,0x77,0x95,0x4b,0xea,0xaf,0xd0,0xce,0x4e,0x57,0xe6,0xef,0x85,0x64,0xe6,0xd8,0x10, - 0x38,0x6d,0xfb,0x70,0x4a,0xab,0xd5,0x12,0x8c,0x22,0xe8,0x9a,0x01,0x04,0xff,0xf4,0xb9,0x16,0x61,0x0d, - 0xcc,0x56,0xea,0x31,0x7b,0x45,0xd3,0x39,0xda,0x84,0xa3,0x74,0xa7,0x51,0x77,0x98,0x5a,0xc2,0xf3,0x69, - 0x8e,0x0d,0xd1,0x6e,0xe3,0xd9,0xac,0x45,0x3c,0x9d,0x4c,0x4d,0x41,0x48,0xba,0x6b,0xda,0xcc,0x6e,0xee, - 0x11,0x01,0xc5,0xe1,0x13,0x04,0xf3,0x08,0x65,0x82,0x3a,0x08,0x75,0xb1,0x39,0x29,0x85,0x37,0x07,0xdc, - 0xb2,0xc4,0x60,0xc6,0x7a,0xba,0xcb,0xfc,0x93,0x53,0xd5,0x28,0x76,0x42,0x37,0xaa,0x98,0x56,0x1d,0x50, - 0x75,0xaa,0xb4,0x02,0x55,0xb6,0x80,0x95,0xa7,0xbe,0x66,0xc6,0x57,0xcd,0x81,0xa5,0x8c,0x79,0xad,0xdd, - 0x51,0x63,0x2f,0xa4,0xe7,0xad,0xb1,0x5a,0xd5,0xc4,0x1d,0xd9,0x9d,0x00,0x40,0x9b,0xc4,0xb4,0x03,0x6a, - 0xc1,0x5e,0x3c,0x08,0x55,0x77,0x70,0x67,0x92,0x4a,0xc5,0x49,0xb8,0x69,0x1e,0x6b,0xa7,0x6a,0xba,0x63, - 0xbc,0xe1,0x50,0x82,0x98,0x1d,0x7e,0xaf,0x8f,0x7d,0x97,0xc2,0xcd,0xb9,0x5a,0x89,0x46,0x89,0xa0,0xcd, - 0x38,0xd2,0xa0,0x79,0xc5,0x45,0x3a,0xdd,0x5a,0xaf,0x2f,0x42,0xee,0x00,0xd8,0xaa,0x83,0x99,0xbd,0xac, - 0x3f,0x94,0x11,0x73,0x74,0x4f,0x88,0x6c,0xdb,0x50,0x64,0xfb,0x89,0x87,0x03,0x91,0xff,0x5a,0x75,0x6a, - 0x0d,0x31,0xe3,0x1d,0xb5,0x0f,0xb2,0x19,0x00,0x18,0x16,0x89,0xf3,0x72,0x3c,0xd4,0xd9,0xc7,0xd1,0xa0, - 0x04,0xd3,0xe3,0xd6,0xf7,0x7e,0x46,0xc3,0x60,0x29,0x6e,0x0b,0x09,0x93,0x90,0x55,0x7a,0xd2,0x63,0x84, - 0xa1,0xb2,0xef,0x89,0xc5,0x73,0x1a,0x61,0xfe,0xa0,0xb2,0x9d,0xca,0xa9,0x43,0x16,0x0b,0x13,0xb6,0xa1, - 0xdd,0x56,0x1d,0xe6,0xec,0x10,0x5f,0x67,0x2c,0xa7,0x2e,0x58,0x69,0xa2,0x30,0xf1,0x65,0x32,0xa9,0xb7, - 0xd9,0xcf,0x69,0xca,0x06,0xf3,0x53,0xb6,0x8a,0xa7,0xce,0xc1,0xc5,0x22,0x65,0x40,0x2f,0xe9,0x29,0x19, - 0xd0,0xb0,0xbc,0xd6,0x71,0xd7,0x13,0xa3,0x98,0x6c,0x20,0x9c,0x01,0x69,0x42,0x3d,0x31,0x3a,0xef,0x02, - 0x2d,0x10,0x1a,0x1e,0x2a,0x54,0x4e,0xca,0xa0,0x50,0xe9,0x5a,0x9f,0x98,0x69,0x4b,0xdb,0x75,0x5a,0x4f, - 0xca,0xc9,0x26,0xc5,0x4d,0x05,0x3e,0xd7,0x28,0x13,0x28,0x7c,0x0a,0x53,0xd3,0x9f,0x6b,0x38,0x28,0x48, - 0x08,0x27,0xad,0xd3,0x60,0x37,0x3c,0x09,0xcf,0xc5,0xac,0x9d,0xe8,0x89,0xb6,0x86,0x4d,0xd4,0xb5,0xbe, - 0x12,0x66,0xd2,0xa6,0xb0,0xfb,0x75,0x84,0x79,0x39,0x19,0x06,0xac,0xc3,0xa3,0x21,0x15,0x15,0x1b,0x40, - 0xb5,0xde,0x00,0x0a,0x40,0x0b,0x66,0x4c,0xd8,0xd3,0xae,0xd6,0x0a,0xf8,0x2e,0xe8,0xe6,0x53,0xed,0x25, - 0xac,0xa2,0x1f,0xea,0x12,0x99,0xd8,0x89,0xa1,0x46,0xb6,0x9d,0x5c,0xd1,0x7c,0xd3,0x08,0x8a,0xf5,0x43, - 0x13,0xb4,0x62,0x58,0xdd,0x45,0x43,0x78,0x6d,0x51,0x60,0xda,0x86,0xe6,0x02,0x4e,0x2a,0x43,0x93,0x92, - 0x4a,0x19,0xda,0x62,0x4f,0x07,0xc3,0x5d,0x3d,0xd4,0x90,0x8a,0x3c,0x81,0x09,0xce,0xe3,0x3b,0x0b,0xec, - 0x46,0x4d,0x74,0x94,0x3d,0x45,0xa1,0x87,0x5a,0x84,0x7e,0x1b,0xdc,0xb4,0x68,0xc0,0x69,0x9a,0x7e,0x63, - 0x86,0x48,0xce,0x1e,0x48,0x04,0x24,0xa5,0x75,0x29,0x7e,0xa3,0xdd,0x31,0x11,0xac,0x77,0x73,0xca,0x2a, - 0x67,0xbd,0xe9,0x76,0x65,0x05,0x84,0x8c,0x49,0xd2,0x89,0x5d,0xff,0x3c,0x2b,0x88,0xc6,0x52,0x4d,0x06, - 0x52,0x6b,0x4c,0xa7,0xfd,0x76,0x77,0xfd,0x73,0xec,0xbb,0x3c,0xc3,0x06,0x54,0x28,0x99,0xe5,0x93,0xdc, - 0x9b,0xca,0xf5,0x80,0xa5,0x49,0x26,0x4d,0x7a,0xd8,0x1c,0x59,0x52,0xb7,0x58,0x63,0xd4,0x84,0x9e,0x16, - 0x4d,0xf6,0xd0,0x06,0x36,0xe3,0xc7,0xa2,0xe4,0x30,0x39,0x0f,0x85,0x5d,0x5a,0x76,0x6c,0xa6,0xc2,0x69, - 0xd9,0x1c,0xce,0x67,0x54,0xf2,0x76,0x64,0x50,0x89,0x16,0x1c,0xdc,0xd8,0xb6,0x7f,0x55,0xcc,0x88,0x8e, - 0x96,0x58,0x4e,0x1f,0xef,0x88,0x04,0xe4,0xf8,0xd2,0x96,0x0d,0x31,0x3c,0xaa,0x7b,0x06,0x44,0x51,0x98, - 0x0e,0x0d,0xec,0xb9,0x82,0xc3,0x56,0x14,0x06,0x63,0x36,0x7d,0xbb,0x28,0x7b,0x8c,0xf0,0x34,0x48,0x1c, - 0xa9,0x5b,0x63,0x67,0x4d,0x08,0x92,0x56,0x67,0xe3,0x50,0x2a,0x25,0x08,0x6e,0x1d,0x50,0xc8,0x60,0x5f, - 0xfa,0x56,0x43,0x70,0xe7,0x13,0x32,0x24,0xae,0x0e,0xe1,0x70,0x7e,0x94,0xdd,0x22,0x47,0x5c,0x6a,0x7c, - 0x98,0xaa,0xa9,0xad,0x90,0xd7,0x9b,0x0d,0x26,0x13,0x7c,0x9a,0x1f,0x29,0x7c,0x97,0xd3,0x77,0x40,0x9b, - 0x93,0x22,0x95,0xcf,0x8b,0xf5,0xd8,0x2e,0x5a,0x45,0xb4,0x77,0x71,0xd7,0x80,0x64,0x0d,0xc3,0x11,0xb9, - 0xc4,0xcf,0x0d,0x4b,0x96,0x11,0x86,0x2a,0x65,0x68,0xa8,0x52,0x1f,0x96,0x6c,0xa8,0x72,0x0b,0x37,0x8f, - 0x14,0xcf,0xeb,0xe1,0x11,0x54,0x32,0x02,0x03,0xbd,0x25,0xc0,0xb6,0x06,0x60,0x4e,0x69,0x24,0x84,0x01, - 0xe4,0xfb,0x6a,0xad,0xf2,0x24,0x95,0xe7,0x7c,0xbd,0xee,0x0f,0xc3,0x52,0x5a,0xc4,0x76,0x59,0x2d,0x23, - 0x2f,0x4d,0x9b,0xf4,0x54,0xf4,0x66,0x5c,0xac,0xa4,0x1f,0xc2,0xcb,0xd8,0x9f,0xd0,0xe2,0xdf,0xc2,0xa0, - 0x01,0x41,0xd4,0x58,0x54,0x97,0x82,0x7f,0x5b,0x13,0xfd,0xb7,0x5d,0x8c,0x8e,0x61,0xf6,0x0c,0x08,0x31, - 0x81,0xb6,0x1b,0xa6,0xf6,0x05,0xa6,0x6c,0x12,0x5c,0x38,0xe8,0xed,0xb2,0xf8,0x44,0x9c,0x86,0x1f,0x29, - 0x64,0xa4,0xe8,0xa3,0xa4,0xdb,0xc9,0xd2,0x0f,0xda,0xb1,0x86,0x65,0x8f,0xad,0x44,0xb2,0xa1,0x10,0xae, - 0x85,0x00,0xaf,0xe8,0x44,0x35,0xbb,0xde,0x4c,0x56,0x43,0xcc,0xab,0x7f,0x2f,0x12,0xb8,0x83,0x57,0xc4, - 0xa1,0x48,0xba,0x05,0xf4,0xc6,0x4f,0x0c,0x23,0xb7,0xd5,0xea,0xa3,0x1e,0xe7,0x62,0xcd,0x02,0xf2,0x5e, - 0x15,0xdc,0x08,0x84,0xa5,0x56,0x71,0xed,0xb1,0xf5,0x2b,0xdd,0xd9,0xb8,0x1b,0x26,0x6e,0xa5,0x45,0xe2, - 0x20,0x34,0x30,0xd7,0x04,0xbf,0xf0,0xdb,0xb4,0xa8,0x02,0x33,0x2c,0xdc,0xcc,0x89,0x51,0xf3,0xa3,0x40, - 0x15,0x14,0xa8,0x6c,0x84,0x04,0xee,0xb5,0x63,0xd9,0x0a,0x5a,0xe9,0x49,0x41,0xd0,0x9c,0xa2,0x8e,0xd5, - 0x0a,0x05,0xf1,0x3f,0x3f,0x0a,0x48,0xde,0x17,0x1b,0x67,0x09,0x6b,0xd0,0xab,0x6c,0xfb,0x94,0x89,0x67, - 0x38,0xca,0x72,0x7c,0xb5,0xec,0xad,0x8e,0x1f,0x89,0x85,0x9d,0x92,0x80,0x0d,0xd6,0x00,0xa9,0x81,0xa6, - 0xbc,0x22,0x04,0x89,0x26,0x23,0x13,0x6a,0x30,0x4a,0x92,0x1c,0x3a,0x1c,0x0b,0xa9,0x11,0x34,0x1c,0xc4, - 0x5c,0xe5,0xf4,0x83,0x28,0x30,0xd6,0x5b,0x9c,0x6a,0x15,0x19,0x94,0xab,0x34,0x9e,0x3e,0xd8,0xa7,0x05, - 0x78,0x30,0x15,0x04,0xbb,0xbd,0xcf,0xbe,0xde,0x0e,0x09,0xe5,0xc9,0xed,0xe6,0xf1,0xc5,0x93,0xd2,0x86, - 0x8d,0x5b,0xf8,0xb4,0xa1,0x0f,0x03,0x17,0x23,0x3d,0xba,0x67,0x30,0x92,0x6c,0x66,0x09,0xbe,0xec,0xa5, - 0x6f,0x03,0xd9,0x62,0x4e,0xc2,0x25,0x38,0x94,0xf4,0x31,0xe7,0x50,0xea,0x24,0x78,0x1e,0x32,0xd0,0x44, - 0xfc,0xd5,0x67,0xfe,0x10,0xcd,0xde,0x20,0xe2,0x16,0x8f,0x73,0xe2,0x2c,0x04,0x69,0x53,0xac,0x41,0x96, - 0x29,0x6d,0xd9,0xc4,0x13,0x3d,0xbe,0xd6,0x31,0x8c,0xc6,0x88,0xfe,0xcc,0x13,0x45,0x2f,0xcb,0x21,0xd0, - 0x7a,0x13,0x48,0xea,0x74,0x68,0x8a,0x17,0x27,0x56,0xcb,0x86,0xb8,0xad,0xae,0x7c,0xfc,0xe1,0x1a,0x9a, - 0x36,0x4f,0x17,0xb4,0x87,0x07,0x47,0xb0,0x98,0xf2,0x76,0x92,0xba,0x83,0xfa,0xb9,0x81,0x4c,0xba,0x1d, - 0x1a,0xee,0x05,0x34,0x6e,0x9f,0x2a,0xb2,0x60,0xf9,0x5c,0xb3,0x87,0xfc,0x64,0x3f,0xdd,0x3b,0x08,0xac, - 0x85,0xc0,0x3b,0xb6,0xfd,0xd0,0xe5,0x90,0x40,0x68,0xc6,0x17,0x4a,0x7f,0xde,0xd4,0xc2,0x31,0x68,0x73, - 0x18,0x97,0x40,0x37,0xd8,0x41,0x4e,0x54,0xf7,0xb8,0xce,0xea,0xd1,0x3d,0x91,0x49,0x8f,0x2d,0x4c,0xd7, - 0x7e,0x4d,0x3b,0x46,0x0a,0x6c,0x9e,0xe2,0x11,0x28,0x21,0xdf,0xea,0x41,0x61,0x7b,0x57,0x21,0xa8,0xba, - 0xb4,0xb0,0x0d,0x62,0x0d,0xfb,0xc7,0xd9,0x4f,0x71,0x2f,0x4c,0x57,0x7d,0x58,0x9f,0x9f,0xd0,0xbf,0xba, - 0x67,0x09,0xb1,0x75,0x5e,0x55,0x17,0x11,0xe1,0xbd,0x9f,0x6c,0xef,0xd7,0xc4,0xf4,0x53,0x3d,0x37,0xb7, - 0x50,0x37,0x04,0x9b,0xf1,0x91,0xdb,0x8c,0x4e,0x84,0xc1,0x63,0x8c,0xab,0xac,0x9c,0x38,0xeb,0x11,0x10, - 0x67,0xda,0x10,0xb3,0x10,0xa3,0x6c,0x57,0x4e,0x5c,0x72,0x43,0x08,0x40,0x12,0x24,0x02,0xde,0x8c,0x59, - 0x7f,0xe9,0xde,0x80,0xb9,0xcc,0x4b,0xe9,0x6e,0xb1,0x1b,0x6d,0xc5,0xc6,0x42,0xfc,0x3e,0xcb,0x38,0x93, - 0x28,0xe1,0xe8,0x3b,0xb6,0x1a,0xde,0x85,0x6e,0x94,0xf6,0x33,0x07,0x92,0x95,0x1f,0xc2,0x4f,0x21,0x0b, - 0xfd,0x71,0x14,0x9a,0x63,0xf0,0x64,0x9a,0x2f,0xba,0x39,0x61,0x90,0x79,0x99,0x20,0x67,0xb9,0xd3,0x8a, - 0xa5,0xee,0x77,0x1c,0xb0,0x0c,0x05,0x22,0xe3,0x4a,0x1f,0x7e,0x4f,0xbd,0xfd,0xce,0xcf,0xad,0xed,0xca, - 0x77,0x61,0x57,0x44,0x37,0xbb,0x5a,0x0d,0xc5,0xaf,0x46,0x2c,0x77,0x42,0x6c,0xc6,0x04,0x5d,0x8f,0xcd, - 0xbb,0x34,0x11,0x9b,0x78,0xf7,0xbf,0x68,0xf5,0x33,0x2b,0x1f,0xfe,0x60,0x51,0xea,0xef,0x78,0xf6,0x27, - 0xc4,0x0f,0xd0,0x1b,0x99,0x34,0x77,0x48,0xfd,0xe1,0x42,0x3d,0x82,0x68,0xfd,0xc3,0x89,0x0c,0x06,0xe3, - 0x0e,0xc7,0x12,0xd2,0x62,0x40,0x11,0x6a,0x56,0x86,0x95,0xa1,0xe6,0xd9,0xe0,0xb7,0xef,0xf5,0x46,0xcc, - 0xdb,0x64,0xfc,0x4b,0x47,0x79,0xf8,0xbd,0x09,0x87,0xf0,0x03,0xa1,0xf2,0x5f,0x77,0x76,0x1a,0x31,0xcc, - 0xaa,0x96,0x6d,0x7c,0x41,0x04,0x3c,0x46,0xb4,0xbf,0xb6,0x38,0xfa,0x87,0xe1,0xe9,0x79,0xb9,0x6c,0xd9, - 0x2f,0xed,0xb5,0xf0,0xd0,0x35,0xec,0xd7,0x74,0xdc,0x4f,0x4d,0x82,0x08,0x67,0xfd,0xbc,0xc7,0x3e,0x58, - 0x3e,0x5f,0xca,0xd0,0xcf,0x0f,0x35,0xce,0xbf,0x0c,0x6b,0x83,0xa9,0xe3,0xcf,0x2f,0x2f,0xf5,0xac,0x60, - 0x43,0x34,0x6a,0x3f,0x4c,0xe8,0xf8,0x41,0x86,0x19,0x18,0xf6,0x3a,0xed,0x66,0xda,0xf1,0xff,0xa0,0x15, - 0x01,0xb5,0x97,0x68,0x7c,0xab,0xb3,0x03,0xf5,0xab,0xb8,0x4b,0xf4,0x3b,0xc8,0xd3,0xf7,0x6f,0xdd,0x77, - 0xe8,0x43,0x7c,0x99,0x57,0xd5,0xcc,0x1e,0x61,0xf1,0xb7,0xb0,0xe2,0xfe,0xd5,0x49,0x1b,0xe2,0x7f,0x6b, - 0x75,0x0b,0x7b,0xd3,0x7c,0xda,0xea,0x9a,0xaf,0x04,0x80,0x15,0x8b,0xea,0xae,0x10,0xb5,0x4b,0x1f,0xee, - 0x1e,0x24,0xff,0xf5,0x25,0x35,0x21,0xec,0x99,0xaf,0xcf,0xae,0x91,0x83,0xb4,0xdf,0xfa,0xb2,0xdb,0x3f, - 0x8c,0x4a,0xb3,0xeb,0x5a,0x61,0xe2,0x8f,0x59,0x34,0xd1,0xdb,0xbc,0x74,0x54,0x96,0xd4,0xf7,0xf7,0xc5, - 0x14,0x88,0x89,0xd7,0x1f,0x82,0x19,0x14,0x4c,0x08,0xb4,0x57,0xab,0x18,0xb0,0xbc,0x4f,0x3d,0x85,0xef, - 0x3d,0xac,0x14,0x3f,0x03,0x98,0x0e,0x61,0xdf,0xe1,0x67,0x52,0xc2,0x1b,0x83,0xf7,0xd0,0x8f,0x32,0xbb, - 0x85,0xf6,0x1b,0x47,0xb3,0xb9,0xf9,0x76,0x28,0x6f,0x54,0x1d,0x3e,0xa0,0x7f,0xbe,0x30,0x2f,0x17,0x6f, - 0x83,0xde,0x80,0x65,0xe5,0x6a,0xe5,0xa4,0xc8,0xcf,0xea,0xea,0x0f,0x44,0x4e,0xa6,0xb4,0xb6,0x2f,0xc7, - 0xe6,0x63,0xc2,0x08,0xac,0x2c,0x85,0xdc,0x86,0x92,0xc9,0x82,0xcf,0x82,0x12,0xc6,0x01,0x74,0xe2,0x5a, - 0xa7,0xdf,0x12,0x7a,0x6c,0x7a,0xc7,0xd6,0xac,0x0c,0xef,0xd1,0x76,0x78,0x0f,0x1c,0x5b,0x35,0x31,0xf8, - 0xc1,0x4d,0x1b,0x75,0x16,0x17,0x3d,0x03,0xc7,0x64,0xe3,0x9b,0x82,0xbe,0xc2,0x67,0x2c,0xc3,0xff,0x91, - 0xa0,0xeb,0x47,0x63,0x38,0x60,0xc2,0x85,0xb6,0x6d,0xcf,0xe6,0x58,0x4e,0xf9,0x68,0x27,0x72,0xa1,0xd4, - 0xd9,0x8a,0x59,0x95,0x59,0xf4,0xbf,0x91,0x46,0x0c,0x32,0xdc,0xd5,0xad,0x11,0x73,0xaa,0x93,0xa0,0x50, - 0x9d,0x45,0xdb,0xa6,0x50,0x79,0x57,0x21,0xeb,0x54,0xc3,0xfe,0xaf,0x3a,0xab,0x3b,0xe5,0x54,0x05,0xfb, - 0xba,0x52,0x4d,0xe5,0x4c,0x23,0x82,0xde,0x18,0xcc,0xc0,0xbd,0x26,0xa0,0x94,0x11,0xc9,0x18,0x67,0x97, - 0x4b,0xa8,0x9c,0xc8,0xc8,0x09,0xc7,0xd9,0xdf,0xf8,0xb4,0x64,0xbe,0xe2,0x4e,0xf2,0xe1,0x91,0x43,0xf8, - 0xfe,0x3b,0xa2,0x2e,0xaf,0xf6,0x60,0x89,0x6c,0xb1,0x7e,0x40,0x57,0x38,0x1f,0x50,0xc8,0xa6,0xc7,0xb5, - 0x67,0xa1,0x20,0x97,0xa6,0xca,0x4a,0x5e,0x25,0x39,0x61,0x36,0xea,0x71,0xe7,0x18,0xba,0x95,0xd1,0x60, - 0x83,0xdb,0x6a,0xda,0x81,0x80,0x17,0xaa,0x51,0x53,0xb5,0xe4,0xd6,0x73,0xb9,0x52,0x85,0xbe,0x02,0xdb, - 0x38,0x25,0xea,0x99,0x7e,0x96,0x59,0x0b,0xcf,0x39,0xf5,0x22,0xe6,0xf8,0x3f,0x2f,0xe2,0x69,0x32,0xa1, - 0xff,0x50,0xc4,0x73,0x2c,0x47,0x29,0x9d,0xd1,0x64,0x35,0x1c,0x04,0xf8,0x61,0x8c,0x58,0x37,0x53,0x1d, - 0xe4,0x15,0x94,0xc4,0x4e,0xcc,0x0d,0xc7,0xbc,0xe1,0x59,0xa7,0x92,0xe5,0x40,0x32,0x87,0x0f,0xe3,0xc5, - 0x70,0x81,0xc4,0x92,0x24,0x6d,0x08,0xcf,0x22,0x7c,0xd2,0x94,0xc7,0xd4,0x28,0xae,0x75,0x9a,0x24,0xbe, - 0xd7,0x6d,0xf2,0x22,0xd6,0x22,0x40,0xac,0xe3,0xd8,0xf4,0x39,0x91,0xea,0x65,0x18,0xae,0xe1,0xc0,0x89, - 0xa5,0xed,0x84,0xb6,0x19,0xf7,0x34,0x46,0x26,0xc2,0x31,0x90,0xd8,0x08,0x64,0x0f,0x8d,0x3e,0x78,0x23, - 0xe6,0x2b,0x49,0xc6,0x01,0xb7,0xd3,0x01,0x93,0x72,0xd8,0x3c,0x56,0x1d,0xc7,0x35,0xc6,0x40,0x33,0xb5, - 0x7e,0x01,0x76,0xbc,0xc6,0xc4,0x41,0xff,0x95,0xbe,0x21,0xe6,0x51,0xa6,0xf4,0x61,0x6c,0x02,0xda,0xce, - 0x10,0xeb,0x31,0x2b,0x12,0xa4,0x0b,0x5e,0xac,0xa0,0x00,0xc0,0x17,0xb4,0x7e,0x47,0x10,0x8a,0x4b,0x39, - 0x36,0xc8,0xe5,0x2b,0x12,0xfc,0xe0,0xaa,0x36,0xa4,0xbf,0x08,0x3c,0xdf,0x00,0x22,0x2d,0x77,0x51,0x06, - 0x12,0x7a,0x63,0x9f,0x8e,0xe0,0x41,0x36,0x7a,0x2d,0x5e,0xb7,0xf7,0xc7,0xa6,0x70,0xdd,0x2f,0x5c,0x77, - 0x0b,0xd7,0x28,0xbc,0x76,0x76,0xc9,0xde,0xbb,0x25,0x74,0xbf,0x81,0x67,0xd4,0xe4,0x90,0x95,0xf9,0x47, - 0x1b,0x0e,0x38,0x93,0x3b,0x71,0x26,0x2c,0x50,0xd8,0xf6,0x85,0x91,0x11,0x76,0x43,0x1b,0xee,0x06,0x9a, - 0x44,0x51,0xd3,0x0c,0xf9,0x4c,0x21,0x1a,0x12,0x31,0x92,0x87,0x55,0xe6,0xe3,0x38,0x1f,0xf5,0xd4,0x35, - 0xb4,0x06,0xfb,0x8e,0x4c,0x06,0xc8,0xb6,0x31,0x55,0xa9,0x89,0xfb,0x43,0xec,0x74,0x8e,0x90,0x71,0x8c, - 0x98,0x2c,0xc9,0xe1,0x3e,0x80,0xab,0x69,0x45,0x58,0xd6,0x40,0x18,0x41,0x83,0xc9,0xd9,0x40,0x60,0xb7, - 0xa0,0x5c,0x7e,0x02,0x87,0x6f,0x43,0xdc,0x2b,0x59,0x34,0x03,0x09,0x0d,0x24,0xd4,0xe9,0x7b,0x34,0xc8, - 0x95,0x4c,0xfa,0x55,0xc0,0xdd,0x43,0xa4,0xdc,0x66,0xb1,0xaf,0x38,0xa4,0x60,0x4a,0xa5,0x0b,0xdb,0xf2, - 0xc6,0x47,0xd2,0x68,0x1a,0x3f,0xc4,0x89,0x40,0x84,0x33,0x2c,0x01,0xa9,0x30,0x80,0xa9,0xcd,0xcf,0xe8, - 0x89,0x26,0x08,0x88,0x9b,0xd3,0x4a,0x8e,0xbd,0xca,0x16,0x07,0xd1,0xf1,0xf1,0xd5,0x9c,0xca,0x46,0xbb, - 0xa5,0x0c,0x90,0xfe,0x1f,0x47,0xb6,0xcb,0x68,0xd7,0x71,0x56,0x0d,0x34,0x59,0x26,0x88,0x59,0x70,0x55, - 0x54,0xb8,0xb6,0xe2,0xab,0xf5,0x26,0x16,0x73,0x09,0x50,0xed,0x26,0x0a,0xb8,0xb5,0x61,0x08,0xae,0x8b, - 0x6a,0xbd,0x3f,0xd0,0x9f,0x3b,0x3e,0x0d,0x68,0x16,0x74,0x57,0xb3,0xa0,0x07,0x1d,0xa2,0x8c,0xca,0x14, - 0x5e,0x51,0x00,0xe2,0x40,0xd1,0x50,0xf9,0x46,0xf3,0x0c,0x76,0x06,0x23,0x88,0x8f,0x20,0x1a,0x1d,0x37, - 0x63,0xee,0x56,0xc3,0x5c,0x30,0x84,0x89,0xc4,0x71,0x74,0x5e,0x11,0x3a,0xee,0x16,0xb2,0xa8,0x2c,0x48, - 0x24,0xe4,0x22,0x46,0x01,0x6b,0xc4,0x1d,0x32,0xcc,0x1a,0xce,0xd8,0x6d,0x58,0x44,0x5a,0x26,0x1e,0x88, - 0x15,0xdb,0xdc,0x48,0x0a,0xb8,0x61,0xcb,0xcd,0x73,0x8d,0x03,0xfc,0xb6,0x53,0xfc,0xd1,0x02,0x4f,0xd7, - 0x6b,0x67,0x5a,0x10,0x30,0x59,0x4b,0x3f,0x9b,0x26,0x7e,0xb1,0x71,0xb1,0x32,0xe7,0xdf,0x3a,0x38,0x55, - 0x10,0x35,0x87,0x55,0x9d,0xfa,0x0e,0x95,0x3c,0xae,0x15,0x50,0x39,0x9d,0x67,0xc0,0x71,0x63,0x89,0xbd, - 0x98,0x8f,0xf2,0xb6,0xad,0x1b,0xf7,0x30,0x82,0x9f,0x97,0x8b,0x6e,0x19,0x26,0xaa,0xca,0x9a,0xc7,0x6c, - 0xb3,0x83,0x5f,0xe5,0x2d,0x55,0xb6,0x59,0xb7,0x09,0x75,0xb4,0xf8,0xe0,0xe5,0xfc,0x41,0x12,0x97,0x76, - 0x0a,0xd8,0x2d,0xd7,0xde,0xd6,0x76,0x78,0x44,0x88,0xdb,0x60,0x3b,0x4f,0xd1,0x36,0xe6,0x2b,0x5c,0x11, - 0x72,0xd8,0x88,0x07,0x56,0x73,0x84,0xc2,0xe3,0xa8,0xd5,0x97,0x30,0x50,0xd6,0x12,0x0c,0x83,0xe0,0x9e, - 0x26,0x2e,0xd8,0x79,0x53,0x74,0xcd,0x58,0xf6,0xac,0x56,0xf4,0x45,0x3a,0xb5,0xf5,0xaf,0xdd,0x8d,0x36, - 0x4b,0x91,0xa1,0x95,0x87,0xcb,0x23,0xe3,0x92,0x31,0x6f,0x7d,0x0c,0x50,0x24,0xfb,0x1b,0x2b,0xbc,0x1d, - 0x5e,0xb8,0x09,0x02,0x70,0x67,0xb5,0x7f,0x68,0x0f,0x44,0x98,0x64,0x4b,0x88,0x1d,0xcc,0x47,0x60,0xa2, - 0xd7,0x3d,0x81,0x00,0xca,0x0f,0x7a,0xce,0xe8,0x46,0x11,0x4b,0xcb,0x33,0xd9,0xa6,0x5a,0xef,0x35,0xc6, - 0xa4,0xbc,0xa0,0xa5,0x12,0x01,0x10,0x95,0x1c,0xcb,0x76,0x62,0x27,0xbb,0xe3,0x12,0x2e,0x04,0x88,0xa5, - 0x30,0xf3,0x0a,0xde,0x20,0x71,0x2c,0x12,0x2e,0xd0,0xc8,0xb4,0x30,0x67,0xb4,0xb4,0xec,0xe6,0x82,0x6a, - 0xa8,0xdf,0x84,0x7e,0xb6,0xe9,0x85,0x48,0xc7,0x57,0xfc,0x85,0x97,0x60,0xd8,0x99,0x6a,0x30,0x53,0x7c, - 0x01,0x90,0x26,0x66,0xaf,0x39,0x22,0x28,0xbf,0x87,0x9d,0x85,0xfb,0x55,0xa0,0xbe,0xc3,0xb2,0xcc,0x5a, - 0x42,0xe3,0x38,0xa7,0x1b,0x38,0xe2,0x33,0x35,0x59,0x87,0x3a,0x8a,0xa9,0x9c,0xd9,0xfc,0x53,0x43,0xe1, - 0x7b,0x38,0x3d,0xca,0x16,0xf8,0x68,0x1a,0xa8,0xf1,0xee,0xb6,0xaa,0xe8,0x0e,0x33,0xab,0x13,0xf5,0x2a, - 0xae,0x55,0x64,0x26,0x27,0xa2,0xe3,0xd5,0x24,0xd0,0xa0,0x10,0xf1,0xd1,0xbc,0xb9,0x51,0x45,0x88,0x3c, - 0x1d,0x1c,0x96,0xb3,0xee,0x3a,0x6c,0x86,0xa8,0xec,0x5b,0x43,0x38,0x97,0xb4,0x2e,0x59,0x97,0xa4,0x25, - 0x3b,0x19,0xcb,0x08,0x40,0x3e,0x0c,0x39,0xe6,0x6e,0xe8,0x5f,0x70,0x32,0xea,0xa3,0x94,0xcf,0x4b,0x8c, - 0x4e,0x44,0x77,0xd6,0xee,0xe2,0x20,0x78,0xa3,0x05,0xc7,0x51,0xe3,0x20,0x2d,0x99,0x08,0x62,0x4e,0xb5, - 0xbf,0xe5,0x72,0xc4,0x81,0x39,0xdc,0xe4,0x0d,0x39,0x2c,0xc0,0xf0,0xa2,0x56,0x9f,0x35,0xce,0x58,0x77, - 0x26,0x68,0xd1,0x76,0xe3,0xa0,0x6c,0xa8,0x34,0x41,0x7e,0x04,0x88,0xe9,0xbc,0x0d,0x38,0x3b,0x6b,0x4b, - 0xba,0xa9,0x2d,0x80,0x01,0xcd,0x40,0xb8,0x69,0x80,0x49,0x19,0xf8,0xdf,0x39,0xb4,0x76,0x17,0x06,0xe3, - 0x10,0xc4,0xd4,0x24,0x30,0x58,0xed,0x95,0x22,0x9b,0xee,0xd6,0x9b,0x55,0x5b,0x22,0x5b,0x87,0x15,0xd5, - 0xbb,0x07,0x61,0x3d,0x30,0x29,0x62,0xc1,0x30,0x36,0xdc,0xa1,0x58,0x87,0x8f,0x0a,0xe2,0x83,0xe1,0xef, - 0x70,0x04,0xae,0xd0,0x50,0x28,0x82,0xa9,0x36,0x8b,0xc0,0xfe,0x96,0x4e,0x07,0xf0,0xa9,0x71,0x32,0xde, - 0x9e,0x8e,0x66,0x55,0xa9,0xc7,0x49,0x29,0x78,0xa8,0x25,0xc2,0x56,0x4c,0x1d,0x2c,0xa5,0x9f,0x84,0xe5, - 0xd7,0x8e,0x1b,0xab,0x36,0xcd,0x06,0xfc,0x48,0xaa,0xde,0x24,0x55,0xfd,0x49,0x22,0xd4,0xce,0x8c,0x83, - 0x9d,0x2b,0xa2,0x8a,0x73,0x8c,0xd2,0x1d,0xe2,0x25,0x08,0x7c,0x8c,0x85,0x2a,0x76,0xd4,0x04,0x68,0xcb, - 0x00,0xe5,0x5d,0xb5,0x3d,0x19,0x3b,0x61,0x26,0xb6,0xcc,0xba,0xc7,0xce,0xbf,0xb3,0x77,0x84,0xa3,0xa1, - 0xa6,0x18,0x53,0x07,0x26,0xb1,0x09,0x31,0xa3,0x6a,0xd6,0x87,0x5c,0xc5,0x57,0x08,0x79,0x43,0xbb,0x95, - 0xc8,0x4f,0x55,0x71,0x7b,0xad,0x31,0xec,0xba,0xd7,0x98,0x0f,0x29,0xc9,0xc6,0x8d,0x82,0x79,0x05,0x92, - 0x9d,0x07,0xdd,0x44,0x8a,0xf6,0x22,0x10,0x39,0xf4,0xaf,0x6e,0x51,0x3a,0xc5,0x35,0x83,0xd0,0x0f,0x7b, - 0x23,0xd0,0x10,0x4d,0xbf,0xd2,0x62,0x11,0x6e,0x85,0xa8,0xd6,0xef,0xac,0x89,0x14,0xa0,0xf1,0x9e,0xff, - 0xec,0xac,0x0b,0xf3,0x1b,0x5b,0xb6,0x77,0xd5,0x09,0x8d,0x44,0xe3,0xa4,0x0b,0xdc,0xd9,0xdb,0x0d,0x11, - 0x68,0xf6,0x71,0x64,0xfd,0xb3,0x68,0xc3,0xd0,0x81,0x18,0x04,0xb5,0x42,0xdc,0xcc,0x4e,0xf6,0x84,0x7a, - 0x00,0x95,0x64,0x5a,0xe1,0xa9,0x62,0xf3,0x9f,0xc9,0x75,0x5c,0x27,0x68,0x66,0x83,0x22,0x3b,0x46,0x61, - 0xa6,0x97,0x09,0x89,0x9a,0xd0,0xc9,0xcf,0xc1,0x05,0x71,0xcb,0xcb,0xf1,0xa0,0xca,0xf7,0x12,0x05,0x8c, - 0x73,0xa7,0xdb,0xd4,0x42,0x50,0x44,0xd3,0x39,0x71,0x62,0x91,0x18,0x26,0xd1,0x26,0xbd,0x99,0x6b,0xf3, - 0xc2,0xb2,0xda,0x65,0x56,0xf8,0xd3,0x59,0x67,0x85,0x25,0x14,0xcc,0x03,0x2b,0x06,0xc6,0xcb,0xac,0x59, - 0xad,0x3e,0x8e,0x02,0xc7,0x30,0x0c,0x43,0x21,0x68,0x1e,0x6d,0x81,0x4b,0x24,0x34,0x88,0x11,0xe3,0x5e, - 0xc0,0x55,0xa5,0xa6,0x0a,0xce,0xe0,0x27,0xa4,0x1a,0x1f,0xf0,0x13,0xf1,0x40,0xbd,0x86,0xf4,0x84,0xd5, - 0x77,0xcb,0xd5,0xaa,0x36,0xbf,0xf1,0x92,0x6d,0x3f,0x61,0x9a,0x03,0x6e,0x91,0xbe,0xe6,0x88,0x1f,0xf8, - 0x61,0x6e,0xed,0xd0,0x78,0x05,0x22,0xde,0xf5,0x51,0xc7,0x72,0x26,0x97,0xeb,0xed,0x92,0xc4,0x1f,0x51, - 0x6c,0xd7,0x94,0x27,0xac,0x2c,0x70,0x9a,0x6e,0x37,0xd9,0x27,0x21,0x7e,0x33,0x76,0xa4,0x0d,0x9b,0xf4, - 0xbe,0xaf,0xb5,0x46,0xd7,0x37,0xd2,0x78,0x5f,0x89,0x09,0x9d,0x73,0x1e,0x86,0x61,0xe1,0x6a,0x75,0xd1, - 0x1a,0xd3,0xba,0xac,0x03,0x99,0x23,0xf9,0xf8,0x2d,0x3b,0x4f,0x3e,0x63,0xe5,0x9f,0x37,0xfb,0x18,0x1d, - 0x8b,0x53,0xe5,0x1b,0xe0,0x7a,0x11,0x06,0x88,0xdd,0x26,0xd1,0xba,0xf2,0x1d,0xd1,0xbb,0xbb,0x5a,0x6d, - 0x1f,0x74,0xf0,0xf8,0xb5,0x3b,0xe8,0x4c,0x17,0x2e,0x5a,0x63,0x0e,0x49,0x5c,0x2f,0xbe,0x68,0x77,0xe3, - 0x72,0x02,0x8e,0xa0,0x44,0x84,0x18,0x76,0xf6,0x0f,0xcc,0x69,0x2e,0xda,0x40,0x0c,0xdd,0xdf,0x10,0x81, - 0xe6,0x82,0x11,0x6a,0xc8,0xa7,0x01,0x33,0xc3,0x41,0x48,0x50,0xbd,0x8f,0x0b,0xc3,0xc9,0xf7,0x0c,0xe6, - 0x6e,0x85,0x15,0x71,0x02,0xa8,0x7b,0xed,0x86,0x1c,0xdc,0x25,0xdd,0x7a,0x23,0x6a,0x71,0x47,0x65,0x0f, - 0x00,0x0e,0x9b,0xca,0x96,0xf5,0xa1,0x31,0xa5,0x27,0x92,0xe1,0xd6,0xc1,0x6c,0xb0,0x55,0x6f,0x57,0xf2, - 0x6f,0xc2,0x88,0x09,0x4f,0x49,0x1a,0x90,0x29,0x75,0xa0,0x1f,0x16,0x3d,0x3c,0xb0,0x1d,0x2c,0x57,0x19, - 0x89,0x16,0x93,0xc3,0x23,0x6b,0x26,0x01,0x81,0x4a,0x5a,0xad,0xfd,0x5d,0x08,0xde,0x10,0x2f,0xc0,0x98, - 0xec,0x70,0x7e,0xeb,0x68,0xb8,0xd2,0x37,0x25,0x4c,0x8c,0x1e,0x60,0x62,0x70,0x55,0x6d,0x6f,0xf3,0x56, - 0xc9,0xe4,0x5d,0x2b,0x11,0x6a,0xa9,0x51,0xd6,0x8b,0x98,0x33,0x3f,0x06,0xd9,0x2d,0x2f,0xd0,0x73,0xc0, - 0xb6,0x16,0x33,0x73,0xc4,0x52,0x2a,0x07,0xc8,0xac,0xd1,0x66,0x8a,0x0f,0xa4,0x53,0x80,0xb1,0x1e,0xb7, - 0x43,0x9e,0xc4,0x81,0x59,0x5a,0xf6,0x65,0x57,0x5b,0xde,0x3f,0xbb,0x6b,0x46,0x63,0xb0,0x33,0xa3,0x6c, - 0x96,0x2b,0xec,0x1e,0x1c,0x25,0x03,0xb3,0xf2,0xb0,0x83,0x5c,0x07,0xee,0xf3,0x6b,0x77,0x75,0x1a,0x06, - 0x56,0x61,0x1c,0x4e,0x64,0x5f,0x95,0x5d,0x63,0x99,0x8f,0xcb,0xec,0x2d,0x7e,0x1a,0x5e,0xf4,0xe3,0x79, - 0x76,0xce,0xbf,0x6d,0x76,0xc5,0xbf,0xbf,0x67,0x9f,0xf0,0x53,0x64,0xef,0xf0,0x73,0x99,0x9d,0x70,0xea, - 0x69,0x76,0xc9,0xbf,0x17,0xd9,0x0d,0xff,0x9e,0x64,0xc7,0xfc,0x7b,0x45,0x2c,0x35,0x7e,0x75,0x76,0xce, - 0xbf,0xcb,0xec,0x1d,0xa7,0x9f,0x65,0x6c,0xec,0x7f,0x3c,0xcb,0x1e,0xf3,0xef,0x22,0x7b,0x18,0x4c,0xd6, - 0x6b,0xbb,0xb0,0x95,0x3d,0x0c,0x73,0x63,0x53,0x4e,0xec,0x64,0x6d,0x2d,0x45,0xc6,0x44,0x36,0xd0,0x06, - 0x5b,0xc2,0x29,0x71,0x12,0xe7,0x3d,0x46,0xb7,0x22,0x5e,0xe7,0xb8,0xaa,0x8b,0x33,0x28,0xd1,0xb2,0x2a, - 0xad,0x32,0x2a,0x52,0x05,0x69,0x63,0x61,0x18,0x1f,0x82,0x0f,0x85,0x15,0x0d,0xa2,0x27,0x27,0xb0,0x00, - 0x9d,0x8e,0xbd,0x2f,0x8e,0xb1,0xe7,0x16,0x73,0x8e,0x3b,0x1c,0x73,0x8c,0x67,0x8b,0xf1,0xb8,0x99,0x1b, - 0x8f,0xc1,0x86,0xc1,0x7f,0xb5,0x3a,0xb3,0xf7,0x00,0xa2,0x73,0xec,0x51,0x40,0x8c,0xba,0x7d,0x07,0x39, - 0x2d,0xce,0x4c,0x38,0xa3,0x07,0x3c,0x48,0x0a,0x73,0x7c,0xaf,0x56,0x7c,0xd5,0x60,0x40,0x09,0x28,0x9b, - 0x95,0x11,0xab,0x5a,0xb2,0x80,0xd0,0xa6,0x0c,0x3b,0x98,0x18,0x91,0x59,0x14,0xd4,0x11,0xf5,0xcd,0x88, - 0x7b,0x66,0xc3,0x96,0x26,0xed,0x37,0xed,0xbb,0x2c,0xc6,0xb1,0x7c,0x28,0x74,0x30,0xac,0x75,0xb5,0x31, - 0x5d,0x0c,0x3f,0x50,0x1b,0x44,0x4d,0x36,0xdc,0x80,0x7c,0xcb,0xd2,0x9e,0xe3,0x46,0x3c,0x2d,0x84,0x4c, - 0x39,0x9e,0x0e,0x58,0x3b,0xc9,0x56,0x7f,0xdb,0x22,0xba,0x9a,0x21,0x0d,0x96,0x49,0x40,0x03,0x6c,0xf7, - 0xa5,0x53,0x2c,0xb1,0xf1,0xfe,0x1c,0xbe,0x11,0xdc,0x5a,0xe5,0xdc,0x42,0x2a,0x98,0x41,0xa5,0x77,0x37, - 0x6b,0x1a,0xe8,0xb5,0x1b,0xd0,0xeb,0x4f,0x06,0x48,0x15,0xf6,0x9d,0xb1,0x7d,0x0b,0xd8,0x79,0x82,0xa8, - 0x2a,0x70,0x3d,0xa9,0x71,0xab,0x23,0x4b,0x05,0xe2,0x58,0x64,0x07,0x74,0xfa,0xc9,0x03,0x9f,0xba,0x9c, - 0x99,0x49,0x99,0x24,0x14,0x47,0x3f,0xed,0x23,0x1b,0x1b,0x30,0x03,0xb6,0x21,0x22,0x93,0x5c,0xd3,0xb6, - 0x7f,0x1d,0xda,0x15,0x8b,0x71,0x57,0x9b,0xdd,0x22,0x78,0x50,0xc7,0xf5,0xc0,0x70,0xbf,0x1b,0x7e,0x4c, - 0xcc,0x8b,0x6f,0xa4,0x82,0xbc,0x7d,0x62,0x03,0x01,0x80,0x8b,0x66,0xb9,0xee,0x85,0xd6,0x8b,0x87,0xf3, - 0xe2,0x4a,0xbb,0x03,0x62,0xfc,0x11,0xad,0xeb,0x85,0xc4,0x43,0xc6,0x51,0x84,0x93,0x69,0xa8,0x9d,0x0c, - 0x86,0xab,0x88,0x00,0x7b,0xcc,0xcc,0x99,0x64,0xb2,0xfb,0xbb,0xec,0xbc,0x9f,0x4b,0xc4,0xb6,0x86,0xae, - 0x01,0x6f,0xe9,0xf7,0x2d,0xe2,0x2d,0xd6,0xd2,0x6e,0x51,0x22,0x8c,0xf6,0x7b,0x43,0xc7,0xaa,0x37,0xac, - 0xf9,0xa6,0x75,0x97,0x23,0x9e,0x70,0xb7,0x3c,0x40,0xb6,0xd8,0x25,0x09,0x28,0xab,0x97,0x42,0xb4,0x35, - 0x42,0x88,0x6d,0x38,0x28,0x8d,0x1e,0xc3,0x35,0x00,0x72,0xbd,0xd1,0x3d,0x0e,0x9a,0x10,0x43,0xc3,0xa2, - 0xe7,0x97,0xa9,0xf5,0x2e,0x93,0xb9,0x65,0x56,0x6d,0xad,0xec,0x98,0x7b,0x53,0x6c,0xf5,0x13,0xfd,0xda, - 0xc7,0xdb,0x7d,0x98,0xf3,0x60,0x64,0xc6,0x18,0x6e,0x1c,0xf8,0x1f,0x85,0x5b,0x4b,0xe1,0x16,0x01,0x36, - 0xbb,0xa9,0xac,0x80,0x63,0xb5,0xca,0x45,0x3a,0xb1,0x9d,0xfb,0xa4,0x8a,0xe5,0x1d,0xc1,0x87,0x7c,0x86, - 0x41,0xaa,0xc7,0x0f,0x60,0x9a,0xa8,0x9e,0x62,0xb5,0x0a,0xec,0x5e,0x0c,0x9d,0xf4,0xd8,0x09,0x80,0x1a, - 0x56,0xbb,0x85,0x25,0x82,0x05,0xe2,0x30,0xec,0xf7,0xae,0xdc,0xe3,0x31,0x3f,0x8a,0xc0,0x81,0x1f,0x2d, - 0x1e,0xad,0x61,0x18,0x7f,0x57,0x23,0x1c,0xbf,0xfd,0x9e,0x90,0xae,0x66,0xf8,0x86,0xa2,0x85,0xe3,0xd9, - 0x3d,0x8f,0x7c,0x05,0xf3,0x6e,0x9a,0xf1,0x24,0xb7,0xb0,0x99,0x39,0xf0,0x4a,0xa1,0xa5,0x33,0xd4,0x51, - 0xf3,0xac,0xd3,0x77,0x4a,0x83,0x5c,0x14,0x82,0x2d,0x75,0x4a,0xc7,0xf5,0xe9,0x83,0xb9,0x3d,0xae,0x4f, - 0x2d,0x11,0x31,0xcb,0xe6,0x87,0xa7,0x47,0x6a,0xb1,0x61,0x0f,0x34,0x5e,0x1e,0xce,0x8e,0xb2,0x17,0x08, - 0xfa,0xb3,0x50,0x7c,0x09,0x84,0xb1,0xd5,0x19,0x32,0x1c,0x22,0xd6,0x86,0xf9,0xb9,0x33,0x71,0xf8,0xcb, - 0x36,0xa7,0xd0,0xfa,0xa1,0x37,0xe3,0xcf,0xe4,0x11,0xfa,0xf8,0xa1,0x65,0x93,0xed,0x73,0x41,0xc9,0x3a, - 0x38,0x22,0x88,0xdd,0xb1,0x62,0x44,0xee,0x04,0x8d,0x7f,0x6a,0x82,0x7a,0x00,0x89,0xc7,0xed,0xc0,0xc6, - 0x1b,0xd8,0x8c,0x12,0xd8,0x50,0xba,0x0d,0xa6,0xda,0xb6,0x0d,0xd8,0x74,0x27,0x23,0xee,0x23,0x67,0xc7, - 0xcd,0x4d,0xef,0x0c,0x36,0x9f,0xb7,0xde,0x7e,0xf5,0x50,0x0b,0xe3,0x1a,0x28,0xe4,0xa5,0x84,0x1f,0x81, - 0x04,0x2b,0x78,0x05,0x41,0xfa,0x5b,0x0b,0x89,0x93,0x0d,0x4f,0x92,0xd8,0xbb,0xfc,0x3c,0x8a,0x01,0x47, - 0x1c,0x7c,0x33,0x89,0x63,0x00,0x15,0xa5,0x94,0x1c,0x86,0x84,0xcd,0x33,0xb4,0x15,0x10,0x24,0x49,0xfa, - 0x6f,0x54,0x48,0x4b,0x43,0xbd,0x36,0x11,0x4c,0x06,0x9c,0x4a,0x86,0x3a,0xda,0x76,0x70,0x9d,0x57,0x62, - 0xb9,0x9e,0x6c,0x28,0x5f,0x58,0x2b,0x5d,0x32,0x8d,0x78,0x2c,0xa6,0x93,0xcf,0x5d,0xa7,0xf6,0xd5,0xaf, - 0x1c,0x00,0x9f,0xd8,0x74,0xdf,0xd7,0x04,0xf7,0x02,0x07,0x3d,0xf7,0x21,0x95,0xac,0xca,0xe6,0x9e,0x73, - 0xad,0x0c,0x99,0x82,0x38,0xc8,0x80,0x12,0x67,0xfc,0x5b,0x2b,0x96,0x6f,0x3e,0x12,0x0b,0x94,0xca,0x2d, - 0xc6,0x9d,0x52,0x59,0x33,0x70,0x3e,0xce,0xd5,0xb3,0xae,0x13,0xc5,0xc7,0x36,0x50,0xdd,0xbe,0x6a,0xe3, - 0xa5,0x72,0xa7,0x1f,0xc6,0xf3,0x22,0x5e,0x26,0xce,0x2a,0x30,0x00,0x4e,0x18,0x6e,0x8a,0xd7,0xd8,0x12, - 0x38,0x97,0xb8,0x5a,0x63,0xaf,0x89,0xf2,0x83,0x97,0x81,0x58,0x63,0x26,0xfa,0x88,0x2a,0x1d,0x4d,0x8b, - 0x59,0x12,0x58,0xdc,0x51,0x0d,0x9e,0x8f,0xb6,0x8c,0x12,0x8d,0x93,0xed,0x6f,0x58,0x49,0x62,0x9e,0x71, - 0x46,0x24,0x3e,0xe6,0x90,0x4b,0x1b,0x8b,0xaa,0xce,0x1a,0xc1,0xcc,0x82,0x32,0x36,0xc9,0xf0,0xeb,0x8f, - 0xd8,0x2c,0x57,0x4b,0x9d,0xd5,0x35,0xe0,0x9b,0x1a,0x30,0xb6,0xf8,0xf2,0x1e,0xc4,0x24,0x85,0x3d,0xbe, - 0x49,0xb4,0x5e,0xe3,0xe8,0x17,0x42,0xdd,0x12,0xe5,0x6d,0x7a,0x66,0xde,0x7a,0x7d,0x0b,0x52,0x4d,0x8b, - 0xdb,0x41,0x93,0xde,0x3c,0x51,0x12,0xf8,0x0a,0xdb,0x02,0x90,0x52,0x65,0x22,0x1d,0x15,0x3f,0x76,0xa0, - 0x84,0x32,0x8e,0xa0,0x3b,0x4d,0x83,0x18,0x3c,0x9b,0x84,0xdc,0xb1,0x5c,0x4d,0x9e,0x98,0xbb,0x1d,0xee, - 0xf6,0x70,0x71,0x2a,0x1f,0xeb,0xe1,0x82,0x5b,0xea,0x7b,0x38,0x63,0x8c,0x8d,0x56,0x3b,0x6b,0x25,0x65, - 0x02,0x26,0x82,0x69,0x62,0x13,0x05,0x6b,0x41,0x53,0x25,0xa6,0xbb,0x89,0x2d,0x92,0xf7,0x8b,0xe4,0xee, - 0xa6,0x15,0x38,0xe9,0x67,0x2f,0x7b,0xf7,0x62,0xdb,0xd5,0xc9,0x7e,0x62,0xec,0x46,0x14,0xd9,0xc4,0xb7, - 0x9b,0x36,0x40,0xab,0x6b,0x50,0xee,0xdd,0xef,0xba,0xf0,0xc0,0x7b,0x4e,0xdb,0x1b,0x3f,0xf8,0x1b,0xbe, - 0x97,0x27,0x6b,0xe3,0x69,0x40,0x28,0x3e,0x8f,0x11,0x9c,0x22,0xbe,0xa1,0x9f,0xc9,0x8b,0x10,0x56,0x70, - 0x5f,0x10,0x9b,0x48,0xa1,0x74,0x4a,0xf9,0x1e,0x1f,0xe0,0x83,0xe0,0xd5,0x17,0x23,0x72,0x63,0xee,0xc0, - 0x33,0xec,0x0d,0x06,0x62,0x72,0x58,0x60,0x87,0x72,0x1e,0x5c,0xba,0xd0,0x22,0x65,0x4d,0x02,0x06,0x8f, - 0xbd,0x30,0x27,0xd2,0x7e,0x9e,0xdf,0x4c,0x5c,0x49,0x1a,0x14,0x71,0x38,0x81,0xdd,0x52,0xb0,0xf8,0x06, - 0x58,0x7a,0xc3,0x79,0x11,0x6c,0x9d,0x38,0xac,0x07,0x93,0x73,0x80,0x85,0x30,0x8d,0xac,0x56,0x5f,0xee, - 0xef,0x9b,0x4e,0x9a,0xa8,0xd1,0x22,0xe1,0x1a,0x6e,0x2d,0x1f,0x6c,0x6d,0x69,0xe3,0x58,0xf8,0x3a,0xe0, - 0xc3,0x57,0xb0,0x9f,0xbe,0x6d,0x7c,0xd2,0x19,0x78,0xea,0x2b,0x20,0x4c,0x55,0x65,0x4b,0xa8,0x79,0x9d, - 0xab,0x29,0xb1,0x5b,0x33,0xa2,0x0a,0x17,0xc4,0x94,0x9d,0xd3,0xb9,0x77,0x45,0x34,0x45,0x7c,0x49,0x4c, - 0x26,0x61,0xb0,0xae,0xcf,0xff,0xa9,0xba,0x0c,0xbc,0xb3,0xe5,0x5a,0xb1,0x99,0x32,0x27,0x50,0xba,0x50, - 0x16,0x4b,0xa6,0xe7,0xaa,0xcd,0xcf,0xd2,0xab,0xb5,0xba,0x1c,0xdb,0xbb,0xec,0xdf,0xe1,0xe2,0x3b,0x05, - 0xed,0xeb,0x25,0x11,0x28,0xf3,0xc0,0xe3,0xb1,0x6b,0xca,0xcf,0xb9,0xa0,0x35,0xf8,0x81,0x0f,0xc8,0xd5, - 0x2a,0x62,0xc1,0x73,0xc4,0x87,0x5c,0xaf,0x80,0x46,0x68,0x19,0x44,0xc9,0x29,0x71,0x4f,0xe1,0x18,0x77, - 0xd8,0x1a,0xb1,0x5c,0xeb,0xc5,0x72,0x09,0x5b,0x04,0x98,0x2f,0xb8,0xae,0xb1,0x45,0xb2,0x2c,0x7c,0x6b, - 0x8d,0xf0,0x8d,0x76,0x57,0x21,0xfa,0x45,0x5b,0x18,0xa2,0xac,0x93,0x7c,0x7a,0x31,0x06,0xb9,0x3b,0x89, - 0x37,0x24,0x1c,0x8c,0xc8,0x2a,0x87,0xc1,0xf2,0x24,0xad,0xb0,0x2b,0x99,0x32,0x86,0xf4,0xe5,0x30,0x77, - 0xc2,0x97,0x8a,0x43,0x4a,0x53,0x5a,0xbe,0x86,0xf5,0x89,0x75,0xc9,0x37,0xa1,0x48,0xee,0xb8,0xc8,0xc8, - 0x15,0xf4,0x4e,0x1b,0x74,0x4a,0xd4,0xee,0x94,0xe0,0x80,0xe8,0x5a,0x46,0xca,0x14,0xab,0x2b,0x86,0x0e, - 0xaf,0x56,0x6f,0x20,0x3a,0xed,0x2a,0xc5,0xac,0x7a,0xf7,0x3a,0x26,0x22,0xb3,0x02,0x35,0x23,0xe6,0x35, - 0xb4,0x8d,0x89,0x78,0x15,0xf9,0x2c,0xbf,0x1f,0x04,0x32,0x45,0xa8,0xd7,0x59,0x33,0xe2,0xbb,0x3e,0xb2, - 0x3d,0xce,0xe7,0x1e,0x96,0xee,0x24,0xb0,0xb5,0x1b,0x31,0x18,0x2e,0x05,0xa6,0x20,0xe8,0x6a,0xe0,0x6a, - 0xc0,0xea,0xb6,0x26,0xc9,0xa1,0x6c,0x23,0x9a,0x6f,0x4a,0x7d,0xa1,0xf5,0x3d,0x33,0xd2,0xb6,0x37,0x44, - 0x8f,0xf0,0x60,0x69,0x86,0x9f,0x82,0x51,0xb4,0xaf,0x0a,0x39,0x42,0x96,0xba,0x1c,0x79,0x35,0x26,0xde, - 0xe0,0x38,0x5e,0x83,0xbd,0xcf,0xe1,0x41,0x03,0x43,0xfb,0xb9,0xe3,0x59,0x02,0x73,0xd8,0x25,0xf1,0xa6, - 0x40,0x62,0xd4,0xad,0x79,0xcf,0xa6,0xcd,0x8c,0x91,0xb8,0xd0,0x39,0x8d,0x6d,0x69,0x88,0x6c,0x55,0x25, - 0x9b,0x2a,0x23,0x9a,0x11,0x77,0x0c,0x9c,0x66,0xb4,0xf8,0xf3,0x84,0x69,0xdf,0x59,0xa0,0x0a,0x39,0x75, - 0xaa,0x90,0x05,0xd1,0x1f,0x8b,0x07,0xf6,0x7d,0xbc,0xa0,0x43,0x62,0x76,0xb8,0x38,0xca,0xa8,0xa5,0x53, - 0xfa,0xed,0x35,0x66,0xba,0x81,0x9d,0xbc,0x54,0x86,0x53,0xb6,0xc7,0x10,0xe4,0x24,0xc2,0x38,0xb0,0xcc, - 0x50,0x62,0x0d,0xbd,0x2e,0x55,0xb8,0x6c,0x39,0xae,0xe1,0xa0,0x1d,0xed,0x3c,0x02,0xb4,0xe8,0x2f,0x10, - 0xee,0xc9,0x90,0xba,0xcc,0x0c,0x4f,0x93,0xf5,0xf6,0xf0,0xb1,0xa6,0xbd,0xa5,0x91,0x35,0x32,0x32,0x0e, - 0x77,0xcf,0x3a,0xce,0xa1,0x06,0x86,0x9f,0xb5,0xd6,0x55,0x92,0x45,0x93,0x1f,0x59,0x36,0x59,0x60,0xdf, - 0xac,0x56,0x05,0x64,0xf1,0xc7,0x62,0x20,0x84,0x8d,0x28,0x12,0xcb,0x17,0x90,0x1b,0x16,0xb4,0x97,0x12, - 0x01,0x3c,0xd4,0x33,0x0f,0xf6,0x82,0xdc,0x34,0xe9,0xfc,0xae,0x4d,0xcc,0x8c,0xe8,0x6a,0xa9,0xf7,0xdc, - 0xd9,0xb1,0x87,0x4b,0xfa,0x88,0xee,0xd9,0x8d,0xe7,0x93,0x88,0x5e,0xe6,0x2c,0x2a,0xd6,0x6a,0x30,0x2a, - 0x47,0xab,0x6e,0xc1,0x7a,0xa6,0x4b,0xe5,0x28,0xf2,0x34,0x57,0x8e,0x22,0x4f,0x1b,0x46,0x68,0xb5,0xc7, - 0x70,0xe5,0x1a,0xd6,0x51,0x2c,0xee,0x3f,0x55,0xe0,0x4b,0xce,0xd5,0x95,0xba,0x0c,0xbc,0x3c,0x5a,0x7f, - 0x91,0x67,0xdf,0xcb,0x4b,0x7e,0x94,0x5c,0xda,0xb0,0x0e,0xfc,0x8c,0x03,0x3b,0x29,0xae,0xf9,0x4d,0x9b, - 0x1d,0xa8,0xe7,0x6d,0xf6,0xa5,0xa7,0x19,0xdf,0xf6,0xac,0xe3,0x8c,0x0e,0xb7,0xef,0xde,0xb4,0x5a,0xbd, - 0x87,0xa3,0x12,0xbb,0x83,0xd5,0x90,0xe7,0xab,0xd2,0xf9,0xee,0x3d,0x34,0x8c,0x7b,0xf6,0xbc,0x4d,0xd4, - 0xd0,0x86,0xe5,0x1d,0x59,0x8a,0x31,0x8e,0xb5,0xe0,0xb4,0xc0,0x7f,0x6e,0x42,0x4c,0xfa,0x02,0x05,0x1b, - 0xd8,0xb5,0x19,0x3f,0x05,0x8e,0x81,0x5c,0xd2,0xf8,0x00,0x01,0x9f,0x8c,0x7b,0x9d,0xac,0x87,0x03,0x27, - 0xd7,0xa2,0xa0,0xb7,0x4a,0xb9,0x24,0x64,0xc9,0xe9,0xc8,0x11,0xf3,0x8b,0x14,0xa5,0x10,0xae,0xdc,0x52, - 0x2e,0x38,0xfe,0x32,0x1a,0xd0,0xa4,0xc6,0x66,0xab,0x09,0xd1,0xc2,0x87,0xa2,0x65,0x47,0xdd,0x3b,0x48, - 0xb3,0xbe,0x49,0xf8,0xa6,0xae,0x00,0x6e,0xc8,0x49,0x47,0xaf,0x16,0x84,0x9c,0x62,0x9c,0x6e,0xd4,0xeb, - 0x87,0xf0,0xa2,0xf0,0x7e,0xbd,0x40,0xcf,0x6a,0x43,0x58,0xdc,0xb2,0x60,0xd5,0xf2,0xed,0xcc,0x4d,0x0b, - 0xaf,0x5e,0xb2,0xf6,0xa9,0x17,0xbf,0x50,0x42,0x8e,0x7e,0x1c,0x75,0x42,0x21,0xc2,0x05,0xd6,0xc0,0xfa, - 0xc7,0xd1,0x50,0x78,0x43,0x7c,0x85,0x45,0xec,0x02,0x37,0x42,0xcf,0x42,0x4b,0xb9,0xa8,0x61,0x7d,0x43, - 0xc8,0x36,0x83,0x87,0x54,0xa0,0x5b,0x74,0x7b,0xa6,0xc1,0xd5,0x33,0xae,0x8d,0x76,0xb8,0xae,0x57,0x30, - 0xa2,0x34,0x81,0x1f,0x70,0xed,0x73,0xf6,0xaa,0x95,0x5b,0xd0,0x03,0x35,0xed,0xc6,0x39,0x59,0xa5,0x72, - 0x80,0xbe,0x61,0x9d,0x5e,0x97,0x97,0x33,0xdc,0x0f,0x47,0xa1,0x29,0x89,0x9b,0xa9,0x6a,0x5d,0x9c,0x99, - 0x8b,0x48,0xcc,0x35,0x91,0xf9,0x19,0x2f,0xe5,0x76,0xec,0xc0,0x18,0x08,0xbf,0xf5,0x5c,0x72,0xe8,0xcf, - 0x07,0xf5,0xc7,0xa8,0xcf,0xca,0x15,0x0f,0x2a,0xaf,0xaf,0xc8,0x83,0x02,0x50,0x5c,0xbc,0x81,0xa9,0x1a, - 0x5b,0xa2,0x11,0xb7,0x94,0x53,0x3f,0x68,0x03,0x3d,0x14,0x08,0x6d,0xae,0xa0,0x09,0xca,0x6c,0xbe,0xc6, - 0xc1,0x42,0x1d,0x06,0x19,0x05,0x93,0x0d,0x63,0xaf,0xf6,0x3c,0x8e,0xa7,0x59,0x49,0xc0,0x0a,0x05,0x24, - 0x8a,0x41,0x5b,0x2e,0x2f,0xea,0x39,0x3d,0xb2,0x96,0xd2,0xa6,0xcb,0x4b,0x02,0x5d,0x0c,0x36,0xc9,0x3a, - 0xd8,0x7b,0xbc,0xed,0x5f,0xb6,0xea,0x91,0x09,0xab,0xe5,0xbd,0x3c,0x3a,0x9a,0x08,0x08,0x7a,0x8e,0x35, - 0x71,0xe5,0x08,0x59,0x4f,0x87,0x36,0x0c,0x38,0xe4,0x85,0xed,0x77,0xac,0x66,0xdf,0x1a,0xf9,0x13,0x74, - 0xc8,0x2d,0xee,0x30,0x14,0x95,0x1d,0x84,0x6e,0x69,0x5c,0xe4,0x62,0xf8,0x48,0xdc,0x6c,0x13,0x38,0x72, - 0xdc,0x69,0x32,0xd4,0xb5,0x18,0xf2,0x5f,0xfc,0xd2,0x1a,0xd3,0x9e,0x3b,0xf5,0x6d,0x03,0x5b,0xce,0x12, - 0x7d,0xc6,0x0d,0xcf,0xcc,0x25,0x90,0x4a,0x5f,0x74,0x47,0xeb,0x41,0x7d,0x2a,0x3d,0xd1,0x1a,0xda,0x97, - 0xfd,0x6c,0xe6,0xe6,0x65,0xcb,0xcc,0x5b,0x37,0x84,0xf6,0x1f,0x61,0xe6,0xe9,0x69,0x2f,0xf7,0xf7,0x36, - 0xb0,0xe4,0xcc,0x5e,0x3a,0x25,0x7e,0x00,0xa0,0x84,0xaf,0x85,0xd5,0xba,0xc3,0x98,0x06,0x41,0x21,0xb8, - 0x66,0x96,0x4c,0xf9,0xaa,0x7f,0xf0,0x4a,0x4c,0x6e,0x84,0xa9,0xe0,0x9f,0x5b,0xf5,0x47,0xab,0x7e,0x6f, - 0xd5,0x4b,0x3a,0x45,0x13,0xfc,0x37,0x0a,0x72,0x76,0x2e,0xe9,0x2f,0xfa,0xb7,0xad,0x17,0x9a,0x7c,0xef, - 0xfa,0xf6,0x3d,0x42,0x51,0x85,0x0e,0x27,0x6d,0xd6,0x06,0xed,0xfe,0xda,0x5a,0x44,0x37,0xb6,0xc6,0xc1, - 0xc6,0xde,0x2f,0x19,0x27,0x62,0x7b,0xe5,0x24,0x22,0x2e,0x70,0xf2,0xa6,0x59,0xec,0xbf,0x03,0x7d,0xa4, - 0xb5,0xd9,0xea,0x8b,0x59,0x0e,0x14,0x37,0x66,0x9d,0xb2,0xac,0x21,0xca,0x46,0x49,0x77,0xa3,0x57,0xa7, - 0x75,0x6b,0x68,0x97,0x85,0x3d,0xba,0xd5,0x1d,0xe1,0xd2,0xb8,0xab,0xe3,0xd3,0x9b,0x22,0x1a,0xd0,0x19, - 0xe8,0x6b,0x20,0xa3,0x29,0x45,0x46,0xa3,0xc3,0xc8,0xb9,0xe1,0xca,0xfc,0x66,0x86,0x36,0xb7,0x27,0x54, - 0x19,0x48,0x09,0xa1,0x97,0xaf,0xb3,0x76,0x37,0x12,0x27,0x32,0xf1,0x29,0xee,0x22,0x97,0x0d,0x9c,0xc2, - 0xd6,0xee,0x05,0x1d,0x02,0xd6,0xde,0x1d,0x56,0x39,0x70,0xe5,0x6a,0x10,0x4b,0x96,0x83,0x5f,0x32,0xbe, - 0xd7,0x97,0x08,0x8f,0xcf,0xb2,0x05,0x5c,0x66,0xad,0xd8,0x19,0x8d,0xdd,0x34,0x38,0x66,0x81,0x2e,0x39, - 0x64,0x14,0x1b,0x41,0x96,0x25,0xa6,0xb7,0xe6,0xff,0x15,0x9c,0xf8,0x72,0xfc,0x6b,0xca,0xcc,0xde,0x3d, - 0xc8,0xb1,0x3a,0x77,0x76,0xb6,0x7f,0x30,0x54,0x5c,0x99,0x99,0x40,0x95,0x41,0x78,0xde,0xf1,0x74,0xf8, - 0x06,0x82,0x69,0x89,0x1a,0x76,0x76,0x1a,0x02,0x9f,0xff,0xee,0x5f,0x99,0x75,0xc5,0xe6,0x2a,0xfc,0x83, - 0xf0,0xea,0xc4,0x61,0xbe,0x6b,0xf3,0xcb,0x05,0xcc,0x89,0xcb,0x01,0xad,0x9a,0xd4,0x85,0xd0,0xeb,0x81, - 0xc1,0xa7,0x33,0x49,0x53,0xad,0x58,0xbf,0x97,0x19,0xda,0xe2,0xf1,0xec,0xab,0x1f,0xdb,0x11,0xe2,0x6c, - 0x0d,0xc7,0xc4,0x26,0x6c,0x33,0xdb,0x6b,0xe9,0x1f,0xb8,0x31,0xac,0x7a,0x55,0x3e,0xf8,0xd1,0x51,0x95, - 0x15,0x96,0x9b,0x60,0xfa,0xc7,0xf6,0xb0,0xa2,0x65,0x1e,0x49,0xd8,0x64,0x4c,0xae,0x3c,0x71,0xf8,0x42, - 0x54,0x41,0xd3,0xc8,0xb1,0x57,0x78,0x3d,0x46,0x35,0x7a,0x64,0x97,0xba,0x0c,0x1c,0x17,0x7e,0x74,0x5e, - 0x0c,0x54,0x75,0xe6,0xda,0xc9,0x1c,0x7c,0x41,0x18,0x53,0x66,0xe8,0x77,0xdc,0x0a,0x8b,0xf8,0x17,0xc9, - 0x09,0x0e,0x97,0x18,0x4a,0x1b,0x15,0xa0,0x14,0xd0,0x05,0x11,0x0b,0x02,0x6d,0xdd,0x45,0x5b,0x87,0x71, - 0xc2,0x02,0x0c,0x09,0x2a,0x6e,0x74,0x75,0x09,0x91,0x2e,0x07,0x6f,0xd0,0x35,0x2c,0x22,0x81,0x7d,0xbc, - 0x7c,0x16,0xb1,0xcd,0x7b,0x4a,0x23,0x11,0xf1,0xda,0x40,0xd3,0x38,0xb7,0x60,0xd9,0x44,0x53,0xf6,0x71, - 0x64,0x83,0x3a,0x13,0x6d,0xa0,0x47,0x02,0x9b,0xa7,0x73,0x44,0x14,0x13,0xa0,0x9c,0x03,0xe2,0x4e,0xcb, - 0x81,0x90,0x8b,0x26,0xd8,0xe2,0xd5,0x25,0x74,0x49,0xa2,0x76,0xb0,0x5d,0x12,0xf3,0x0e,0x9f,0x60,0xe4, - 0x78,0x92,0x5c,0x4f,0x62,0x13,0xe2,0x4b,0x2f,0xb2,0xed,0xed,0x9a,0x1f,0x44,0x41,0x89,0x70,0xbc,0x9c, - 0x84,0x07,0xa3,0xfd,0xcd,0xff,0xb8,0xe1,0x24,0x3c,0x18,0x3d,0x29,0x1d,0x3d,0x9c,0x84,0x07,0x49,0x92, - 0x75,0xcf,0x6a,0xf3,0x90,0xa4,0xbe,0x05,0x5f,0xb1,0xaf,0x2f,0xa8,0xc6,0x44,0x35,0x9c,0x9e,0x58,0xe5, - 0x73,0x31,0xcb,0x76,0x77,0xe7,0xe6,0xc5,0xaf,0x9b,0x54,0x58,0xd4,0xed,0x8d,0xaf,0xc7,0x85,0x2a,0x6b, - 0x78,0xcb,0x72,0xf0,0x48,0x7d,0xfd,0x24,0x7c,0xa7,0xcc,0xe7,0xb3,0xc6,0xb8,0x5f,0x85,0x45,0xfa,0xa9, - 0xfa,0x13,0xdf,0xda,0x55,0xe0,0xd2,0xfb,0x68,0x48,0x98,0xdb,0x8a,0xaa,0x96,0x28,0xc4,0x16,0x63,0x49, - 0xe3,0xf0,0x35,0x84,0x22,0x08,0x07,0x7e,0xb2,0xf7,0x70,0x7a,0x91,0x8a,0xb9,0x96,0x63,0x14,0x0d,0xde, - 0x18,0xd1,0x85,0xe1,0xb2,0x73,0x3e,0x87,0x61,0x2f,0x20,0xc9,0x39,0xc4,0xa6,0x3a,0xf2,0x86,0x12,0x10, - 0x7b,0x1b,0x25,0xb4,0x74,0xc7,0x9a,0x14,0x99,0xce,0x5d,0x24,0x26,0x57,0x22,0xbc,0xb9,0xe9,0xb3,0xf6, - 0xa0,0xb6,0x6c,0x0c,0x93,0xa6,0xf0,0xc2,0x86,0x5e,0x0c,0x48,0xc6,0x25,0xe3,0xb9,0x18,0xc5,0xd9,0x20, - 0x8d,0x06,0x06,0xd9,0x5f,0xd7,0xd4,0x2d,0xcd,0x1a,0xfb,0x23,0x15,0x3a,0xe1,0x71,0x70,0x20,0x0b,0x0f, - 0xce,0xef,0xd4,0xb8,0xe6,0x7d,0x21,0xdf,0xc1,0x7a,0x71,0xcb,0xc0,0xed,0x56,0xf4,0xc5,0x6e,0x6f,0x75, - 0x76,0xbf,0x88,0xbe,0xf0,0x8e,0xc4,0x0e,0xcc,0x98,0xa8,0xd3,0x82,0xcc,0x0d,0x44,0xc1,0xc1,0x63,0xb9, - 0x00,0x34,0xc4,0x81,0x55,0x89,0xea,0x8c,0x50,0xc2,0xb5,0x6e,0x46,0xc4,0x63,0xec,0x35,0xee,0x82,0x0b, - 0xfb,0xc8,0xc1,0xcb,0x2e,0xee,0xa5,0xc3,0x57,0xce,0x2e,0x80,0x81,0x3f,0x27,0x37,0x0f,0x80,0xd0,0x7d, - 0x6f,0x43,0xd6,0xca,0x3c,0x26,0xbd,0x2e,0x05,0xfd,0xfe,0x4c,0xac,0x58,0x00,0xbd,0x0b,0x00,0xe1,0x70, - 0x54,0xeb,0x33,0x61,0x3a,0x36,0xd4,0x7f,0x1a,0x17,0x2b,0x64,0x5c,0x08,0x5c,0x13,0xab,0x36,0xb0,0x4e, - 0x93,0xee,0x8e,0xc3,0xfd,0xd3,0xad,0x69,0x63,0x1f,0xf5,0x12,0xac,0x47,0x9f,0xf2,0x15,0x36,0xc1,0x5e, - 0x0d,0x27,0xaa,0xbb,0x6b,0xcb,0xee,0x24,0x5a,0xe4,0xdf,0x9b,0x21,0x41,0xa3,0x1b,0xa1,0x82,0x19,0xa4, - 0x03,0x34,0xb1,0x6d,0x20,0x1b,0x78,0x46,0xd2,0xf9,0x00,0x1a,0x54,0x85,0x19,0x37,0x48,0xa6,0x84,0xf8, - 0xcc,0x12,0x92,0x8b,0x4f,0x2f,0x42,0x3e,0x75,0x19,0xda,0x39,0xb9,0x03,0x6a,0xef,0x00,0xe7,0x22,0x61, - 0xff,0x1f,0x21,0x5b,0xa1,0x4a,0xfe,0x9b,0x6b,0x4a,0x70,0x01,0x08,0xce,0x34,0x73,0x2d,0xcd,0xee,0x81, - 0x02,0xcb,0x26,0x94,0xd9,0x8f,0x36,0xd4,0x51,0x32,0x2e,0xf9,0x8e,0x31,0x3e,0x8c,0x7f,0xd3,0xf1,0x12, - 0x57,0x8a,0xad,0x6d,0xe4,0xe0,0xce,0x80,0xa9,0xdf,0x43,0x37,0x88,0x59,0x62,0x2d,0x00,0x0b,0xde,0xc5, - 0x4c,0xe1,0x6d,0x9b,0xa8,0xce,0xbc,0xe7,0x57,0xab,0xe7,0x6c,0x3f,0xed,0xb6,0x4b,0x07,0x5c,0x44,0x14, - 0x6b,0x6b,0xed,0x84,0x81,0x94,0x7d,0x5a,0x9b,0x8d,0x36,0x3d,0x09,0x8c,0x0a,0xaf,0x2e,0xd9,0x3a,0xb3, - 0xef,0x61,0x6b,0xb2,0xbe,0xb0,0x22,0xdb,0xbf,0xb4,0x9d,0x79,0x66,0xee,0x6e,0x62,0xdd,0x9b,0x0f,0x8d, - 0x3e,0x0e,0x81,0x40,0x80,0xe0,0x78,0x26,0xc2,0x53,0x03,0xa1,0x6f,0x3b,0xb5,0x6c,0x46,0x74,0xfe,0xb3, - 0x3d,0x16,0x6e,0x2e,0x17,0xd3,0xaf,0x57,0x6b,0x4b,0x90,0x4f,0x04,0xe0,0x67,0x17,0xcc,0x0c,0x0e,0x34, - 0xc2,0x23,0x4d,0x9c,0x61,0xa0,0x71,0x3d,0x8e,0x5d,0xa6,0x3d,0xbb,0xc5,0x58,0x73,0xfc,0x3f,0xea,0x5c, - 0x6f,0x77,0x8f,0x3b,0x87,0xe9,0xc1,0x5a,0xc2,0xba,0xcd,0x88,0x94,0xfa,0xf3,0xa0,0x8b,0x17,0x1c,0x94, - 0xf0,0x22,0x88,0x7f,0xb4,0x70,0xd2,0xf1,0x59,0xf9,0x99,0x38,0xc1,0xb4,0x77,0x60,0x96,0xa3,0xa8,0x50, - 0x13,0x16,0x32,0x13,0x20,0xd9,0xd9,0x1d,0xc1,0x83,0xf9,0x0a,0x2d,0xfa,0x54,0x10,0xd3,0x39,0xf5,0x14, - 0xdb,0x1b,0xbe,0x06,0x41,0xb4,0xdf,0x9e,0x94,0x9e,0x03,0x6f,0x0e,0x45,0xe5,0x29,0x27,0xb1,0xe9,0x69, - 0x3d,0xb9,0x84,0xcd,0x72,0x7a,0x56,0x82,0xf6,0x33,0x3d,0xbb,0x48,0x52,0x9b,0xcf,0xff,0x27,0xb0,0xb5, - 0x3d,0x60,0x5e,0x73,0x9a,0xd3,0x12,0x04,0xdf,0x20,0x3b,0xa1,0x29,0x31,0x5f,0xf2,0xff,0xd5,0xea,0x22, - 0xb9,0x73,0x0c,0x2d,0x8f,0xc1,0x9b,0x97,0x0f,0x5e,0xac,0xd7,0xd9,0xc2,0xc7,0x36,0x00,0xd6,0x2f,0x66, - 0xfd,0x77,0x76,0x86,0xd3,0x0d,0xbf,0xae,0xbd,0xe7,0x0e,0x03,0x3a,0xc8,0x70,0xbb,0x41,0xc2,0x58,0xde, - 0x6c,0xb9,0x64,0xe3,0x50,0x6a,0xd9,0x2a,0x01,0x3b,0x76,0x16,0x06,0xc8,0x18,0xf0,0xd9,0xe8,0x47,0x91, - 0x0b,0x3e,0xbd,0xd9,0xb4,0x1e,0x9b,0x8a,0x10,0xa1,0x84,0xa5,0x53,0x99,0x8c,0x8c,0xc7,0xf1,0x80,0x3c, - 0xae,0xe4,0x52,0x1c,0xf7,0x0d,0x36,0x1c,0xd7,0x12,0xff,0x42,0x84,0x3b,0x98,0x94,0xe3,0x52,0x9d,0x94, - 0xea,0xba,0x54,0x17,0xa5,0xba,0x57,0xaa,0x4f,0xe0,0x45,0xbc,0xb9,0x6c,0x07,0x87,0x5b,0x23,0x4a,0xe6, - 0x6f,0x9b,0x25,0xad,0x80,0x25,0xbe,0x50,0xce,0xa4,0x30,0x9a,0xe7,0x58,0x36,0xfc,0x6e,0x05,0x1b,0xb7, - 0xdd,0x77,0x17,0x86,0x72,0xd8,0xda,0xc3,0x8a,0xec,0xf8,0xb6,0x35,0x9d,0xcf,0xf5,0xcc,0xda,0x36,0x39, - 0x16,0xd5,0xba,0x88,0x15,0x47,0xd4,0x18,0x7c,0x0b,0x21,0x9d,0xe5,0x0b,0x71,0xc0,0xbd,0xb4,0x94,0x90, - 0x21,0x33,0x0c,0x76,0x07,0xe1,0x25,0x22,0x95,0x69,0x23,0x0d,0xb2,0x31,0x9a,0x69,0xda,0xe2,0x60,0x7c, - 0x12,0xe5,0xa9,0x57,0xc8,0xf8,0x2f,0xb3,0xe2,0xd3,0xcb,0x11,0x0f,0x5b,0x4e,0xa5,0x4d,0x96,0x38,0x6b, - 0xe3,0xd0,0x82,0xd7,0xc7,0xca,0x3f,0x86,0x8d,0x5c,0xe7,0x92,0xba,0x87,0x9d,0x6b,0x9f,0x98,0xbd,0x80, - 0x6c,0xbe,0x27,0xfc,0xe7,0x00,0xd9,0xc1,0x57,0xef,0xbb,0x6c,0xe4,0x80,0x1f,0xc4,0x83,0x8e,0x17,0xc4, - 0x80,0x31,0x2f,0x17,0xf1,0x77,0xd8,0x85,0xa5,0x01,0x29,0xca,0x45,0xdb,0x90,0x8b,0x50,0xc2,0x5b,0x07, - 0x4b,0xb9,0x97,0x0f,0x94,0x77,0x6b,0x5c,0x15,0x02,0xdb,0xee,0xd7,0x3d,0x1d,0x27,0xef,0x6d,0x5e,0x43, - 0x18,0x85,0xb0,0xab,0x90,0xd8,0x6d,0x75,0xc3,0xe3,0x75,0x23,0x8b,0xc1,0x57,0xc2,0x46,0xc5,0xa5,0x29, - 0xca,0x37,0x65,0x64,0x1c,0x18,0x17,0xb1,0xf0,0x76,0x76,0x9e,0xe0,0x16,0xb3,0x4a,0x44,0x8a,0xa1,0x01, - 0xe5,0x86,0x91,0x27,0xcb,0xde,0xb6,0x0b,0x0e,0x6e,0xca,0xde,0xb8,0x3c,0x26,0xfa,0x5d,0xad,0x8a,0x01, - 0x83,0x44,0x6f,0xdc,0x22,0xae,0xdc,0xcc,0x5f,0x1f,0x53,0x5b,0x74,0x56,0x3e,0xee,0xdc,0xd3,0x8a,0x65, - 0xbd,0xeb,0x02,0x7a,0xe3,0x8d,0x33,0xae,0x46,0xb0,0x38,0xce,0x3e,0x11,0x53,0xaf,0x6c,0x48,0x1d,0xd6, - 0x7e,0x70,0xc0,0xe3,0xc0,0x42,0xb1,0x77,0x77,0x5b,0x5f,0x66,0xd3,0x8f,0xc6,0x08,0xe9,0xbc,0x0d,0x7f, - 0xe2,0x63,0xe1,0xc1,0xf8,0x23,0xb4,0xa2,0x1b,0x97,0xd6,0x4c,0xae,0x35,0x0f,0x46,0x29,0x0c,0xad,0x47, - 0xc7,0xda,0x2e,0xd9,0x34,0x25,0x0c,0x4c,0xb7,0xb2,0xa2,0x63,0xc6,0xb5,0x61,0x49,0x56,0x04,0x96,0x5d, - 0xe5,0xa6,0x11,0x9e,0x13,0x44,0x23,0xd3,0xb5,0xf3,0x9e,0x56,0x82,0xd7,0x43,0xb5,0x46,0x47,0xc9,0xa6, - 0x58,0xc6,0xd6,0xd2,0xa6,0xd1,0x27,0x7d,0x5b,0xcb,0x76,0xc3,0xd6,0x72,0x2d,0x4e,0x39,0x95,0x9f,0x2e, - 0xda,0xc7,0x84,0x98,0xaa,0x70,0x9a,0x68,0x3d,0x59,0x40,0x59,0x0d,0xc5,0xa6,0x0b,0x74,0x05,0xa5,0x9f, - 0x2c,0xe0,0x33,0x00,0x9c,0x57,0x28,0x8a,0xd4,0xb1,0xf4,0x86,0x4b,0x36,0x07,0xda,0x07,0x17,0x21,0xaa, - 0xcc,0xfc,0x4b,0x19,0x08,0xf4,0xec,0x85,0x19,0x4e,0x5e,0x99,0x01,0xd9,0xdc,0xab,0xab,0x8a,0x9e,0x26, - 0xa5,0x3c,0xa5,0x30,0x7d,0x77,0xdf,0xb0,0xd4,0x8c,0x32,0xf4,0x69,0xc3,0xae,0x9e,0x5e,0x0e,0x61,0x04, - 0x3f,0x5e,0x00,0x63,0x13,0x36,0x65,0x98,0xba,0x63,0x14,0x67,0xde,0x1d,0x61,0xe4,0x52,0xba,0xf4,0x12, - 0x68,0x19,0x58,0x12,0x87,0x0e,0x2e,0x6c,0x12,0x8f,0xdb,0x5f,0xb3,0xde,0x2c,0xc2,0x68,0x1f,0xf2,0xb4, - 0x3e,0xa0,0x8a,0x25,0x4f,0x4f,0x52,0x98,0x99,0x2b,0xdb,0xc2,0x69,0xdf,0x34,0x5d,0xa4,0x29,0x15,0x01, - 0x33,0x96,0x37,0x68,0x0d,0xea,0x3b,0x83,0x4c,0x64,0xc8,0x45,0xd7,0xbd,0xc7,0x5d,0xd6,0x01,0x67,0x28, - 0xb7,0xaa,0x08,0xed,0x67,0xec,0x49,0x75,0x07,0xf6,0xb1,0xde,0xb0,0xc9,0x32,0x36,0x1e,0xe3,0xd0,0x50, - 0x5e,0xf7,0x61,0x99,0xcd,0x89,0xba,0xd6,0xe8,0x08,0x32,0xf7,0x27,0xb6,0xde,0x85,0xb3,0xf5,0x86,0xc1, - 0x01,0x2a,0xe8,0x78,0xce,0xfd,0xd5,0x6f,0xf7,0x4d,0xc4,0xe0,0x5a,0x3a,0xcc,0xde,0xe1,0x9f,0x10,0x21, - 0x21,0x12,0x13,0xd7,0x48,0x71,0xf8,0x66,0x67,0xe1,0xca,0x93,0x03,0x23,0x52,0x53,0xc8,0xed,0xd1,0x48, - 0xe9,0x8d,0xe9,0x0e,0x3f,0xe0,0xf9,0xfe,0x0d,0x0a,0xea,0xee,0xf5,0x6f,0x74,0x56,0x16,0xf0,0x47,0x20, - 0xba,0x83,0xe0,0xc0,0xad,0x9c,0x71,0x4e,0xa8,0x59,0x19,0x2b,0xf6,0xb2,0x2a,0xb4,0x08,0x44,0xe0,0x8c, - 0x81,0x88,0xad,0x88,0x2c,0x8d,0xc0,0x29,0xe6,0xd2,0x71,0x31,0x78,0xdd,0x80,0x2a,0x4b,0xa8,0xc3,0xb3, - 0xb3,0x0f,0x33,0xe3,0x56,0xd0,0x52,0x60,0x68,0x13,0xe0,0xfd,0x72,0xc0,0x74,0x56,0x10,0x40,0x56,0x1a, - 0x1b,0x5e,0xec,0xa8,0x3c,0x2c,0xe8,0xcc,0x78,0xd1,0x9c,0xdb,0xc3,0x3b,0x3b,0xc6,0x0a,0xb8,0xaf,0xea, - 0x4e,0x6e,0x73,0xc7,0x70,0x4a,0xe7,0x5e,0x98,0x30,0x66,0xb0,0x57,0xf8,0xa4,0x8d,0x93,0x9d,0x92,0x8b, - 0xd3,0x57,0xab,0x05,0x3a,0x18,0x49,0xdb,0x70,0x73,0xec,0x79,0xb9,0xd5,0xec,0xe5,0x66,0xc2,0xf4,0xb1, - 0xce,0xcc,0xd8,0x77,0xd0,0x83,0x09,0xe7,0xda,0xb7,0x29,0xea,0xd8,0xec,0xf7,0x8d,0x85,0x95,0xb9,0xf5, - 0x72,0x28,0xe4,0x2e,0xe2,0x0c,0x5e,0xa4,0x0b,0x1b,0x20,0x4f,0x5a,0x33,0x8d,0xa0,0x3d,0x40,0xd7,0xe4, - 0x73,0x78,0x52,0xe0,0x6f,0xca,0xd4,0xd3,0x31,0x3b,0x19,0x0c,0xca,0xf5,0xba,0xdd,0x75,0x11,0xf6,0x7a, - 0x94,0x6f,0x87,0xd7,0x0d,0x03,0xc9,0xc1,0x0a,0x95,0xea,0x8e,0x13,0x02,0xbe,0xdb,0x75,0x2f,0xc6,0x1d, - 0xeb,0xa3,0xd2,0x96,0x95,0xe8,0x96,0xfc,0x0b,0x83,0x62,0xf7,0x6f,0x84,0x2c,0x36,0xec,0xae,0x09,0x16, - 0x42,0x0b,0x74,0x33,0x7e,0xa7,0x75,0x4f,0xc6,0x95,0x13,0xff,0xe4,0x59,0xcd,0x34,0x0a,0x62,0x51,0x20, - 0x0a,0xe6,0x6a,0xf5,0xd5,0x3f,0x24,0x60,0x76,0x9c,0xef,0x46,0x91,0x04,0x3d,0x82,0xc7,0x28,0x07,0x3e, - 0xa2,0xad,0xf0,0xcd,0xdf,0xb7,0x59,0x7a,0xcd,0x1c,0x5d,0xc4,0x53,0x04,0x17,0xf8,0xf5,0x3d,0x2d,0x86, - 0xb4,0x1c,0xce,0x03,0xb1,0xc0,0xcd,0xf4,0x11,0x2c,0xb2,0xa7,0x98,0x0b,0xd2,0x7b,0x97,0xfd,0xd8,0x06, - 0xb3,0x72,0x47,0xd0,0x0e,0xe6,0xd8,0x3a,0x44,0x73,0x6b,0x4d,0x95,0x40,0x23,0xab,0xc1,0x15,0xab,0x26, - 0x15,0x9d,0xa3,0xc4,0xd2,0x8c,0x6b,0x8e,0xed,0x00,0x5a,0x5a,0x5f,0x6f,0x9d,0xa2,0x0f,0xb4,0x7d,0x2e, - 0xd4,0x85,0x3a,0x87,0x11,0x22,0xd7,0x47,0x07,0x2a,0xf3,0x89,0x85,0x12,0x33,0x96,0xa0,0xf3,0x18,0x08, - 0xef,0x5d,0xa0,0x2a,0x7e,0xd8,0xe6,0x08,0xcb,0x9f,0x01,0xdf,0x6e,0x00,0xd8,0x0d,0x45,0x6b,0xdd,0x8f, - 0x68,0xdb,0x89,0x34,0xc2,0x7c,0x12,0xad,0x39,0xd3,0xfd,0x2c,0xf2,0xb0,0x29,0xb6,0x67,0xdc,0x09,0xc1, - 0x6d,0x58,0xb4,0xb6,0x83,0xc3,0x4c,0x14,0x11,0xb1,0x6e,0x74,0x31,0x45,0x3e,0x1b,0x6d,0xbc,0x45,0xb0, - 0x6f,0x83,0x26,0xed,0xb5,0x98,0x88,0x6f,0xe8,0xa3,0x42,0xce,0x11,0x7d,0xc3,0x78,0x79,0x74,0xd2,0xe9, - 0x10,0xb8,0x57,0x66,0x8f,0xcb,0x3b,0x38,0xdb,0x7b,0x01,0x99,0x49,0x78,0x5b,0x20,0xa7,0x7f,0x05,0x5d, - 0x78,0x69,0x10,0x03,0x10,0x3c,0xab,0xfe,0x52,0x7d,0x06,0xfd,0x7c,0xb6,0x42,0x2e,0x83,0x1a,0xc3,0x6f, - 0xe9,0xe0,0x23,0xbe,0xfc,0x9d,0xee,0x25,0x4a,0x6c,0x8e,0xec,0x71,0x3f,0x7d,0x28,0x00,0x37,0xcb,0x6b, - 0xa6,0x41,0x4c,0x2e,0x5a,0x25,0xe6,0x7b,0x8d,0x8d,0x97,0x37,0x8a,0x11,0x75,0xc9,0xbe,0x39,0xf1,0x0c, - 0x0c,0x86,0x45,0x39,0xb4,0x5a,0xe1,0xc2,0xf5,0xb1,0x20,0x2d,0x60,0xa4,0xcd,0xad,0x05,0x43,0x32,0xb4, - 0x9e,0x00,0xcd,0xd5,0x11,0x8a,0xd2,0xea,0x0d,0x39,0xda,0x00,0xfb,0xee,0x04,0x52,0xc0,0x46,0xc4,0x45, - 0x67,0xf7,0xff,0xc3,0xaa,0xcf,0xfb,0x2a,0xbe,0xc6,0xfa,0x26,0xe1,0x74,0x54,0x65,0x36,0xb4,0x9f,0x99, - 0x4d,0xf8,0x13,0x2f,0xde,0xc1,0x50,0x0b,0x62,0x09,0xc0,0xfe,0xba,0x02,0xf1,0x20,0xea,0x85,0x08,0x33, - 0x57,0x63,0x07,0xaf,0x41,0x34,0x17,0x42,0x84,0x17,0xa5,0x55,0xa1,0x88,0xf7,0x43,0x97,0x38,0x73,0x61, - 0xdb,0x88,0xc1,0x53,0xd7,0x65,0x77,0x0c,0xd3,0xbe,0xa9,0x57,0x30,0x0a,0xc7,0x84,0xd5,0x1c,0x79,0xcb, - 0x18,0x23,0xc0,0xb3,0xd5,0xda,0x15,0x04,0x46,0x05,0xce,0x07,0x76,0x74,0x4a,0x9f,0x2b,0x33,0x1c,0x0e, - 0x4a,0xb0,0xd1,0xea,0xe9,0xe9,0x67,0xa7,0x6e,0xbb,0x1f,0x15,0xc4,0x99,0x50,0x7c,0x96,0x2a,0x2d,0x07, - 0xa7,0xfd,0xf6,0x2f,0xcc,0x3b,0xc6,0x65,0x26,0xde,0xcd,0x94,0xb1,0x03,0xcb,0xc2,0x59,0x97,0xce,0xf9, - 0xd0,0x2d,0x9d,0xfb,0x1b,0x3a,0xcb,0xc3,0xa4,0x57,0x10,0xdb,0x25,0xb3,0xb7,0x14,0x8f,0x1b,0x9c,0x40, - 0xf4,0x61,0x5c,0x65,0x39,0xc2,0xb8,0x88,0xeb,0x3f,0x1c,0xff,0xf0,0x04,0x0a,0xc4,0x88,0xc2,0x1b,0xdc, - 0xa5,0x21,0x11,0x90,0xee,0x5a,0x3e,0x68,0x40,0x07,0xf4,0x31,0xb2,0xe5,0x3b,0xbd,0xe6,0x4b,0xb9,0x0f, - 0x9c,0xc7,0xf1,0x04,0x60,0x93,0xb6,0x81,0xad,0xc2,0x79,0xec,0x63,0xe8,0xc1,0xb5,0x3d,0xfb,0x82,0xbf, - 0xb7,0xf1,0xef,0x78,0x63,0xd1,0x36,0xd2,0xd8,0x3b,0xca,0x5a,0x2c,0x6d,0x1a,0x15,0xf0,0x41,0xc4,0x7b, - 0x52,0xd4,0x13,0xca,0x5f,0x1d,0x8e,0xd7,0xb5,0x8a,0x4f,0xfa,0x1b,0xe9,0xb8,0xaf,0xa2,0xe8,0x41,0x04, - 0x6b,0x91,0xef,0xe9,0x39,0x5f,0x7a,0x24,0x7c,0x02,0x35,0xfe,0x6d,0xcb,0xb7,0x87,0x5b,0xc6,0x01,0x9e, - 0x49,0x54,0x26,0x2b,0x26,0xb0,0xff,0x63,0x17,0xbb,0xe3,0x63,0x8e,0x68,0x9f,0x86,0x09,0x52,0x11,0x10, - 0x0e,0x88,0xda,0x0a,0x0a,0x75,0x76,0x63,0x38,0x3e,0xbe,0x5a,0xea,0xe3,0x63,0xeb,0xa8,0x80,0x52,0xbc, - 0x93,0xe8,0xd7,0xe7,0x71,0x86,0x31,0x85,0x0b,0x68,0x49,0x9b,0x28,0xd1,0x7e,0x24,0xd5,0xfb,0xb7,0xf9, - 0x24,0x74,0x8f,0x6b,0xa4,0xd3,0xe2,0xa4,0xb3,0x8c,0x81,0x63,0xc5,0x86,0x94,0xde,0x12,0xcc,0x56,0xb0, - 0x69,0x5e,0x83,0x6b,0x0d,0x4f,0x7a,0xc8,0x9b,0xd9,0xbd,0xcd,0x48,0x3b,0x6e,0x73,0x0d,0xb0,0x86,0xc9, - 0xad,0x18,0x9f,0x74,0xaf,0x74,0x4e,0x86,0xb9,0xc8,0x7d,0x4f,0xb7,0x1b,0x96,0x18,0xb1,0x16,0xda,0x21, - 0x01,0xbd,0xde,0xe4,0xab,0x59,0x6a,0xef,0xd9,0x61,0x18,0x35,0xeb,0x60,0x90,0xfe,0x39,0xc0,0xc5,0x9d, - 0x8b,0xe4,0xbd,0x9a,0xde,0x9a,0xd3,0x70,0xb8,0x4c,0x9f,0x0e,0xed,0x52,0xf0,0xad,0x21,0xc7,0xdc,0x5d, - 0x43,0xdd,0x77,0x7b,0x13,0xcd,0xde,0xde,0x06,0x13,0xbd,0x2f,0x17,0x72,0x19,0xc8,0xb1,0xf2,0x2e,0x25, - 0x20,0x22,0xf3,0xe5,0xdd,0x6d,0xc4,0xb3,0x8f,0xf0,0x08,0x3f,0x30,0xf4,0xe8,0x2e,0xf4,0x18,0xc6,0xf9, - 0x9e,0x77,0x7c,0xbc,0xd7,0x71,0x7c,0x14,0x0f,0x89,0xb5,0x7a,0x4f,0xfc,0xd8,0x71,0x6f,0x8f,0x24,0xea, - 0xb8,0xb3,0xc8,0x36,0x2e,0xeb,0xd0,0xad,0xf3,0xbf,0xd9,0x53,0x91,0x40,0xa3,0xf3,0x95,0x61,0x7d,0x37, - 0x20,0x43,0x09,0xc2,0x60,0x39,0xc9,0x3d,0x2f,0xad,0x2d,0x9d,0x73,0x6c,0xd6,0x15,0x2e,0x81,0x64,0xc6, - 0x12,0xf6,0x5c,0xb8,0x8b,0x4d,0x77,0xd4,0xd6,0xb0,0xde,0xaa,0x5b,0x1a,0x1a,0x76,0xbb,0x67,0x0a,0xe6, - 0x1e,0x1e,0xb5,0x88,0x36,0x60,0x25,0x93,0x6d,0x37,0x06,0x47,0xdb,0x63,0xaf,0x2d,0x05,0x50,0x32,0x05, - 0x50,0x82,0xa5,0x90,0xe2,0x58,0x84,0xcc,0x6e,0x3d,0xc7,0x5a,0x18,0xbb,0xc4,0xf5,0x1d,0x52,0xd6,0x9d, - 0x9d,0x6e,0x18,0x28,0x58,0x9f,0x21,0x24,0xa1,0xea,0x05,0xad,0x84,0xe9,0xb8,0x38,0x98,0x28,0xb7,0x64, - 0x84,0x5e,0x84,0x83,0x7f,0x5a,0xaa,0x8f,0xa5,0x7a,0x56,0xaa,0x57,0x65,0x76,0x68,0x42,0xd5,0x8b,0xc4, - 0x55,0xa2,0x22,0x1e,0xa9,0x17,0x65,0x76,0xfb,0x83,0x75,0x0c,0x4c,0x25,0x7e,0x6a,0x04,0x4f,0xc1,0xbd, - 0x7c,0xce,0x57,0x0a,0xdb,0xfd,0x01,0x4d,0x12,0x13,0x6b,0xe9,0x6d,0x51,0x4e,0xe7,0xcb,0x99,0x4e,0x5f, - 0xd1,0x2e,0xf9,0xe4,0x1e,0x2f,0xf3,0x4f,0xa9,0x6d,0xe3,0x15,0x87,0x61,0x3a,0x5a,0x2b,0x43,0xaf,0xa6, - 0x7d,0xec,0xc1,0x62,0xdb,0xc1,0xc3,0x92,0xb3,0x2f,0x84,0x33,0x76,0x9e,0x8f,0xdd,0x1a,0x9c,0x12,0x8d, - 0x89,0x79,0x57,0x5d,0xf2,0x44,0xe8,0x36,0x23,0x13,0xd6,0xbe,0x2a,0x82,0x38,0xe3,0x98,0xb9,0x79,0xfb, - 0x18,0xa3,0x1f,0x71,0xec,0x17,0xbd,0x45,0x64,0x86,0x17,0x78,0xaa,0x11,0xda,0x67,0xb9,0xf3,0x00,0x54, - 0xbf,0x2f,0xc5,0x58,0x11,0x92,0x85,0x4e,0x2d,0x66,0x66,0xfe,0x52,0x2d,0xdb,0x41,0x2d,0x6b,0x25,0x40, - 0x33,0xdc,0x53,0x03,0xb8,0xd6,0xf4,0x94,0xb6,0x08,0x5b,0x8b,0x7a,0xd9,0x52,0x4f,0xb6,0x1a,0x5e,0xe3, - 0xf1,0x90,0xd5,0x65,0xe6,0x12,0x44,0x33,0x48,0x1b,0xcc,0xc9,0xf4,0x96,0x43,0xca,0x13,0xac,0x6d,0x23, - 0x4e,0x36,0x75,0x0a,0xc1,0x88,0x12,0x76,0xc3,0x26,0x14,0x48,0xef,0x55,0x10,0x1a,0xd4,0x46,0x6d,0x0a, - 0xa6,0xdc,0x58,0x05,0xb0,0x24,0x7e,0x9a,0x19,0x45,0x3c,0x5e,0xe9,0xf0,0x63,0xbd,0x03,0xfb,0x10,0x94, - 0x1c,0xb1,0x2f,0x4a,0xd3,0x68,0x97,0x1f,0xe1,0x4c,0x90,0x72,0xb1,0x31,0x3c,0x55,0x26,0x83,0x3e,0xbf, - 0xc8,0x19,0x70,0xfb,0x3d,0x8e,0x11,0xfc,0xc8,0x46,0xb1,0x9c,0x26,0x49,0x1a,0xb3,0xb7,0x4b,0xeb,0x93, - 0x64,0x59,0x08,0x3a,0x11,0x67,0x53,0x76,0xd3,0x7f,0xb3,0xc1,0xf7,0x73,0xf8,0xc4,0x9b,0x3c,0x91,0xf3, - 0xe7,0x0a,0x31,0xed,0x94,0xb1,0x67,0x90,0xfd,0x9a,0x58,0x21,0x85,0xf7,0x9f,0xcd,0x5c,0xf0,0xd3,0x2d, - 0x5c,0xe1,0x26,0x21,0xda,0xd6,0xeb,0xf5,0xf8,0x29,0xf3,0x5a,0xcf,0x68,0x4b,0x0d,0xb3,0x3c,0x1f,0xd7, - 0x77,0xe9,0x49,0x69,0xa3,0x9a,0xd8,0xf0,0x11,0x7d,0x9f,0xa8,0xa7,0xe5,0x68,0xd9,0x16,0xf3,0xec,0xf6, - 0x3a,0xaf,0xcb,0x34,0x27,0x68,0x66,0x45,0x51,0x7a,0xa5,0xd8,0xb1,0xc1,0x2c,0x6f,0xfa,0x4c,0x2b,0xa9, - 0xe8,0xad,0x78,0xd0,0xea,0xf4,0x93,0x5e,0xe3,0x63,0xc3,0x3f,0x3d,0x45,0x94,0x45,0xcb,0x34,0xd1,0x8b, - 0xc3,0xcf,0xbf,0xf1,0xab,0x84,0xfa,0x86,0x9e,0x78,0x08,0x61,0xcb,0x7d,0x73,0x52,0xdf,0xb0,0x76,0x40, - 0x76,0xec,0xf0,0x3d,0x49,0xfe,0x23,0x7b,0x5f,0xd2,0xd0,0x05,0xd2,0x89,0xba,0x8a,0x63,0x5f,0x54,0xdc, - 0x73,0xb3,0xa7,0x74,0xc6,0xd8,0x14,0xaf,0x08,0x23,0x5c,0x25,0x13,0xd3,0x0c,0xdc,0x7e,0x99,0x59,0x0d, - 0x18,0x01,0xc6,0x7c,0xae,0x67,0x6f,0xe6,0xcb,0xb3,0xa2,0xf4,0x71,0x99,0xfa,0x19,0x1c,0x48,0x52,0xae, - 0x00,0x09,0xee,0xb1,0xf2,0xc0,0x0d,0xac,0x30,0x44,0x80,0xfa,0xa0,0x7b,0xe6,0x96,0x50,0x63,0x8f,0x37, - 0x74,0x43,0xf9,0xc8,0x34,0x3a,0x71,0x4f,0x86,0x3d,0x81,0xb7,0xe8,0xd0,0x85,0x1b,0xac,0xac,0x09,0x2c, - 0xa3,0x4b,0xc0,0x5e,0x68,0x84,0xc4,0x6b,0xc1,0x37,0xc3,0x0c,0x2d,0x18,0x8f,0x34,0x50,0x4c,0x84,0xef, - 0xca,0xd5,0xd0,0x95,0x7b,0xd2,0x8e,0xcc,0xf6,0xcd,0x4e,0x3e,0x18,0x5b,0x85,0x64,0xa7,0x76,0xe3,0x76, - 0x18,0x98,0x8a,0xf1,0x91,0x4c,0x5f,0xb2,0xde,0xed,0x18,0x3b,0x9b,0x1d,0x98,0xf8,0x89,0x65,0x63,0x34, - 0xb1,0x35,0xb4,0xc1,0x96,0xf5,0xb2,0xd7,0xc0,0x14,0xec,0x48,0x05,0x9d,0x63,0xdb,0xd1,0x41,0x12,0x1a, - 0xea,0x5b,0x16,0x78,0x6d,0xa6,0x0d,0xae,0x28,0x41,0x8f,0x84,0x68,0xe8,0x01,0x53,0xe7,0x26,0xc2,0x50, - 0x17,0x03,0xd9,0x0b,0x86,0x98,0xb3,0x5a,0x2c,0x9c,0x9b,0x70,0x62,0x2a,0xd1,0x1b,0x67,0xad,0x2f,0xb3, - 0x21,0xf0,0xdd,0xd4,0x51,0x1b,0xa7,0xbb,0x9e,0x68,0x09,0x52,0xb8,0x50,0x0a,0x62,0x85,0xb0,0xa5,0x48, - 0x84,0xaa,0x0e,0x60,0xf7,0xa5,0x6f,0x9b,0x6d,0xd8,0x52,0xfd,0x66,0xae,0xba,0xcd,0x94,0xe6,0xe2,0x40, - 0x69,0xc2,0x2c,0xa2,0xf5,0x48,0xa0,0x14,0x81,0x99,0x56,0x7e,0xe9,0x1d,0x7b,0xa8,0xc5,0xff,0x3b,0x76, - 0x6f,0xc5,0xc1,0xc9,0x70,0x93,0x7c,0xc2,0x66,0xa9,0xd5,0xc0,0x7e,0x84,0xc8,0xae,0x72,0x93,0x67,0x95, - 0xee,0x7e,0x62,0xab,0xae,0x76,0x1b,0xa1,0xc9,0xbb,0x8a,0xf6,0x8c,0x83,0x70,0x55,0x81,0x5a,0x11,0x42, - 0x64,0xdc,0x4e,0x45,0x08,0x80,0x08,0x17,0xc2,0x03,0x43,0xdd,0xa3,0x03,0xed,0x23,0x2c,0xd3,0x87,0x2f, - 0xfc,0x6a,0x27,0xb1,0x77,0xc2,0x89,0xc4,0xae,0x17,0x72,0x20,0xa6,0x0d,0x01,0x6b,0x59,0x6b,0xd5,0xde, - 0x86,0xc0,0xec,0x22,0x1f,0xeb,0xc5,0xd1,0xc2,0xf1,0xc8,0xdd,0x23,0x65,0x2a,0x1a,0x92,0x3c,0xb3,0xc7, - 0x96,0xdc,0x14,0xd5,0xda,0x9b,0xa2,0x5a,0x4b,0x0d,0x58,0x14,0x58,0x32,0x0a,0xe4,0x49,0x35,0x66,0xb5, - 0x1b,0x39,0x77,0x8b,0xd5,0x1e,0x77,0xc5,0x6a,0x45,0xf3,0x8e,0xef,0x75,0x30,0x92,0xb5,0x56,0xff,0xd5, - 0x0f,0x9b,0xa6,0x36,0x11,0x7d,0x3e,0x2f,0x94,0xb3,0xac,0x40,0xf0,0x32,0xf2,0xdf,0x7e,0xae,0x9f,0xca, - 0xdd,0x17,0x94,0xcf,0x45,0x6b,0xea,0x1b,0x64,0x29,0x59,0xfa,0x1a,0x53,0x43,0xfd,0xc2,0xa5,0xd0,0x05, - 0xcc,0x74,0xbf,0x1c,0xfd,0x63,0x74,0xf0,0x65,0xc4,0xe8,0xe1,0x4d,0x99,0xe5,0xb1,0x44,0x1e,0x54,0x12, - 0x8c,0x30,0x51,0xcf,0x39,0x8d,0x5d,0x92,0x15,0x6a,0x22,0x0a,0x37,0x57,0x32,0x79,0xaa,0xd1,0x88,0x14, - 0x0d,0xb2,0xf4,0x0c,0x12,0x34,0x2a,0xfd,0xb6,0x6f,0x63,0xed,0x02,0x8e,0x89,0xdb,0xb3,0x2c,0xe3,0xf3, - 0x92,0x09,0xec,0xe8,0x64,0xd9,0xb6,0x72,0xb5,0x11,0x47,0x3c,0xe4,0xda,0xf8,0xf2,0x10,0x5e,0x6b,0x69, - 0x84,0xbd,0x80,0x28,0x97,0xe8,0x9b,0xe9,0x85,0xcf,0x14,0x1f,0x69,0x93,0x77,0xb9,0x0c,0x3e,0x83,0x40, - 0xb7,0xe2,0x9c,0xb5,0x7a,0xc9,0x9d,0x67,0x8d,0x1f,0xa8,0xcf,0x82,0xc3,0xda,0xa8,0x59,0x9d,0x9f,0x9d, - 0xf1,0x53,0xb3,0xd0,0xf3,0x39,0xd7,0x4c,0x7d,0x7f,0xc4,0x85,0x45,0x3a,0xa2,0xa6,0x34,0x4e,0x1a,0xf0, - 0xcd,0x02,0xe4,0xf4,0x62,0x9e,0x17,0x3c,0x8d,0x7b,0x55,0x39,0x07,0xff,0xfb,0x53,0x5f,0xc4,0x67,0x96, - 0xef,0x77,0xb9,0x41,0x22,0x3a,0xcd,0xe7,0x8d,0x04,0x6f,0x9c,0x98,0xe7,0xb4,0xdf,0x8b,0x48,0xee,0x6a, - 0x7f,0x54,0xca,0x65,0x90,0x11,0x21,0x4c,0x1d,0xad,0xd5,0x77,0xdc,0x09,0x3a,0xaa,0xaa,0xeb,0x53,0x3a, - 0x82,0x1a,0x42,0xb0,0xc4,0x0c,0xb3,0xa3,0x92,0xca,0x97,0x6d,0x75,0x5a,0x4d,0x97,0x0d,0x3f,0x51,0xa7, - 0x6e,0x94,0x99,0x15,0x85,0x1d,0x47,0x14,0x08,0x3b,0xb0,0xd7,0xd5,0xbc,0x21,0xb2,0x84,0x16,0xb0,0x66, - 0xf2,0x84,0x09,0x55,0xf3,0x6b,0xcb,0x9b,0x57,0x9e,0x38,0xfb,0x62,0xe7,0x1f,0xef,0xc4,0xde,0xcd,0x8a, - 0x06,0xfd,0x9c,0x29,0x5d,0xca,0x2f,0x5c,0x31,0xca,0x8a,0xd6,0xb1,0xc0,0x1e,0x53,0xe7,0xc5,0x6c,0x46, - 0x5d,0xc3,0xd9,0xdd,0xea,0xfa,0x92,0xb8,0x2a,0x4a,0x24,0x70,0xac,0x5b,0x55,0x34,0x97,0xf9,0x42,0x15, - 0xad,0xbe,0x64,0xee,0x4e,0xcd,0xab,0x6a,0xa1,0x2e,0xa9,0x89,0x62,0x41,0x93,0x2e,0x8d,0x96,0xd5,0x79, - 0xad,0x4f,0xe9,0x87,0x20,0xa7,0xf8,0x83,0x30,0x68,0xd5,0x9c,0xe7,0x60,0xa3,0x7d,0x0b,0x65,0x75,0x5d, - 0x53,0x3d,0x54,0x43,0xa9,0x16,0x39,0x21,0x4b,0xc2,0x29,0x9f,0x8a,0x96,0x08,0xf4,0x7c,0x86,0x85,0xa0, - 0x87,0xdf,0x97,0x84,0x21,0xe8,0x1c,0x94,0x4b,0xce,0x67,0x4a,0xb8,0x49,0x02,0xcc,0xfc,0x72,0x4e,0x10, - 0xa9,0xdc,0x98,0xe0,0xa5,0xc1,0x4b,0x4e,0xcc,0x54,0xd9,0x70,0xd4,0x27,0xcc,0x38,0x01,0x00,0x65,0x62, - 0x7f,0x22,0x64,0x26,0x5f,0x7b,0xa5,0xae,0x0a,0x8e,0x7b,0x4c,0xcb,0xfc,0x0b,0xed,0x8f,0xf3,0xb6,0x5d, - 0xa4,0xf7,0xef,0x5f,0x5f,0x5f,0x8f,0xae,0xbf,0x1a,0x55,0xf5,0xd9,0xfd,0x83,0x6f,0xbe,0xf9,0xe6,0xfe, - 0xa7,0x79,0x51,0x5e,0x44,0xea,0xe7,0x21,0x42,0x80,0x16,0x3b,0xbc,0x67,0xe3,0xef,0x00,0x75,0x29,0xcf, - 0xc9,0xe6,0x5a,0x1f,0xf5,0x77,0xe2,0x35,0xfe,0x18,0x24,0x24,0x7e,0xc6,0x8b,0xbb,0x42,0xe3,0x1f,0xca, - 0x85,0xe3,0xc5,0x75,0x5b,0xea,0xf7,0xc1,0x6f,0x84,0xda,0x87,0x57,0x24,0xf3,0xad,0x81,0x85,0xdf,0x0f, - 0x1d,0x18,0xbd,0x15,0x15,0xfa,0x63,0x6c,0xef,0xf4,0x7b,0xb6,0xe9,0xf2,0x09,0xaa,0x0d,0xdf,0x12,0x41, - 0x02,0x29,0x22,0x1d,0x88,0xa3,0xdf,0xe4,0xd0,0x3c,0x41,0x01,0x84,0xdf,0xa3,0xd4,0x3c,0x04,0x96,0x39, - 0xdf,0xf7,0xbc,0x60,0x26,0xed,0x84,0x28,0xd0,0xad,0x68,0xb7,0x4d,0x35,0x94,0x78,0xe1,0x95,0x61,0xdf, - 0x86,0x43,0xb8,0xf3,0x92,0x82,0x8e,0x6d,0xbf,0x62,0xdf,0x82,0x3b,0x84,0xb6,0x6f,0xe8,0x2c,0xf8,0x56, - 0xa4,0xe5,0x50,0xcd,0x71,0x80,0x7f,0x9c,0x10,0x6c,0x21,0xb7,0x9b,0x51,0x2f,0x88,0x57,0xdb,0xcd,0x42, - 0x79,0x2e,0xb4,0x73,0xcf,0xfb,0xad,0x09,0x19,0x10,0x45,0xdd,0x63,0x5f,0xb3,0x9a,0x15,0x07,0x0e,0xfe, - 0x4c,0x75,0xf4,0x5b,0x76,0x2d,0xd0,0x86,0x0c,0xb2,0x34,0x96,0x0e,0x15,0xfd,0x4a,0xdc,0x49,0x73,0x45, - 0x4c,0xd7,0x26,0x60,0x7d,0xb9,0xbf,0xbf,0x7f,0x1f,0x4e,0x9a,0xc4,0xcb,0xb7,0xe7,0x43,0x25,0x08,0xf4, - 0xfe,0x75,0xff,0x25,0x65,0xf2,0xbf,0x97,0x2f,0x08,0x1a,0xfe,0xcd,0x08,0xe3,0xbc,0xbd,0x9c,0xab,0x93, - 0x6a,0x76,0xa3,0x70,0x86,0xaa,0x73,0xda,0x21,0x0a,0x10,0x47,0xec,0x4a,0x4b,0x5c,0x15,0x63,0xf4,0xb6, - 0x68,0xe9,0x7f,0x3e,0x9b,0x01,0x57,0xab,0xbc,0xa6,0x65,0xc6,0x7b,0x43,0xf8,0x92,0xf6,0x76,0x45,0x9b, - 0x98,0xbf,0xc3,0xcf,0x81,0x3a,0xff,0x52,0x9d,0x7f,0xa5,0xce,0xbf,0x56,0xe7,0x7f,0x57,0xe7,0xff,0x50, - 0xe7,0x67,0x75,0xb5,0x5c,0xa8,0x32,0xbf,0xa2,0x2d,0xc5,0xb3,0x44,0xf8,0xe1,0x4a,0xcd,0x08,0x59,0xcc, - 0xd5,0xac,0x55,0xc4,0x38,0xe1,0xba,0x0f,0xa4,0xb3,0xed,0xab,0x56,0x8b,0x62,0xca,0xf7,0x8b,0x9c,0xd7, - 0xaa,0xb8,0x3c,0xa3,0xce,0xd0,0xa0,0x40,0xfa,0xcc,0xd5,0x02,0xc1,0xce,0xd4,0x72,0xae,0x72,0x75,0xa2, - 0xf2,0x93,0x93,0x5a,0x9d,0xcc,0x0a,0xfa,0xab,0x14,0x3d,0x4e,0x09,0x6b,0x10,0x16,0xa3,0x2e,0x81,0xe7, - 0x53,0xb3,0xd3,0x52,0xe9,0x4b,0x55,0xa8,0x8b,0x93,0x19,0x55,0x50,0x5f,0xa8,0xdf,0x55,0xbd,0x50,0x84, - 0x63,0xea,0x76,0xaa,0xea,0xe5,0xc9,0x0d,0x71,0x8b,0x4d,0x7e,0xb9,0x50,0x84,0x72,0x88,0x62,0x6f,0x16, - 0x39,0x1d,0x4b,0x84,0x02,0x09,0x6b,0x37,0xcb,0x13,0xfa,0x5b,0x28,0xf8,0x7d,0xa9,0xa5,0xa2,0xc9,0x57, - 0xd7,0xd4,0x02,0x1f,0x60,0xf9,0x72,0x56,0x54,0x0a,0x58,0x0a,0xc2,0x95,0x0b,0xc5,0x87,0x06,0xb5,0x74, - 0x42,0xd8,0x40,0x2c,0xe3,0x14,0x5f,0x86,0x42,0x78,0x63,0x59,0x13,0x9f,0x3b,0xcd,0xcb,0xab,0x9c,0x5a, - 0xe2,0x2b,0xdf,0x81,0xab,0xe4,0x61,0x06,0xe9,0x73,0xd9,0x28,0x3b,0xf6,0x29,0x0d,0x8f,0xfe,0x64,0xb2, - 0x0c,0xbe,0xe1,0xb5,0x68,0x79,0x6d,0x5a,0x7a,0x38,0xa7,0x16,0x95,0x1c,0x7c,0x3c,0x44,0x18,0x6b,0xd0, - 0x9c,0xe9,0xf9,0x8c,0x78,0x46,0xc6,0xb1,0x4a,0x0e,0xdb,0x79,0x7e,0x42,0xb5,0xcf,0xf5,0x19,0x28,0xc8, - 0x4b,0xe0,0x58,0x1c,0xbb,0x52,0xb5,0x39,0x7f,0xab,0x65,0x8b,0x92,0xf6,0xfc,0xb5,0xe7,0xb1,0x3b,0xa6, - 0x09,0x33,0xe7,0x05,0x0e,0x83,0x22,0x9f,0x57,0x67,0x54,0x49,0xb9,0xe4,0x7f,0xc0,0xcc,0x34,0x35,0x97, - 0x34,0xa1,0x37,0xca,0x9c,0x4b,0x4a,0x8b,0x14,0x4d,0x01,0x0d,0x57,0xd7,0xca,0x06,0x79,0x56,0x27,0xf3, - 0x6a,0x7a,0xf1,0xfb,0xb2,0x02,0x76,0x3f,0xad,0xf9,0x7e,0x17,0x40,0x0b,0x41,0xfe,0x6f,0x42,0x2e,0x5c, - 0x9d,0xa9,0xbc,0x2c,0x2e,0x51,0x76,0x5a,0xd4,0x53,0xa6,0x1d,0x8a,0xc5,0x82,0x00,0x54,0x4d,0x97,0x35, - 0x21,0x5e,0x1c,0x28,0x38,0x91,0x9a,0x29,0x35,0x42,0x59,0x04,0xa0,0x12,0x02,0x9a,0x86,0x5b,0xb6,0x7b, - 0xa7,0xf9,0x14,0x00,0x18,0x78,0x4a,0xab,0x33,0x75,0x36,0xbf,0x59,0x9c,0x13,0xe4,0xe4,0x67,0x1a,0x80, - 0xac,0x79,0xf1,0xe9,0x8b,0xcb,0xbc,0x21,0xa0,0x2e,0x9a,0x86,0xf6,0xd7,0x9e,0x14,0xe2,0x96,0xe8,0x1f, - 0x55,0x48,0xe7,0x44,0x35,0xbf,0x39,0xab,0xe4,0x97,0xbf,0x03,0x01,0xa9,0x9a,0xeb,0x02,0x98,0xbd,0x61, - 0x5f,0x62,0x9e,0x1f,0xfe,0xc7,0x5f,0xb6,0x0c,0x33,0x20,0xc5,0xaf,0x0a,0x7d,0x1d,0xb1,0x6e,0xfe,0xc7, - 0x41,0x14,0xfb,0xef,0x92,0xed,0xff,0x7f,0x2b,0x99,0x2b,0xf2,0x7e,0xb5,0x75,0x28,0x65,0x65,0xd4,0xcd, - 0xae,0xd6,0x69,0x84,0x6d,0xcc,0x38,0x7f,0x22,0x8f,0x69,0xe0,0x21,0xdb,0xd6,0xc3,0xba,0xaa,0x1a,0x73, - 0xca,0x3d,0x94,0x58,0xea,0x7c,0x57,0xd2,0x75,0x55,0xf3,0xa1,0x56,0xd3,0x20,0x34,0xed,0x23,0x8c,0x61, - 0xae,0x96,0xf5,0x3c,0x0a,0x62,0x70,0xd5,0x41,0x3f,0x36,0x03,0xff,0x12,0x06,0x72,0xee,0x91,0xbf,0x2f, - 0x75,0x7d,0xf3,0x8e,0x81,0x85,0xef,0xa8,0x5b,0xad,0xfa,0x9e,0x93,0x36,0xd4,0x37,0x6d,0x72,0xe3,0x42, - 0x57,0xb8,0xfe,0x9e,0x12,0x49,0xf2,0x87,0x8e,0x6f,0x3b,0x45,0x07,0xe3,0x16,0xde,0x51,0xab,0x0b,0x30, - 0x60,0x48,0x3e,0x20,0x69,0x66,0x49,0x67,0x7c,0x99,0x66,0x1b,0x04,0xf0,0x0b,0x2e,0xce,0x0c,0x93,0x47, - 0x96,0x98,0xe0,0x88,0xe5,0xba,0x7d,0x48,0x89,0x05,0x6d,0x2a,0x1d,0x47,0x36,0x27,0x52,0xfe,0x91,0x55, - 0x8d,0x9d,0x3e,0xbc,0x7a,0x97,0x0e,0x12,0x70,0xc3,0x3d,0x7e,0xf5,0x2e,0xfe,0x95,0x2f,0x32,0xc5,0xbd, - 0xd5,0xdd,0xdb,0xdb,0xd2,0x01,0x38,0xb9,0xeb,0xa2,0x37,0xed,0xbe,0x36,0x3e,0xe8,0x7f,0xe1,0x63,0x53, - 0x92,0xbf,0x95,0xe0,0x79,0x8f,0x58,0x17,0x93,0xf6,0xc9,0x6c,0x96,0x71,0xb8,0x6c,0x76,0x05,0x87,0x28, - 0x13,0x1e,0x0c,0x6c,0xd4,0xd6,0x1b,0xaf,0x1e,0x05,0x79,0x08,0xb9,0xad,0xf2,0x05,0xcc,0xda,0x87,0xcb, - 0x06,0x79,0x5c,0x56,0xe4,0xdc,0x77,0x8d,0xdf,0xca,0xc1,0x91,0xbf,0x56,0x90,0x79,0xbd,0x23,0x82,0x8a, - 0xc0,0x71,0xb8,0x70,0x50,0x60,0x8d,0xd8,0x24,0x88,0xfe,0x30,0x5c,0xd2,0x64,0xae,0xe1,0x4c,0x81,0x59, - 0x7d,0x2c,0xa8,0x6b,0xa3,0xbb,0xad,0xcf,0xcb,0x5a,0x2e,0xfd,0x0e,0x27,0x20,0xc7,0x74,0xdd,0x28,0xdc, - 0x01,0x9f,0x56,0x45,0x11,0x87,0xae,0x85,0x20,0x45,0x56,0xa0,0xf7,0x41,0x5e,0xf3,0x0c,0x18,0x46,0xb3, - 0x5f,0x19,0x83,0x28,0xd1,0xb5,0x1e,0x5e,0xe9,0x05,0x61,0xb1,0x10,0x21,0x05,0x98,0x85,0x3f,0xbf,0x23, - 0xa4,0xa0,0x2d,0xb4,0x0e,0x90,0x4b,0x5e,0x77,0x6d,0x82,0x6c,0x9d,0x36,0xc8,0x80,0xbf,0x23,0xda,0x46, - 0x4f,0x2c,0x86,0x82,0x12,0x42,0xe5,0xa6,0xe7,0x97,0x1c,0x01,0x95,0x6d,0x4c,0xc7,0xed,0xa4,0x17,0xd8, - 0x02,0xf2,0x8b,0xc9,0x31,0xff,0x72,0xbc,0x1a,0x70,0xf8,0x7c,0x3b,0x12,0x27,0xd9,0x58,0x15,0xa9,0xef, - 0xc2,0xf3,0xf2,0x59,0x55,0x0f,0xd6,0x52,0xb1,0x23,0x97,0x11,0xea,0x15,0xc9,0x83,0xfd,0x9d,0x1d,0x4e, - 0x32,0x57,0x1d,0x49,0xdd,0x87,0xc5,0x91,0x3c,0x14,0x12,0x7b,0xa6,0x11,0xe3,0x0f,0x04,0xbf,0x21,0x6e, - 0x75,0xad,0x10,0xbd,0x7d,0x5a,0x67,0x87,0xc6,0xe6,0x26,0xf2,0x2e,0xf0,0x91,0x75,0x02,0x8e,0xa0,0xe1, - 0x01,0x14,0x47,0x4e,0xe5,0x16,0x05,0xf7,0x82,0x2d,0xeb,0x9e,0x3b,0x36,0xe2,0x6f,0x1b,0x89,0x38,0x2b, - 0xda,0xc4,0x46,0xdc,0xc4,0xe4,0x08,0x62,0x43,0x70,0x62,0x10,0x29,0xe2,0x8d,0x09,0xe1,0xc8,0xb7,0xd9, - 0xc6,0xb2,0xb0,0x1b,0x51,0xbf,0x10,0xc1,0x5f,0xb8,0x52,0xf6,0x8c,0x80,0x49,0xbf,0x8b,0x49,0x60,0xed, - 0xd4,0xde,0xc4,0x76,0x0d,0x25,0xe2,0x4c,0xe6,0x23,0x40,0x95,0x1c,0xc0,0x9f,0x56,0x0f,0xc9,0xed,0xe7, - 0xca,0xb8,0x60,0xf6,0x58,0x9e,0xd5,0xaa,0xac,0x39,0xba,0x47,0x89,0x60,0xb3,0x6c,0x00,0xc5,0x01,0x3f, - 0x30,0x9a,0x87,0xe0,0x1a,0xdf,0xcc,0xe9,0x78,0x3d,0xaf,0xe6,0x33,0xbe,0x65,0xb3,0x1b,0xf3,0x82,0xc7, - 0x19,0x26,0x48,0xfc,0xb7,0x30,0xc5,0x04,0x83,0x0b,0xbc,0x13,0xe6,0x75,0xef,0x0a,0x1d,0xb9,0x6f,0xdd, - 0xdc,0x6f,0x48,0x94,0x78,0x56,0x8e,0x77,0x77,0x6b,0x22,0xc5,0x0b,0xbe,0xe1,0xc8,0xdc,0x86,0x45,0xa0, - 0x51,0x1c,0x65,0x3e,0xac,0x4a,0x25,0x01,0x87,0xfc,0x36,0x9b,0xb9,0x7b,0xbe,0x67,0xf5,0xe0,0xf6,0x98, - 0xa1,0xe1,0xa6,0xee,0x6c,0x8f,0x99,0x59,0x62,0x1b,0x63,0xd3,0x5f,0x3c,0x6e,0xcf,0x93,0x20,0x29,0x5c, - 0x32,0x37,0x00,0x6d,0xad,0xf8,0x69,0x32,0x9a,0x1a,0x76,0x1d,0xf2,0xd0,0x64,0xe7,0x75,0xbc,0x51,0x85, - 0x6a,0x7d,0xb4,0xd4,0x29,0x4a,0x94,0x1b,0x25,0x4a,0x5f,0x62,0x09,0xa3,0xee,0xb9,0xbd,0xab,0x84,0xd5, - 0x65,0xd3,0xa4,0xce,0x1a,0x09,0xd8,0x38,0xe5,0x7b,0xbf,0x27,0xb8,0x2e,0x61,0x3e,0xfb,0x99,0x9d,0xee, - 0x8c,0x2d,0x93,0xe2,0xa4,0x87,0xf5,0x19,0x25,0xe4,0xf5,0x99,0xba,0xaa,0x61,0xd7,0x6b,0x61,0x1e,0x1e, - 0x0a,0x54,0x62,0x06,0xc4,0xc2,0x3f,0x7e,0xbb,0x8b,0xad,0xc0,0x0c,0x51,0x09,0xed,0xb5,0x62,0x69,0x2c, - 0x5f,0x43,0x40,0x36,0xf4,0xad,0x9c,0x1a,0xf8,0x66,0xe9,0xbe,0x01,0x72,0x59,0x5a,0x9e,0x93,0x67,0xe9, - 0x74,0xd8,0xc3,0x6f,0x7f,0xac,0x1f,0x2c,0x9d,0x03,0x1d,0xf1,0x5f,0xd4,0xd6,0x12,0xc3,0x8a,0x6c,0xb5, - 0xd2,0xe4,0x7a,0x5c,0x4d,0x0a,0x84,0x91,0x32,0xe9,0x91,0x3a,0x4d,0xd2,0x53,0xb9,0xb5,0x76,0xee,0x54, - 0xac,0x52,0x62,0x51,0x35,0x2d,0x2b,0xd7,0x3b,0xa1,0x2a,0xbb,0x6d,0xce,0x7b,0x6d,0xce,0xb9,0xcd,0xfe, - 0x34,0x98,0xb6,0x13,0xb5,0x2d,0xd7,0x6f,0x6a,0x09,0xc7,0x36,0x65,0xab,0x29,0xfa,0x8a,0xd7,0x21,0x5a, - 0x96,0x32,0x35,0x44,0x12,0xc2,0x6a,0x53,0x0c,0xd1,0xd1,0xd4,0x62,0x90,0x42,0xf3,0xb0,0x77,0x1e,0xa2, - 0x66,0x03,0x45,0x43,0x1f,0x84,0x9e,0xe7,0x5b,0xd5,0x58,0x2e,0xc4,0x91,0x10,0x20,0x41,0xe0,0x0f,0x44, - 0xb3,0x06,0xf2,0x44,0xb0,0xbe,0x82,0xf8,0x01,0x8e,0xfb,0x57,0xfb,0xb7,0x6c,0x01,0x17,0xa6,0xea,0x90, - 0xa3,0x60,0x15,0xa3,0x3a,0xbf,0x7e,0xc5,0x52,0xd4,0x82,0xa5,0xa9,0xbb,0xd1,0x28,0xda,0xed,0xd8,0x62, - 0x87,0xf5,0xc0,0xcc,0xee,0x63,0x55,0x94,0xec,0x38,0x9f,0x60,0x17,0x62,0xe9,0x11,0x3a,0x29,0xd0,0xec, - 0x7b,0x61,0x2b,0x0c,0xcc,0xb9,0xd6,0x60,0xb3,0x7a,0x7f,0xc1,0x7a,0x28,0x20,0x1e,0x03,0x14,0xff,0x18, - 0x87,0xba,0x8a,0xed,0xf4,0x2a,0xda,0x1f,0x38,0x76,0xb4,0x8d,0x09,0x24,0x1a,0xfa,0x9a,0x35,0xf4,0xb5, - 0xdf,0x2a,0x41,0xe3,0x5b,0xd1,0xae,0x36,0x43,0x82,0xc8,0xc0,0x06,0x2f,0x31,0x01,0xca,0x2e,0xe9,0x40, - 0x20,0x86,0xe2,0xb4,0x0e,0xd0,0xfc,0x59,0xe7,0x88,0x1c,0x56,0xc2,0x6e,0x9b,0x88,0x3c,0x2c,0x1c,0x29, - 0xbb,0x4e,0x58,0x45,0x79,0xae,0xeb,0x82,0x89,0x00,0x9a,0xab,0x17,0x16,0x95,0x58,0xa4,0xfb,0x22,0x0e, - 0x29,0xcf,0x24,0x09,0xf1,0x5e,0xcb,0xa3,0xcb,0x33,0xdd,0x89,0x39,0xcd,0x31,0x01,0xdb,0x5e,0x92,0x20, - 0x48,0x40,0xe0,0x1b,0x5c,0x2d,0x20,0xa1,0xc8,0xf8,0xca,0xce,0xb0,0xa4,0x88,0xe4,0x39,0xba,0x7d,0x52, - 0x10,0xa2,0x40,0x00,0x47,0xfa,0x27,0xd7,0x14,0xde,0xd4,0xb1,0xf8,0x41,0xb9,0xba,0x70,0xeb,0xf2,0xb7, - 0xb8,0xab,0x50,0xf0,0x06,0x07,0x77,0xe2,0x27,0x53,0xd8,0x06,0x9b,0x34,0xf9,0x44,0x7e,0x24,0x2f,0x62, - 0xd4,0x8a,0x96,0x7f,0x2e,0x69,0x21,0x26,0x95,0x21,0x04,0x1d,0x0d,0x44,0xc4,0xee,0x2f,0xa5,0xfa,0x03, - 0x99,0x49,0xfa,0x12,0x3f,0xb0,0x42,0xeb,0x15,0x42,0x66,0xe8,0xbc,0xe8,0xce,0x04,0x76,0x3c,0x33,0x74, - 0x9a,0x23,0x01,0xa2,0xbd,0x88,0x48,0x0b,0x5b,0x26,0xfd,0x8e,0x65,0x9e,0xbf,0x43,0x93,0x30,0xd1,0x1b, - 0x35,0x8b,0x8b,0x5a,0x5f,0x04,0xca,0xc2,0xd4,0x9d,0x9d,0xe8,0xe9,0xcb,0x47,0x4f,0x9f,0x98,0x9b,0xdd, - 0xa4,0x95,0x89,0x88,0x4e,0x53,0x5c,0x18,0xd1,0xa3,0xe5,0x4a,0x19,0x41,0xcb,0xb2,0xb4,0x6e,0xd6,0x4f, - 0xa5,0xc9,0xff,0xf9,0x73,0x9d,0x71,0x73,0x81,0xe8,0x60,0xdd,0x3a,0x24,0x8b,0xc7,0xe3,0x46,0x16,0xdc, - 0x0d,0x54,0xc3,0xa0,0xc0,0x98,0xc1,0x72,0xe5,0x49,0xbb,0x31,0x52,0x6d,0xae,0xdb,0xc3,0xed,0xd9,0x04, - 0x9a,0xdf,0xd3,0xf0,0xde,0x3f,0xfd,0xf5,0xfd,0xc3,0xb7,0x4f,0x1f,0xba,0x58,0x61,0xaf,0xd8,0x21,0x31, - 0x5a,0xf8,0x53,0xdc,0x08,0x8e,0x59,0xb4,0x25,0x4e,0x4b,0xc7,0xc7,0x85,0x5e,0x9c,0x6f,0x5c,0xa5,0xc6, - 0xfa,0xc5,0xa6,0xad,0x16,0xee,0x46,0x6b,0x68,0x0a,0xf2,0xb3,0x5c,0x50,0xaa,0xb2,0x1d,0x62,0x6b,0x50, - 0xeb,0x1f,0x62,0x69,0x18,0xd8,0xe7,0x8d,0x5b,0xc4,0x58,0xb8,0x2b,0x5b,0xd9,0x86,0xa1,0x8e,0x6f,0xbb, - 0xf3,0xab,0xf9,0x72,0x62,0xf4,0xe7,0xc4,0x1f,0xf0,0x67,0xee,0x80,0x3f,0xab,0x83,0x23,0xfc,0xba,0xb7, - 0x7d,0xb1,0xa3,0x6a,0xb3,0x29,0x98,0x98,0xb5,0xb7,0x23,0x6e,0xc7,0x2f,0x08,0x21,0x86,0xf2,0x49,0x6c, - 0xce,0xda,0x05,0x24,0x8b,0x71,0xc1,0x2b,0x36,0x70,0xb1,0x51,0xa8,0xb0,0x81,0xca,0x12,0x8b,0xb2,0x06, - 0x45,0x8b,0xa6,0x31,0xb8,0xa7,0x42,0xb5,0x3a,0x7e,0x13,0xd7,0x9b,0xa4,0x74,0x32,0x06,0xae,0x1e,0xc8, - 0xb0,0x06,0x0b,0xf0,0xcd,0x11,0x4e,0x36,0x6e,0xb3,0x1f,0x68,0x03,0x49,0xa5,0xad,0xb9,0x3e,0x77,0x2c, - 0x34,0x9d,0x8b,0x63,0xc5,0xf1,0xec,0xc2,0xf2,0xb0,0x91,0x65,0xf2,0xcf,0xdf,0x53,0x91,0x75,0xe4,0xb2, - 0x12,0x14,0x8e,0x9f,0xde,0xf0,0x90,0x39,0x1e,0xdd,0xf7,0x30,0x17,0xf9,0xb6,0xe4,0xd8,0xac,0x91,0xe8, - 0x73,0x70,0xb3,0x00,0xcc,0x80,0xd9,0x58,0x95,0x05,0xdf,0x05,0xc6,0xcc,0x95,0xe8,0x66,0x2c,0x01,0xec, - 0xe2,0x2a,0xfb,0x1e,0x96,0x25,0xf4,0x69,0x8e,0xe0,0xbb,0x15,0xfb,0x6c,0x1f,0x2f,0x6a,0x7d,0xc5,0x05, - 0xd9,0x56,0xb1,0xcb,0x63,0x8b,0x6e,0x08,0x0e,0x76,0x61,0xc1,0xcc,0x46,0x91,0xbc,0xa8,0xd5,0xbd,0x5a, - 0x7d,0xaa,0xd5,0xbb,0x5a,0x3d,0xae,0xd5,0xc3,0x5a,0xbd,0xf7,0x50,0x70,0xed,0xa0,0xe0,0xba,0x5e,0xab, - 0xd7,0x75,0x76,0xff,0xf0,0xc3,0x75,0x32,0xda,0xfd,0xb0,0x77,0x7c,0xef,0xc3,0xd1,0xd1,0x7d,0x0f,0x18, - 0x4f,0xea,0x0d,0x5f,0x4b,0x1a,0xc9,0xf6,0x01,0x2e,0x2f,0x38,0x50,0x1c,0xf5,0x66,0x89,0x7f,0x73,0xc4, - 0xf6,0xa1,0xbf,0x19,0xfd,0x21,0xfc,0xa8,0xbf,0xb9,0xb6,0x73,0x23,0x12,0x4c,0x71,0x70,0x57,0x8b,0x11, - 0xcc,0x1b,0x0f,0x8e,0x1a,0x38,0xf1,0xab,0x6f,0x04,0xbb,0x7c,0xf3,0xa5,0xec,0xa9,0x18,0xcd,0xf8,0xdb, - 0xe8,0x9a,0xe4,0xab,0xaf,0x7b,0x05,0x9a,0x4e,0x81,0x69,0xf2,0xcd,0x3f,0x7a,0x05,0xa6,0x9d,0x02,0xcb, - 0xe4,0xeb,0x7f,0xf6,0x0a,0x2c,0x3b,0x05,0x0e,0xbe,0xfc,0x5a,0xb4,0x60,0xf4,0xe0,0x74,0x07,0xb6,0x8b, - 0xbb,0x07,0xc9,0x70,0xc6,0x1e,0x32,0xe6,0xab,0xd5,0xe9,0x6a,0x35,0x4b,0x6e,0x45,0xc8,0x05,0x33,0xa7, - 0x69,0x4e,0xb5,0x7e,0xf5,0x75,0xda,0xc0,0x28,0x93,0x2d,0x85,0xc7,0x92,0xf4,0x4d,0x9a,0xf7,0x92,0xbe, - 0xf9,0x47,0x3a,0xed,0x25,0x7d,0xbd,0x9f,0xce,0x76,0x77,0x3b,0x29,0x07,0xe9,0x6c,0x6f,0xaf,0xf3,0xd9, - 0x41,0x7a,0xda,0x2d,0xf3,0xcd,0x57,0xe9,0x69,0xb7,0xcc,0xc1,0x97,0x5f,0xa5,0xf3,0x6e,0xa1,0x83,0x2f, - 0xff,0x9e,0xce,0xf7,0xf6,0x40,0xf6,0xc9,0x84,0xf8,0xcd,0x77,0x9e,0xd1,0x70,0xd4,0x95,0xe1,0x33,0xc7, - 0xfb,0x0f,0x32,0xa2,0x08,0xe5,0x12,0xcf,0xf8,0xca,0x2b,0x53,0xce,0x69,0x57,0x9c,0xef,0xed,0x25,0xe3, - 0xab,0x9d,0x9d,0xd7,0xb5,0x58,0xb7,0x5f,0xc1,0x29,0x68,0x99,0x31,0xe7,0xcc,0x13,0xea,0x82,0xc3,0x17, - 0x93,0x78,0x91,0xe1,0x6e,0xc1,0x22,0xd0,0xbb,0x10,0xf5,0x43,0x90,0x7c,0x19,0xd3,0x3e,0xb9,0x8c,0x03, - 0x7a,0x8e,0x5e,0x6e,0xe3,0x0a,0x77,0xa9,0x04,0x46,0xf4,0xf6,0xb3,0x45,0xf0,0x99,0xe2,0x3a,0x31,0x88, - 0xa0,0xa1,0xc1,0x16,0x52,0x08,0xae,0x16,0x3b,0x3b,0xf4,0xa8,0xec,0x15,0xf0,0x00,0xcc,0xaa,0x03,0x98, - 0xd9,0x53,0x50,0xe8,0x15,0x07,0xe4,0xdf,0xbc,0xf9,0xec,0x69,0x0f,0x3f,0xba,0x43,0x35,0x8e,0xc4,0x37, - 0xe2,0xc1,0xbe,0x21,0x2e,0xbf,0x38,0xa6,0xd4,0x2f,0x88,0x66,0xfa,0x22,0x4a,0x62,0x98,0x64,0x47,0x49, - 0x64,0x1d,0x09,0x5d,0xdf,0xc4,0x04,0xcd,0xbc,0x96,0xbb,0xce,0xa2,0xc6,0x7c,0x5c,0xbb,0x8f,0xa9,0x7a, - 0xbe,0x1e,0x79,0x42,0xcc,0xf5,0x6e,0x91,0x16,0xc1,0xe9,0xf6,0xd1,0x74,0x09,0x86,0x1e,0xd5,0x5c,0x0b, - 0x8f,0x18,0x47,0x87,0x3f,0x2f,0xf5,0x96,0xb9,0x33,0xa9,0x3e,0x4a,0x41,0xc9,0x05,0x1f,0x3d,0xeb,0x71, - 0xe3,0x74,0xda,0x5e,0xe6,0x8b,0x78,0x48,0xd0,0x83,0xab,0x2d,0x93,0x91,0xc8,0x88,0x07,0x0b,0xac,0x93, - 0xf4,0xf0,0xc8,0x57,0xfd,0xaa,0x43,0x93,0xc6,0x26,0x72,0x34,0xdb,0xc4,0x88,0xfb,0x9f,0x5f,0xcf,0xef, - 0xea,0x58,0x8c,0x2c,0x5b,0x25,0x0a,0xf1,0x52,0xcd,0x6e,0x28,0xa1,0x98,0xa6,0x05,0x6e,0x4a,0x64,0x2b, - 0x4e,0xa8,0x7b,0xb3,0x30,0x82,0xe0,0x8b,0x6e,0x03,0x05,0xf5,0xdd,0x7c,0x65,0xa8,0xc6,0xb8,0x9b,0x80, - 0x06,0x53,0xed,0xc2,0x77,0x9b,0xa7,0xff,0xe7,0x6e,0xbc,0x71,0xdd,0x60,0xa1,0x1c,0xea,0x7c,0x99,0x2f, - 0xd8,0x79,0x5d,0x99,0x77,0x1c,0xd4,0x77,0x35,0xc1,0x15,0xfb,0xda,0x9e,0x3b,0xa2,0xcd,0xea,0xc2,0x26, - 0xd1,0xf1,0x22,0x06,0xd1,0xfd,0x85,0x32,0x26,0xfd,0xc9,0x17,0xa9,0xde,0x0d,0xa2,0x1d,0xbc,0x0d,0x26, - 0x42,0xee,0x3e,0x34,0x31,0xfb,0xc6,0x38,0x13,0x11,0xdb,0x7a,0x54,0x17,0x67,0xe7,0xed,0xa4,0x99,0xb4, - 0x59,0xc4,0x75,0x45,0x90,0x9a,0x7c,0x31,0x25,0x78,0xbb,0xf8,0x62,0xf2,0x85,0x21,0xf8,0xa1,0x85,0xf8, - 0x22,0x35,0xf9,0x50,0x8e,0x23,0xdb,0xd0,0x78,0x74,0x0a,0x46,0x41,0xb1,0x48,0x99,0x3b,0x81,0x6b,0xa9, - 0x3a,0x49,0x89,0x2b,0x2a,0x66,0x33,0x08,0x7f,0xe3,0xbb,0x9a,0xb9,0xac,0x96,0x8d,0x5e,0x2e,0x3e,0xd7, - 0x84,0x29,0x82,0xab,0x42,0x6a,0x7b,0x57,0x3d,0xe5,0xb8,0xc6,0x4c,0x12,0x1d,0x18,0x34,0x51,0xd1,0x36, - 0x18,0xc4,0x86,0xcb,0x56,0x7c,0xc9,0x91,0x2f,0x88,0x77,0x53,0xea,0x7f,0xfb,0x52,0x10,0xdb,0xcb,0xad, - 0x23,0xae,0xa0,0x49,0x32,0x65,0x77,0x6c,0xd9,0x69,0x56,0x9b,0xe8,0xd6,0x13,0x5f,0x56,0x12,0x94,0x8d, - 0x7b,0xcd,0x44,0x98,0x80,0x52,0x98,0xc0,0x01,0xe1,0x53,0x2d,0x91,0xe3,0x25,0x5b,0xbb,0x0c,0x13,0x2c, - 0x1c,0x70,0x60,0x00,0xc0,0x60,0x25,0x07,0x6a,0xcd,0x9a,0x0e,0xbf,0x71,0x2d,0xf7,0xfe,0x10,0xc7,0xef, - 0x99,0xcd,0xda,0x06,0xaa,0x9e,0x82,0x9f,0xeb,0x07,0x04,0x9f,0x14,0x93,0xb9,0xb3,0xbf,0x5b,0x26,0xa9, - 0x91,0x36,0xd0,0x13,0x8a,0x67,0x73,0xca,0x3f,0x5c,0xaa,0xf9,0x51,0x7a,0x38,0x57,0xcb,0xa3,0x74,0x39, - 0x08,0xcc,0x2f,0xbb,0x72,0xa4,0xec,0x11,0xde,0x23,0x8e,0x26,0xb9,0x5a,0xc9,0xcb,0xd5,0x1e,0x9b,0xf5, - 0x20,0xc9,0x46,0x96,0xda,0xa6,0xae,0xd9,0xe0,0xe5,0x10,0x7c,0x31,0x61,0xc8,0x61,0x66,0xac,0x3b,0xf0, - 0x23,0xc1,0x33,0xfe,0x83,0xc2,0x7e,0xf0,0xfd,0xbb,0xd7,0xaf,0x46,0xa2,0x18,0x29,0x4e,0x71,0xd7,0x57, - 0xc0,0xc1,0x3c,0xea,0xf6,0xc6,0x7f,0x0d,0xbe,0x3c,0xdc,0x6a,0xa1,0x73,0x62,0xb0,0xe7,0x88,0x26,0xdb, - 0x57,0x88,0x9f,0x60,0xa3,0x3b,0x3e,0xc8,0xc7,0x95,0x50,0x1d,0x05,0xee,0x1e,0x67,0xcb,0x27,0x3e,0xf0, - 0x0a,0xeb,0xc7,0x53,0x6d,0xfa,0xf1,0xb8,0xfb,0xaf,0x3b,0x4d,0x86,0xf7,0x49,0xfe,0x54,0xf7,0x2f,0x0c, - 0x0c,0x3b,0x21,0x5a,0xf1,0xb2,0xaf,0x15,0x37,0x34,0x6f,0xc9,0xc1,0xca,0x11,0x9d,0x98,0x8f,0xcd,0x4a, - 0x78,0x7c,0xef,0xa6,0x64,0xfa,0x55,0xc3,0xcf,0xa7,0x0a,0xe6,0xe6,0xbb,0x2e,0xe6,0x66,0x7d,0x3a,0xcf, - 0x0d,0x53,0xa5,0x75,0x2b,0x71,0xd6,0xf1,0x64,0x53,0xec,0x9d,0x1e,0x44,0xcd,0x97,0x33,0xce,0x36,0xf6, - 0x70,0xe5,0x2c,0xe9,0xdc,0x6f,0xf9,0x4b,0x0f,0x08,0x24,0xb4,0x6c,0x81,0x1d,0x21,0xda,0xaf,0x2a,0x8b, - 0xee,0xdd,0xbb,0x8a,0xc6,0x35,0xc3,0x2e,0x53,0xab,0x51,0x6c,0x74,0x5a,0x94,0xb1,0x45,0x73,0xba,0xf5, - 0x85,0xac,0xe9,0x17,0x13,0xa4,0xd8,0x93,0x17,0xcf,0x70,0x26,0x2e,0xe4,0x9b,0xe3,0x92,0x30,0x41,0x05, - 0x4c,0x60,0x2f,0x29,0xf8,0x19,0x2c,0x1a,0x6e,0x3c,0x97,0xeb,0x11,0x32,0xb3,0x49,0x2c,0x36,0x89,0x94, - 0xf7,0x0b,0x4c,0x7b,0x90,0x03,0xe1,0x9f,0x71,0x2c,0xf4,0x66,0xa4,0x5b,0x31,0x5a,0xdc,0xba,0x8d,0x76, - 0xf3,0xdd,0x68,0x1d,0x85,0x41,0x7d,0x3b,0x27,0x78,0x78,0x9e,0x21,0xca,0x0e,0x38,0x59,0xd9,0x96,0x17, - 0xb5,0x33,0x68,0x50,0x01,0xf3,0x7c,0x18,0x25,0x0f,0xf6,0x21,0xc0,0x27,0x22,0x9b,0x98,0x0d,0x93,0x7a, - 0x44,0xa9,0x17,0xa0,0x00,0x65,0x55,0x88,0xef,0x8e,0xdf,0xf1,0xf7,0x61,0x21,0x88,0x7b,0x26,0xb7,0x34, - 0x90,0xd4,0x13,0x27,0xef,0x88,0xe4,0xbd,0xd0,0x37,0xe9,0x17,0x40,0xf1,0x26,0xf5,0x1d,0x68,0x4c,0x78, - 0x70,0xad,0x53,0x29,0xcd,0x25,0xd8,0x3d,0x82,0xc9,0xe9,0x7b,0xb8,0x6a,0x8d,0xaa,0x7f,0x5c,0x67,0x0f, - 0x41,0xc1,0x6c,0xff,0x5e,0x13,0xe5,0x94,0xfc,0x50,0xc7,0x9f,0xea,0xec,0x0f,0x7a,0x4e,0x26,0xdf,0xe2, - 0x39,0x49,0xbf,0x81,0x80,0xe5,0x53,0xbd,0xb3,0xf3,0x3d,0xbf,0x1b,0xe2,0xa2,0xd7,0x85,0xc7,0xa6,0x0b, - 0x36,0xe5,0x31,0x48,0xb4,0x87,0xb5,0x89,0x90,0xdf,0x31,0x68,0x21,0x60,0x86,0xfd,0x3a,0xd1,0x32,0x19, - 0x0c,0x48,0x22,0x78,0xa6,0xc6,0x30,0x5c,0xa7,0x1a,0x77,0x23,0xb5,0x85,0x47,0x2a,0x20,0x8f,0xbc,0x6e, - 0x41,0xbc,0xe4,0xda,0x1b,0xd6,0xdd,0xab,0x43,0xca,0x79,0x77,0x97,0x66,0x21,0x08,0x9d,0x1c,0x14,0xbc, - 0xa8,0x1f,0x64,0xef,0x82,0x0d,0xf7,0x43,0xa8,0xdd,0x65,0x3e,0x40,0xaf,0x56,0xcc,0x30,0x04,0x60,0xfc, - 0xbd,0x67,0x55,0x32,0x09,0xf4,0x4b,0x33,0xf5,0xae,0xb6,0xf3,0x04,0x06,0x9f,0x4a,0xc8,0x4c,0x25,0xdf, - 0xd6,0x96,0xf3,0x07,0xe5,0xcf,0x13,0x06,0x63,0xbf,0xdd,0x5d,0xf5,0xcd,0x57,0xe6,0x79,0x6f,0x8f,0xef, - 0x73,0x21,0x98,0x79,0xc8,0xf5,0x08,0x96,0x08,0xcc,0x66,0xea,0x1e,0xdf,0x2a,0x2d,0xb1,0x97,0x0a,0x37, - 0x02,0x66,0x62,0x9c,0x8c,0xc5,0xe2,0xa4,0x56,0xff,0xae,0x69,0x07,0x1c,0xd7,0x91,0x27,0x76,0x7f,0xab, - 0x6d,0xb8,0x72,0x41,0x65,0xbf,0xd6,0xff,0x57,0xf1,0xa2,0xdb,0x82,0xe5,0x1c,0x12,0x9c,0x07,0x35,0xfd, - 0x58,0x67,0x3f,0xe3,0xbe,0xa2,0xf8,0xdf,0x3b,0x3b,0xe2,0x85,0x12,0xff,0xfb,0xf0,0xe0,0x28,0x79,0x90, - 0xfd,0xfd,0xab,0x80,0xd6,0xd6,0x85,0xa7,0x64,0x68,0x12,0x7e,0x74,0xfd,0xc8,0x4b,0x70,0xb7,0xe3,0x36, - 0xab,0x46,0xc7,0xb0,0xfe,0x5a,0x6c,0xc6,0x05,0xb5,0xb1,0xb8,0x84,0x1d,0x5a,0xd6,0x35,0xc7,0x98,0x41, - 0x0a,0x87,0x52,0xb2,0x51,0x7e,0xff,0x3b,0x2b,0x3a,0xef,0x0f,0xb2,0x7d,0x09,0xb5,0x84,0x92,0x72,0x75, - 0xd2,0x13,0xa3,0x6b,0xa5,0x11,0x5a,0xb5,0xab,0x93,0xd3,0x9a,0x11,0xb3,0xb9,0x75,0xe0,0xcc,0xba,0xfe, - 0xb5,0xde,0x14,0x8a,0x60,0x28,0x3f,0x4e,0x6e,0x0d,0xc5,0x90,0x96,0xca,0x9c,0xf4,0x69,0xbd,0x4e,0x43, - 0xa9,0x50,0x1b,0x8c,0x3a,0x26,0x6a,0xe9,0x57,0x62,0x14,0x86,0x64,0x30,0xf0,0x62,0xb7,0xa3,0x5f,0xad, - 0xba,0x92,0xa5,0xb2,0x70,0xea,0xa6,0x6d,0x27,0xab,0xac,0x70,0x4d,0xc2,0xb6,0x93,0x54,0x56,0x65,0xe2, - 0xf9,0x05,0x93,0x22,0xd7,0x82,0x67,0x3a,0x7c,0x1f,0xff,0x5a,0x1b,0x81,0x4b,0x6f,0x8a,0xdf,0x70,0x54, - 0x76,0x7b,0x35,0x4b,0x9b,0xfd,0x30,0x89,0x68,0xf7,0x94,0x67,0xb0,0x63,0x34,0xb7,0xd3,0x70,0xcc,0x24, - 0x7f,0x1d,0x2f,0x97,0xe7,0x40,0x4a,0xb8,0x1c,0x24,0x51,0xee,0x1c,0xa3,0xe4,0xb5,0x54,0x37,0x65,0xf8, - 0x1c,0x49,0x45,0xbd,0x4f,0xa7,0xca,0x66,0x6c,0x7c,0x3e,0x95,0x10,0xc3,0x35,0xdf,0x42,0xa1,0x74,0xa1, - 0xda,0x42,0xfd,0x56,0x87,0x8a,0x18,0x1a,0x85,0x31,0xac,0x60,0x10,0xac,0x0b,0x55,0x14,0x4e,0xde,0x50, - 0x16,0x56,0xde,0x50,0x16,0x81,0xd4,0xa9,0x1a,0x9a,0x46,0x7b,0x29,0x76,0x67,0x32,0x5d,0x62,0x20,0xe9, - 0x37,0xb3,0x56,0x65,0xbd,0x0f,0x79,0x92,0xf3,0xac,0xdd,0x4c,0x15,0xb1,0xbf,0x88,0x7f,0xf3,0x40,0xfc, - 0xbb,0x51,0x58,0x24,0xc0,0x39,0xc7,0xd4,0xe7,0xf2,0xb8,0xdd,0xb3,0xe0,0xe8,0x1e,0x51,0xe2,0x6b,0xc9, - 0xb9,0xeb,0x75,0x96,0x43,0x5d,0x1b,0x05,0x0a,0x6f,0x36,0x83,0xe5,0x4b,0x84,0x08,0x92,0xbe,0x7b,0xff, - 0xf2,0x05,0x27,0x98,0x5b,0x09,0xac,0x77,0xa5,0x84,0x38,0xeb,0x86,0x1f,0xc7,0xcd,0x13,0x50,0x29,0xb2, - 0x0a,0x17,0x73,0x5b,0x94,0x4b,0x3d,0x06,0x76,0x32,0x71,0x9d,0xa0,0xce,0x6f,0xbc,0xb2,0xa6,0x63,0x40, - 0x10,0x16,0x81,0x97,0x1c,0x98,0xe3,0x8e,0xc9,0x6f,0xf4,0xe6,0xed,0xeb,0x6f,0xdf,0x3e,0x7d,0xf7,0x8e, - 0x79,0x4a,0x2b,0xd9,0xb4,0x41,0xc0,0x20,0xa1,0x3b,0x96,0xb8,0x93,0x75,0x32,0x89,0xa2,0x54,0xfc,0xd8, - 0x40,0xdf,0xcd,0xb3,0x46,0x6d,0xe3,0x9a,0x38,0x13,0xb9,0x0a,0x86,0x3f,0xd4,0xfd,0xe8,0xf5,0x9b,0xf7, - 0xcf,0x5f,0xbf,0x42,0xed,0x4b,0x5b,0xdb,0x6a,0x35,0x64,0x84,0xb2,0xbd,0xcf,0xae,0x84,0x81,0x35,0x8a, - 0xb8,0xea,0x18,0xdb,0x0e,0x28,0x6b,0x7d,0xe8,0x80,0x80,0x12,0xd3,0x4e,0xa6,0xde,0xe2,0x76,0x1a,0xdc, - 0x7a,0x33,0x1c,0xa6,0x43,0x54,0x76,0xec,0x8a,0x71,0xf5,0xd2,0x52,0xd0,0xa2,0x9f,0xc7,0x0e,0xc2,0x32, - 0x19,0x6a,0xc6,0x22,0x97,0xb7,0x04,0xd0,0x54,0xef,0xdb,0x58,0xc8,0x54,0xa1,0x6d,0x3c,0x1d,0x26,0xe4, - 0x00,0x9b,0x10,0xc8,0xa3,0xeb,0x95,0xef,0x8c,0xdc,0x57,0x2a,0x53,0xd6,0x24,0x2e,0x5e,0x7d,0x6f,0xd9, - 0x77,0x76,0x7e,0x2b,0x63,0x3f,0xdb,0x22,0x0a,0x75,0x45,0x12,0x60,0x21,0xa2,0xb5,0x8a,0x3f,0xb1,0xff, - 0x49,0xfc,0x27,0x59,0xf4,0xa0,0xb9,0x3a,0xfb,0xef,0x68,0xb7,0xde,0x8d,0x1e,0xdc,0xe7,0x47,0x67,0x22, - 0x49,0x7c,0x4c,0x41,0x4c,0x7b,0xdd,0xb4,0x0c,0x13,0xe3,0xce,0x4b,0xd2,0x87,0x17,0x9f,0x67,0xc4,0xa2, - 0xd3,0x5e,0xf1,0xd0,0xe6,0x24,0xcc,0xf3,0x83,0x05,0xe3,0xc2,0xd0,0x8a,0xf5,0xe5,0x2d,0x52,0x07,0x2b, - 0x29,0xc8,0x80,0xe6,0x8a,0x7f,0x73,0x8f,0x11,0x2a,0x87,0x11,0x2a,0xe2,0xb5,0x1b,0x22,0xe3,0x3b,0x32, - 0x06,0x59,0x56,0x46,0x96,0xf7,0xd3,0x78,0xb4,0x9b,0xdc,0xf7,0xd7,0xda,0x48,0x44,0xbd,0xfb,0xe3,0x78, - 0xb2,0x7d,0xf8,0x9f,0xf8,0xe8,0x6f,0x1f,0x92,0xe4,0xfe,0xd9,0x70,0xd4,0x23,0x0e,0x2a,0xe9,0xdc,0x49, - 0xe4,0x43,0x02,0x67,0xef,0x6a,0x0f,0x2a,0xfa,0xb0,0xa5,0xcd,0x62,0x16,0x19,0xfe,0x1e,0x07,0xf6,0x85, - 0x6d,0x50,0xca,0x75,0x70,0x62,0x4e,0x0b,0x5f,0xdf,0xb2,0x60,0x82,0x1b,0x57,0x72,0x04,0x7d,0x63,0x01, - 0x31,0x1b,0xba,0x4c,0xae,0xe2,0xce,0xbb,0x82,0xd3,0x43,0x10,0xd3,0xbe,0xf8,0x9c,0xd1,0xed,0xe5,0x1d, - 0x16,0xac,0x4d,0x21,0x37,0x6b,0x30,0x5f,0x58,0xa8,0xd3,0x22,0xbb,0xff,0x9f,0xbd,0xbd,0xfb,0x6a,0x46, - 0x0f,0x1f,0x9a,0xbf,0x6d,0x17,0xb4,0x39,0xeb,0x36,0x2f,0xdb,0x7b,0xf7,0xd5,0xa2,0x18,0x0a,0x07,0x72, - 0x5a,0xb8,0xb0,0x82,0xa6,0xfb,0x90,0x2b,0xfb,0x7b,0xa8,0xdd,0x3d,0xf4,0x54,0x76,0x66,0xca,0x96,0xc3, - 0x65,0xaf,0xf9,0x7a,0x18,0x02,0x29,0x56,0x8c,0x50,0x69,0xd8,0xed,0xa8,0xc8,0xf5,0x21,0x32,0xaa,0x15, - 0xe1,0x2a,0xae,0x0a,0xb3,0xd3,0xfa,0x77,0x0b,0xfd,0xd9,0x6d,0x08,0xa6,0x69,0xdc,0xe4,0xc4,0x97,0xab, - 0x70,0xef,0xc2,0xc4,0xf5,0x5a,0x9d,0x17,0xd9,0x61,0xf4,0x8b,0x3e,0xb9,0x28,0xda,0x48,0x45,0x2f,0xab, - 0x3f,0x60,0x79,0xd6,0x44,0x47,0xea,0xaa,0x0f,0x59,0x50,0x76,0x17,0xd9,0xfc,0xcf,0xb6,0x9b,0x54,0xaf, - 0x22,0x91,0x7f,0x01,0x5f,0x12,0x55,0x77,0x02,0xe7,0x38,0x42,0x4a,0xc0,0xfd,0x73,0xc7,0xd1,0xfa,0x28, - 0x8b,0xad,0x17,0x91,0xee,0x27,0xa3,0xb6,0xfa,0x09,0xb4,0xc3,0xe3,0xbc,0x21,0x22,0xce,0x51,0xf9,0x07, - 0xf6,0x6a,0xab,0xf3,0x22,0xd4,0x3c,0x9b,0x49,0x3a,0xc7,0x0e,0xda,0xe5,0x58,0x78,0x75,0xb7,0x95,0x7a, - 0x1d,0x02,0xe2,0x65,0xd1,0x95,0x47,0xb2,0x72,0xa3,0xee,0xe9,0x69,0xca,0x10,0xfc,0x18,0xef,0x94,0xee, - 0x42,0x19,0xaf,0xc5,0x79,0xd7,0x49,0xc1,0xb3,0xbd,0x0c,0x8e,0x45,0xfd,0x72,0xc8,0xe2,0x46,0xdf,0x10, - 0x96,0x59,0x5c,0x82,0x5b,0x21,0xe6,0xc5,0x1f,0x7a,0xc6,0x69,0xab,0x95,0xf9,0x9e,0xcf,0xdf,0x65,0x46, - 0x27,0xee,0x54,0xcd,0xb1,0x4d,0xcc,0xe1,0x2a,0x95,0xf3,0x39,0x6c,0x52,0x7a,0x35,0x64,0xb8,0xc6,0xd0, - 0x9c,0xca,0x13,0x3e,0x81,0xe7,0x49,0x2a,0xd1,0xe5,0xfa,0x21,0x49,0xc2,0xb8,0x53,0xcc,0xab,0xea,0xf1, - 0x40,0x78,0xc9,0x71,0x12,0x17,0xd9,0x50,0xd8,0x49,0xa7,0x24,0x2a,0xac,0xd2,0xa7,0xcc,0x68,0x6f,0x17, - 0x46,0xe5,0x83,0xd8,0xa5,0xb5,0x09,0x90,0x83,0x2d,0xdf,0x4f,0x76,0x51,0x35,0xa9,0xd9,0x0a,0x17,0xcf, - 0x99,0x48,0x84,0x55,0xa7,0xb6,0xaa,0xff,0x99,0x5b,0x49,0x6c,0x04,0xd4,0xc1,0x51,0x39,0x97,0xc9,0x8b, - 0xf8,0xf4,0xb0,0x82,0x36,0x78,0x51,0xc4,0x39,0x4d,0xba,0xa5,0x31,0x38,0xfb,0x14,0x63,0xe0,0x7c,0x82, - 0xc1,0x25,0xfd,0xba,0x62,0xc2,0x9b,0x15,0x38,0xa9,0x2d,0xe1,0x7f,0xe6,0x11,0xec,0xa5,0x43,0xb0,0x97, - 0x84,0x60,0x6f,0x18,0x3f,0xec,0x06,0x8a,0x9d,0x63,0x66,0x1a,0x04,0x45,0x9a,0x6b,0x5d,0x0c,0xd6,0x4b, - 0x84,0x4a,0x81,0x36,0x09,0xc4,0x70,0xd2,0x89,0x74,0x0a,0x6b,0xfb,0x89,0x45,0xa5,0x37,0x77,0x04,0x9b, - 0xb3,0x32,0x0a,0x5f,0x09,0x47,0x96,0x87,0x6f,0x77,0xba,0x99,0xe8,0x91,0x44,0x09,0x63,0xfe,0x5d,0x6a, - 0xfc,0x6c,0x40,0xd3,0x05,0x97,0x9e,0x28,0x81,0x41,0xc2,0xb8,0x0c,0xbb,0xb3,0xcb,0x46,0x0a,0x6c,0xdf, - 0xd6,0x0e,0xab,0xc8,0xe2,0x72,0x57,0x27,0x1e,0xa7,0xbb,0x29,0x38,0xf9,0xff,0x77,0x0a,0xe4,0xe8,0xdd, - 0x9c,0x05,0x97,0xae,0xc2,0x54,0xc1,0x0d,0x3e,0xbe,0xfd,0xe6,0x7c,0xc8,0xbc,0x79,0x19,0xd4,0x5f,0x9a, - 0x3b,0xda,0x2f,0x6e,0xce,0xa0,0xdf,0xf1,0x53,0x59,0x27,0x12,0x4a,0xd3,0xa2,0xf3,0x5a,0x61,0xa0,0x1c, - 0x23,0xca,0x4e,0xcb,0xe4,0x8e,0x09,0x2e,0x93,0xf4,0xee,0x6e,0x06,0x13,0x7e,0x5d,0xf8,0x43,0x19,0x74, - 0x92,0x18,0xf9,0x07,0xf6,0xd1,0x49,0xd7,0x70,0x3a,0x38,0xf8,0x2e,0xf8,0xe0,0x33,0x7a,0x29,0xc1,0xb5, - 0xb7,0x6b,0x77,0xcd,0x10,0x1b,0xfb,0x4d,0xa1,0x26,0xbd,0xa2,0x25,0x45,0x59,0xe3,0xde,0x18,0x81,0x72, - 0x52,0x57,0xbc,0xce,0xaa,0x35,0x9a,0xd1,0xfe,0x91,0x60,0xc5,0x23,0x44,0xba,0xd7,0xe2,0x92,0x43,0xd3, - 0xb3,0xc7,0xaf,0x91,0xe2,0x9f,0xf7,0x55,0x2f,0x7d,0xaf,0xad,0x4c,0xd6,0x43,0xa6,0x63,0xfb,0xd9,0x42, - 0xdd,0x46,0x6a,0xae,0xf3,0x30,0x93,0x5f,0x4d,0x6a,0x58,0x27,0x27,0x70,0x9d,0xfc,0xd4,0xaf,0x53,0xb2, - 0x4d,0x9d,0x1c,0x27,0xac,0xc8,0x70,0x57,0xcf,0xf7,0xea,0x53,0x91,0x45,0x5e,0xa7,0x1c,0xa9,0x77,0xf4, - 0x2e,0x7e,0x00,0xfc,0xfa,0xb8,0x97,0xfd,0xb0,0xf3,0xae,0x61,0x71,0xf5,0xbe,0xfb,0xc5,0xeb,0xf0,0x15, - 0x05,0xc6,0xf7,0x20,0xbc,0x73,0x3a,0x36,0x73,0x29,0x10,0x3c,0xdc,0x82,0x6a,0x02,0x0b,0x71,0x57,0xe0, - 0x9a,0x4f,0xe3,0x5e,0xb1,0x18,0x3d,0x92,0x73,0xfa,0x7d,0xaf,0x5f,0xd7,0xbd,0xd4,0xa7,0x25,0x02,0xb7, - 0x6c,0x36,0x1c,0xf6,0xee,0xee,0x76,0xbb,0xa5,0xe2,0xf7,0xae,0xd9,0x87,0xdd,0xb1,0x5e,0x77,0x13,0xb9, - 0x51,0x11,0x4e,0x3e,0xa1,0x39,0x9e,0x98,0x5a,0xe1,0xe3,0x46,0x84,0x90,0x2b,0xf6,0x0c,0x2e,0x18,0x9f, - 0xcd,0x1c,0x41,0x68,0x1e,0x4b,0x89,0x24,0xf5,0xd7,0xf1,0x0e,0xda,0x54,0xc7,0xa1,0x27,0xc3,0x53,0xde, - 0x24,0x4f,0x8a,0xf0,0xe2,0xde,0x27,0x05,0xa3,0x8d,0x40,0xf9,0x57,0x74,0xd9,0x9f,0x4d,0xc3,0x02,0x71, - 0x46,0xdf,0x48,0x66,0x97,0xff,0x32,0x08,0x45,0x0d,0xbc,0x19,0xbb,0x1b,0xd7,0xd5,0xb1,0x54,0x1c,0xaa, - 0x0c,0x0b,0x6b,0x57,0xbd,0x59,0xdb,0xce,0xce,0xf1,0x60,0x2b,0x30,0x70,0x3c,0x29,0x7a,0x77,0xa3,0xbd, - 0x2a,0xac,0x39,0x8e,0xd0,0x3a,0x6f,0x04,0xfd,0xb2,0xa0,0x99,0xcd,0x6e,0x61,0x17,0x6d,0x6e,0x20,0x26, - 0xc2,0xa3,0x66,0xb5,0x21,0xc7,0xff,0x61,0x82,0xc6,0x51,0x42,0xf6,0xea,0xa5,0x26,0xc3,0xa5,0x8c,0x9f, - 0x8a,0xc9,0xc3,0x22,0x7d,0x5d,0x10,0x49,0xb2,0xaf,0x96,0x9d,0x08,0x4d,0x83,0x62,0x9d,0x46,0xc1,0xc1, - 0x03,0xa1,0x99,0xe6,0x3d,0x2b,0x1d,0x27,0xd0,0x6a,0x77,0x76,0x76,0x77,0xa7,0xff,0x8d,0xbb,0xb0,0x97, - 0x58,0x9a,0xe1,0xcb,0x94,0xa7,0x0f,0x4c,0xbe,0xaa,0x76,0x0f,0x38,0xea,0x5a,0x5f,0x22,0x85,0xa6,0x18, - 0xe3,0xbc,0xc0,0xe9,0x7b,0x12,0xf3,0x34,0xc1,0xb9,0x68,0x95,0xcf,0xe7,0x49,0xac,0x56,0xf7,0x92,0xe0, - 0x40,0x7e,0x13,0x2e,0x29,0xa1,0x69,0x03,0x5d,0xd4,0xa5,0xc7,0xc6,0xfd,0x9d,0x89,0xa4,0x98,0x67,0x2c, - 0xae,0x0f,0x1f,0x17,0xbb,0xd1,0x13,0x5c,0x02,0x1d,0x1d,0x31,0x76,0x77,0x91,0xc6,0xe1,0x0f,0x57,0xb9, - 0x12,0xcb,0x5a,0xa0,0x7d,0xa0,0x50,0x9e,0x3d,0x2f,0xa0,0xf3,0x4e,0x88,0xbc,0xa3,0xe2,0xef,0x3f,0x57, - 0xe1,0xd4,0x95,0xf8,0x4c,0x85,0x4b,0x54,0xc8,0xb1,0x48,0x8c,0x39,0x88,0xf3,0xc8,0x93,0x85,0xda,0x7f, - 0x20,0xc4,0xd1,0xa7,0x82,0x0a,0xe4,0x54,0xa0,0x72,0x3e,0x95,0x28,0xf1,0x0e,0x25,0x96,0x5c,0xe2,0x1d, - 0x4a,0x2c,0xa9,0xc4,0xd4,0x95,0x38,0x45,0xf4,0xcf,0xfd,0x07,0xf1,0x3c,0x83,0xdb,0x1d,0xe2,0x95,0x10, - 0x15,0xb4,0xa4,0x43,0x69,0xf9,0x20,0x9f,0x7c,0x2a,0xd2,0x77,0x05,0xcb,0xca,0x93,0x49,0x29,0x8d,0xd9, - 0xba,0x53,0x5b,0x45,0xba,0xaf,0x6e,0x01,0x67,0x69,0xa9,0x0c,0x94,0xa5,0x73,0xe5,0x60,0x2c,0x3d,0x55, - 0xe7,0x79,0xf3,0xde,0x2e,0x51,0x2a,0xb5,0x10,0x59,0x6c,0x78,0x20,0x99,0x4e,0xcb,0xfb,0x44,0x47,0xe1, - 0xb9,0x46,0xa3,0x46,0xac,0x2c,0x1b,0xae,0x5a,0x9a,0xf3,0x86,0x2f,0x7c,0xac,0x1a,0x39,0x9b,0x27,0x03, - 0xed,0x28,0x42,0xa9,0x6e,0x5f,0x1b,0x1f,0x28,0x7c,0xde,0x02,0x05,0xec,0xd2,0x7f,0xbe,0xd3,0x65,0x1d, - 0xee,0xd0,0xb7,0x21,0x2b,0x79,0xa0,0xbf,0xfa,0x9b,0x91,0xf9,0x7a,0x59,0xff,0xde,0x41,0xe2,0xce,0x75, - 0xe2,0x8c,0x14,0xeb,0x24,0x02,0x2d,0xa0,0xe9,0xbf,0x51,0xff,0x80,0xe2,0x67,0xb3,0xab,0x63,0x39,0xbe, - 0x4e,0x12,0x09,0xc3,0x66,0xde,0x46,0x53,0xd0,0xd0,0x08,0x23,0xc2,0x17,0xca,0xb8,0xf4,0x38,0xb1,0x71, - 0x79,0xe9,0x9c,0x37,0x26,0xd9,0x1e,0x33,0x24,0xe6,0xaa,0x69,0x04,0x21,0xd8,0xe6,0xca,0xe5,0xbc,0x3d, - 0x31,0x41,0x9e,0xc0,0x4f,0xcc,0xf4,0x7b,0x04,0xaf,0xb8,0xf5,0x0c,0x61,0x8b,0x53,0x9d,0x4d,0xad,0x18, - 0x43,0x30,0x3b,0xe2,0x8e,0x69,0x36,0xf0,0x0c,0xcf,0x67,0x82,0x52,0x93,0x10,0x9c,0xa0,0x04,0x95,0x1c, - 0x11,0x51,0xe7,0xe6,0xab,0xb9,0x7b,0xb7,0x9f,0x9d,0xba,0x94,0xf0,0x3b,0xe8,0xca,0x24,0xe6,0xda,0x53, - 0x54,0x89,0xfb,0xcc,0xa5,0x72,0x75,0x8e,0xf2,0xa7,0xf4,0x24,0x19,0x57,0xae,0x57,0x76,0x62,0xd4,0xa5, - 0xfb,0xf6,0x21,0xd7,0xab,0xce,0x5c,0x13,0xea,0xc6,0x7e,0x6d,0xb2,0x8e,0x7d,0xff,0xdc,0xf7,0x27,0xe0, - 0xe9,0xcc,0x4e,0x53,0xd7,0xd9,0xf7,0x44,0xd4,0xd0,0x3f,0x13,0x87,0x60,0x7c,0xb1,0xb3,0x73,0xe1,0x98, - 0x8e,0xeb,0xec,0xc2,0x59,0xf0,0x5e,0x64,0x17,0x61,0xe8,0xf9,0x7b,0xd9,0xf6,0x75,0x10,0x8c,0x7c,0xb5, - 0xda,0xc6,0xa5,0xba,0x6f,0xab,0x0a,0x9c,0x10,0x81,0x31,0x2f,0xc9,0xbd,0xd5,0xea,0x0c,0x5b,0x99,0xd6, - 0xe0,0x4c,0x40,0xe0,0x53,0x76,0x8f,0x30,0xdb,0x64,0x99,0xe6,0xea,0x1d,0x1e,0x4f,0x27,0xa7,0xe9,0x54, - 0x3d,0xc6,0xe3,0x7c,0x32,0x4f,0x1b,0xf5,0x10,0x8f,0x97,0xc4,0x41,0xab,0xf7,0x78,0x1a,0x08,0x08,0x71, - 0x36,0x39,0x4b,0x17,0xea,0x35,0x72,0x6f,0x56,0xab,0x73,0xf5,0x04,0x4f,0xc7,0xab,0xd5,0x95,0x7a,0x9a, - 0xbd,0x8d,0x9f,0xc7,0x27,0xc9,0xe4,0x44,0xe6,0x2c,0x3d,0x49,0xd4,0xc7,0x8c,0x49,0xb8,0x82,0x49,0x9a, - 0x67,0xd9,0x77,0x45,0xfc,0x3e,0x51,0xaf,0x32,0x0f,0x23,0xd9,0xcb,0x10,0xf3,0x7e,0x24,0x70,0xa4,0x53, - 0xa9,0x56,0x8f,0x13,0xc5,0xbf,0xef,0x88,0xc6,0x7b,0xe5,0xc1,0x72,0x12,0x53,0x09,0xce,0xf8,0x94,0xa8, - 0x27,0x3b,0x3b,0x4f,0xd8,0x8a,0xf6,0xf5,0xce,0xce,0x6b,0x58,0x9a,0x05,0xb5,0xb2,0x6e,0x0d,0xc7,0xa1, - 0xf0,0xa7,0xe7,0xd5,0xf5,0x6a,0xd5,0xb3,0x90,0xf7,0xad,0x8a,0xe1,0x7b,0x1d,0xb8,0x55,0xc1,0x8c,0x8d, - 0x43,0xd6,0x41,0x46,0xc6,0x12,0x51,0xff,0x7c,0xc8,0x1a,0xb1,0xa3,0x31,0x47,0xa4,0x12,0x17,0x97,0x52, - 0x5c,0x5c,0x98,0xa1,0x76,0x9b,0xa6,0xff,0x1e,0x27,0xea,0xfd,0xce,0xce,0x7b,0xea,0xfb,0x2b,0x18,0xcd, - 0x3f,0xdc,0xd9,0xc1,0xbd,0xb1,0x0a,0x43,0xfe,0x68,0x46,0xf4,0x51,0x86,0xac,0x9e,0x76,0x48,0x04,0x3b, - 0xde,0x60,0x1e,0x88,0x04,0xf8,0x68,0xa7,0x89,0x9e,0x7f,0x2a,0xe2,0xa7,0xc9,0x24,0x38,0xcc,0x5e,0xa9, - 0xa7,0x49,0xfa,0x0a,0x25,0x2a,0x6a,0x2d,0x01,0x52,0x51,0xc1,0x5c,0x80,0x25,0xc2,0x05,0xb5,0x41,0x8f, - 0xa8,0xf1,0xd5,0x8a,0xea,0x7a,0x15,0x77,0xae,0x81,0x78,0xd4,0xa3,0x46,0x04,0x7f,0x94,0xe1,0x16,0x0f, - 0xde,0xba,0xf8,0xc3,0xa7,0x5b,0xfc,0x81,0xa3,0xcf,0x2a,0x03,0x7a,0xf8,0xe3,0x05,0x1b,0x42,0xcb,0x85, - 0x36,0x0e,0x5d,0xd8,0x33,0x46,0xae,0x8b,0xda,0xe6,0x86,0x2d,0xe2,0xb2,0x1a,0xad,0xda,0xe0,0x91,0xda, - 0xe2,0x11,0x84,0x33,0xb6,0xa4,0x39,0x4b,0x37,0x42,0x9a,0x9c,0xc5,0x1b,0x7d,0x4a,0x9c,0xf0,0x88,0xbd, - 0x14,0xf0,0x05,0xb2,0x08,0x8f,0x98,0x42,0x84,0x3f,0x6a,0xd9,0xd1,0x92,0x31,0x73,0xb5,0xbb,0xfd,0xbc, - 0xc8,0x70,0x39,0x21,0x9d,0xad,0x52,0xe2,0x1c,0xaf,0x76,0x7b,0x5f,0x85,0xd0,0x7f,0x09,0xe8,0x27,0x0a, - 0xe5,0x8c,0xb7,0xc9,0x79,0x32,0x39,0x97,0xaa,0xd2,0xf3,0x84,0x10,0x87,0x1f,0x59,0x77,0x47,0x94,0x01, - 0x54,0xf2,0xcd,0xcc,0xee,0x2d,0x00,0xce,0x78,0x30,0xfd,0x90,0x3d,0xb2,0x8e,0x4c,0x08,0xc4,0x2b,0xd9, - 0x5a,0xa5,0x6a,0x78,0x6b,0x95,0x74,0x96,0x53,0xbb,0xe1,0xd6,0xba,0xe2,0xad,0x55,0xe2,0xae,0x62,0x22, - 0xac,0x67,0x90,0xdf,0xa5,0x31,0x2e,0xa8,0x3a,0x45,0xac,0xee,0x92,0x41,0xc8,0x75,0xd2,0x6c,0xb0,0xc5, - 0x64,0x11,0x1f,0x27,0xe9,0x71,0x1c,0x1a,0x67,0x53,0xb7,0x6f,0x3a,0xb0,0xba,0xad,0x43,0xd8,0xeb,0x0e, - 0x29,0x1e,0xee,0x3c,0xc7,0xdd,0x1d,0x48,0x67,0x93,0x1c,0x3b,0x32,0x22,0x98,0x96,0xa0,0xd4,0x4a,0x19, - 0xde,0x47,0xd3,0xfb,0x8f,0x32,0xbc,0xcd,0x6d,0xc4,0xb9,0x37,0xfd,0x6d,0xc4,0x53,0x72,0x29,0xdb,0xe8, - 0xac,0xb3,0x8d,0x6e,0xd4,0x19,0x6f,0x23,0x5c,0x90,0x72,0x63,0xb6,0xd1,0x9c,0x50,0x25,0x25,0xdc,0x50, - 0x93,0xab,0x15,0x7d,0x75,0xd3,0x95,0x3c,0xfc,0x14,0x9c,0xd8,0x91,0xa8,0x25,0x3a,0x01,0xb0,0xb6,0x8b, - 0xe6,0x55,0xfe,0xaa,0x73,0x8b,0xcd,0x77,0x96,0x77,0x7e,0xe1,0x23,0x74,0x05,0x37,0x3b,0x9c,0x96,0x8d, - 0x25,0x2c,0xde,0xc0,0x96,0x9e,0x8a,0x77,0xe5,0xac,0x08,0x70,0x72,0xb8,0x7f,0x94,0xb6,0x49,0x7a,0xf0, - 0x00,0x44,0xbb,0x15,0x30,0xb8,0xb8,0x16,0x81,0x41,0x88,0xd9,0xcf,0xdb,0x81,0xcb,0xaf,0xac,0xca,0x4b, - 0x08,0x71,0x99,0xa6,0xfd,0xb9,0xd8,0x88,0x3f,0x56,0xab,0x96,0xe0,0x17,0x97,0xcd,0x66,0x6c,0xcf,0xb1, - 0x9c,0x13,0x27,0x70,0x83,0x68,0x57,0xb4,0x36,0xaf,0x4d,0x94,0x28,0xb1,0xbd,0x9c,0xba,0x70,0xe2,0xf0, - 0x52,0x43,0xfa,0xe5,0xe1,0xb4,0x3e,0xac,0x8f,0x8e,0xf8,0xbe,0xcb,0xee,0xd5,0x91,0xbb,0xbb,0x6d,0xf2, - 0x86,0xe9,0x1e,0x53,0x86,0xf0,0x89,0x2d,0x2e,0x8c,0x4b,0x98,0xe7,0x29,0xea,0x40,0x58,0x7f,0x13,0x40, - 0x09,0x44,0x4e,0x6f,0x98,0x0e,0xb9,0xe9,0xfa,0xdf,0x2a,0xdd,0x81,0xcf,0x8e,0x8d,0x9d,0xd3,0xc8,0x12, - 0x6e,0x63,0x97,0xc0,0x4a,0x14,0xfd,0xd5,0x61,0x7e,0x94,0x5d,0xa2,0x4e,0x58,0x0b,0x86,0x87,0x6b,0xb6, - 0x5d,0xa8,0xed,0xae,0x00,0x3e,0xb8,0x26,0xc7,0x09,0x6a,0x61,0x3c,0x6e,0x6d,0x83,0x38,0xc6,0xc7,0x86, - 0xa9,0x3b,0xa4,0x94,0x2e,0xec,0x9e,0xf9,0x24,0x2b,0x46,0xf0,0xc8,0xe1,0x9e,0xe0,0x05,0x61,0xc2,0x50, - 0x10,0xbe,0xab,0x07,0xb8,0x45,0x7c,0xa8,0x22,0x8b,0x29,0x17,0xbc,0xba,0x6a,0x2e,0x97,0x2f,0xc1,0xd2, - 0x9f,0x0e,0x1a,0x1e,0xd0,0x66,0x77,0x1d,0x29,0xa6,0x58,0xd8,0x39,0x24,0x63,0x35,0x3d,0x8a,0x21,0x09, - 0xbd,0x53,0xd4,0xea,0x7d,0x29,0xd1,0xdd,0x00,0xad,0x4b,0x13,0x12,0x63,0xfe,0x72,0x64,0xbd,0x4b,0xfd, - 0xd2,0x17,0x89,0x4f,0x3d,0x2c,0x8e,0xe2,0xa6,0x86,0xbd,0x90,0x31,0xaf,0xac,0xac,0xed,0x56,0x38,0x16, - 0x77,0xff,0x79,0xa2,0xb6,0xf7,0xd7,0xfe,0xcd,0xea,0x39,0x8d,0x7f,0xc1,0x94,0x85,0xf5,0x26,0xd0,0xed, - 0x52,0x5c,0x59,0x08,0x2e,0x96,0xc9,0x44,0x56,0x19,0x70,0xdb,0x4c,0x6e,0x36,0x9c,0xd0,0x91,0x4c,0x7c, - 0x47,0xda,0xcb,0x89,0x97,0xe0,0x65,0x21,0xda,0x52,0xe7,0xd4,0xe4,0x14,0x33,0xfc,0x86,0xef,0x4e,0xba, - 0x12,0x8e,0x3a,0x15,0x7f,0x50,0xe3,0xcf,0x0a,0x09,0x22,0x1a,0xb9,0xe9,0xbb,0x98,0xb3,0xdf,0x34,0x9b, - 0x13,0x06,0xb9,0xde,0x7b,0x5d,0xb2,0x3b,0x6b,0x17,0xe0,0x15,0x59,0xd9,0x5b,0xeb,0x2a,0x3b,0x32,0xe8, - 0x50,0x00,0x52,0xa2,0x7f,0x61,0xde,0xac,0x59,0x85,0x1a,0x2c,0x36,0x98,0xea,0x42,0xe4,0xca,0xcc,0x0c, - 0xdc,0xe4,0xa4,0xe7,0x0a,0xfa,0x11,0x3a,0x21,0x04,0xbc,0x38,0x92,0x60,0xca,0x4e,0xd7,0x41,0x04,0xbf, - 0xd0,0x87,0xd5,0x6a,0xa5,0xde,0x48,0x68,0x74,0x38,0x87,0x4d,0x3a,0x1b,0xb5,0x4c,0xc4,0x14,0xe7,0xa6, - 0xeb,0x56,0x6f,0x3c,0x98,0x6e,0x3a,0xda,0xc9,0x9e,0xd4,0xe2,0x3c,0x50,0x79,0xf5,0x11,0x61,0x18,0xec, - 0x9d,0x70,0x51,0x1b,0xa2,0xa2,0xe3,0xb8,0x85,0xbf,0x97,0x9d,0x5d,0x73,0x49,0x8b,0x6a,0xf9,0x0a,0x6e, - 0x28,0x9e,0xde,0xdb,0x35,0x40,0xb7,0x3a,0x1d,0xe0,0x0f,0x36,0x56,0xcc,0x28,0xd1,0xcd,0x47,0x61,0x17, - 0x4f,0xac,0xf9,0xd0,0x78,0x60,0x3e,0xc7,0x89,0x1e,0x9c,0x66,0x73,0xaf,0x97,0x43,0xf5,0xfd,0x6b,0xcb, - 0xae,0xfa,0x96,0x89,0x50,0x35,0x5d,0x9a,0x4e,0xf9,0x81,0x96,0x89,0x4d,0x3b,0x2c,0x79,0x4f,0x31,0x4e, - 0x74,0x96,0x29,0x06,0xb7,0xc4,0xec,0x7b,0xc3,0xc5,0xd8,0xa1,0xc6,0x78,0x54,0x72,0x71,0x85,0xbc,0xc2, - 0x02,0xd6,0xd0,0xfa,0x7a,0xdd,0xab,0x20,0x2d,0x39,0xa6,0xd8,0xff,0xff,0xf9,0x2c,0x49,0x6e,0x46,0x9d, - 0x90,0x00,0x66,0xfe,0x4c,0x74,0xfd,0xad,0xc0,0xb4,0x72,0x5c,0x8e,0x39,0xa4,0x90,0xf7,0xe9,0x05,0x1a, - 0x69,0x83,0x80,0xc8,0xa3,0xe3,0xc6,0xd4,0x8a,0x45,0x19,0xae,0x56,0x79,0x7f,0x1f,0x60,0x7f,0xe2,0xa6, - 0xd0,0x6d,0x11,0x1c,0x4b,0xb5,0xf6,0xf5,0xb4,0x7c,0x6c,0x13,0xfe,0xe7,0xcd,0x04,0xc2,0xee,0xf0,0x00, - 0x31,0x0b,0x5d,0x3f,0xc8,0x0a,0x03,0x66,0xb0,0x03,0x55,0x95,0x89,0x76,0x2e,0x37,0x67,0x78,0x67,0xca, - 0x8e,0xcf,0x4d,0xe7,0xb0,0x30,0xf7,0x72,0xa0,0x63,0xb5,0x3f,0x02,0xd0,0x4b,0xe3,0xad,0x8d,0x51,0xf1, - 0x8e,0xe3,0x33,0xf4,0xd2,0x26,0x87,0x67,0xa9,0x4b,0xa4,0x53,0x13,0x87,0xa1,0x5b,0x1d,0x8b,0x0e,0xa5, - 0x0d,0xeb,0x1f,0xdb,0x33,0x51,0x61,0xe8,0x39,0x8b,0x7d,0x3a,0xc7,0x5c,0x74,0x7d,0xbf,0xb0,0x1b,0x8f, - 0x07,0xdc,0x8a,0x23,0xba,0xbb,0x6c,0x84,0xaf,0x87,0x7b,0xc3,0xbe,0xf2,0x0c,0x5c,0x00,0xde,0x49,0x5c, - 0x81,0xc5,0x39,0x63,0x2e,0x8d,0xb8,0x11,0x3e,0x62,0x43,0xac,0x56,0x39,0x2b,0xa1,0x37,0x1c,0xd9,0xcd, - 0x45,0x02,0xf0,0xc2,0xb2,0x4b,0x73,0x92,0x9b,0x3e,0xee,0x8a,0xfd,0x1f,0x53,0x42,0xad,0xbf,0x2e,0x6d, - 0x37,0xab,0xd3,0xb6,0xaf,0x49,0x74,0x36,0x5d,0x44,0xfd,0xed,0x67,0xd9,0xde,0x5e,0xe9,0x3f,0xe0,0x13, - 0xd5,0x5b,0x7e,0xf8,0x8c,0xac,0x56,0x08,0x5a,0xc5,0x5d,0x55,0x12,0x50,0x60,0xe8,0xe0,0x16,0x2f,0x33, - 0xa7,0x6d,0x7c,0x63,0xc4,0x22,0xf4,0x58,0xf1,0x1d,0x77,0xca,0xee,0xcf,0x4e,0xef,0xcd,0xfe,0x94,0x34, - 0xec,0x4f,0x36,0xa5,0xf6,0x61,0x0b,0xfc,0xba,0x8b,0xbe,0x06,0xc5,0x92,0x89,0x8c,0x27,0xc5,0xdd,0xd7, - 0xa2,0xbf,0x37,0xdd,0xf3,0xf3,0x78,0x6f,0xe0,0x58,0xa7,0xe5,0x29,0x1e,0xd4,0xac,0x67,0x0f,0x6e,0xab, - 0x11,0x90,0x00,0x45,0xc0,0xe1,0x1b,0x2a,0x47,0x3a,0x14,0xc1,0xb2,0x7c,0x0a,0x51,0x2c,0x3b,0xf6,0x62, - 0x61,0x8c,0x4b,0x5d,0x62,0x9f,0xfe,0x4f,0x77,0xef,0xa2,0xdd,0xb6,0x91,0xf4,0x0f,0xbe,0x0a,0x85,0xf1, - 0x4a,0x40,0x08,0x51,0x92,0x9d,0x64,0x12,0xd0,0x30,0xc7,0xb1,0xe3,0xdc,0x13,0x4f,0xec,0xc4,0x33,0x43, - 0x29,0xfa,0x20,0x12,0x94,0x60,0x51,0x00,0x07,0x00,0x25,0x2b,0x22,0x1f,0x68,0x5f,0x63,0x9f,0x6c,0xeb, - 0x57,0xd5,0x37,0x80,0xa0,0xec,0x64,0xe6,0xfb,0x9f,0x3d,0x7b,0x7c,0x2c,0x02,0x7d,0x43,0x5f,0xaa,0xab, - 0xab,0xaa,0xeb,0xd2,0x75,0x96,0xd4,0xcd,0x3d,0xde,0x81,0x86,0x81,0x84,0xed,0x58,0x15,0x9e,0x61,0xd4, - 0x2c,0xd4,0xe7,0x2b,0x76,0xd0,0x07,0x95,0x6b,0x71,0x8f,0x16,0xba,0x96,0x79,0xee,0x45,0x35,0x71,0x00, - 0xae,0x7b,0x9e,0x67,0x2d,0x42,0x4c,0x44,0x4b,0xc9,0xb9,0xd1,0x17,0x63,0x99,0x92,0x86,0x6c,0xbe,0x86, - 0x87,0x45,0x45,0xb2,0xbb,0x4b,0x63,0x80,0x1d,0x82,0x9c,0x7f,0x44,0x2e,0x39,0xbe,0x29,0x64,0x0b,0x36, - 0x3c,0x36,0x58,0x1f,0xba,0x1d,0x2e,0x20,0xa0,0x0d,0xc5,0x13,0x9c,0xc8,0x36,0xc8,0xe2,0x64,0x0b,0x35, - 0xc7,0xa1,0x8b,0x60,0x5f,0x18,0x77,0xb8,0x83,0x0e,0x1c,0x82,0x0e,0xeb,0x10,0xea,0x66,0x8b,0x40,0x6d, - 0x96,0x8a,0x2f,0x32,0x53,0x84,0xcb,0x7e,0x66,0x34,0xc3,0xfc,0x40,0x53,0x6c,0x96,0x1e,0x33,0xea,0x75, - 0xb6,0x07,0x56,0x3d,0x09,0xda,0xf3,0x8c,0x18,0x6d,0xa2,0x66,0x3f,0xd6,0x8d,0x2b,0x48,0xd8,0xb0,0x31, - 0x25,0x65,0xf5,0x84,0x20,0x08,0x1e,0xce,0x1f,0x9b,0x70,0x00,0x73,0x1d,0x05,0x7e,0xb9,0x5a,0xed,0x3c, - 0x23,0x9a,0xa9,0x1a,0xcf,0x4f,0x14,0x75,0x06,0x6b,0x3d,0x45,0xce,0x2d,0xe3,0x65,0xc3,0x23,0x0d,0x6a, - 0x4c,0x56,0xab,0x65,0xf3,0xc3,0x3d,0xc4,0x57,0xad,0x54,0x74,0x1a,0xcc,0xa6,0x76,0x93,0xb0,0x73,0x64, - 0xae,0xe8,0xa7,0xa2,0xa7,0x87,0x06,0x5e,0xf9,0x53,0x50,0x9b,0xe8,0xe4,0xb5,0xe8,0xb9,0xc8,0xc7,0x76, - 0x66,0x58,0xdd,0x89,0x98,0x59,0xa6,0xb5,0xaf,0x9e,0xb5,0x1d,0x9b,0xec,0x39,0x51,0x04,0xe3,0x43,0x41, - 0x61,0x1f,0xf5,0xae,0xe5,0xb9,0xd6,0x1d,0xf6,0x26,0x11,0xad,0x25,0x9f,0x16,0xe8,0x08,0xe5,0x27,0x70, - 0x49,0xa1,0xf9,0xb9,0x02,0xbd,0x22,0xda,0x03,0xa6,0x20,0xe6,0x3a,0xbc,0x62,0x86,0xc0,0xc8,0x39,0x58, - 0xba,0x51,0xa9,0x2d,0x49,0x8d,0xed,0xb8,0xe7,0x85,0x7b,0xd4,0xe8,0xa0,0xd9,0xa0,0xac,0x6a,0xc3,0xb0, - 0x30,0xce,0xad,0x39,0x82,0x2b,0x18,0x16,0x1d,0x56,0x54,0x69,0x78,0x28,0xa9,0x0d,0x6f,0xe5,0x4e,0xb7, - 0x25,0x41,0x1b,0xc4,0x09,0xf1,0x54,0xc5,0xfc,0x3a,0x9d,0x06,0xa3,0x67,0xfa,0xf8,0x93,0x9b,0xe0,0x6e, - 0x88,0xd7,0x4a,0x45,0xb2,0x75,0x5e,0xf1,0x1e,0x0d,0x20,0xde,0x4a,0xdd,0xd7,0x5a,0xf9,0x87,0x49,0x95, - 0x7f,0x18,0xb5,0xd1,0xe6,0x04,0xf9,0x53,0xf6,0xa9,0x82,0xd7,0x9f,0x04,0xfa,0xbb,0x5c,0xa4,0x77,0x91, - 0x52,0x76,0x42,0x59,0x40,0xcc,0x87,0xe9,0x4b,0x7f,0xc2,0xb3,0x52,0xc5,0x13,0xbb,0xf7,0xaa,0x18,0xfe, - 0x8c,0x53,0x76,0x7c,0x01,0x83,0x7e,0x41,0xbc,0x62,0xc1,0xe3,0x30,0x0b,0xf3,0x16,0x8a,0x90,0xb6,0xce, - 0x78,0x81,0x01,0x77,0x15,0xc1,0x7c,0x45,0x48,0x5d,0xf4,0x2f,0x2c,0x5a,0xab,0x02,0x9d,0x36,0xae,0x0c, - 0x52,0xdf,0xe8,0x80,0x94,0x30,0x9f,0x5f,0x7f,0xef,0x2b,0x40,0x1b,0x81,0x39,0x41,0xa9,0x79,0x30,0x5a, - 0xd2,0xfa,0xce,0x37,0xf9,0x35,0x18,0xc6,0x19,0xe5,0x14,0x18,0x86,0xa9,0x5b,0xb1,0x43,0xee,0xb3,0x0e, - 0xf5,0x0e,0x79,0x37,0x5c,0xbc,0x4f,0xe9,0x87,0x76,0xdf,0xc2,0xa8,0x5c,0x51,0xd6,0x45,0x9c,0x23,0xeb, - 0x9a,0x7e,0x16,0x27,0xc4,0xcd,0xef,0x64,0xc3,0xc9,0x63,0x7c,0x6a,0xf9,0x38,0x5e,0x0c,0xa1,0xaa,0x12, - 0x8c,0x50,0xbd,0xdf,0x9f,0x9c,0x44,0xdf,0xd3,0x8e,0x1a,0xa1,0x95,0xfd,0xfd,0xf9,0x49,0x44,0x70,0x39, - 0x0b,0x2f,0xe8,0x38,0x3f,0xc7,0x2f,0x75,0x86,0xd8,0xaa,0x20,0xd4,0x85,0xb9,0xe5,0x7e,0x7f,0x79,0x12, - 0xa0,0xe0,0x34,0xbc,0xe6,0x82,0xf4,0xcb,0x05,0x17,0x41,0xa8,0xdb,0xe1,0x6f,0xef,0xef,0x2f,0xa4,0xe0, - 0x4c,0x15,0x9c,0xd9,0x82,0x57,0x1d,0x0c,0xc1,0x4c,0x11,0xdf,0x0e,0xd2,0xf0,0xa7,0x42,0x48,0xd8,0x1e, - 0xd8,0x86,0x7d,0xee,0xc2,0x85,0xea,0x82,0xe9,0x6b,0x57,0xcb,0x53,0x51,0xcd,0x96,0x93,0x5e,0xf7,0x91, - 0x5a,0xf8,0x5e,0x24,0x00,0x45,0x3c,0x87,0x12,0xff,0x04,0xda,0xa0,0xe1,0xf7,0x7e,0x42,0x5b,0xf6,0x82, - 0x9d,0xed,0x8c,0x8a,0x31,0x3f,0x9c,0x44,0x0f,0xfc,0x8b,0x50,0x95,0x18,0x9d,0xfa,0xf8,0x98,0xee,0x2f, - 0x13,0x7e,0x4b,0x1e,0x27,0x1d,0x3b,0xe3,0xe4,0x44,0x75,0xa9,0xb2,0x5d,0x42,0xaa,0x52,0xac,0xee,0xec, - 0x5e,0xe5,0x74,0x0f,0x12,0xb6,0x8e,0xe6,0x03,0x3b,0xf5,0x84,0x8a,0x27,0x23,0x10,0xa6,0xdf,0x13,0xfd, - 0xb9,0xe8,0x1f,0x9d,0x10,0xd9,0x40,0x1c,0x4e,0x24,0x2f,0xc2,0xf1,0x84,0xcb,0x10,0x76,0xb6,0xd1,0x02, - 0x57,0x71,0x97,0x6a,0x6c,0x6b,0xdc,0xb5,0x85,0x73,0xca,0x2d,0x82,0x88,0x21,0x90,0x85,0x21,0x86,0x11, - 0x6a,0xfa,0x02,0xa3,0xc2,0xd0,0x04,0xbc,0xa1,0x5f,0x66,0xa0,0xe6,0x21,0x01,0xa0,0x85,0x31,0x88,0x0c, - 0x99,0xd1,0xbe,0xa4,0x03,0x80,0xc0,0xd3,0xe4,0x04,0xd1,0x7b,0x1b,0x8d,0x24,0xdf,0x41,0xc7,0x1d,0xe5, - 0xd4,0x86,0x09,0xb7,0x6f,0x72,0xed,0xde,0xc6,0x6e,0x33,0x25,0x28,0x50,0x3d,0xe6,0x3f,0xa5,0x75,0x0d, - 0x51,0x31,0x56,0x95,0x60,0x24,0x1a,0x21,0x43,0xdc,0x4f,0x27,0xab,0xd5,0x78,0x79,0x2e,0xba,0xf5,0x6d, - 0x45,0x98,0xe7,0x20,0xf3,0x70,0x8e,0x0b,0x91,0x24,0x24,0x48,0x62,0x0e,0xef,0x77,0xc0,0xfa,0x7c,0xce, - 0xa7,0xc3,0x8c,0x48,0x8b,0x54,0x7b,0xe0,0xba,0xd5,0x2a,0xc3,0x88,0xe9,0x59,0x17,0xdf,0x17,0x37,0x5a, - 0x99,0x50,0x3c,0x73,0x29,0xdd,0x08,0x58,0x7d,0xc8,0xe9,0x2b,0x48,0x78,0xd9,0x14,0x76,0x4d,0xf8,0xdc, - 0xe0,0xa3,0x25,0x9c,0x18,0xc9,0xac,0x2c,0xfb,0xb2,0xb5,0x63,0x20,0xec,0x05,0x9a,0xd7,0x34,0x9c,0x46, - 0x25,0x73,0x13,0xa4,0x97,0x36,0x13,0xf0,0xdc,0x70,0x3e,0xb4,0x88,0x06,0xbe,0xf3,0xa7,0x5d,0x9c,0xc6, - 0xd4,0xe1,0x34,0xa6,0x27,0xbe,0x78,0xe1,0x99,0xf3,0x69,0xa3,0x0c,0x1e,0x6c,0x23,0xf0,0x19,0xb0,0xe8, - 0x60,0x54,0x17,0x96,0x51,0x5d,0x30,0xa3,0x3a,0x17,0x84,0x7c,0x11,0xcf,0x37,0xe8,0x43,0x34,0x7f,0x31, - 0xe0,0xd8,0x10,0x53,0xd3,0xf7,0xeb,0xf8,0x68,0x78,0xfd,0xf8,0x02,0x02,0x52,0xdd,0xea,0x35,0x11,0x21, - 0x9c,0x30,0xbe,0x3e,0xd1,0xd4,0x72,0x52,0xa2,0x7f,0x73,0x6a,0x55,0x06,0xba,0x56,0x00,0x0a,0xef,0x44, - 0x87,0xe1,0xa1,0x82,0x4c,0xe2,0x56,0x76,0x77,0xc1,0x9d,0x99,0x20,0xe4,0xb2,0x7a,0x45,0x20,0x94,0xe1, - 0x5a,0x44,0x19,0x52,0xc2,0xbf,0x53,0x72,0xcf,0x28,0x2b,0x43,0x25,0x0e,0x8d,0xc6,0x67,0x70,0xc4,0x10, - 0x66,0x59,0x98,0x64,0xe1,0x79,0x16,0xbe,0x19,0x69,0x85,0xbd,0x37,0x94,0xa4,0xe4,0x5c,0x78,0x16,0x28, - 0x6a,0xf9,0xb6,0x63,0x81,0xac,0x23,0x26,0x1f,0xa9,0x9b,0x17,0xa6,0xfa,0xd7,0xd1,0xdd,0xda,0xd8,0x73, - 0x5c,0x11,0x3f,0x19,0x0c,0xbf,0xdd,0xdd,0xb5,0x0a,0xf7,0x1b,0x5e,0x44,0xc4,0xf1,0x23,0x35,0xae,0xcc, - 0x4a,0x36,0x6f,0xbb,0xba,0xb5,0xf5,0x87,0x0c,0xfa,0xd7,0x6c,0xb1,0xb7,0xbb,0xfb,0x4f,0x74,0x41,0x19, - 0xa4,0x04,0xca,0xe0,0xf5,0xf7,0x2c,0xbe,0xd3,0xce,0xa7,0xa2,0x4d,0x7a,0x48,0xbb,0x9c,0xd4,0x97,0x62, - 0x23,0x61,0xfa,0x76,0x77,0x77,0x4a,0xb9,0x0c,0xbb,0x56,0x5e,0x83,0x46,0xf7,0x79,0xa3,0xfa,0x3d,0xdb, - 0xf0,0xb9,0xa5,0x5d,0xc0,0x04,0xd1,0xbf,0x95,0x95,0x8f,0x35,0x50,0x49,0x6d,0xb3,0xb0,0x7b,0xb9,0x4a, - 0x16,0x12,0xd0,0xc8,0x84,0x19,0x08,0xbf,0x62,0x4f,0x5d,0x9e,0xf6,0xdc,0x6a,0xba,0xc7,0xee,0xdd,0xd2, - 0x81,0x04,0x56,0xe0,0x2d,0xee,0xd8,0x18,0x20,0x9e,0x80,0x7e,0x0e,0x9d,0xe7,0xc1,0x3c,0xf9,0xfd,0x56, - 0xcc,0xce,0x37,0x26,0x5e,0xd9,0x50,0xf0,0x57,0x61,0xa9,0xe9,0x85,0xff,0xc8,0xd0,0xc1,0x7b,0x4b,0xb2, - 0xb6,0xd6,0xbf,0xb6,0x95,0x53,0x2b,0x88,0xfc,0x6f,0xb9,0x8b,0xb2,0x3c,0xc0,0x3b,0xf0,0x74,0xd8,0x9e, - 0xa8,0x0d,0xcf,0x95,0x50,0xc7,0x6b,0xad,0x4a,0x70,0xb7,0x31,0x89,0x43,0xed,0xe7,0xd0,0x4c,0xa5,0x0a, - 0x36,0xff,0xde,0x89,0x1d,0x66,0x83,0xaa,0xb8,0x4a,0x3b,0x75,0x1b,0x76,0xc0,0x49,0x96,0xa2,0xd6,0xc0, - 0x7d,0xd7,0x3e,0x43,0x89,0x77,0x67,0xe3,0x8a,0x76,0x55,0xa3,0xec,0xf0,0x2d,0x3a,0x98,0x89,0x42,0xa5, - 0x31,0x14,0x31,0x9e,0xdc,0x76,0x77,0xbf,0x85,0xf2,0xb1,0xf2,0xe6,0x86,0xa5,0x13,0x58,0x55,0x93,0x05, - 0x9c,0x6f,0x39,0x43,0x3d,0xd6,0xe0,0xee,0x3b,0xfd,0x14,0x1a,0xcf,0x4e,0x9d,0x0a,0x40,0xa6,0xdc,0x9a, - 0xf0,0x83,0x63,0xab,0x68,0x1a,0xd2,0x5e,0x1f,0x54,0x07,0x62,0x3b,0x30,0x51,0x68,0x22,0x72,0xb6,0x1d, - 0x73,0xb5,0x49,0xbd,0x11,0xdd,0x36,0x71,0xc2,0x60,0xe8,0x18,0x85,0x8f,0x27,0xc3,0x4a,0xac,0x9a,0x13, - 0x9b,0x4b,0x24,0x25,0x8d,0xb1,0x88,0xf7,0x8f,0x1e,0xbf,0xf2,0x4b,0x9a,0x72,0xf0,0x43,0x21,0xa1,0x09, - 0xe5,0x7c,0x1d,0x66,0x1a,0x30,0x75,0x32,0x09,0x71,0x61,0x15,0xfd,0xdf,0xf9,0x5c,0xde,0x09,0x6c,0x84, - 0xb3,0x05,0x0a,0x24,0xaa,0x30,0x1b,0xb3,0x52,0x13,0x95,0x98,0x19,0xbb,0xa9,0x71,0x05,0x5f,0x75,0x0c, - 0xe9,0xcd,0x74,0x3a,0xcf,0x5d,0x87,0xe4,0x4a,0xd9,0xd6,0x98,0x4a,0xc0,0x5b,0xfc,0x6d,0xc7,0xa2,0x32, - 0x34,0xd4,0x0d,0x6d,0xb7,0xaf,0xdc,0xeb,0x32,0x31,0x51,0xf2,0x32,0xf1,0x5e,0x21,0x6f,0x91,0x32,0x00, - 0xb2,0x55,0xfe,0x91,0xb9,0x4a,0x5d,0xd6,0x6a,0x09,0x7e,0x92,0x4c,0xa1,0x7f,0x6d,0x29,0xa4,0xfc,0x52, - 0xb6,0x6b,0x1e,0x85,0x80,0x1f,0x95,0x61,0x50,0x9e,0xd3,0xcf,0x7f,0x36,0xee,0xc1,0xdb,0xf6,0x05,0xd7, - 0x6c,0x5d,0x00,0xfe,0x59,0xfc,0x06,0x78,0xa2,0x88,0x97,0xd5,0x92,0x03,0x5e,0x5f,0xc8,0x80,0xc1,0x34, - 0xab,0x18,0xdd,0x49,0x86,0x6b,0x78,0xf8,0x77,0x67,0x26,0x76,0xb6,0xb8,0x18,0x15,0x1d,0xf4,0x8d,0x0b, - 0xf4,0x51,0x1a,0xa1,0xf6,0xf6,0x2b,0x1a,0xa6,0x22,0xd2,0x22,0xbe,0x63,0xcc,0x11,0xfd,0x9e,0x85,0x38, - 0x62,0x22,0x89,0xea,0xd1,0xc6,0x17,0x6d,0xd8,0xf6,0xf3,0x98,0x5a,0x27,0xca,0x4e,0x7d,0x7e,0x43,0xff, - 0x87,0xed,0xf4,0x4e,0x09,0x53,0x94,0xd9,0x39,0x82,0xbf,0x3d,0xa7,0x31,0xce,0x93,0xdb,0xd8,0xcb,0xa9, - 0x33,0xca,0x27,0x3f,0x5b,0x98,0x4c,0x25,0x03,0x6a,0xed,0xad,0xa4,0x61,0xb9,0xbb,0x9b,0x8d,0x7c,0x47, - 0x45,0x01,0x5c,0x33,0x2b,0x2f,0x39,0xdb,0xb2,0x55,0x29,0x2e,0xc4,0x3b,0x43,0x33,0xb1,0x1c,0x15,0x91, - 0x7c,0xb9,0xd3,0x8b,0xec,0xc6,0x08,0x87,0x3b,0xe5,0x4e,0xbc,0xe3,0xa2,0x16,0xff,0xbd,0x23,0xde,0xe8, - 0x69,0x39,0x7a,0x5f,0x5f,0xbb,0x66,0x88,0x90,0xdb,0x17,0xef,0xa9,0xa6,0x46,0xd2,0x39,0xce,0xae,0x26, - 0xd5,0xd0,0xe1,0x41,0x37,0xef,0x58,0x5d,0xe1,0x23,0xd5,0x96,0x7e,0x6f,0xff,0x80,0x46,0xc3,0x9a,0xc0, - 0x86,0xfd,0x9c,0xa8,0xd8,0x77,0xa2,0xcf,0x14,0x7d,0x51,0x14,0x44,0x70,0xe6,0xe1,0xa4,0xaa,0xcc,0x33, - 0xa0,0x4b,0x17,0x63,0x75,0x3c,0xf5,0xec,0xa8,0x5f,0xab,0x14,0x47,0x79,0xda,0x2d,0xa3,0x15,0xa7,0xdd, - 0x52,0xad,0xb4,0x0d,0xcd,0x6c,0xb7,0x6c,0x47,0xba,0xa3,0x1e,0xd6,0x4c,0xda,0x5a,0xb6,0xf5,0x41,0xad, - 0xcc,0x11,0x8d,0x45,0xf7,0x2e,0x54,0xe9,0xe2,0x0d,0xf2,0xc4,0x39,0x67,0xf2,0xc2,0x31,0x49,0xc3,0x36, - 0xdd,0xf0,0x94,0x68,0x3d,0x3c,0xd4,0x4d,0x1f,0x89,0x3a,0x0a,0xe1,0x88,0xda,0x78,0x53,0x3b,0xc6,0xa3, - 0x58,0x78,0x8b,0x23,0x4a,0xe7,0x0b,0xea,0x32,0x5e,0xdf,0x60,0x18,0xb1,0x18,0x1b,0x17,0xe5,0xe2,0x98, - 0xe7,0x39,0x24,0xd2,0x10,0xad,0xb2,0xa7,0x58,0x15,0xa2,0xca,0x44,0x95,0xd4,0x34,0x86,0xad,0xcb,0x66, - 0x29,0x19,0xd5,0x38,0x23,0x16,0xf8,0x24,0x86,0x67,0x0d,0x1b,0x79,0xc1,0x5e,0xbe,0x5b,0xa9,0xfd,0xc1, - 0xf1,0x74,0xdf,0x46,0x53,0x7c,0x70,0xa0,0x0c,0xd0,0x98,0xc6,0x30,0x46,0x54,0x7e,0x23,0xe0,0xe2,0x9d, - 0x44,0x59,0xdc,0xf4,0x23,0x69,0xbb,0xbc,0x16,0x84,0x55,0x14,0x5d,0x5e,0xe2,0x53,0xa1,0xdb,0xbe,0x16, - 0x9f,0xdd,0x49,0x57,0x19,0x0f,0xdb,0x52,0x10,0x4f,0x2e,0xfe,0xac,0x35,0x0c,0x37,0x54,0xe6,0x55,0x47, - 0x8a,0x46,0x0c,0xc8,0x76,0x74,0xc2,0xc6,0x75,0x0d,0x5b,0xab,0x67,0x5d,0x91,0x0a,0x75,0x64,0x41,0x48, - 0x58,0x95,0x63,0xa5,0xa2,0x20,0x04,0xe2,0x3a,0x79,0x55,0xb1,0x08,0xb1,0x4b,0xe0,0xca,0x64,0x7c,0xc8, - 0x42,0xc2,0xb6,0xa7,0xbc,0x21,0x24,0x5d,0x5a,0x03,0x90,0x65,0xbc,0x6d,0x75,0x29,0x23,0x95,0xf4,0x9d, - 0x08,0x46,0x66,0xba,0x13,0xa5,0x41,0x4d,0x90,0x94,0x28,0xc1,0xa2,0xcd,0x82,0xf1,0x0b,0x07,0x1f,0xc3, - 0x76,0x21,0x28,0x36,0xc2,0x7f,0x2c,0x69,0x22,0x44,0xe0,0x04,0xbe,0x0c,0xec,0xe7,0xf6,0xbd,0xbe,0x54, - 0x59,0x66,0xd3,0xbe,0xb7,0xef,0x0d,0x39,0x00,0xa2,0x8a,0x7e,0xc8,0xcf,0xa3,0xca,0x0a,0xcc,0x47,0x93, - 0x3e,0x28,0x5b,0x3c,0x7a,0xd1,0xa4,0x5f,0x71,0x00,0xc4,0xd7,0x7e,0x25,0x82,0x13,0x68,0xfb,0xab,0x5b, - 0x53,0x49,0x31,0xda,0xea,0x93,0x60,0xc4,0x29,0x5c,0x07,0xbf,0xfc,0x57,0x09,0xe8,0xa8,0x30,0xe6,0x80, - 0xb0,0x96,0x3c,0xb0,0x0e,0x90,0x33,0x23,0x31,0xed,0x0b,0x09,0x53,0x37,0x8f,0x9d,0xd0,0x86,0xc4,0xd1, - 0xd2,0x24,0x08,0x6f,0x5a,0xb5,0xfd,0x08,0xc3,0xa9,0x67,0x2b,0x49,0x68,0xd1,0x84,0x85,0x3f,0x55,0x03, - 0xbf,0x8b,0x0a,0x94,0xf5,0x22,0x58,0x85,0x74,0x44,0xcc,0x02,0x74,0x71,0x47,0x39,0xbc,0x26,0x4e,0x02, - 0x63,0xdd,0x51,0x7e,0x25,0xa1,0x0a,0x4b,0x20,0x3a,0x43,0x5b,0x3b,0xb3,0xae,0xd3,0xbc,0x2b,0x55,0x75, - 0xdc,0xb9,0x7f,0x10,0xc8,0x99,0xc6,0xb3,0x36,0x14,0x88,0x1d,0xfb,0x92,0x07,0xe7,0x11,0xf9,0xba,0x9f, - 0xb1,0x0f,0xcf,0xc2,0x8d,0xf0,0x67,0x96,0x19,0x47,0x14,0xf1,0x5b,0xd3,0xd0,0xb3,0xba,0x6c,0x0d,0x86, - 0xab,0x74,0x8a,0x1e,0x85,0x65,0x23,0x34,0xb2,0x0f,0x6d,0x45,0x0d,0x20,0x62,0x03,0xbd,0x5f,0x48,0x70, - 0x28,0x91,0x48,0xd3,0x38,0x2b,0x03,0x7e,0x62,0xd4,0xb7,0x08,0x2f,0x5c,0x7d,0xfd,0x05,0x74,0xed,0x33, - 0x28,0x52,0x78,0x56,0xb9,0xd6,0x0b,0x2f,0x82,0x50,0x12,0x9b,0x2a,0xb6,0x3a,0x63,0x0a,0xaf,0xe3,0x5a, - 0xb1,0xce,0x6b,0xf8,0x50,0x58,0xc4,0xe9,0xda,0x72,0xea,0x09,0xce,0xa9,0x49,0x81,0x29,0x01,0xb8,0x29, - 0x04,0xcd,0xea,0x3f,0x0e,0x26,0xc7,0x51,0xe6,0xdc,0x17,0x2d,0x0b,0xa1,0x10,0x99,0x2b,0xe5,0xb2,0x67, - 0xc0,0xd9,0xce,0xab,0xaf,0x94,0x22,0x8c,0x1a,0xa3,0xc9,0x37,0x6a,0x8d,0x8e,0xca,0x83,0x6a,0x4e,0xac, - 0x1f,0xd3,0x9b,0x97,0x45,0x25,0x52,0x1b,0xa8,0xf9,0x7f,0x51,0x2c,0xf9,0x92,0xec,0xd9,0x3c,0xa3,0xaa, - 0x3f,0x13,0xbc,0xb9,0x55,0x67,0xee,0xb9,0xa1,0x2e,0xd5,0x8a,0x2a,0x34,0x77,0x82,0xd2,0x1a,0x3b,0xed, - 0x9c,0xa7,0xb3,0x1a,0xb7,0x98,0xf4,0xc3,0x5e,0x12,0xea,0x62,0x41,0xaf,0xf4,0x97,0xef,0xb3,0x56,0xab, - 0xcc,0x74,0x01,0x43,0x30,0x41,0xa3,0x0b,0xd5,0x15,0x3e,0xf2,0x87,0xc5,0xc0,0x98,0x2b,0xc4,0xc5,0xc0, - 0x31,0xd9,0xe1,0x14,0xcf,0x44,0x70,0xf2,0xd9,0x0c,0x7d,0xf1,0x0e,0xfe,0xe9,0xf0,0x1b,0x78,0x61,0xe1, - 0x40,0xa0,0x36,0x17,0x88,0xbd,0xc3,0xca,0x5b,0xaf,0x95,0x4b,0x89,0x49,0xc1,0x08,0x4e,0xa0,0x80,0xd0, - 0xae,0xb5,0xfa,0x89,0xaa,0x22,0xb4,0x6f,0x5f,0x21,0xd0,0x4a,0xa4,0x0e,0x83,0x49,0x11,0x8a,0xfa,0xe5, - 0x0f,0xa2,0xaf,0xdf,0x14,0x56,0x34,0xf1,0xae,0x0a,0x5b,0x3e,0x74,0x5f,0x3a,0x63,0x98,0x7f,0xc5,0x06, - 0xe1,0xa5,0x13,0x4b,0xba,0xd4,0x88,0xa1,0xa4,0x1d,0xbb,0xe0,0xdb,0x79,0xec,0x6d,0x9d,0x1c,0xab,0x64, - 0x38,0x6f,0xcd,0x84,0xd1,0x85,0xc4,0x15,0x12,0xc4,0xae,0x63,0xc1,0x9a,0x06,0x73,0x57,0xf8,0x54,0x72, - 0x43,0xca,0xc9,0x86,0x45,0xaa,0x87,0x10,0x28,0x1e,0x2d,0x68,0x57,0x44,0x12,0x19,0xdd,0x80,0xdd,0x7c, - 0xaa,0x43,0x5f,0xc5,0x9c,0xd5,0x97,0x12,0x9d,0x07,0x0e,0xfc,0x78,0xe8,0xe8,0xb6,0xba,0x24,0x14,0xec, - 0x12,0x8b,0x0c,0xe5,0xb2,0xc2,0xd8,0x22,0x57,0xfa,0x22,0x78,0x42,0x67,0x4f,0x75,0x32,0x9c,0x88,0xd2, - 0xb2,0xb8,0xa0,0x99,0xc8,0xa5,0x0c,0x84,0x50,0x0a,0x41,0x4f,0x9a,0x08,0x9a,0xce,0x84,0x6b,0xdc,0x91, - 0x7b,0x2c,0x1a,0x37,0xc1,0x67,0x89,0x56,0x1e,0x4f,0x44,0x19,0x73,0x12,0x68,0x2c,0x3d,0xe9,0xc6,0xd2, - 0x09,0xbb,0xad,0x70,0xae,0xa8,0x8d,0xff,0x76,0x36,0x28,0x99,0x3d,0x36,0x9a,0x83,0x33,0xdd,0xd5,0x69, - 0x5c,0x8e,0x67,0x27,0xc3,0xe9,0x06,0xf6,0x4b,0xc2,0xa9,0xd9,0x29,0xf1,0xf4,0xbe,0x7d,0x16,0xe6,0xe3, - 0x29,0x77,0x70,0xa4,0x1c,0xb0,0x4f,0x8d,0x43,0xb5,0x69,0xb0,0x56,0x01,0x7d,0x17,0xb4,0xf3,0x70,0x71, - 0x08,0xd9,0xf0,0x52,0xc5,0x36,0x14,0x31,0xdd,0x34,0x36,0x21,0xac,0x4d,0x89,0xc2,0x04,0xa8,0xd8,0x12, - 0x70,0xb9,0xb1,0x9a,0x7a,0x85,0x0d,0x3e,0xd2,0x41,0x5b,0xad,0x1d,0x23,0x9d,0xab,0x1c,0x66,0x61,0x68, - 0xe3,0x61,0x73,0x89,0x8b,0xa4,0xfa,0x81,0x0d,0x48,0xe1,0xc6,0x40,0x54,0xc2,0x98,0x81,0xd5,0x66,0xa9, - 0xcb,0x02,0x28,0x4a,0xbf,0xcd,0x1b,0x6f,0xb3,0x42,0x8d,0xe3,0xb4,0x4c,0x67,0x73,0x3a,0xc6,0x0c,0xd3, - 0x8a,0x58,0x49,0x83,0x62,0x36,0xab,0xd2,0xfa,0xeb,0x14,0x2e,0xff,0xdc,0x5a,0x6d,0x5f,0x40,0x16,0x99, - 0x34,0x94,0xc0,0x43,0x28,0xed,0x08,0x3a,0x61,0x0d,0x5a,0xf6,0x57,0x6c,0xd1,0x4a,0xbd,0x81,0x56,0xea, - 0x4e,0xcc,0x41,0x9b,0x62,0x53,0xe4,0xf5,0x34,0x83,0xa2,0xb1,0xe0,0x60,0xb3,0xb3,0x31,0xfb,0xc1,0x9d, - 0xd2,0xb9,0x07,0x97,0xbe,0xc3,0x7e,0x58,0x28,0x61,0xe7,0xc0,0x7c,0xd7,0x12,0xa0,0x0b,0x65,0xcd,0xc3, - 0x7e,0x39,0x58,0x97,0xb8,0xcb,0x62,0x8c,0xbe,0x94,0x06,0xce,0xc7,0x78,0x75,0x5f,0xc8,0x78,0x20,0xa6, - 0x80,0x2d,0x0e,0x62,0x43,0x5d,0x14,0xd3,0x2a,0xba,0x53,0xab,0xd1,0x12,0xdc,0xb2,0xa1,0x45,0x66,0xd5, - 0x76,0x0d,0x89,0xa5,0x8a,0x37,0x0f,0x64,0x95,0x38,0xd4,0x53,0x39,0xc1,0xf5,0x27,0x4b,0xf3,0xe1,0x29, - 0xad,0xcb,0x0c,0xaf,0x2b,0xb5,0x73,0xb9,0xce,0xc4,0xd4,0x67,0xcd,0x96,0x7e,0xa2,0x82,0xd2,0xc9,0x4c, - 0xaa,0x38,0xde,0xe9,0xbc,0xa1,0xe3,0x96,0x6b,0x09,0xe0,0xcb,0xcc,0xb1,0x64,0x32,0x45,0x5d,0x6d,0xda, - 0x5c,0x03,0x96,0x1a,0x0c,0xd4,0x95,0x1c,0xfb,0xaa,0x35,0x84,0x6f,0xcf,0x58,0xb2,0x38,0xcb,0xce,0x07, - 0x08,0xfc,0xf7,0x4b,0xc5,0xbe,0xb1,0xe3,0x9f,0xf3,0xd0,0x66,0x64,0xd5,0xcf,0x29,0xe2,0x33,0xa7,0xd3, - 0xd7,0xc9,0x79,0xfc,0xf7,0xee,0x2c,0xdc,0xb5,0xc4,0x2f,0xdd,0x3c,0x5a,0xfa,0xd7,0x72,0x79,0x42,0x58, - 0x15,0xd7,0xc2,0x65,0xa3,0xe2,0x2f,0xf9,0x65,0x5e,0xdc,0xe4,0x4a,0x9e,0xdd,0xf6,0x6d,0xb5,0xf3,0xc6, - 0x06,0x0d,0x81,0x5f,0xac,0xbc,0xa1,0x71,0xad,0xdd,0xc5,0x35,0x2e,0x64,0x94,0xa7,0xbd,0x72,0x9c,0x9a, - 0x78,0xbf,0xfc,0xa2,0xf4,0xb3,0xdf,0x17,0x83,0xa9,0x69,0x5f,0x0e,0x47,0xed,0x5c,0x9b,0xb5,0x3e,0x6c, - 0x18,0x5f,0x63,0xe4,0x0a,0x19,0x52,0x73,0x08,0xb0,0x13,0xdf,0x5a,0x54,0x47,0x87,0x92,0x36,0x0f,0x36, - 0x6b,0x5b,0x8e,0xac,0x50,0x78,0x1d,0x20,0x7d,0x8d,0xd0,0xa9,0x9a,0xf7,0x74,0x62,0x6b,0xa4,0x45,0xd0, - 0xcc,0x73,0xa2,0x53,0x2f,0x0a,0x0e,0x6c,0x6a,0x02,0xae,0xda,0x73,0x35,0x7e,0x33,0xfa,0x35,0x8b,0x2e, - 0x9b,0xb9,0x0f,0x38,0x22,0x7d,0x77,0x18,0x4f,0x39,0xe0,0xa0,0xfe,0x06,0x3e,0xf9,0xcd,0x88,0x23,0x6b, - 0x45,0xfa,0xce,0x2b,0x86,0x58,0x9a,0x60,0x0e,0x8a,0x58,0x56,0x41,0x4f,0x0e,0x60,0xde,0xc9,0xad,0xb4, - 0xf8,0x82,0xf6,0xf0,0x3f,0xf9,0x36,0xc1,0x21,0x22,0xd8,0x52,0xb2,0x61,0x47,0xa1,0x68,0x05,0xd8,0x90, - 0x48,0x45,0x1c,0xf3,0x01,0x02,0x28,0xdd,0xf4,0x66,0x39,0xeb,0xf8,0x5f,0x86,0x77,0x67,0xad,0xf0,0x4f, - 0x5c,0xd3,0xd8,0x59,0x11,0xb6,0xe1,0xd7,0xe7,0x72,0xf7,0x85,0x04,0xf7,0xcb,0x42,0x30,0x43,0xfc,0xcc, - 0x84,0x45,0x06,0x62,0x5a,0x18,0xa5,0xdc,0x44,0x9d,0xf5,0xdd,0xf6,0x40,0x98,0x4b,0x03,0x57,0x92,0x00, - 0x9b,0xf6,0x5c,0xc7,0xb3,0x81,0xce,0xc7,0x3a,0x7c,0xb3,0x4d,0x4a,0xfd,0x96,0x68,0x81,0xeb,0xba,0x28, - 0xe6,0x84,0x25,0x72,0x18,0x87,0x10,0x66,0xbe,0x82,0xc5,0x26,0x24,0x8f,0x1e,0x2d,0x07,0x8b,0xaf,0xe5, - 0x4e,0xad,0x08,0xaf,0x8b,0xf8,0xe0,0xf8,0xee,0xf8,0xce,0xf7,0x47,0xd1,0x60,0x75,0x5c,0x8e,0x8e,0xf3, - 0xa0,0x3f,0x0a,0x8e,0xd7,0xc7,0xeb,0x03,0x10,0xcb,0xf1,0xc1,0x78,0x7f,0xf0,0x51,0x7f,0xf4,0xdb,0x83, - 0xbb,0xb5,0x1f,0xac,0xc6,0xc7,0x27,0xc7,0x07,0xc7,0xc7,0x27,0x94,0x77,0x5e,0x74,0xb8,0xf0,0xa1,0x03, - 0x13,0x87,0x92,0x36,0x3d,0xbc,0x2a,0x42,0xef,0xf8,0xf8,0xc1,0x2e,0x62,0x81,0x51,0xce,0x51,0x57,0x8e, - 0xf1,0x3c,0x48,0x13,0xfe,0x73,0x7a,0xfe,0xe5,0xbb,0x85,0x5f,0xf7,0x3d,0xd5,0x1f,0xe9,0x8d,0xd7,0xa7, - 0xa9,0x38,0xc7,0x65,0x53,0x78,0x4b,0xc4,0xa3,0xa8,0x7b,0x7d,0x97,0xde,0x56,0xd1,0xd8,0x73,0xf4,0xc0, - 0xbc,0x93,0xd0,0xe0,0xfc,0x56,0x94,0x2c,0x80,0x59,0x3d,0x40,0x58,0x79,0x85,0x63,0xc5,0xd5,0xa9,0x76, - 0xac,0x90,0x6b,0x67,0x9a,0xba,0xa9,0xb8,0xe5,0x7b,0x32,0x37,0xa6,0x4a,0x3f,0x38,0x15,0xa1,0x7a,0x0f, - 0x19,0xa5,0x8e,0xd4,0xf9,0x45,0x26,0xc6,0x28,0x25,0x4d,0xf1,0x79,0x9a,0x43,0x68,0xb1,0x29,0x32,0x40, - 0x7c,0xcb,0x96,0xfb,0x20,0xed,0xf1,0x1d,0xc1,0x2d,0xdd,0x40,0xa1,0x08,0xca,0xe1,0xbc,0xf7,0xbd,0xd0, - 0xc3,0x59,0xee,0x7e,0x4b,0xd5,0x9a,0x98,0xf2,0x6e,0xa6,0x54,0xa8,0x09,0xee,0x4e,0xbb,0xa7,0x8d,0x55, - 0xe6,0xfe,0xf8,0xb4,0xf1,0xf9,0xd1,0x9a,0x36,0x71,0xe8,0xd2,0x9a,0xb6,0x8a,0xe5,0xa5,0xcd,0xa9,0x93, - 0xca,0xce,0xd4,0x71,0xc2,0x9f,0x9d,0x3a,0xfe,0x6c,0x63,0xea,0x38,0xc5,0x99,0x3a,0x7e,0xd7,0x53,0xe7, - 0x7e,0xcb,0xd4,0x42,0x79,0x5f,0x2a,0xd8,0xdc,0x3e,0x3c,0x1b,0xc9,0xe4,0x9d,0x15,0xac,0x7c,0x88,0xd8, - 0x8e,0x1c,0xe7,0x13,0x01,0x33,0x8b,0xb9,0x8a,0x5b,0x29,0xc1,0x19,0x55,0xbc,0x4d,0x89,0x21,0x99,0x55, - 0x8c,0xd9,0xa1,0x8a,0x78,0x0e,0xed,0x21,0x13,0x11,0xb4,0x11,0xdc,0x52,0x42,0x60,0xde,0x9c,0x95,0x50, - 0x9c,0x28,0x24,0x62,0xb2,0x8a,0x61,0x89,0x00,0x9f,0x35,0x82,0x77,0xea,0xfb,0xb4,0x05,0x07,0xb1,0x44, - 0x00,0x48,0x0e,0x65,0x29,0xc1,0x2d,0x4b,0xd5,0x12,0xd5,0xbf,0x94,0x1e,0x76,0x06,0x19,0x95,0x2e,0xdb, - 0x70,0x92,0x1c,0x13,0xb3,0x33,0x74,0x26,0x3e,0xdb,0x8c,0x5d,0xc9,0xd1,0x46,0x55,0xa8,0x51,0x1d,0x2b, - 0x73,0x23,0xe6,0xa8,0x8a,0x62,0xca,0x41,0x34,0x3b,0x62,0x98,0xa2,0xaf,0x3a,0xc2,0xa9,0x7c,0x87,0x26, - 0x8b,0x23,0xa7,0xaa,0x28,0x9b,0x08,0x52,0xaa,0xc3,0x63,0xf2,0x34,0xb5,0x03,0x6e,0xca,0xb4,0x49,0x00, - 0x52,0x35,0x79,0xe2,0xac,0x49,0x07,0xd3,0xb4,0x71,0x3e,0x5b,0x53,0xc4,0xb1,0x57,0x69,0xa2,0x78,0xae, - 0x69,0x9e,0x1e,0x10,0x3e,0xfb,0xed,0xb8,0xfa,0xc8,0x1f,0xd3,0x5f,0x6f,0xef,0xf1,0x93,0xe3,0x83,0xf8, - 0xa4,0x1f,0x10,0xae,0x41,0x62,0x1c,0xe0,0xef,0x28,0xf2,0x28,0xdb,0x3b,0xf9,0x88,0xd0,0xce,0x6a,0x8f, - 0x1e,0xf7,0xe8,0x71,0xaf,0xbf,0x52,0x75,0xe2,0xc7,0x4f,0xfe,0x87,0xaa,0x04,0xc1,0xe8,0x20,0x7c,0xa7, - 0x9b,0xa3,0x4a,0xd7,0xfb,0xe3,0xe3,0x9b,0xfd,0x93,0x7e,0xb4,0xfa,0xdb,0x2a,0x5a,0xfd,0x25,0x38,0x1e, - 0x8f,0x7f,0xa3,0xb6,0x8f,0x4f,0xdc,0x4f,0x7d,0xf4,0xa7,0x3f,0xf5,0xaa,0x88,0xbd,0x71,0xb2,0xff,0xfb, - 0xd3,0xfd,0x7f,0x9d,0x9e,0x8c,0x8f,0x8f,0xf7,0x8f,0x8f,0x07,0x87,0xfb,0x9f,0x9f,0x4a,0x92,0xd7,0x7f, - 0x31,0x90,0x99,0xe9,0x53,0x6b,0x84,0xe4,0xe1,0xaf,0x17,0xcd,0xf7,0x5f,0x15,0x7d,0xc2,0xb3,0x51,0x30, - 0x92,0x47,0x62,0xd6,0x9f,0x16,0xb1,0x83,0x6a,0xbd,0xdf,0x1e,0x7b,0xfd,0x67,0x74,0x88,0xbf,0xd6,0x63, - 0x39,0x3e,0x18,0x05,0x4f,0x0e,0xc2,0x9f,0xda,0xc5,0x8e,0x8f,0x0f,0x50,0xb2,0xef,0x8d,0x7f,0x7b,0x72, - 0xf2,0xd1,0x13,0x9a,0xcd,0xe7,0xa8,0xf2,0x78,0xe7,0xf9,0x4f,0xcf,0x5e,0xff,0xf3,0xe5,0x97,0x3d,0xa4, - 0xf7,0x9f,0x1c,0x64,0xe1,0x97,0x92,0x7e,0x0c,0x3f,0x65,0x6f,0xd5,0xf3,0xf8,0x20,0x7c,0xc1,0x40,0xaa, - 0x62,0xb8,0xaa,0xe0,0xb8,0xfa,0xe6,0x9d,0x0f,0xc6,0x1f,0x11,0xd2,0x2c,0xfc,0x9e,0xfe,0x7a,0xbb,0xf3, - 0x7a,0xe8,0x45,0xde,0x63,0xda,0xb6,0xbb,0xe7,0xfc,0xf8,0x04,0x8f,0x80,0x60,0x7a,0xd9,0xf3,0xf6,0xe8, - 0x25,0xb9,0x5a,0x20,0x63,0x17,0x19,0x7f,0x39,0x3a,0xc4,0xf3,0x71,0xce,0x2f,0x9f,0xf3,0x73,0xcd,0xcf, - 0x8f,0xf8,0x65,0xcf,0x5b,0x87,0x2f,0xa9,0x2b,0xbb,0x34,0x29,0xc4,0x25,0x9f,0xd7,0x2b,0x34,0xb5,0xa2, - 0x26,0x56,0x54,0x22,0x18,0xd2,0x79,0xf6,0xcd,0xd6,0xec,0x15,0xb5,0xbe,0xfa,0x8b,0x94,0xfa,0x99,0x07, - 0xc1,0x9a,0xc1,0x8d,0xbe,0xff,0x50,0x74,0x13,0x35,0x84,0x9b,0x7e,0x2e,0x24,0xee,0xfa,0xb1,0x84,0xd3, - 0xa1,0xf3,0x71,0xcd,0x08,0xf1,0x8b,0x22,0xfc,0xa5,0x08,0xbf,0x2e,0xc2,0x37,0x45,0xf8,0x6b,0x11,0xfe, - 0x5e,0x84,0xff,0x2e,0xc2,0xef,0x8a,0xf0,0x5b,0x4c,0xd9,0xdf,0x56,0xbf,0x5d,0xef,0x17,0x79,0x74,0x10, - 0x7e,0x85,0xd7,0xeb,0xfd,0x15,0x92,0xa2,0xd5,0x6f,0x7f,0x39,0x08,0xff,0x41,0x29,0xfe,0xf8,0xb8,0x3a, - 0x7e,0x75,0xf2,0x11,0x1d,0xd5,0x55,0x9f,0x7a,0x9d,0xe5,0xab,0x62,0xc6,0xcf,0x2a,0x23,0x38,0x08,0xff, - 0x45,0xe5,0x42,0x82,0xa5,0x90,0x4e,0xf3,0x13,0x81,0x3d,0xf7,0x35,0x18,0x3d,0x38,0x08,0xff,0xc9,0xcb, - 0xee,0xaf,0x8e,0x83,0x07,0x34,0xba,0xbf,0xf3,0xdb,0x78,0xf0,0xd1,0xf1,0x09,0xe5,0xa5,0x09,0xfb,0xe2, - 0xfb,0x88,0xb2,0x42,0x62,0xdc,0x0f,0xf0,0xf9,0xe3,0x01,0x3a,0xc6,0x77,0x48,0x07,0x61,0x4e,0x89,0xc7, - 0x83,0xf1,0x6f,0x03,0x6a,0x8f,0x3a,0x11,0x13,0xd8,0x52,0xc3,0x0f,0x02,0x6a,0xa9,0x4c,0xb8,0xd7,0x10, - 0x4e,0xf8,0xd1,0xea,0x41,0xc0,0x1d,0xcf,0x12,0xc4,0x1d,0x29,0x8f,0xf3,0x93,0x83,0xb0,0x48,0xc4,0x41, - 0xd5,0x79,0x98,0x24,0x9d,0xee,0x79,0xfc,0x8b,0x22,0xbe,0x28,0xfe,0x80,0x93,0x44,0xc2,0xc2,0x85,0x1b, - 0x84,0x92,0xa8,0x85,0x2a,0x89,0xbd,0xd3,0xf4,0x6a,0x51,0xdf,0x9e,0x3a,0x5e,0x78,0x27,0x49,0xd3,0x05, - 0xbf,0x38,0x89,0x38,0x42,0x14,0xcc,0x88,0xb0,0xa6,0xf6,0xeb,0x1d,0xd5,0xa1,0x76,0x07,0xbe,0x45,0xc2, - 0xc3,0x97,0x2d,0x87,0xa1,0x75,0x20,0x3d,0xcc,0x1f,0x97,0xec,0xdd,0xad,0x1e,0x43,0x8f,0x9f,0x79,0xf9, - 0x13,0x8e,0x30,0xa6,0x6e,0x15,0x6d,0xc0,0x6a,0x62,0xc4,0xca,0xe4,0xe6,0xa9,0xfe,0xc0,0x9d,0x0e,0xef, - 0x19,0x11,0x52,0x56,0x22,0x02,0x44,0x5b,0x70,0xfc,0x07,0x26,0x1b,0x81,0xcf,0x44,0xe1,0x13,0x41,0x00, - 0x7e,0x80,0xf5,0x06,0x1d,0xae,0xac,0xfd,0x2e,0xd6,0xd7,0x10,0xc7,0x97,0x4e,0x44,0x03,0xa5,0x60,0x4b, - 0xbf,0x12,0xae,0xfd,0x15,0xe4,0x46,0xfc,0x6e,0x43,0x18,0x28,0x37,0xd8,0xfe,0x04,0x0d,0x56,0x68,0xb0, - 0x4c,0x67,0xd2,0x20,0xe8,0xea,0x59,0x3c,0x09,0x2b,0x13,0x84,0x72,0x4b,0x34,0x9f,0x6a,0x58,0x0f,0x99, - 0xab,0x72,0x62,0xc8,0x52,0xae,0xe5,0xb0,0x6a,0xa3,0x5c,0xb6,0x36,0xda,0xdd,0x88,0xef,0xb1,0x71,0xdc, - 0x0f,0x3d,0x1d,0x0e,0xd9,0x84,0x9e,0x1a,0xf9,0xb5,0xa6,0x41,0x30,0x08,0x39,0xd3,0x69,0x20,0x6c,0x93, - 0x83,0x48,0x2e,0x2a,0x93,0x92,0xf6,0x55,0x09,0x58,0x2b,0xc7,0x1d,0xc9,0x42,0x7b,0xd8,0xba,0x81,0xa5, - 0xaf,0x35,0xa5,0x32,0x47,0xc0,0x65,0x7d,0x87,0x23,0x85,0xc5,0xe5,0x71,0xbc,0xe7,0x11,0x7a,0x86,0x2f, - 0xb6,0x3d,0x4f,0x49,0xde,0xbc,0xbd,0x28,0x0b,0xdd,0x32,0xcf,0xc5,0xdd,0x7f,0xbc,0xe3,0xef,0x38,0x7e, - 0xe5,0xbd,0x88,0x5b,0x3d,0xb1,0x13,0xcf,0xa9,0x6a,0x4b,0x49,0x5e,0x10,0x6e,0x0e,0x1c,0xf7,0xfc,0xa6, - 0xb3,0xab,0xd5,0xf7,0xb6,0x83,0x04,0x08,0x04,0x00,0xea,0x19,0x50,0x10,0x0c,0x1c,0xc0,0x1a,0xc3,0xb7, - 0x7f,0x79,0x82,0x7b,0x88,0x46,0xaa,0x71,0xf2,0xbf,0x99,0x87,0x20,0xee,0x5d,0x5d,0xd0,0xd7,0x55,0xec, - 0x0c,0xbf,0x14,0xa9,0x7f,0x21,0x89,0x49,0x3c,0x4d,0x7c,0x76,0x2b,0x93,0x30,0xcc,0x87,0x13,0x7a,0x50, - 0xf1,0x0e,0x86,0x8d,0x89,0xab,0x3a,0xe7,0x68,0xd2,0x58,0xc6,0x42,0x36,0xcb,0x6a,0x55,0x25,0xa2,0x92, - 0x7f,0x27,0x62,0x41,0xf7,0xc3,0x4b,0xf9,0xf0,0x3c,0x6e,0x80,0xb3,0xdc,0x60,0xdb,0x77,0x08,0x1b,0xc3, - 0x19,0x3a,0xb7,0x84,0x2e,0xef,0x4c,0x3a,0xb7,0xc0,0xbd,0x89,0x7c,0x39,0xbc,0x88,0xe7,0xe3,0xe9,0x49, - 0x3c,0xe1,0xf0,0xcf,0x6a,0xc0,0x50,0xb5,0x24,0x4e,0xfd,0xc2,0xed,0x37,0xd1,0x30,0x1d,0xfd,0x26,0x5a, - 0xc6,0x8a,0x59,0x1d,0xc3,0xa9,0x8e,0x20,0x2a,0x1c,0x8f,0xd0,0x0e,0xd2,0x5c,0x83,0xaa,0xad,0x10,0x5f, - 0xc0,0x76,0x35,0x50,0x5f,0x91,0x79,0x58,0xda,0x79,0x08,0xd3,0x86,0x38,0xd7,0x89,0xec,0xc0,0xde,0xdb, - 0x15,0x28,0x20,0x6a,0x4f,0x02,0x00,0x60,0x11,0x2e,0x54,0x7f,0x28,0x15,0x32,0x11,0x00,0x74,0x12,0x7a, - 0x18,0x3d,0x58,0x49,0xbf,0x40,0x02,0x74,0x4f,0xbd,0xac,0xf2,0x94,0x57,0x5b,0xc3,0xd4,0xc7,0x85,0x16, - 0x6f,0x7c,0xc1,0x31,0x2c,0xb3,0x1c,0x21,0xbd,0xf7,0xcd,0xf4,0x48,0x71,0x49,0x7d,0xad,0x12,0x71,0x1b, - 0x36,0xb4,0x02,0xdc,0xc3,0xe1,0xf2,0xf1,0xd7,0x26,0xdc,0xce,0x12,0x3e,0x3d,0xe3,0xaf,0x8b,0xf1,0x52, - 0x94,0xe0,0x09,0x96,0xdb,0x6e,0xcf,0x3b,0x62,0x4e,0x01,0xb5,0xb1,0x0a,0xf2,0x2c,0x9c,0x12,0x01,0x7c, - 0x11,0x5e,0x87,0x57,0xe1,0xb9,0x1b,0x78,0x81,0x3f,0x58,0x13,0x02,0xce,0xe3,0x73,0xfd,0xad,0xfa,0x71, - 0x3e,0xac,0x45,0x57,0xaa,0x8c,0xb3,0xf8,0x7c,0x5c,0x0b,0x16,0x26,0xb6,0x9f,0x9f,0x45,0x7d,0xe5,0xab, - 0x42,0xf9,0xf8,0xb1,0xf6,0x32,0x8a,0xec,0x47,0xf0,0xa6,0x90,0x26,0x71,0x91,0xf8,0xa5,0x61,0x56,0xbf, - 0x62,0x17,0x8d,0x3c,0x4f,0x88,0x41,0xa6,0x93,0x73,0x56,0x50,0x26,0x1e,0x21,0x31,0xad,0xb9,0xd9,0xb5, - 0x28,0x45,0x17,0xf1,0xf3,0x12,0x7b,0x83,0x90,0xea,0xdf,0xed,0x67,0x55,0x53,0xca,0x45,0x28,0xfc,0xf5, - 0x04,0x61,0xc2,0x6b,0x06,0x19,0x25,0x61,0x87,0x09,0x51,0x0c,0x72,0xb6,0x11,0xa9,0xcc,0x2b,0x5b,0xc6, - 0x67,0xa6,0xa6,0xe3,0x71,0x18,0x3a,0x5f,0x13,0x1a,0xe1,0x5c,0x2a,0xe9,0x62,0xd0,0x04,0xbb,0xcd,0x27, - 0x1c,0x35,0xeb,0x57,0x8e,0x4a,0xf8,0x80,0x83,0x94,0xc0,0xb5,0xd3,0x88,0x03,0xca,0xec,0xa9,0xd8,0xa6, - 0x84,0x04,0x7c,0x84,0x20,0x02,0x71,0x58,0x29,0x03,0xd8,0xa3,0xf0,0x30,0xc4,0x7c,0x81,0xb6,0x89,0x7c, - 0x2e,0x6e,0x4b,0xa3,0xfd,0x8d,0x92,0xd0,0xfe,0x2e,0xe1,0xb2,0xf2,0x8c,0x0d,0x4f,0x5a,0x55,0x6e,0x3a, - 0xab,0x04,0x32,0x68,0x19,0xf3,0x6a,0xe5,0xea,0x37,0xed,0xee,0xfe,0xbb,0x10,0x05,0xdc,0xd0,0xe2,0x49, - 0xf1,0xe5,0x51,0x06,0x23,0x0e,0x3d,0x04,0x2f,0x26,0xdc,0xc7,0x49,0x10,0x7d,0xdf,0x4a,0x30,0x8a,0x6e, - 0xdf,0x16,0x9d,0x6b,0xf3,0x2d,0xaf,0xe8,0x07,0xac,0xc9,0xcf,0xba,0xe1,0xc4,0x99,0x94,0x89,0x63,0xb3, - 0x73,0x1b,0x37,0x60,0x42,0x81,0xca,0xe0,0x4a,0x3c,0x22,0x27,0x41,0x78,0x1a,0xd3,0xa9,0x7b,0x3b,0x3e, - 0x3a,0x19,0x72,0xf0,0xb4,0xd3,0xc6,0x57,0x0e,0xc3,0x7d,0xff,0xd4,0xd8,0x30,0xd2,0xf7,0x74,0x77,0xd8, - 0x4d,0xf9,0x69,0x7c,0xea,0xf6,0x06,0xd1,0xd7,0x0e,0x03,0x78,0xdd,0x62,0x5f,0x24,0x84,0xd8,0x32,0x42, - 0x6a,0x05,0xe1,0xb3,0x53,0xc2,0x63,0x93,0xf0,0x3a,0x4e,0xc2,0x2b,0x06,0xf3,0xd0,0x5f,0x36,0x82,0xf2, - 0x36,0x5e,0xbb,0x02,0x22,0xcd,0x43,0x15,0xda,0x34,0x9a,0xa9,0xb8,0x45,0x53,0xf8,0xdf,0x8f,0x16,0xc4, - 0xcc,0x2a,0x64,0xf7,0x94,0x5e,0x2f,0x42,0xa3,0xee,0x1a,0x5d,0xaf,0x43,0x18,0x5b,0x2c,0x2d,0x2a,0xe2, - 0x39,0x57,0x2b,0xd1,0x12,0x04,0x10,0xfc,0x0b,0x90,0x34,0xd7,0xd8,0xbb,0x82,0x9b,0x33,0x40,0x77,0x79, - 0xef,0x82,0xef,0xee,0xaa,0x15,0x97,0xa8,0x93,0xd2,0x16,0x23,0x3e,0x47,0x0d,0x66,0x9e,0x68,0x2c,0x52, - 0xf0,0xd1,0x14,0xeb,0x70,0x36,0x84,0x26,0x3c,0xe3,0x54,0x7f,0x53,0xa8,0x50,0xa8,0xc5,0xfa,0x47,0xc1, - 0x27,0x8b,0xb9,0x29,0xbc,0x5b,0x0f,0x73,0x50,0x2e,0x44,0xb2,0x3f,0xd4,0x1e,0xa2,0x75,0x60,0x2f,0xeb, - 0x33,0xda,0xac,0xfc,0x3f,0x05,0xa4,0xe0,0x7a,0x46,0xda,0xfb,0x57,0x61,0x03,0x8b,0x41,0x35,0x2c,0x99, - 0x67,0x49,0xe5,0x80,0xca,0xbf,0xb8,0x82,0x0e,0x43,0x92,0x0f,0x88,0x01,0x2e,0x93,0xba,0x28,0x8f,0xe2, - 0xcc,0x36,0x1f,0x66,0xf4,0x71,0xa6,0xe7,0x74,0xf6,0xc3,0x38,0xb3,0xfd,0x21,0xea,0xc6,0x34,0x1c,0xe6, - 0x74,0x16,0x04,0x70,0x40,0x74,0xad,0x2c,0x1c,0xec,0x5d,0x72,0xa2,0x5d,0xfa,0x65,0x33,0xa2,0x8e,0xa7, - 0xa2,0x89,0xcc,0xa7,0xa5,0x9b,0x00,0xc8,0x08,0x9b,0x49,0xda,0x4f,0xa0,0x6d,0x6b,0x9a,0xb8,0xf7,0xd2, - 0x80,0x1e,0xeb,0x41,0x94,0x31,0x9e,0x21,0x72,0x57,0x2b,0xef,0x2f,0x12,0x96,0x1b,0xa5,0x88,0xef,0x91, - 0x10,0x50,0x9a,0x60,0xb2,0xc0,0x5e,0x07,0x23,0x15,0x34,0xab,0x01,0xee,0x3a,0x60,0x12,0x1d,0x8c,0x91, - 0xe4,0xef,0xa9,0x40,0x6b,0x7b,0x36,0xef,0xc8,0xf5,0x86,0xd0,0xe8,0x9a,0xac,0x42,0x9e,0x6c,0xac,0xaa, - 0xb1,0xd4,0xec,0xba,0x2f,0xc9,0xc7,0xd6,0x71,0xf3,0x49,0xcc,0x67,0x72,0x2e,0x6e,0x44,0x2f,0xc0,0xd2, - 0xbc,0xbb,0x9a,0xe7,0x55,0xf4,0xe3,0xab,0xe3,0x69,0xff,0x80,0x76,0x0a,0xa5,0xf0,0x73,0xe4,0xf8,0xf5, - 0xbb,0x4a,0x1c,0xbd,0x24,0xf0,0x1a,0x2e,0x50,0x33,0x99,0x2d,0xed,0x33,0x6d,0x2e,0x86,0x17,0xe2,0xcb, - 0x37,0x09,0x6f,0x93,0xf0,0x34,0x89,0xc7,0xb7,0x45,0x78,0x5a,0x40,0x25,0x2a,0x7d,0x7d,0x8f,0x60,0x2e, - 0x33,0xa1,0xcf,0x9b,0x14,0x9a,0x58,0x90,0xeb,0x2d,0xc4,0xba,0x3e,0x25,0x08,0x3e,0xd6,0xf2,0xf4,0xf4, - 0x75,0x05,0xd2,0x7d,0x4a,0x8f,0xb0,0xc5,0xe0,0xdb,0xaf,0x34,0x44,0xa1,0xa4,0x30,0x17,0xa1,0x28,0x61, - 0x4e,0xe1,0x00,0x5b,0x78,0x22,0x82,0x91,0x90,0xb5,0x29,0x8f,0xca,0x88,0x1d,0x0b,0xc5,0x00,0x9b,0xd6, - 0x07,0x68,0x73,0xb5,0xb0,0x19,0x24,0x8a,0x4a,0x64,0x33,0x61,0x9a,0x0b,0x38,0x33,0x46,0x58,0x01,0x68, - 0x12,0x20,0x5a,0x98,0x87,0xa0,0x99,0x9a,0xf4,0xe0,0xa2,0xc0,0x29,0x52,0xb8,0x6a,0xa4,0x99,0x36,0x26, - 0x31,0xcf,0xf7,0x90,0x76,0xff,0x24,0x08,0x5f,0x96,0xfe,0x44,0x75,0x17,0x6a,0xdf,0xe9,0xe4,0xf2,0xac, - 0x78,0x07,0x47,0x85,0x94,0x8b,0xbb,0xaf,0x09,0x8e,0x9a,0x49,0x5a,0x55,0x22,0x64,0x9f,0x10,0xac,0x73, - 0xc7,0x73,0x1d,0xc9,0x4c,0x55,0xd9,0xf3,0xfa,0x45,0x38,0x43,0x25,0x0e,0xa2,0x83,0x72,0x22,0x43,0x8b, - 0x26,0x26,0xc4,0x97,0x7c,0x97,0x3a,0xb5,0xd4,0x48,0x46,0x8c,0x77,0x39,0x41,0x75,0xa1,0x4c,0xa6,0x59, - 0x21,0xdf,0x5f,0xb2,0x8f,0x0c,0xd3,0xa4,0xfb,0x55,0x2e,0xc5,0x9f,0x94,0x6f,0x2c,0xd7,0x3a,0x10,0x98, - 0x7c,0x43,0xc1,0x12,0x7d,0x6a,0xde,0xfe,0x14,0x25,0xc8,0x7a,0x41,0x7d,0x9d,0xbe,0x32,0x6f,0x7e,0x25, - 0x53,0x2d,0xce,0x09,0x8c,0x93,0xd1,0x64,0x80,0xa9,0xa3,0x81,0x47,0x90,0x36,0xcb,0x1b,0x4d,0x40,0x45, - 0xf3,0x82,0xeb,0xb9,0x93,0xf0,0x2c,0x89,0x51,0x8d,0x0e,0x0a,0x90,0x16,0x50,0x7c,0xd3,0x66,0x2c,0xa7, - 0x49,0x68,0x4f,0x90,0x48,0x69,0x0c,0x77,0x6a,0xd0,0x6e,0xa7,0xde,0x8c,0xf6,0xf0,0x79,0xc3,0x86,0xe2, - 0x56,0x80,0x97,0x0e,0xca,0x16,0xe2,0xe7,0x9b,0x37,0x7b,0x5c,0x68,0x92,0x99,0xa3,0x57,0x11,0x29,0x48, - 0x87,0x09,0x5f,0xce,0x39,0x66,0x0c,0xb7,0xc1,0x02,0x62,0x80,0xf8,0x8a,0xce,0xc2,0x3d,0x76,0x88,0xf7, - 0x40,0xab,0xa8,0xff,0x9a,0xcc,0x7b,0xb1,0xf2,0xbb,0x6f,0xef,0xa3,0x84,0x50,0x17,0xad,0x0e,0xa1,0x8f, - 0x4c,0xa8,0x1a,0x25,0x7a,0x35,0x63,0x2c,0xcc,0x9e,0x2e,0x8c,0xde,0xfb,0x3a,0x68,0xfa,0x6f,0x54,0xec, - 0xd0,0x35,0x7f,0x4b,0x2b,0xae,0x43,0x7b,0xb2,0xe8,0x8d,0xa8,0x9a,0x24,0xf4,0xa2,0x5e,0xd1,0x14,0x07, - 0xec,0xf5,0x7d,0xa2,0xd7,0xcf,0x55,0xbc,0x8a,0x11,0xc2,0x66,0x51,0x3e,0x36,0x04,0xfd,0x40,0x0f,0x80, - 0xe0,0xc1,0x03,0x29,0xb2,0x30,0xb6,0x0c,0x88,0xd9,0xc9,0xb1,0xba,0x89,0xb6,0xbb,0xd0,0xb4,0x9d,0xee, - 0xbb,0xb6,0x3a,0xe8,0x8d,0x5a,0x13,0x10,0x35,0xdf,0x09,0x25,0x7b,0x81,0x76,0x79,0x62,0x69,0x26,0x8b, - 0x55,0x88,0x72,0xb1,0xbb,0x88,0xde,0x4f,0x03,0x08,0x05,0x68,0xcb,0x11,0x0d,0xe2,0xf4,0x98,0xa8,0x11, - 0xc8,0x0b,0x74,0xe0,0x6b,0x38,0x9f,0x46,0xa3,0x1e,0x51,0x28,0x92,0x8e,0x53,0x7b,0xdf,0x66,0xca,0x21, - 0x3e,0x55,0x99,0xb3,0x04,0xfb,0xd9,0xe6,0xf2,0xbb,0x17,0xfe,0xc8,0x99,0xfc,0x75,0x28,0x7f,0x79,0x4d, - 0xd3,0x09,0xaf,0x3f,0xe9,0x23,0xbc,0x75,0x26,0x4f,0xa1,0xd7,0x9f,0xd3,0xfb,0x93,0xfd,0x23,0x22,0x66, - 0xa5,0x7d,0xea,0xee,0x6c,0xe4,0x45,0xaa,0x24,0xcd,0x65,0x74,0xfa,0x6f,0x53,0x78,0xc6,0x31,0xc9,0x98, - 0xbc,0xab,0xec,0x9c,0x7a,0x02,0x32,0x49,0x2c,0xc5,0x1e,0xe0,0xba,0xb1,0x31,0xb3,0x94,0x34,0x89,0x91, - 0x3c,0x50,0xfd,0x1a,0xf9,0xd2,0x16,0x3e,0x33,0xed,0x7b,0x1d,0xe1,0x0e,0xa8,0x39,0x45,0x7b,0x3c,0x78, - 0x70,0x4d,0x0d,0xfb,0xcb,0x91,0x84,0x45,0x9b,0x73,0xaf,0xe6,0x01,0x7f,0x28,0x8b,0x69,0x24,0x54,0x34, - 0x44,0x34,0x33,0x34,0xe2,0x7e,0x24,0xb8,0xa3,0x02,0xec,0xb6,0x97,0x97,0x9b,0x10,0x1c,0x95,0xd4,0x76, - 0x5f,0x63,0xaa,0x71,0x12,0x00,0x48,0xc4,0xb0,0x0d,0x65,0x69,0x1a,0x5a,0x85,0x35,0xb5,0x49,0x99,0x81, - 0xae,0x69,0xd3,0x29,0x15,0xc4,0xa7,0x34,0x22,0xad,0xd8,0xca,0x13,0x06,0x40,0xef,0x7d,0x60,0x22,0x98, - 0x8e,0x61,0x04,0x61,0xcb,0xb2,0x18,0x81,0x7a,0x5c,0x18,0x49,0xb0,0xdc,0xe5,0x26,0x8c,0xfc,0xc8,0xa9, - 0x76,0x9d,0x79,0x95,0x32,0x5e,0x25,0xe2,0xc3,0x0a,0x35,0x5b,0x09,0xcf,0x56,0x12,0xf0,0xba,0x61,0xd9, - 0x4a,0xbb,0x6c,0xbf,0x82,0x4d,0x4d,0xee,0x07,0x64,0x40,0x9d,0x63,0xe6,0x75,0x1b,0xec,0x74,0x22,0xaf, - 0x36,0x0a,0x42,0x5c,0x3f,0x0e,0x6f,0x50,0x20,0xc8,0x60,0xf2,0xfb,0x2d,0x47,0x1b,0x54,0x23,0xaa,0xd8, - 0xb1,0x55,0x76,0x05,0xba,0xbc,0xe0,0x29,0x40,0x77,0x88,0xe0,0x29,0x69,0x7b,0x14,0x4e,0xf0,0x26,0xc9, - 0x00,0x95,0x3b,0xfa,0x57,0xa9,0x63,0x39,0xd1,0xa6,0x69,0x6d,0x5b,0x99,0x99,0x21,0x70,0x73,0x77,0x9e, - 0x22,0xfa,0x3c,0x61,0x15,0xe7,0xb1,0x03,0x48,0x81,0x8a,0x9a,0xc0,0xf1,0xf5,0xe6,0xc1,0x10,0x8c,0x1f, - 0x1d,0x6d,0x80,0xa4,0x46,0x3b,0xc6,0xba,0x45,0x93,0x01,0x04,0xbf,0x41,0xf8,0xa3,0x9c,0xac,0x12,0xb6, - 0xde,0xc4,0xe2,0x53,0xdc,0xcf,0x92,0x70,0xb8,0x9e,0xda,0xd0,0x27,0xaa,0x31,0x31,0xfc,0xdd,0xd9,0x7c, - 0x49,0x47,0x91,0xd7,0xd4,0x0b,0xf5,0xd8,0x21,0x17,0x10,0xb4,0x59,0x88,0x9d,0xb7,0x4d,0xbd,0x0e,0xdf, - 0xfa,0xcb,0x68,0x60,0x73,0xa3,0xc3,0xcc,0xd2,0xf5,0x8d,0x8b,0xc8,0x6b,0xb1,0xc4,0x90,0xde,0xba,0xd1, - 0x97,0x08,0x6a,0x2a,0xf4,0x5a,0x4a,0x30,0x27,0x4b,0x44,0x15,0xdf,0x32,0xdd,0xdf,0x88,0x65,0xa3,0xbb, - 0x9b,0x58,0x13,0xff,0xf3,0x92,0xc8,0xb0,0xe4,0xbc,0xc3,0x8f,0x37,0xae,0x01,0x98,0xf6,0x42,0xa9,0x5f, - 0xf2,0xa4,0xbc,0x45,0xb9,0xb3,0x22,0x74,0x94,0x5b,0xa2,0x9f,0xf3,0x70,0x92,0xe4,0x5f,0xa4,0xdf,0xa7, - 0xb3,0xfa,0xa7,0x45,0x9a,0xa3,0xc8,0x4d,0x11,0x36,0xa6,0x23,0xfa,0x7b,0x1e,0xb6,0x14,0x58,0x22,0xc0, - 0x97,0xbd,0xb0,0x3d,0x4d,0x88,0xc8,0x9e,0x2e,0x27,0xdd,0xf6,0x74,0xbd,0x54,0xef,0x69,0x1d,0xb1,0x1c, - 0x95,0x38,0xa6,0x17,0xec,0x86,0x83,0xc1,0xdb,0x22,0xcb,0xe1,0x07,0x98,0x5e,0x6f,0xba,0xa5,0xed,0x3d, - 0x08,0xc0,0x00,0xf0,0xec,0x1b,0xc5,0x84,0xb6,0xd4,0x9b,0x21,0x64,0x26,0x4f,0x89,0xa8,0x8d,0x80,0x5a, - 0xb2,0x43,0x36,0x69,0x0c,0x71,0x95,0xe7,0x88,0x11,0x69,0xf7,0xa6,0x1c,0xc4,0x98,0xd8,0x7f,0xd8,0x4c, - 0x09,0x80,0x5e,0x82,0x62,0xf6,0xc7,0xc7,0x37,0x0f,0x4e,0x4f,0xfa,0xab,0x63,0x7f,0xfc,0x5b,0x70,0xf2, - 0xd1,0xe8,0x38,0xc0,0x75,0x58,0xfc,0x64,0xf5,0x9b,0xe9,0x18,0xae,0xc9,0xfa,0x28,0x77,0xd2,0x0f,0x46, - 0x94,0x79,0xec,0x1f,0x84,0x0f,0x70,0x65,0x60,0xaa,0x0c,0x3f,0x7a,0x70,0x10,0xbe,0x43,0x7b,0xe3,0xa7, - 0xfb,0xff,0x4a,0xf6,0x7f,0x3f,0x7d,0x70,0xc2,0x15,0x70,0xaf,0x76,0x3c,0x68,0x27,0xae,0x8e,0xc7,0x7b, - 0x7c,0xc1,0x36,0xda,0x3b,0xa1,0x67,0x8f,0xef,0xdd,0x46,0x1e,0x9e,0x89,0x7e,0xc7,0x4f,0xbb,0xc6,0x49, - 0x80,0x2f,0xbc,0x02,0x49,0x54,0x4d,0xa2,0x87,0x7f,0xa5,0xa9,0x39,0x8b,0x3e,0x17,0x53,0x93,0xe8,0xe8, - 0x51,0x28,0xeb,0xf4,0xe8,0x61,0xb8,0x5c,0x44,0x8f,0x3e,0x0b,0xa1,0x7d,0x1b,0x3d,0xfa,0x6b,0xc8,0xe1, - 0x72,0xa3,0x47,0x9f,0x87,0xd3,0xe2,0x26,0x8f,0x3e,0x3e,0x54,0x51,0xd5,0xa2,0xf1,0x67,0xe1,0xc7,0x9f, - 0x9e,0xac,0xc3,0x67,0xaa,0xc1,0xb1,0xf7,0x65,0x35,0xa1,0x09,0xa2,0xbf,0xc9,0x82,0x2f,0xe1,0xa9,0x79, - 0xef,0x75,0x72,0xa6,0xe2,0x0c,0x44,0x9e,0xd2,0x87,0x96,0xef,0x8c,0x11,0xcb,0xc1,0x7b,0x85,0xe7,0xb3, - 0xa4,0xa4,0xe2,0xf4,0xd5,0xb1,0xf7,0xcb,0x42,0x4e,0xc6,0xe2,0x86,0x9e,0x4e,0xa4,0x0f,0x63,0x0f,0xb0, - 0xa6,0xd3,0xf9,0xf9,0x44,0xf5,0x6a,0xec,0xfd,0x8c,0x5f,0x9d,0x27,0x2f,0x27,0xd2,0xd3,0xb1,0xf7,0x9c, - 0x7e,0x74,0x16,0x3f,0x9f,0x98,0xbe,0x7b,0x5f,0x24,0x93,0x4b,0xee,0x08,0x15,0x78,0xce,0x89,0xf2,0xe0, - 0xd1,0x88,0x9e,0x26,0x5d,0xd6,0x16,0xc0,0xbf,0x1c,0x0d,0xdb,0x89,0x2c,0x39,0xf4,0xd6,0xe1,0xeb,0x04, - 0xaa,0x08,0xb4,0x33,0x34,0x86,0xc3,0x0b,0xb6,0x4a,0x72,0x9e,0x88,0x0a,0xcb,0x10,0x46,0x18,0x9c,0x67, - 0xca,0xa8,0xf7,0xe7,0xc2,0x3a,0x72,0x11,0xa2,0x63,0x66,0xd1,0x53,0x02,0xdb,0x06,0x82,0xeb,0x11,0xfa, - 0xed,0xa9,0x94,0x46,0x94,0x42,0xc8,0xbd,0xea,0x72,0xce,0x35,0x76,0x74,0x01,0x4a,0xf8,0x0e,0x37,0x26, - 0x21,0x07,0xd5,0x6d,0xe4,0x71,0x8a,0x64,0x26,0xf3,0x66,0x16,0xbd,0x4b,0x06,0x6e,0xab,0x1b,0x39,0x48, - 0x90,0x2c,0x5e,0x09,0x64,0xed,0x9d,0x2d,0xeb,0xba,0xc8,0xf7,0x40,0x05,0x4a,0xa9,0xde,0xee,0xae,0xee, - 0xa1,0xe4,0x71,0x9f,0x0f,0xd1,0x1e,0x07,0x58,0xfe,0x43,0xd5,0x8e,0xa8,0x9a,0xac,0xed,0x1f,0xa9,0xf5, - 0xd0,0x73,0x03,0x10,0xfc,0xe4,0xde,0x2c,0xc5,0xf5,0xc8,0x93,0x60,0xc7,0x3f,0xe5,0x44,0x33,0x79,0x05, - 0xfd,0x45,0x0c,0x11,0x8f,0x8e,0x42,0xcf,0x6b,0xda,0x04,0xa5,0x5a,0xfa,0xff,0x9c,0x5a,0x40,0xc4,0x9a, - 0x61,0xca,0xf1,0x6a,0xf0,0x57,0x4b,0xd8,0x47,0x59,0x3f,0x2e,0xf8,0x34,0x4f,0xf0,0x37,0x2a,0xfb,0x31, - 0xb8,0xf8,0x82,0xb8,0xf8,0x68,0x4f,0xd2,0xb4,0x26,0x2d,0x7d,0x85,0xe8,0x8e,0xd2,0x75,0x62,0xce,0x94, - 0x47,0x36,0x22,0x46,0xe9,0x74,0x2a,0x8a,0xe7,0xe1,0x98,0xa8,0x83,0x66,0x11,0x22,0x7f,0xa2,0xbc,0xef, - 0x44,0x0f,0x7d,0x9e,0x18,0x89,0xbb,0x0e,0x30,0xe2,0x28,0x48,0xad,0xbd,0x4d,0x2a,0xcd,0xe8,0xfb,0x79, - 0x63,0x28,0x82,0x6c,0x09,0x91,0xce,0xed,0xae,0x1d,0x74,0x4a,0xdf,0xf6,0x94,0xc6,0xdf,0x3b,0x25,0x04, - 0x56,0x86,0xa9,0x50,0x78,0xba,0x6c,0x27,0x95,0xed,0x52,0x46,0x72,0xf2,0x40,0x44,0xc9,0xc2,0xf1,0x18, - 0xd6,0x48,0xf3,0xcd,0x34,0xf9,0x45,0xcc,0xcc,0xf1,0xf8,0xc4,0xac,0x40,0xc5,0x2b,0xe0,0x14,0xa6,0xba, - 0xaf,0x93,0x71,0x75,0x12,0x14,0xfd,0x98,0x1f,0x08,0x77,0xd1,0x5f,0x96,0xaf,0x42,0x88,0x53,0x39,0x84, - 0x51,0xfa,0x2e,0x11,0x8e,0x49,0x47,0x12,0x8f,0x9d,0x96,0x86,0xd4,0x00,0x41,0xd3,0xd8,0xc3,0xfe,0xa0, - 0x61,0xf2,0x56,0xa0,0x5f,0x82,0x7b,0x44,0xd9,0x22,0x18,0xf7,0x4e,0xb6,0xc7,0x89,0xdf,0x99,0x8c,0xd3, - 0x93,0x36,0x63,0x64,0xd1,0x82,0x02,0x46,0x46,0x0d,0xd8,0x2a,0x66,0x3a,0x89,0x42,0x0b,0xb4,0x6f,0x06, - 0xd3,0x61,0x7d,0x38,0xd9,0xe8,0x6d,0x04,0x4e,0x1e,0x2b,0xd7,0xaa,0x5d,0x0f,0x2e,0x4e,0x2b,0x52,0xee, - 0x5d,0xa6,0xb7,0x7b,0xb8,0x6a,0xef,0x27,0xfc,0xf9,0x2f,0x13,0xdd,0x38,0xa5,0x05,0x6d,0x54,0x14,0x84, - 0x85,0xb4,0x57,0x04,0xa1,0x85,0x0f,0x69,0x37,0xb8,0x03,0x0d,0xea,0xd3,0x5e,0x50,0x55,0x00,0x15,0x8a, - 0x32,0xd0,0x45,0x08,0xe8,0x4c,0xb6,0xef,0xe4,0x07,0xb6,0x40,0xb9,0x59,0x5f,0x5b,0x2e,0x33,0x68,0xaf, - 0xad,0xa8,0x2c,0x1f,0xe9,0x02,0x5d,0x7d,0xf1,0xdf,0xdb,0x92,0x01,0xfe,0x2f,0x1d,0x21,0x18,0x9d,0xd7, - 0x55,0xfa,0x0d,0x14,0x4f,0xc3,0xa3,0x43,0x25,0x07,0x6b,0xae,0x03,0xcd,0x18,0xa2,0xf3,0x12,0x52,0x20, - 0xda,0x47,0x29,0x79,0x11,0xd8,0xa4,0x74,0x62,0xc4,0xcf,0xf0,0x3b,0xd4,0x56,0xd8,0x97,0x7e,0xb3,0x0a, - 0xed,0xe8,0x96,0x90,0x17,0x3d,0xd9,0x4c,0xcd,0x99,0xc3,0x31,0x55,0x37,0x0b,0x94,0x4c,0xd4,0xb3,0x08, - 0xec,0x2d,0x9d,0x0d,0x84,0x70,0x9a,0x34,0x4e,0x3a,0x40,0x50,0x56,0x63,0x96,0xd8,0x75,0xd6,0x9c,0x9e, - 0xcb,0x59,0x13,0x36,0x08,0x38,0xa8,0x6e,0x35,0x8c,0x5d,0x99,0xce,0xaf,0xb9,0x39,0x28,0x98,0x75,0xb6, - 0x74,0xa6,0x5a,0xda,0x43,0x53,0x44,0x0c,0xf5,0xa1,0x6b,0xd2,0xcf,0x75,0xab,0xe0,0x4a,0x72,0xbb,0x55, - 0x60,0x05,0x6c,0x3d,0x40,0xe0,0x1a,0x63,0x24,0xdc,0x67,0xa4,0xd8,0xd8,0xe0,0x9e,0xe2,0xb8,0x9f,0x21, - 0x12,0x49,0x95,0xf7,0x02,0xd5,0xe7,0xc9,0xbc,0x48,0x2e,0xa3,0xcb,0x75,0xf8,0xa2,0xd9,0x43,0xd6,0xae, - 0x56,0x62,0x09,0xe2,0xb0,0xf8,0x15,0xaa,0x79,0xb4,0x75,0xf1,0xb3,0x5a,0xbd,0x2d,0x25,0xd1,0x68,0xf3, - 0x55,0xf1,0x8b,0xd2,0xb7,0x9e,0x99,0x3d,0x93,0x81,0xf5,0xf3,0x94,0xbe,0x36,0x54,0xf9,0xbf,0x4a,0xf3, - 0x17,0x79,0xbb,0xb4,0x52,0xc3,0x33,0xe5,0xec,0x05,0xc2,0xb5,0xcf,0x66,0x66,0x6f,0x13,0xb1,0x5d,0xd7, - 0xe9,0x81,0x71,0x4e,0xdd,0xa0,0x6e,0x57,0xab,0x9f,0xc4,0x2c,0xe7,0x2a,0xb9,0x3d,0x83,0xdf,0x5b,0x75, - 0xcd,0xd8,0x81,0x3a,0xdc,0xdb,0x81,0xd5,0x6a,0xa7,0xd6,0xde,0x4e,0xa5,0x07,0x44,0xe2,0xa6,0xdf,0x4c, - 0xe3,0x43,0x79,0x13,0x42,0xf7,0x67,0xd6,0xd9,0x7d,0xc1,0xb2,0xeb,0x50,0x1b,0x59,0xe0,0x32,0xc2,0x1e, - 0x6f,0x3f,0x36,0x8e,0x37,0x28,0x35,0xbd,0x48,0x7c,0xe3,0xc6,0xed,0x4e,0xd9,0xf0,0x78,0x37,0x59,0x7d, - 0x21,0x26,0x32,0x77,0x66,0xa7,0x11,0x09,0xfb,0x3d,0x6a,0xe7,0x41,0xb4,0x77,0x3a,0x51,0x3a,0x27,0x7b, - 0x72,0x2a,0xb5,0xbe,0x1f,0xe5,0xed,0x1e,0x39,0x82,0xe9,0xef,0x13,0x23,0xb2,0xd5,0x32,0x5f,0xd6,0x28, - 0x40,0x5f,0xf9,0x2f,0xae,0xf7,0x95,0xfb,0x44,0x7a,0x13,0x4d,0x45,0x6e,0xac,0x28,0x6a,0xd1,0xd9,0xe0, - 0xd7,0x97,0x5a,0x78,0xa9,0x31,0xd9,0x4b,0x69,0x58,0xce,0x0d,0xcc,0x0f,0x17,0xc6,0xc3,0x46,0xd1,0x6f, - 0xdc,0xa2,0x04,0x04,0x5c,0x92,0x7e,0x37,0x0a,0xfe,0xe0,0x16,0xcc,0x66,0x5c,0x2e,0x9b,0x6d,0x14,0xfb, - 0xd9,0x16,0xb3,0x57,0xe7,0x3b,0x2d,0x75,0x05,0x1d,0x21,0x5a,0x86,0x25,0x4e,0x47,0xd4,0x4d,0xb5,0x2c, - 0xad,0xbe,0x07,0x8e,0xeb,0x70,0x1a,0x13,0x4b,0x9b,0x06,0xe6,0xd2,0x7a,0xb5,0x72,0x94,0x2b,0xc2,0x45, - 0xfc,0x06,0xd2,0xcd,0x19,0x9c,0x5b,0x79,0xa7,0x35,0xcb,0x5b,0xfc,0x05,0x73,0x18,0x0b,0x6c,0x9e,0xf0, - 0x3a,0x9e,0x0b,0xef,0xbe,0x5a,0xcd,0x35,0xf1,0xc1,0xcc,0xc8,0xe8,0xdf,0x89,0xef,0x9b,0x3c,0xb0,0x43, - 0x8a,0x59,0x6a,0x16,0x93,0xac,0xee,0x53,0x4b,0x6e,0x1f,0xce,0x54,0x94,0xb1,0x20,0x6c,0xe0,0x5f,0x73, - 0x17,0x91,0xea,0xf6,0x60,0x21,0xc2,0xb1,0x69,0xc2,0x2b,0xdd,0x29,0x47,0xe9,0x82,0xc8,0xea,0x9d,0x6b, - 0x9a,0xd5,0xab,0xd5,0x6a,0xb1,0x5a,0xf9,0x17,0x74,0xa0,0x31,0x7f,0xed,0x89,0xbb,0x7a,0x7e,0xf7,0xfa, - 0xd7,0xec,0x9d,0x0c,0x6f,0xfe,0x35,0x5c,0x23,0xe8,0x32,0x8c,0x82,0xae,0x68,0x16,0x80,0x2d,0x04,0x61, - 0xb7,0xe5,0xa4,0x89,0xeb,0x14,0x0f,0x1e,0xf0,0x42,0x18,0xcb,0x62,0x6a,0x9b,0x97,0xf6,0xe2,0x13,0x8a, - 0xa6,0x15,0xb2,0x5a,0x30,0xf7,0x39,0xcd,0xec,0xc4,0x57,0x94,0x5a,0xff,0x0b,0xce,0x08,0x58,0x62,0x45, - 0xaf,0x4b,0x8d,0xa2,0x9c,0x18,0x9f,0x43,0xe8,0x34,0x30,0x6b,0xc8,0x00,0x5c,0x22,0x8a,0x7a,0x6b,0x9b, - 0x4b,0x04,0x4d,0xbf,0x8c,0xbf,0x10,0x78,0x09,0x86,0xda,0x21,0xfa,0x96,0xce,0xb0,0x83,0x5c,0x3a,0xac, - 0xa4,0x33,0x7b,0x38,0xee,0x04,0x0d,0xcb,0x29,0x48,0x3d,0x29,0xb9,0x27,0x7e,0xc6,0x2f,0x99,0xc1,0x9c, - 0x36,0x48,0xe3,0xe1,0xb0,0x78,0xec,0xd8,0x1d,0x19,0x47,0x2a,0x45,0xbf,0x1f,0xe4,0xb1,0x9b,0x43,0x84, - 0x2a,0x6f,0x6f,0xa3,0x84,0x2e,0x61,0x6b,0xbb,0xa4,0xd7,0xba,0x88,0x74,0x11,0xf2,0x2b,0x51,0x70,0x72, - 0x8e,0xde,0x97,0xe6,0x9a,0xad,0xb5,0x5d,0xb5,0xc5,0x25,0x3e,0x4e,0xb3,0x64,0x95,0x98,0x79,0xca,0xd8, - 0x30,0x49,0x21,0x02,0x18,0x4c,0xb5,0xf0,0x88,0x10,0x43,0x9d,0xf8,0x49,0xe1,0x15,0xe0,0x23,0x76,0xb9, - 0x4d,0xad,0xe4,0xa1,0x77,0x7a,0xe5,0x73,0x60,0xc0,0x76,0x3b,0xc6,0xeb,0x5a,0xdf,0x68,0x6d,0xb3,0x22, - 0xd7,0xc6,0x19,0x64,0x06,0xf4,0x8d,0x8b,0xb7,0x1a,0x58,0x05,0xb7,0x27,0x1f,0x88,0x1d,0x1a,0xdf,0x72, - 0x3d,0x55,0x7b,0x1e,0xdf,0x54,0x29,0xab,0xf6,0x72,0xa8,0xa2,0x36,0x43,0x59,0xec,0x2e,0x67,0xb3,0xcb, - 0x5b,0xe5,0xb1,0xb3,0x34,0x61,0x58,0x8c,0x6b,0xde,0x91,0x77,0x5a,0xf8,0xce,0x0c,0xf0,0xd1,0x2f,0x27, - 0x44,0xbf,0xcf,0xaf,0x39,0x8b,0x0c,0x55,0x81,0x75,0x13,0x61,0x3a,0xb1,0x94,0x12,0xeb,0xa6,0xca,0x2c, - 0x8b,0x33,0x20,0x0c,0xd4,0xb5,0x36,0x33,0xde,0x32,0x88,0x06,0xd5,0x0a,0x73,0xc6,0x5e,0x9e,0x80,0xe2, - 0x14,0x12,0x30,0x65,0x5e,0xab,0xb8,0x48,0xdf,0x80,0x57,0x31,0x48,0xdf,0x11,0xce,0xa2,0x7e,0xf3,0x13, - 0x24,0xd8,0xb4,0xdb,0xfc,0x62,0xc0,0xb7,0x34,0x34,0x0a,0xe8,0xad,0x9b,0x6f,0xd0,0x7a,0x38,0x99,0xf6, - 0x40,0x73,0xef,0x17,0xcb,0x51,0x29,0xe7,0x93,0xac,0xcf,0xe8,0x1b,0x75,0x5c,0xa9,0x63,0x0b,0xda,0x41, - 0xcd,0xfb,0x5c,0x7d,0xf7,0x58,0xb7,0x5c,0x50,0xff,0xe0,0xcc,0x83,0xde,0xa1,0xb4,0x12,0xec,0xc5,0x85, - 0x2f,0x98,0x43,0xa0,0x15,0x73,0x47,0x2d,0xa2,0x1d,0xfb,0x8e,0xbb,0xbb,0xca,0x29,0xf0,0xb0,0x55,0xe0, - 0x61,0xe4,0xea,0xee,0xbb,0xc7,0x0e,0x2b,0xdc,0x94,0x98,0x39,0xc6,0x6e,0xbe,0xba,0x0d,0xb4,0x17,0x2f, - 0x34,0x59,0x84,0x91,0x2a,0x4a,0x73,0x0e,0x66,0x42,0x38,0xdf,0x27,0x81,0x86,0x7e,0x17,0x66,0x09,0xcf, - 0x64,0xa1,0xb5,0x18,0xb8,0x83,0x85,0x6d,0x97,0x21,0xb0,0x4b,0xb9,0x00,0x4c,0xdb,0xf7,0x57,0xb1,0xe7, - 0x5c,0x78,0x8d,0xbd,0x70,0xa2,0xbd,0xcc,0x96,0x31,0xcc,0x91,0x8c,0x77,0xec,0xf2,0x71,0x36,0x2c,0x61, - 0x99,0x5a,0xc4,0xec,0xe2,0x3b,0xd1,0x9b,0x1d,0x61,0xa8,0x6c,0x13,0xe3,0x42,0xb4,0x41,0x87,0x4b,0x8e, - 0x3f,0xbf,0xb3,0xb3,0x84,0x9f,0xe5,0x50,0xac,0x2b,0x94,0xf2,0x0f,0xfb,0xd3,0xad,0x88,0x41,0x56,0x6e, - 0x29,0x88,0x4d,0xe6,0x4a,0xc4,0x2b,0x1b,0xfd,0x0c,0x4e,0x54,0x2f,0xb8,0x09,0xef,0xfb,0xea,0x32,0x89, - 0x26,0x5c,0x8e,0x25,0x86,0x2e,0x4d,0x04,0x87,0x04,0x66,0x30,0x0a,0x80,0xa5,0xf5,0x06,0xe5,0xad,0x8a, - 0x05,0x82,0x4f,0x8b,0x01,0x1d,0xd6,0xd4,0x0a,0xf4,0x3e,0x3c,0xbc,0xba,0xaa,0x1f,0x23,0xce,0xe5,0x0b, - 0x78,0x7e,0xc2,0xa7,0x4d,0x3d,0x43,0xd2,0x52,0x6d,0xab,0x20,0xd2,0xf1,0x39,0xcb,0xac,0x0a,0xae,0x59, - 0x43,0x24,0xa9,0x6f,0xca,0x47,0x55,0x8b,0xad,0xf7,0x94,0xf1,0x17,0x01,0x31,0x56,0x94,0xcd,0x4d,0xea, - 0x7e,0x9c,0x8b,0x31,0x47,0xa6,0x1c,0xc6,0xc2,0x86,0x03,0xae,0x21,0x20,0x16,0xa0,0x5f,0x9d,0x59,0xa6, - 0x33,0x95,0x49,0x4f,0x9c,0x49,0xbf,0x4e,0x26,0x63,0x23,0x5b,0x82,0x5f,0x23,0xa0,0x41,0x29,0xa1,0x10, - 0x33,0x65,0xd2,0x93,0x93,0xee,0x28,0xaf,0x20,0x77,0x0f,0x3a,0xc3,0x34,0x27,0x1c,0xed,0x1d,0xcb,0xb4, - 0x67,0xd5,0xe0,0xc4,0xcb,0x75,0xea,0x10,0xd8,0x06,0x64,0xa0,0x21,0xdc,0x8f,0xdd,0x2c,0x82,0x1c,0x3f, - 0x13,0x5d,0x53,0x21,0x18,0xd4,0xd7,0xf9,0x99,0xba,0x4f,0x34,0x8c,0xca,0x08,0xf4,0x20,0xd8,0x48,0x5e, - 0x15,0xd3,0xfe,0x9c,0x75,0x49,0xce,0x33,0x25,0x99,0xf9,0x52,0x45,0x7f,0x42,0xb6,0x24,0xc0,0x06,0x47, - 0x17,0x11,0x91,0xcf,0x97,0xed,0x82,0x6e,0x32,0x4e,0x65,0x5d,0xdc,0xd2,0x76,0x88,0x5d,0x63,0x75,0x16, - 0xb5,0x4d,0x0d,0xbd,0x47,0x22,0xa7,0xd1,0xe5,0x4c,0x4d,0x57,0xf9,0x18,0x85,0x9d,0xbd,0x99,0x87,0xd6, - 0x6f,0x3c,0x70,0x04,0x71,0x0e,0x62,0x1a,0x4f,0xeb,0x5a,0xd1,0x06,0xdd,0x74,0x0b,0x27,0x9b,0x3c,0xb7, - 0x7c,0x6a,0xaf,0xde,0x54,0xd3,0x04,0xf9,0x99,0xcd,0xf0,0x97,0xdb,0xfc,0x05,0xd4,0xff,0x9a,0xed,0xf0, - 0xf8,0xec,0x12,0x0d,0x89,0xc0,0x92,0x0f,0xe6,0x48,0x2a,0xe4,0x48,0x2a,0xdc,0xf1,0x39,0x2f,0x70,0x8f, - 0x96,0xac,0x56,0x85,0x9c,0x58,0xec,0xf3,0x58,0x8e,0xab,0x82,0x0f,0x46,0x3f,0x8b,0x45,0xc9,0x41,0xc7, - 0x8b,0x16,0xda,0x22,0x6e,0x8d,0x69,0x8b,0xac,0xe9,0xeb,0xc4,0xc7,0xb0,0xd8,0x31,0x9a,0x15,0x38,0x69, - 0x6e,0xdc,0x99,0xc5,0xe8,0x74,0xe9,0x8f,0x99,0x66,0x3b,0x51,0x14,0x12,0x53,0x9e,0xf6,0x44,0xa7,0xc1, - 0xc1,0x8d,0x96,0x4a,0x67,0xb6,0x14,0x37,0xa0,0x9d,0xca,0xdb,0x9f,0x3c,0xfa,0xec,0x88,0x5d,0x4c,0x68, - 0x7d,0xf6,0x61,0x50,0xc7,0x8f,0x1e,0x7d,0x54,0xff,0x26,0x81,0xce,0xc1,0x38,0x3e,0xad,0xfd,0xfd,0x7d, - 0xc7,0x18,0xf8,0xc9,0x93,0x27,0x87,0x6b,0x3f,0x09,0x0c,0xf9,0x40,0xbb,0xb5,0xb1,0xce,0x61,0x6a,0xe0, - 0x46,0xb9,0x90,0x64,0x20,0x11,0x1d,0x82,0x3b,0x25,0xf4,0xe8,0xab,0x4c,0xc3,0x68,0xe3,0x4e,0xfe,0x2c, - 0x99,0x5c,0x3a,0x59,0x3a,0x89,0x72,0x1b,0x68,0x4d,0xe7,0xdb,0x44,0x41,0x2d,0x61,0x5b,0x4d,0x55,0xab, - 0x30,0x77,0x9d,0x07,0x99,0x8d,0x6f,0x20,0x2e,0x78,0x72,0x89,0x53,0x98,0x8b,0x1f,0x48,0x05,0x97,0xc4, - 0x4c,0x12,0x94,0x6a,0x36,0xdc,0xac,0x47,0xf3,0x33,0xd1,0x5d,0xdb,0x31,0x44,0xc0,0x82,0x4d,0x49,0x45, - 0xdf,0xda,0xcc,0xe3,0x98,0xe5,0x9e,0x2d,0x7a,0x6d,0x8b,0x04,0xad,0xd1,0x68,0xca,0xc2,0x9f,0xa6,0x48, - 0x92,0x12,0xd6,0x84,0x44,0x09,0x63,0x16,0x32,0xd5,0x2c,0x7f,0x35,0x88,0x16,0xfa,0xf7,0x5a,0xee,0x78, - 0x10,0x3e,0x38,0x08,0x3d,0x75,0xc3,0x9b,0x35,0xf8,0x21,0x51,0xd6,0x62,0x79,0x48,0xdd,0xdf,0x0b,0x1b, - 0x48,0x4e,0x90,0x8c,0x5b,0x5a,0x5d,0xcc,0x66,0x46,0xb8,0xc2,0xd5,0xed,0x2b,0x7c,0x65,0xab,0xdc,0xef, - 0x6d,0xb0,0x05,0x53,0xc4,0xa4,0x71,0x39,0xc7,0xab,0xd4,0x2f,0x2e,0xb1,0x23,0xee,0x78,0x6b,0x76,0xc5, - 0xdb,0x62,0x24,0xc1,0x7f,0x18,0xf5,0x6b,0x46,0x13,0xbf,0x24,0xae,0xa7,0xbe,0xaf,0x93,0xe6,0xd9,0x6f, - 0x99,0x32,0xc7,0x28,0xe0,0x64,0x1b,0xcf,0x0b,0x03,0xdf,0x26,0x65,0x1b,0x7e,0x0d,0x7d,0x6a,0xe6,0xc8, - 0x3e,0x94,0xa3,0xa6,0x2a,0xd6,0x9f,0xa6,0xd5,0xf2,0x06,0x12,0x01,0x83,0x67,0xe2,0xc6,0x58,0x1d,0x71, - 0x88,0xdc,0x1d,0x32,0xa8,0x6c,0x92,0x40,0x1d,0xd6,0x11,0xd2,0xf7,0x9c,0x29,0x4c,0x3c,0x0b,0x81,0xe9, - 0x5b,0x96,0x65,0x49,0xb0,0x35,0x23,0x48,0x9d,0x62,0xc9,0x23,0xfb,0x16,0x75,0x15,0xd1,0xb4,0xb3,0x40, - 0x47,0x11,0x97,0xc2,0x87,0xd2,0xd9,0xf2,0xee,0x96,0x8f,0x44,0x4d,0xd1,0x79,0x77,0x72,0x00,0xfb,0x4d, - 0xa6,0xdf,0x61,0xdf,0x81,0x00,0x66,0xbc,0x55,0x89,0x98,0x6b,0x88,0x2b,0xdf,0x18,0xba,0x13,0x54,0xb5, - 0x46,0xc0,0xae,0xb7,0xf5,0xa2,0xe1,0x2e,0x2b,0x89,0x0b,0xb5,0x3f,0x01,0x0d,0x85,0x11,0x0c,0x27,0xb2, - 0x02,0x0d,0x51,0x44,0x22,0x8a,0xf0,0x02,0x29,0xfa,0x5d,0x47,0x85,0xca,0x47,0x1b,0xac,0x6a,0x42,0xb3, - 0x15,0x1e,0x61,0x8c,0x87,0x9e,0xa5,0x57,0x3d,0xa0,0x55,0x21,0x37,0x13,0x90,0x9b,0x95,0xf2,0xbe,0x9c, - 0x8f,0x9a,0x68,0xc4,0x09,0xc1,0x13,0xea,0xb3,0xdf,0x39,0xf0,0x35,0x55,0x0d,0x97,0x6b,0xaa,0xf7,0x99, - 0x42,0x2d,0xf4,0xfa,0x2b,0x6d,0x28,0x9a,0xfd,0xac,0x41,0xac,0x23,0x10,0x58,0x93,0x78,0xdf,0xe2,0x16, - 0xf5,0x57,0x68,0x19,0x0a,0x9b,0xb0,0x0e,0xc0,0x3c,0x3d,0x54,0x27,0x91,0x5f,0xff,0x27,0xcd,0xd6,0x6e, - 0xab,0xac,0x0e,0x78,0x64,0xdd,0x2b,0xe5,0x6b,0x1f,0xe4,0x6b,0x73,0x0a,0x83,0x08,0xde,0xe7,0x89,0x0f, - 0xfa,0x3d,0xd1,0xb3,0x37,0x06,0x39,0xba,0xe5,0x90,0x5b,0x2a,0xcf,0x9f,0xcd,0x1b,0x95,0xbe,0x3f,0x61, - 0xee,0x61,0x82,0x13,0xc5,0x91,0xa2,0xfd,0xea,0xe2,0x02,0x63,0x5d,0xa4,0x28,0x85,0x2e,0x93,0x99,0x26, - 0x8a,0xb0,0x0d,0xfd,0x9e,0x34,0x6e,0xcf,0x2d,0x5a,0x19,0x29,0x88,0x8f,0x1e,0x39,0x98,0xc6,0x71,0xbc, - 0x35,0x42,0xc4,0xa4,0x10,0x3c,0xde,0xa6,0x14,0x5b,0x5c,0x90,0x33,0x1a,0x8c,0xbc,0xd3,0x6b,0xb0,0xe0, - 0x0f,0xa1,0xb6,0xcf,0x16,0x39,0xdc,0x78,0xee,0x1c,0x50,0xd1,0x77,0x89,0xdf,0x16,0x94,0xeb,0x88,0x51, - 0x56,0xb2,0x13,0x3a,0x97,0x5a,0xff,0x4e,0x9a,0x47,0x35,0xbc,0xa4,0x08,0x0b,0x7d,0x1f,0xa8,0xd1,0xb6, - 0xfd,0x0e,0xb8,0x5a,0x08,0xfd,0xa1,0x41,0xda,0xa3,0xbc,0x0f,0x45,0x16,0x30,0x11,0x98,0x6a,0x3e,0x21, - 0xa2,0x5a,0xee,0xe6,0x32,0xcd,0x74,0x44,0x7b,0x92,0x61,0x4f,0x0e,0x5c,0xd0,0xd5,0x1b,0x17,0x74,0x60, - 0xc6,0xa7,0xa2,0x35,0x82,0xeb,0xb9,0x7c,0xf3,0x7a,0xce,0xc1,0xe8,0xdf,0xb9,0xab,0x68,0x6f,0xc0,0x0e, - 0x8e,0x97,0x0f,0x0f,0x1f,0x7e,0x76,0x70,0x0e,0xbf,0x00,0xfc,0xe8,0x05,0xad,0xcc,0xcf,0x6d,0xe6,0xe7, - 0x9e,0x83,0xdb,0xbf,0x4d,0x94,0x64,0xbf,0xbc,0x35,0xbe,0x24,0x20,0xe5,0x35,0x62,0xff,0x60,0x3d,0x11, - 0x75,0x7c,0xeb,0x6b,0x42,0x84,0x2a,0x77,0x69,0x59,0x46,0x69,0x38,0x81,0x72,0x2d,0xec,0x05,0x2f,0xd7, - 0x6b,0xd7,0xe8,0xf5,0xf8,0xf8,0xcc,0xeb,0x13,0x6d,0x1d,0x66,0x33,0x98,0x37,0x87,0xf3,0xb4,0x86,0x5f, - 0x08,0xa2,0xad,0x6e,0x89,0xd7,0x2a,0x89,0x44,0x21,0x52,0x0a,0xd2,0xb0,0x10,0xc2,0x99,0x30,0xb9,0x49, - 0xb2,0x3a,0xe4,0x8d,0x17,0xf2,0x07,0x55,0xa8,0x1a,0xf6,0xd3,0x11,0x56,0xcb,0x45,0x0a,0x01,0x7d,0x59, - 0xdc,0x84,0x37,0x84,0xde,0xd2,0xf0,0x16,0x36,0xd5,0xea,0x8a,0x1d,0x04,0x4d,0x51,0xd6,0x61,0x76,0xc5, - 0x3f,0xd2,0xcd,0xb0,0xa2,0x76,0xa9,0x19,0x85,0x46,0xa9,0x0c,0x1d,0x92,0xd3,0x2a,0x9c,0xc1,0x1b,0xe7, - 0xfc,0x16,0x0d,0xd7,0x59,0x0e,0x09,0x64,0x7a,0xb6,0x3c,0x3f,0x87,0x11,0xb6,0x1a,0x33,0x98,0x38,0xb6, - 0x9a,0xac,0x3c,0x13,0xb0,0xdb,0xd3,0xdb,0x8c,0x86,0xb5,0xc2,0xd0,0x82,0x3e,0x8f,0x50,0x0e,0xa5,0xaf, - 0x92,0xf0,0x1f,0x49,0xf8,0xaf,0x24,0xf6,0xbf,0x4a,0xba,0xe8,0x23,0xb6,0x8b,0x73,0xd2,0x67,0xc1,0xdd, - 0x17,0x44,0x48,0xd9,0xab,0x87,0xdf,0xf1,0xa6,0xb5,0x65,0x88,0x72,0x0f,0xff,0x8d,0x04,0x47,0x15,0x06, - 0x69,0xdf,0x21,0xad,0xa5,0xea,0x82,0xf4,0x59,0xf3,0xca,0x20,0xfc,0xba,0xc0,0x65,0xc4,0xac,0xe3,0xea, - 0xe2,0x47,0xb9,0xba,0x78,0xd3,0x2e,0xd0,0x56,0x96,0xa6,0x32,0xbf,0x6e,0x94,0x29,0xaa,0xba,0x5d,0xe8, - 0x17,0xf4,0x88,0xd6,0x20,0xbb,0x82,0xa8,0xa2,0xe2,0xb9,0x60,0x99,0x1f,0x2e,0x14,0x2a,0x89,0xd4,0x3a, - 0x03,0x3b,0xc8,0x9d,0x7b,0x73,0x41,0xa5,0xb8,0xd7,0xe1,0x04,0x83,0xb7,0xaf,0x08,0xea,0x8a,0xf0,0x19, - 0x47,0x56,0x4e,0x73,0xae,0x6e,0xa1,0x61,0xff,0x8b,0xb0,0xa0,0xa9,0x55,0x3e,0x86,0xea,0x7d,0xcc,0x16, - 0x9d,0x33,0x84,0x6b,0x18,0x98,0xd8,0x9c,0x84,0x31,0x28,0x73,0x2a,0x0c,0x44,0xaa,0x34,0x74,0x51,0x15, - 0x4f,0x08,0xd8,0x98,0xf8,0x53,0x51,0xed,0xd5,0x99,0x4a,0xc3,0x37,0x25,0xf0,0x5d,0x68,0x0a,0xe4,0x2c, - 0x9b,0x4e,0xd3,0x5c,0x6c,0x9b,0x5a,0x4d,0xc0,0x4c,0xd4,0xdf,0x66,0xbb,0x69,0xb0,0x48,0xbd,0xbf,0x3f, - 0xb4,0x11,0x10,0x60,0x38,0x55,0x3b,0x91,0x77,0x39,0xa8,0x17,0x8d,0xa6,0x80,0x07,0xbf,0xb5,0xbf,0x70, - 0xfc,0x92,0x22,0x6a,0x1c,0xfa,0x4e,0xfd,0x2c,0xa5,0x9f,0x79,0xb3,0x9f,0xf9,0xda,0x06,0x59,0x70,0x69, - 0x1d,0xa3,0xb6,0xbf,0x85,0x82,0x18,0xd2,0x67,0x9a,0x96,0x7e,0x8b,0xb6,0xa5,0x5f,0x40,0xdd,0x8a,0xd3, - 0xb5,0xed,0x8e,0x8e,0x51,0x67,0x14,0xed,0xe3,0xc5,0x5a,0x01,0xf3,0x30,0xfd,0x50,0xc3,0x3d,0xe3,0x7b, - 0xd9,0xf4,0x95,0x66,0xba,0x50,0xad,0xb2,0x94,0x00,0x4b,0x1f,0x10,0xfc,0x9b,0x80,0x01,0x3e,0xe0,0xc0, - 0x0a,0x02,0x24,0xd6,0xe5,0xaf,0xc6,0x1e,0x0e,0xb1,0xb7,0x7e,0x2d,0x10,0xdb,0x12,0xcb,0xdf,0x08,0x7b, - 0x26,0x72,0xc5,0x2b,0xc3,0x8c,0xd6,0xc3,0x46,0x9c,0xb6,0xf1,0x46,0x70,0xb6,0xfd,0x23,0x28,0xea,0xe3, - 0xb8,0xaa,0xd5,0x71,0xe5,0xf5,0xbc,0x58,0x07,0xcb,0x18,0x06,0x4e,0x05,0x59,0xae,0xb6,0xe1,0x5d,0x16, - 0x2e,0x2c,0x04,0xa4,0x10,0x75,0x03,0xf0,0xaf,0xe2,0xc5,0xc0,0x2a,0x82,0x87,0xe7,0xf4,0x6a,0x55,0xdc, - 0xb0,0x61,0x6f,0x63,0x38,0x7d,0x6f,0xea,0xb5,0x21,0x3d,0xc1,0x58,0x05,0x74,0xd2,0x38,0x0b,0x89,0x30, - 0x7b,0x51,0xf8,0x17,0x81,0x66,0x9f,0x0e,0xe9,0x3c,0xba,0x68,0xb9,0x52,0xaa,0xe3,0x1f,0x8b,0x71,0x01, - 0x23,0x02,0xfe,0x6d,0xb8,0x1d,0xf0,0xc7,0xc7,0xc7,0xd5,0xb1,0x18,0xba,0xfb,0x8f,0x0f,0xf8,0xa0,0x12, - 0xff,0x03,0x01,0x21,0xb4,0x8c,0xfd,0xe2,0xc4,0x99,0x35,0xb9,0x0b,0x5d,0xcc,0x65,0x2d,0xbc,0x39,0xc8, - 0xbd,0x32,0x6e,0xa6,0xfe,0x14,0xac,0x7d,0x5a,0x88,0x2b,0x02,0xf6,0x58,0x09,0xe7,0x6b,0x2e,0x5b,0xc4, - 0xde,0x0b,0xac,0x8d,0xfd,0xfe,0xfe,0x13,0x9c,0x3d,0x0f,0x8e,0xdc,0x33,0x09,0x5e,0x0d,0x9e,0x3d,0x7f, - 0xfa,0xfa,0xe9,0xf1,0xd8,0x96,0x3c,0x39,0x31,0x25,0xe1,0x14,0x00,0x24,0x92,0x84,0x61,0x32,0xa6,0x2d, - 0x94,0xbe,0x60,0x5e,0x9a,0xe8,0x30,0xf5,0x00,0x63,0x70,0x0f,0x4a,0xde,0x09,0x0e,0x65,0xb5,0xb0,0xa6, - 0xc3,0x59,0x9c,0x87,0xcf,0xa8,0xa1,0x64,0xbf,0x0c,0x93,0x60,0xed,0x44,0x8b,0xca,0xac,0x0b,0xa9,0xc7, - 0xc2,0x87,0x1c,0x8a,0x4a,0x07,0x3d,0x7d,0xa9,0x6c,0x6b,0x74,0xb0,0xd9,0x89,0x5b,0x7a,0x7f,0xff,0xf8, - 0xdd,0xa3,0x54,0x55,0x79,0x1c,0x4f,0x82,0xbb,0x05,0x9c,0x9a,0x2e,0xe7,0xd3,0xef,0xd2,0x74,0xa1,0x88, - 0x1d,0xee,0x9e,0x8a,0x52,0x4a,0xfc,0xfc,0xf2,0x4c,0x48,0x15,0xff,0x63,0x04,0x51,0x4e,0xc2,0xa4,0x3f, - 0xe9,0x3f,0x0a,0xc2,0x07,0x3e,0x7e,0x86,0xfa,0x28,0x5a,0xc3,0x99,0xdf,0xdb,0xd6,0xb7,0x97,0xee,0xb7, - 0x4f,0x9e,0x98,0xef,0x2e,0x83,0xbb,0x07,0xfe,0xb2,0xff,0xd0,0xad,0x2e,0x76,0x0f,0x99,0xb2,0xde,0x79, - 0x2e,0x36,0x59,0x73,0x14,0x84,0xba,0xba,0x66,0x05,0x6c,0x05,0x51,0x7b,0xd5,0xe5,0x7f,0x92,0xf2,0x33, - 0xed,0x27,0x30,0x19,0x3e,0xf0,0x67,0x4e,0x3d,0x9a,0xc8,0xd9,0xf8,0xe8,0x24,0x9c,0xc2,0x6b,0x69,0xa3, - 0x8d,0xd3,0xf8,0x9d,0xc4,0x13,0x3f,0x0d,0xee,0x5e,0xd1,0x1f,0x2c,0xde,0xa9,0x0e,0xc8,0x42,0xac,0xc9, - 0xee,0xee,0x03,0x5a,0xbb,0x56,0x47,0xcf,0x74,0xa4,0x9e,0x1b,0xfd,0x70,0xa9,0x1e,0xd4,0x08,0x2b,0xd9, - 0x5b,0x37,0xb1,0x56,0x59,0xaa,0x82,0xe1,0x0e,0xf5,0x52,0xe6,0xe7,0x06,0x01,0xae,0x9c,0xe7,0x2f,0x9d, - 0xe7,0xb7,0xce,0xb3,0x7f,0x19,0xdf,0xb8,0x4b,0x1d,0x12,0x10,0x3d,0x3e,0x0c,0x86,0x41,0xd5,0x8f,0x2f, - 0xc3,0x46,0xe3,0x67,0xb1,0xbb,0x54,0x87,0x61,0x15,0xac,0x2b,0x56,0x1d,0xa7,0x8c,0x20,0x3c,0xc3,0x28, - 0xce,0xcc,0x64,0x18,0x38,0x3c,0xb3,0xa0,0x78,0x46,0x70,0xa6,0x4b,0x84,0xe2,0x9b,0x31,0xc3,0x19,0x00, - 0x10,0x69,0x41,0x6d,0xa6,0x03,0xaa,0x35,0x22,0x0e,0x06,0x77,0x04,0xc5,0x50,0x9c,0x76,0x3b,0xe2,0x06, - 0x5a,0x7e,0x67,0x9c,0x22,0xea,0x55,0x7b,0x2a,0xab,0xd6,0x70,0xaa,0x7c,0xa7,0xa6,0x3e,0x82,0xdb,0x28, - 0x51,0x34,0x8d,0x70,0x22,0x43,0xd7,0x34,0x4a,0xd6,0x8c,0x5c,0x1f,0x88,0x0b,0x44,0x0d,0x13,0x3b,0x2c, - 0x4e,0x90,0x26,0x5f,0x17,0x8a,0x63,0xd1,0x09,0xef,0x0a,0xe6,0x83,0xe4,0xe5,0x01,0xe5,0x0e,0x03,0xbe, - 0xb1,0x2f,0xeb,0x38,0x21,0x20,0xce,0x5d,0x20,0xa1,0x23,0x2b,0x27,0xd8,0x09,0x4b,0x11,0x13,0xa8,0x90, - 0xd3,0x0d,0xfd,0x99,0x5e,0x39,0x58,0x02,0x1d,0xbe,0x22,0x0a,0xef,0x82,0xed,0x01,0xa9,0x91,0xda,0x6d, - 0xa4,0xd4,0x8d,0x38,0xd3,0xf3,0xaa,0x65,0xe7,0x2c,0x8c,0xc9,0x8f,0x62,0x9f,0x9c,0x3a,0x2d,0x0e,0x71, - 0xf7,0xeb,0x2d,0x80,0x9b,0x08,0x85,0x5e,0x16,0x7e,0xc6,0x81,0x84,0x10,0x13,0x9e,0x1f,0x2f,0x62,0x8e, - 0x1f,0xff,0x0c,0x5b,0xcc,0x9c,0x33,0x49,0x7c,0xce,0xdc,0xde,0xce,0x4e,0xc1,0x77,0x31,0xd2,0x79,0xb5, - 0x94,0x13,0xc6,0xab,0xa2,0xed,0x56,0xc1,0x86,0x14,0x36,0xda,0x15,0xdb,0x66,0x1b,0x4b,0x7a,0xae,0x30, - 0x5e,0xc2,0xf1,0xe6,0x7c,0xfc,0x88,0x30,0xf2,0x7c,0xfc,0x31,0xff,0xfd,0x84,0xfe,0x7a,0xb0,0xd8,0xf0, - 0x58,0x7b,0x9e,0xbe,0xec,0x5d,0xc0,0x33,0x04,0x3d,0xcf,0x69,0xe8,0x23,0x8d,0x3d,0x9e,0xa7,0x20,0xa5, - 0x7f,0x4c,0x6f,0x20,0x0d,0xab,0x5e,0x14,0xe5,0xd7,0x10,0xbe,0x77,0xe7,0x0e,0x27,0xf4,0x25,0xe5,0x80, - 0x1b,0x8d,0xe8,0xdb,0x8b,0x3a,0x9e,0x11,0x4e,0x9f,0x12,0x08,0xe4,0xa3,0x6f,0x8a,0xe8,0x25,0x98,0x4c, - 0x63,0x60,0x18,0x76,0x30,0x91,0xdf,0x17,0xac,0x70,0x46,0x94,0x08,0xbc,0x8c,0x5e,0x2b,0xca,0x1e,0x82, - 0xf9,0x2c,0x9c,0xeb,0x73,0x86,0xd5,0xac,0xb3,0xd6,0xc9,0x23,0x50,0x35,0x51,0x40,0x95,0x0e,0x8c,0x22, - 0x33,0x88,0xab,0x7c,0x0a,0x73,0x7c,0xec,0x9a,0x85,0x64,0x00,0xf0,0xf9,0x81,0xce,0xcc,0x49,0x98,0x84, - 0xa6,0x3c,0xca,0x3a,0xf0,0xfd,0xac,0x65,0x0e,0xc5,0xb2,0x44,0x76,0xf7,0xc6,0x97,0x06,0xb1,0xb2,0x54, - 0x88,0xe3,0x9c,0x01,0x14,0x4a,0x34,0x81,0x84,0xc4,0x6e,0x3b,0x19,0x2c,0xe3,0x6b,0x73,0xcc,0x0f,0x09, - 0x9b,0x94,0xbb,0xbb,0xd7,0x88,0x93,0xd9,0x18,0x15,0xd1,0xa7,0xd9,0xb0,0xdc,0xdf,0x57,0xda,0x7d,0x60, - 0x07,0x05,0xf7,0x38,0x77,0xad,0x85,0xdb,0x50,0xf9,0x38,0x2e,0x86,0x05,0x55,0x58,0xa0,0xe3,0x18,0x15, - 0xfd,0xf8,0xd7,0xd0,0xd9,0x84,0xf2,0x37,0x07,0x4a,0xd4,0xc5,0xe3,0x92,0xa6,0x40,0x3e,0xbb,0x7f,0xc4, - 0xf9,0x7c,0xfe,0x78,0x67,0x25,0xc3,0xc1,0x68,0x63,0x6a,0x52,0x38,0x4f,0xe0,0xf8,0xc9,0x39,0xb1,0xc1, - 0x0b,0x05,0x2d,0xfe,0x96,0x72,0x47,0x12,0x76,0xa5,0xd1,0x11,0x99,0xbc,0x60,0xfd,0xcc,0x67,0x3b,0x82, - 0x3b,0x30,0x18,0xd1,0x17,0x45,0xe8,0xd8,0xa5,0xcd,0x5c,0xda,0xc4,0x51,0xbd,0x9f,0x39,0x44,0xca,0xa6, - 0xd6,0xfd,0x6c,0x83,0x60,0x09,0xbb,0xe0,0x92,0xca,0x75,0x25,0x77,0x96,0xd5,0x10,0xde,0x5d,0x45,0xe5, - 0x86,0x1b,0x27,0x6b,0x34,0xd3,0x07,0x6b,0x15,0x16,0xcb,0x7a,0xb1,0xac,0x5f,0xb1,0xf3,0xa6,0x9f,0x61, - 0x27,0x42,0x99,0x1b,0x69,0x0a,0x42,0xbb,0xa2,0x36,0xc8,0xf2,0x2e,0x30,0x7b,0xb0,0xe8,0xfd,0x0e,0x44, - 0xe4,0xf0,0x3b,0x08,0xbd,0xae,0xcf,0x99,0xb4,0x61,0x98,0xeb,0x26,0xf7,0x69,0x09,0x74,0xcc,0x5f,0x2d, - 0xef,0xd7,0xe8,0xa0,0x64,0xaf,0x35,0xc3,0x0b,0xed,0xda,0x40,0x14,0x5f,0x68,0x7f,0xc9,0x53,0x5c,0x36, - 0x2d,0x7f,0xaf,0xc5,0xd7,0x81,0x8a,0x0a,0x0d,0x37,0xa9,0xae,0xa7,0x1b,0x15,0x78,0x52,0xb4,0x2a,0x62, - 0xe5,0x7e,0x67,0x21,0xe2,0xe9,0x25,0x75,0x9b,0x35,0x30,0xc5,0x2f,0xdc,0x0e,0xbb,0xb0,0x58,0x6a,0x17, - 0x16,0xca,0x5d,0x94,0x11,0xde,0xad,0x56,0x49,0xd3,0x40,0x87,0x25,0x7e,0xef,0xea,0x83,0xb7,0xc9,0x75, - 0xe2,0x96,0x6d,0x14,0xa2,0x7e,0xc3,0x30,0x85,0xed,0xe0,0x0d,0x77,0xd4,0x70,0x59,0x21,0x51,0x4b,0xdf, - 0x18,0x12,0x1d,0x61,0x4b,0x97,0xf1,0x9b,0x62,0x3c,0x3f,0xf1,0x97,0x44,0xa4,0xaf,0x56,0xcb,0xe1,0x35, - 0xcc,0x5c,0xb5,0x71,0xea,0x24,0x66,0xab,0x4f,0x58,0x80,0x04,0x6c,0x4b,0xc9,0x6a,0x67,0x87,0x6c,0x0f, - 0xaf,0x99,0x02,0xd8,0xea,0x13,0x57,0xb0,0x74,0xb8,0x02,0x2a,0x70,0x3d,0x72,0x17,0x43,0x73,0x3d,0xd6, - 0xe4,0x22,0x37,0x81,0x1b,0xe5,0x56,0xda,0x5e,0x27,0xaa,0x52,0x0e,0x22,0xcf,0x21,0x22,0x06,0x73,0x91, - 0x33,0x53,0xc1,0xa1,0x3e,0x95,0x25,0x35,0x3d,0x8a,0xe3,0x0b,0x41,0xab,0x2d,0x59,0x13,0x67,0x8b,0x4c, - 0x68,0xad,0x7d,0x99,0x22,0x49,0xed,0x52,0xbf,0x34,0x2f,0x4e,0x7a,0xc8,0xa9,0x38,0xd5,0x6a,0xf5,0xa0, - 0x70,0x8e,0x52,0x61,0xf3,0x8d,0x5b,0x92,0x43,0xda,0xba,0x08,0x73,0xd8,0x60,0x78,0xe7,0xec,0x85,0x65, - 0x73,0xf0,0x8e,0x55,0xb0,0x3a,0x62,0x21,0xba,0x8e,0xeb,0x90,0xad,0xd6,0x99,0x87,0xac,0x2d,0x93,0x2b, - 0xcc,0x63,0x87,0x91,0x70,0x60,0x18,0x66,0x5e,0x59,0xd7,0x5f,0xa1,0x35,0x19,0xd6,0x3e,0x0b,0x95,0xe5, - 0x2b,0x2b,0x48,0x2c,0x1d,0x77,0x27,0x95,0x2c,0x2b,0x54,0x29,0x3c,0xf1,0x7a,0x84,0x47,0x59,0x4a,0x8c, - 0x61,0x1a,0xa3,0xf4,0xe8,0x1c,0xa3,0xf3,0x17,0x54,0xf8,0x42,0x20,0x7e,0x09,0xff,0xa9,0xe9,0xd6,0xb0, - 0x39,0x17,0xe3,0x0b,0xcb,0xaf,0x0d,0xcd,0x73,0x7c,0x14,0x2e,0x9a,0x79,0x1c,0x14,0x7b,0x1d,0x32,0x7d, - 0xd5,0x15,0xb2,0x6b,0x81,0xc0,0x01,0xdf,0xb9,0xc6,0x6c,0x04,0xed,0x0b,0xd9,0x19,0x0b,0x0b,0xf4,0x0b, - 0x1b,0x89,0x15,0x12,0xd2,0xa0,0xa1,0xda,0x10,0x5b,0x06,0x79,0x48,0x4c,0xda,0x15,0x44,0x03,0x62,0x58, - 0x36,0xf2,0x2c,0x4b,0xe4,0x97,0xf1,0x22,0xd0,0x62,0x54,0xde,0x9a,0xb0,0x5f,0x93,0x5b,0x86,0x28,0x81, - 0x0c,0x2f,0xd2,0x5a,0xd9,0xa3,0xc9,0xc8,0x23,0xba,0x98,0xf6,0x54,0xc5,0xa5,0x26,0xbb,0xbb,0x99,0xd6, - 0x73,0x0f,0xf8,0xce,0xa0,0xe7,0x45,0xd5,0x08,0x7f,0x3d,0xbe,0x92,0xc4,0x5e,0xa0,0x66,0x4d,0x1d,0xea, - 0xe3,0x84,0x25,0x22,0x16,0xa1,0x14,0x84,0x50,0x7a,0xe0,0xa1,0xa0,0x2a,0x47,0x4f,0x18,0x06,0x5f,0xa9, - 0x76,0x5d,0xdd,0xfd,0x52,0x8c,0xce,0x0b,0xff,0x97,0x02,0xde,0x62,0x79,0xd3,0xe8,0x8f,0x5b,0x64,0xa7, - 0xc7,0xce,0x42,0x1d,0xfa,0x33,0x01,0x43,0x98,0x54,0xb5,0x44,0xae,0x3a,0x1c,0x82,0x41,0x4c,0xdf,0xa5, - 0x13,0x60,0xcf,0xe0,0xce,0x87,0x17,0x07,0x26,0xb8,0x83,0x27,0xec,0x42,0x45,0x56,0xb9,0x88,0xb5,0x6f, - 0x80,0x09,0xc2,0x8b,0x85,0x4a,0x4f,0x7d,0xc3,0xd7,0x45,0xa0,0x4d,0xc4,0x9f,0x97,0xb4,0x93,0x8c,0x2f, - 0x07,0xe2,0xef,0x94,0x2e,0x17,0x9b,0x9a,0x2d,0xe5,0xca,0x4c,0xb5,0x7d,0xe7,0xfd,0xed,0x4c,0x5c,0xd0, - 0x78,0xb0,0xff,0xa6,0x0e,0x66,0xfd,0xd2,0xd2,0x93,0x46,0x4b,0xe2,0xb1,0x75,0x06,0xde,0xd1,0xad,0x7b, - 0x3b,0xc5,0x7b,0x49,0xcb,0x9f,0x13,0x25,0x0c,0x84,0x8e,0x48,0x5d,0x5c,0xd2,0x3a,0x44,0x95,0x38,0x13, - 0x0a,0x46,0x45,0x2c,0x2e,0xd1,0x1e,0xba,0xd7,0xac,0x99,0x23,0xbd,0xd6,0x35,0x40,0x50,0xe1,0x41,0xcc, - 0xf5,0xd2,0x75,0x24,0xc2,0x87,0x14,0xd7,0x31,0xba,0x97,0x92,0x94,0x8c,0x13,0x0b,0xe5,0x2c,0x9b,0xa0, - 0x05,0xd7,0xdf,0x79,0xa4,0xeb,0xb3,0x4a,0xbe,0x1a,0x40,0x01,0x8a,0x2e,0x9c,0xe8,0x13,0xb3,0x63,0x2f, - 0xe8,0xdd,0xd5,0x6c,0x24,0x34,0xd2,0x7a,0x38,0x8e,0x18,0xb6,0xa5,0x41,0x25,0xc2,0x17,0xd1,0x66,0x86, - 0x62,0x94,0x72,0xb1,0x51,0x13,0xeb,0x70,0x24,0x81,0xe4,0x16,0x75,0x76,0x95,0xfd,0x9e,0xb2,0xc2,0x62, - 0x0d,0x6f,0x5a,0x20,0xb6,0xfd,0xf3,0x24,0xbe,0x81,0x3f,0x20,0xd7,0xb6,0x0e,0xc7,0xdd,0x6d,0x02,0x30, - 0x69,0xe9,0x3a,0x37,0xb4,0xc5,0x14,0x84,0x32,0x5a,0x53,0xd5,0xe3,0x87,0x3b,0x7c,0x2b,0x50,0x07,0xfa, - 0x26,0xf3,0x91,0xb9,0x65,0x26,0xda,0xdd,0xdf,0xc9,0xd5,0x09,0x92,0xbb,0x6e,0x89,0xe0,0xa4,0x0b,0x52, - 0xbc,0x5c,0x6e,0x3b,0x96,0xbe,0x44,0xec,0xa3,0x0a,0xb7,0x89,0x79,0xde,0x0c,0x1a,0x63,0x42,0xc6,0xdc, - 0xb5,0xd5,0x74,0x7d,0x1b,0x50,0x26,0x70,0x34,0x71,0x95,0xbf,0xeb,0x86,0xc7,0x36,0xc7,0x4d,0x5b,0x8e, - 0x2f,0xb6,0x14,0x18,0x24,0xae,0xdb,0x79,0xc2,0xee,0x7c,0x8e,0x8c,0x24,0x4a,0x44,0x59,0xd4,0x3b,0x1d, - 0xf9,0xc4,0x5c,0xc3,0xd5,0x36,0xc4,0x00,0x5e,0xec,0x55,0x6c,0xdb,0xd3,0x94,0xf1,0x55,0xe1,0xa8,0xd4, - 0x70,0x80,0x8b,0x96,0x10,0xcc,0xea,0x60,0x69,0xbd,0x3b,0x23,0x30,0x2b,0x4f,0x86,0x29,0xbc,0xcf,0x14, - 0x6a,0xf6,0x21,0xe8,0xd1,0x0b,0xb1,0x73,0xc4,0xec,0x6d,0xdd,0xb8,0x0c,0x0b,0x2c,0x37,0x75,0xc4,0xb1, - 0xe1,0x1b,0x37,0x65,0xea,0x7b,0x09,0x71,0x4e,0x89,0x0d,0x9c,0xd0,0x2c,0x34,0x4e,0x4e,0xe4,0xd6,0x6c, - 0x88,0x0d,0x19,0x4e,0xb6,0x7c,0x79,0x8d,0xd9,0x6c,0xa9,0x16,0x1a,0x91,0xab,0x33,0x85,0xa6,0x16,0x14, - 0x58,0x70,0x1a,0xb1,0x3c,0xc9,0xd5,0xa9,0x8c,0x73,0xab,0x35,0x0a,0x05,0xdc,0xd6,0xec,0x50,0x71,0x81, - 0xee,0x56,0xfa,0x6a,0xf5,0xa8,0x91,0x0c,0x64,0x23,0x21,0x2f,0x9d,0x2b,0x36,0xab,0x46,0x5a,0x14,0x35, - 0x1f,0xac,0x0e,0x28,0x4b,0x1a,0x11,0xf1,0x56,0x00,0xfc,0xa1,0x2b,0x95,0xfa,0x8d,0x45,0x0a,0xe1,0x51, - 0x64,0x47,0x1c,0x05,0x0e,0xb7,0xaf,0x49,0x11,0x23,0x8c,0x7a,0xf7,0x9a,0x14,0x8f,0x13,0x56,0xf0,0x4d, - 0x5b,0x95,0xc1,0xd7,0xf0,0x72,0x88,0x3a,0x64,0x0e,0xad,0x27,0x85,0xa0,0x0b,0xa8,0x73,0x64,0xa1,0xb5, - 0x05,0xa0,0x03,0x21,0xca,0x74,0x54,0x8f,0x42,0xe9,0x6b,0x6c,0x28,0x6b,0x14,0x6d,0x4d,0x0d,0xc2,0x53, - 0x66,0xeb,0x41,0xe2,0x63,0xd7,0xd4,0x39,0xa4,0x9a,0x51,0x3e,0x2a,0x70,0x77,0x74,0x0e,0x65,0x2a,0x28, - 0x7c,0x6d,0xc7,0x08,0xbb,0xae,0x5a,0x5f,0x5a,0x30,0x1e,0x50,0xcf,0x88,0x78,0xa4,0x1e,0x1b,0x7a,0xec, - 0xa6,0x30,0x54,0x27,0x1a,0xc1,0x8c,0x10,0x90,0xce,0x35,0xdb,0x68,0xf5,0xa1,0xe1,0x23,0x4a,0xe2,0x8e, - 0xb8,0xf5,0xd1,0x5c,0xe0,0xa9,0xb6,0x3d,0x89,0x27,0xe9,0x28,0x45,0xaa,0x14,0x3f,0x87,0xd0,0xb6,0x66, - 0xf3,0xbf,0x5c,0x0c,0x52,0xda,0xc8,0xda,0xcf,0x47,0x59,0x54,0x06,0x5a,0x1c,0xbf,0x56,0x71,0xe8,0xbf, - 0x4a,0x2c,0x0e,0xce,0x1d,0x5b,0xaf,0xb4,0x2c,0x8b,0x12,0x0e,0x8d,0x88,0x88,0xc8,0x16,0x55,0x9c,0x85, - 0x89,0x42,0x41,0x77,0x50,0xbf,0xcb,0xe6,0x29,0xdf,0xd9,0xf1,0xd3,0xeb,0x42,0x5f,0xf3,0x55,0x11,0x11, - 0xe5,0x29,0xf1,0x17,0x5d,0xe1,0x54,0x36,0x7a,0x54,0x4b,0xa4,0x24,0xe2,0x4d,0xb8,0xcb,0xea,0x16,0xae, - 0xe7,0x38,0xbb,0x46,0x60,0x1d,0x7b,0x2f,0x34,0x52,0xea,0x19,0x6e,0x5a,0xd0,0xa7,0x8e,0xb0,0x33,0x42, - 0xf8,0x4c,0xd4,0x57,0xda,0x36,0xa4,0xda,0x84,0x97,0x3f,0x64,0xaf,0xb6,0x6c,0xba,0x67,0xb4,0x80,0x95, - 0x8b,0xfa,0x6f,0x71,0x33,0xab,0x80,0x2c,0xb1,0x38,0xca,0xda,0xb4,0x64,0x1f,0xa8,0x13,0x84,0x2b,0x50, - 0x04,0x62,0xa2,0x83,0x0d,0xdf,0x47,0x08,0x44,0x99,0x64,0xe2,0xb7,0xd6,0xfe,0x19,0x02,0x83,0xfe,0x33, - 0x89,0xfd,0x7f,0x25,0x03,0x35,0x6d,0xa1,0x7d,0x74,0x66,0xd0,0xd1,0x31,0xfe,0xbb,0x73,0x4b,0xeb,0xff, - 0x23,0x89,0xff,0x91,0xfc,0x11,0x4f,0xac,0xa3,0xbd,0xc7,0x49,0x0f,0x12,0xa2,0x18,0x5e,0x6f,0x0f,0x9e, - 0xec,0x45,0x7b,0x8f,0xa9,0x14,0xad,0xb9,0x7a,0x0f,0x0f,0x1f,0xff,0x23,0xb1,0x35,0xac,0x70,0x53,0x3c, - 0xf9,0xaa,0xd0,0x94,0x55,0xbc,0xb3,0xf3,0x66,0x77,0x97,0xfa,0x82,0x0b,0x96,0xda,0x79,0x85,0xb1,0x42, - 0xd5,0xe9,0x7f,0x9e,0xa3,0x06,0x34,0x42,0xea,0x99,0xaf,0xd0,0xec,0x10,0x58,0x75,0xc4,0x23,0xd0,0xc5, - 0xdf,0x1f,0xaa,0x00,0xf8,0x98,0xc3,0x13,0xf0,0x67,0xe0,0xbc,0xa7,0x11,0x3f,0x45,0x5d,0xe0,0xe9,0x24, - 0xfd,0xa0,0x66,0xca,0x8d,0xf9,0xa1,0xcd,0x01,0x38,0x92,0x86,0x0e,0xd6,0x87,0x03,0x33,0x57,0x00,0xa1, - 0x89,0x1b,0xd0,0xb2,0x72,0x1c,0x72,0x30,0xa7,0x80,0x4d,0x68,0x18,0x16,0x89,0xac,0x42,0x47,0x8b,0x59, - 0xaf,0x0c,0xbc,0xbf,0x08,0x79,0x0e,0xc6,0xe1,0x69,0xed,0x1f,0x8a,0xc9,0x45,0x5e,0x81,0x15,0x37,0xd7, - 0x6d,0x3b,0xa5,0x09,0x65,0xde,0xe8,0x4a,0xc9,0xc4,0xae,0x9e,0x24,0xe1,0xe8,0xb8,0xfe,0x46,0xd8,0x97, - 0x62,0x59,0x4b,0x29,0xeb,0xbe,0xd2,0x24,0xdd,0x1f,0xf9,0x42,0x80,0xc4,0x2a,0x69,0xba,0x41,0x46,0xdc, - 0x78,0x27,0xcc,0x69,0xb9,0x6b,0x86,0x69,0x96,0x91,0x2b,0xad,0x86,0x7f,0xf2,0xcd,0xe2,0xa6,0xd8,0x84, - 0xce,0xa1,0x4e,0x71,0xce,0x7b,0x44,0x37,0x75,0x15,0xda,0x1d,0x1d,0xe5,0xce,0xf6,0xd6,0xb4,0x27,0x52, - 0xf5,0xa3,0x58,0xa2,0xb1,0xe7,0x2a,0xb3,0x71,0x37,0x77,0xe9,0x50,0x2f,0x62,0x5c,0x84,0x1b,0x66,0x61, - 0x71,0x62,0x54,0x68,0xca,0x4a,0x3c,0x0f,0x71,0xdc,0x0b,0xd6,0x84,0x91,0xa0,0x25,0xbc,0x2f,0x69,0xa0, - 0xf4,0xb6,0x6e,0xe2,0xae,0xe0,0xce,0x2b,0x18,0xbd,0xd9,0xc5,0x17,0xc5,0x01,0x42,0xf6,0x8e,0xe6,0xd6, - 0x8e,0xce,0x14,0xe4,0x3d,0x92,0x9f,0x81,0x2a,0x1a,0xd7,0x7e,0x60,0xad,0x4c,0x6d,0x4b,0x52,0x7b,0x77, - 0x57,0x7e,0x07,0xc9,0xd5,0x74,0x24,0x8f,0x74,0x3a,0x45,0xe9,0xe0,0xd7,0x65,0xfa,0xcd,0xd1,0x67,0x39, - 0x6a,0x4b,0x8c,0x41,0x37,0x54,0x9c,0xb7,0x24,0xa8,0x01,0x5c,0x52,0xd7,0x1a,0x37,0xe0,0xdc,0xe7,0x8e, - 0x9e,0x41,0x29,0xa2,0x60,0xd7,0xfd,0xea,0x89,0x31,0xaf,0xef,0x8d,0xaf,0x97,0xc4,0xa9,0xd3,0x77,0x4e, - 0x60,0xe9,0x4a,0xb0,0xb0,0xbb,0xdb,0x28,0xc0,0xb4,0xc7,0xe4,0xd2,0xd5,0xed,0x5b,0xba,0x8a,0x1d,0xcc, - 0xc9,0x63,0x87,0x6e,0x4e,0x94,0xad,0x71,0xdb,0x50,0x05,0x91,0xe0,0xd5,0xd8,0xcc,0x67,0x8e,0xcb,0xbc, - 0x56,0xa3,0x70,0xf3,0x61,0x5d,0x0d,0xfa,0xce,0x9d,0x29,0x5b,0x1e,0xc6,0x46,0xe1,0xa2,0x71,0x85,0x8e, - 0x9b,0x72,0x9b,0x85,0x6b,0x73,0x65,0x85,0x08,0x55,0xdc,0x92,0x7f,0xf4,0x9e,0x10,0x2d,0x24,0xc5,0x51, - 0x2f,0xf9,0x66,0x23,0x68,0x07,0x8c,0xe6,0xc4,0x51,0xc9,0x41,0x36,0xa2,0x0d,0x34,0xa0,0x5c,0xec,0xe5, - 0x9c,0x1d,0x44,0x0f,0x9d,0x06,0x59,0x94,0x76,0x6f,0xf1,0xd0,0xc7,0x37,0x8f,0xba,0xbe,0x49,0x89,0x82, - 0x4f,0xe4,0x31,0xbc,0x23,0x6a,0x2a,0xa1,0x43,0x58,0x79,0xe6,0xaf,0x22,0xf7,0x8a,0x63,0x62,0xe3,0x1f, - 0x61,0x11,0xd4,0x47,0xcd,0xb2,0xa7,0x0d,0x1b,0x6c,0xa3,0x59,0xc2,0xd7,0x1f,0x4a,0x51,0x65,0xe5,0xc4, - 0x04,0x21,0x26,0xac,0x34,0x4a,0x7e,0x61,0x1e,0xff,0x90,0xd4,0x17,0x08,0x8b,0x0a,0xd2,0xb9,0x18,0xd7, - 0xf1,0x43,0x76,0xaa,0x43,0xec,0x7a,0x1e,0x8c,0x8e,0x1e,0x67,0xa3,0xa3,0xe8,0x30,0x3a,0x8a,0xf2,0x11, - 0x97,0xbb,0xca,0x10,0xbf,0xe5,0x61,0x10,0x1d,0x9e,0x8c,0x0a,0xd6,0x61,0x60,0x5a,0xc3,0x0d,0x9d,0x5a, - 0xbb,0x67,0x28,0x38,0x66,0xb6,0x98,0x6e,0x33,0xcf,0xa9,0x0b,0x6d,0xd3,0xa6,0x0c,0xd5,0x2c,0xae,0x09, - 0xe4,0xe6,0xb3,0xa5,0x3f,0xe4,0xec,0x1b,0x30,0xe1,0x28,0x67,0xd5,0x4a,0x0f,0x50,0x00,0xd6,0x08,0x72, - 0xd5,0xed,0x21,0xda,0x57,0x61,0x57,0x09,0xbf,0x10,0x1f,0x52,0x84,0x37,0x02,0xa7,0x49,0x58,0x61,0x31, - 0x96,0x3e,0xc2,0xb0,0x06,0x23,0x26,0xbe,0xa6,0x4c,0x83,0x85,0x9c,0x12,0x71,0x0a,0x3f,0xae,0xb5,0x31, - 0x9b,0xb5,0x6e,0x33,0xa3,0x28,0x35,0x25,0x24,0x76,0x42,0xbb,0xbb,0x95,0x4a,0x70,0x02,0xba,0xb6,0x0c, - 0x82,0xc2,0x62,0xa8,0x0b,0xb3,0xef,0xe0,0x22,0x36,0x71,0xe2,0xc3,0x6c,0x70,0x2a,0x40,0xc1,0x3a,0x99, - 0x0f,0xb0,0x7f,0x07,0x92,0xb0,0xbb,0x6b,0x1a,0x84,0x01,0x76,0xc9,0xa0,0x51,0x63,0xd9,0xac,0x47,0x70, - 0xd9,0x46,0x4b,0x5c,0x83,0x67,0xf4,0x23,0x2c,0xc0,0x0e,0xb8,0x61,0x13,0x41,0x0b,0x86,0xad,0xd9,0xee, - 0xae,0xa6,0xc2,0x02,0x1b,0x32,0x94,0x4a,0x43,0xf1,0x4b,0xa6,0xaf,0x09,0xba,0xd4,0x5e,0x12,0xb7,0x43, - 0xae,0xb3,0x4a,0xe9,0xee,0x6e,0x62,0x8e,0x40,0x7d,0xd5,0x81,0xf3,0xd3,0xc4,0x59,0xdb,0x88,0x56,0xee, - 0x06,0x2a,0xf2,0x4d,0xf4,0x7a,0x6e,0x0c,0x1e,0x91,0x0c,0xf7,0x2c,0x37,0xf3,0x2e,0x8b,0x0c,0xb7,0x83, - 0x8d,0x84,0xd2,0xc0,0x77,0x65,0xbf,0x3d,0x31,0xdf,0xae,0xb6,0x46,0x4a,0xc7,0x0c,0xb2,0x69,0x3e,0xa2, - 0x4e,0xad,0xb5,0x56,0x9b,0xe9,0x18,0x7c,0x61,0xfa,0xda,0xc7,0x9e,0x0d,0x5d,0x4d,0x3b,0xba,0x32,0xb7, - 0x2a,0xae,0xb2,0x89,0x5e,0x5d,0xb3,0xaa,0xa9,0xeb,0x3e,0x1f,0xba,0x85,0x08,0x3d,0x5a,0xeb,0xab,0x6d, - 0x45,0x22,0x73,0x1a,0x72,0xd4,0x82,0x6f,0xe4,0x4a,0xba,0xf3,0xa9,0xa6,0x7b,0x11,0x0d,0x33,0x06,0x28, - 0x47,0x3b,0x44,0xf4,0x30,0xc8,0x10,0x8b,0x7c,0xee,0x7b,0x79,0x51,0xd3,0xa1,0x96,0x55,0x75,0x4f,0x9d, - 0x38,0xb4,0x0f,0x24,0x10,0x2a,0x36,0x04,0xa5,0x99,0x77,0x0f,0x4e,0xa3,0x82,0x68,0xa3,0x52,0xb3,0x02, - 0xe8,0x8a,0x9e,0xfa,0xa8,0xd4,0xb0,0x5d,0xab,0xfc,0x74,0xab,0xeb,0x42,0xe3,0xae,0x70,0x16,0x6f,0x20, - 0x4f,0xbf,0x88,0xe7,0xc1,0x28,0x89,0x8b,0x08,0xa2,0x35,0xb6,0xe8,0x82,0x95,0x07,0xe1,0xa8,0x0a,0xe8, - 0x8a,0x67,0x80,0x56,0x9d,0x4d,0xa5,0x2a,0x78,0x03,0x23,0xca,0xac,0xc8,0x88,0x77,0x0f,0xef,0x50,0x2a, - 0x4a,0x42,0x85,0x43,0x11,0xad,0xe5,0x1c,0x77,0x90,0x92,0xcf,0xa2,0x3f,0x38,0x2a,0xe7,0xb6,0xe0,0xa8, - 0x5c,0xb5,0x75,0x41,0x8f,0xdc,0xd6,0x35,0x3d,0x48,0x59,0xc0,0xde,0x94,0x6d,0x88,0x2f,0x40,0x15,0xaa, - 0x48,0x7c,0x57,0x76,0x57,0x0e,0x65,0xf9,0x9a,0xab,0x7a,0x0d,0x1d,0xd6,0x2b,0x99,0xef,0x60,0x50,0x4f, - 0x40,0x89,0xcd,0x69,0x5f,0x84,0xe3,0x69,0x78,0x7d,0xa2,0x59,0xca,0x53,0x7f,0x11,0x5e,0xc0,0xbb,0x2c, - 0xed,0x74,0x5b,0x58,0x95,0xcd,0xa8,0xec,0x46,0x49,0x07,0x22,0xae,0x1a,0x08,0x40,0x08,0x4a,0x5a,0xa2, - 0x32,0xfd,0xf7,0x92,0x98,0xc7,0x69,0xef,0x7f,0x30,0xb8,0xff,0xc1,0xda,0x5c,0xef,0xd7,0x3d,0xc3,0x50, - 0x7a,0xea,0x36,0x41,0xad,0x66,0xb5,0x5c,0x80,0x5a,0xe9,0x89,0xcf,0x44,0x71,0x25,0x6a,0x17,0xee,0xd4, - 0x85,0x29,0xcb,0x5a,0x21,0xde,0x95,0xd1,0xfa,0xc2,0x45,0x46,0x1b,0x21,0xac,0x56,0xf8,0x1b,0x98,0x62, - 0x88,0x87,0xe7,0x38,0x90,0xb5,0xb1,0x07,0xfc,0x2b,0xe8,0xed,0xd2,0x46,0x84,0xbc,0x73,0x77,0x57,0xa2, - 0x7c,0xfb,0x57,0x3a,0x45,0x1f,0x56,0x03,0x2f,0xe0,0xd3,0x73,0x31,0x60,0x98,0x43,0xa0,0x5a,0x18,0xf1, - 0xa9,0xed,0x2e,0x54,0xcf,0x4b,0x15,0x75,0x90,0x6a,0x1b,0xf6,0x22,0xf4,0x78,0x8e,0xbc,0xf0,0xee,0x3c, - 0x6d,0x84,0x36,0x75,0x08,0xf3,0xc1,0x29,0x8a,0x40,0x5a,0x59,0xc7,0x57,0x5b,0x9a,0xac,0x1b,0x4d,0xd6, - 0x9b,0xed,0xa9,0xd3,0x86,0xe9,0xfc,0x96,0xea,0xd7,0xe6,0x5d,0x60,0xfb,0xc0,0xe2,0x6b,0xe7,0x1c,0x84, - 0x4c,0x3d,0xce,0x5d,0x42,0x26,0xef,0x1f,0x9d,0x28,0x2e,0x39,0x93,0xd5,0xd6,0xad,0x97,0x83,0xd3,0xda, - 0xc2,0x14,0x82,0xaa,0x2a,0x08,0xa6,0x0c,0xea,0xda,0x0f,0x69,0x55,0x25,0xe7,0x69,0x05,0xcf,0xc6,0x06, - 0x86,0xea,0x40,0x84,0xb2,0x1f,0x34,0xc4,0x49,0xf7,0x18,0x8b,0x2d,0x63,0x6c,0x6a,0xe6,0x8f,0xe1,0xd7, - 0x64,0x63,0x94,0x0f,0x69,0x94,0x25,0x46,0x09,0x51,0x94,0x33,0xca,0xb2,0xff,0x50,0xf3,0xf2,0x45,0x73, - 0x94,0x74,0xde,0x99,0xad,0x93,0x61,0x98,0x99,0x1e,0x66,0xd6,0x1e,0x66,0x11,0xd6,0x66,0xa0,0xf9,0x1f, - 0x19,0x68,0xda,0x3d,0xd0,0xf2,0x9e,0x81,0xca,0x20,0xcb,0x66,0x5f,0x73,0xea,0x2b,0x24,0x51,0x7a,0x43, - 0x22,0xb2,0x65,0xb3,0x8b,0xf5,0x87,0xf7,0x6a,0xfa,0xa7,0x21,0x2c,0xdc,0x36,0xfb,0x47,0x5b,0x67,0xff, - 0x48,0xef,0x6b,0x56,0xec,0x51,0x58,0x68,0xaa,0xa6,0xbd,0xa6,0x69,0xff,0x53,0x13,0xdb,0xb1,0xe9,0xfe, - 0x0f,0x0f,0x21,0xbf,0x6f,0x08,0x57,0x44,0xb7,0xbe,0x23,0xca,0xf5,0x01,0x1e,0x0d,0x72,0xf4,0x3d,0xec, - 0x6d,0x76,0x67,0x53,0xaa,0x28,0xb3,0x51,0x16,0x2e,0x73,0x4e,0x29,0xb8,0x9a,0x31,0x4d,0xf5,0xdf,0xc9, - 0xcd,0xef,0x3b,0x7d,0x0b,0x7a,0xa5,0x03,0x61,0x8a,0xa0,0xe1,0x87,0xb4,0x3c,0x4f,0x89,0x7a,0xa2,0x36, - 0xce,0xb3,0x14,0xdc,0x2a,0xba,0x45,0xe7,0x86,0x8a,0x69,0x6a,0xf1,0xe1,0x85,0xe2,0xfc,0x15,0x03,0xa4, - 0x7d,0x07,0xd1,0x01,0xe8,0x19,0x5f,0x2f,0x8e,0x59,0xe0,0x61,0x30,0x14,0x8d,0x75,0xd0,0x24,0x50,0x8e, - 0xef,0x7d,0x7e,0x14,0xc9,0xef,0x23,0xf9,0xfd,0xf8,0x53,0xf9,0x7d,0xf4,0xb1,0xfa,0xfd,0x5c,0xa5,0x7f, - 0x16,0x69,0x0c,0x3e,0x94,0x0a,0x9f,0xa8,0x02,0xaa,0xc2,0xc7,0x9f,0x44,0xda,0xd4,0x6e,0x0a,0x8f,0x8f, - 0x52,0xea,0xd1,0x43,0xd5,0xbc,0xfc,0x1c,0x1d,0xaa,0x5f,0xf5,0xb5,0xa3,0x4f,0x55,0xc2,0xa7,0x9f,0x3c, - 0xfc,0xab,0x2a,0xf3,0xd9,0x43,0x5d,0x89,0x9e,0x1e,0xe9,0x46,0x6f,0x2a,0x63,0xe4,0xf0,0xf9,0x5f,0x1f, - 0x43,0x51,0xa7,0x7e,0x1c,0x1f,0x3d,0x7c,0xb8,0x5a,0x7d,0xfa,0x89,0x7e,0xfd,0xfc,0x70,0xa4,0x3e,0x1e, - 0x7d,0xfc,0xb9,0x4e,0xfc,0xe4,0xaf,0x23,0x4f,0xdc,0x81,0x7a,0x91,0xc7,0xf7,0xd0,0x76,0xf6,0xae,0x3b, - 0xb4,0xbd,0xc4,0x8b,0xbc,0x02,0x09,0xef,0x50,0x1c,0xa6,0x18,0xa9,0x0d,0x28,0xde,0xea,0xc7,0xe4,0x47, - 0xe3,0x34,0x23,0x0b,0x7f,0xd2,0xe1,0x09,0x46,0xc4,0xa9,0x01,0x88,0x82,0xe6,0x8c,0x07,0x4a,0x86,0x6f, - 0x92,0x6a,0x03,0x94,0xd4,0xdc,0xa3,0x8f,0x77,0x58,0xcf,0xe8,0xd1,0xe7,0xf8,0x1d,0xd5,0x4d,0x0f,0xeb, - 0x91,0xf7,0x91,0xd7,0xcf,0x44,0xd8,0x76,0x65,0x03,0x51,0x5b,0x19,0x98,0x0e,0x0f,0x1a,0x9e,0xc5,0xde, - 0x58,0xf8,0xe9,0x9e,0x14,0x3a,0xf1,0xc2,0x9b,0xcd,0xf2,0x17,0x49,0xf5,0xd3,0x4d,0xae,0xf7,0x5d,0x98, - 0xc6,0x5d,0x9c,0xff,0x37,0x79,0x3d,0xdf,0xdd,0x35,0xf6,0x3b,0x78,0x1d,0x3c,0x27,0x58,0x44,0x2c,0xcb, - 0x17,0x45,0x79,0x95,0xd4,0xe1,0xe5,0x07,0x57,0x94,0x73,0x59,0x55,0x7b,0x10,0xab,0x40,0x9d,0xcf,0x58, - 0xf6,0xd4,0xde,0xe1,0xf5,0xa6,0xb8,0xad,0x16,0xd0,0x97,0x1f,0xbe,0xa1,0x39,0xe5,0x43,0x77,0x74,0xb7, - 0x8e,0xb4,0x40,0x9c,0xf7,0xec,0x9d,0x29,0x6c,0x88,0x4b,0xea,0xd1,0x5b,0x95,0x2e,0x95,0x02,0xcd,0x87, - 0xb0,0x97,0x79,0x9d,0xda,0xed,0x65,0x1e,0x3c,0x5b,0xe8,0x70,0x9c,0x60,0x31,0x0d,0xfa,0xd2,0x37,0x6b, - 0x5d,0x35,0xa5,0x13,0xb4,0x55,0x69,0x0f,0x7f,0xcf,0xf8,0x5c,0x21,0x72,0x60,0xf8,0x36,0x5f,0xb0,0xb6, - 0x64,0x84,0x1a,0x63,0x68,0x53,0xde,0xa0,0x54,0xaa,0xc2,0x50,0x4b,0x57,0x6f,0x90,0x04,0x92,0x9b,0x4d, - 0x36,0x03,0xa7,0x30,0xeb,0x72,0x4e,0xca,0xec,0x2c,0x45,0xd6,0x33,0x78,0xb6,0x65,0x46,0x8c,0xa5,0x61, - 0x52,0x4c,0x97,0x40,0x18,0xc7,0x9d,0xc3,0xb5,0xf6,0x35,0x77,0xab,0xe6,0x2d,0x90,0xb9,0xe2,0x15,0x28, - 0xd9,0xad,0x91,0x7d,0x16,0xc4,0xb8,0x99,0xd2,0x98,0x6b,0xbe,0xf6,0xe2,0xbe,0xa0,0x40,0xdc,0x2e,0xab, - 0x56,0x0a,0x93,0x46,0xb0,0x50,0xeb,0x81,0x39,0x25,0x6c,0x96,0x29,0xab,0x0c,0x8a,0x65,0x22,0x3b,0x2a, - 0x34,0xf2,0x75,0xad,0x2a,0x9b,0xc3,0xad,0x24,0x0c,0x49,0xe6,0xec,0xb2,0xf2,0x0d,0x2e,0x3d,0x36,0x2a, - 0x77,0x16,0x03,0x40,0xb5,0xa0,0xa5,0x7c,0x2f,0xb4,0x94,0x04,0x2d,0xe5,0x26,0xb4,0x18,0x50,0x90,0x83, - 0x3c,0x2e,0xbb,0x17,0x1e,0xea,0x42,0x6f,0xf5,0x22,0xfc,0x1f,0x5b,0xff,0x50,0xc5,0xff,0xe2,0xcb,0x4c, - 0x69,0xe1,0x36,0x17,0x53,0x7c,0xfd,0xc2,0x17,0x99,0x5c,0x55,0x08,0x93,0x46,0x87,0x1e,0xd8,0x0e,0xc9, - 0xec,0x23,0x44,0xb1,0x00,0xd5,0x7f,0x00,0x43,0x23,0xdf,0xdd,0x11,0x1b,0x10,0xf4,0xe7,0x87,0x1b,0x44, - 0xb5,0x71,0xec,0xa5,0x9f,0x4c,0x8f,0x1a,0xef,0x1b,0x30,0xed,0x6e,0x51,0xb7,0xe0,0x7f,0xd4,0x9d,0x75, - 0x28,0x98,0x50,0x85,0x24,0x76,0x51,0xa1,0x6d,0xd6,0x7c,0xdd,0xa9,0xdc,0xe8,0xd1,0x60,0x99,0xdf,0xf7, - 0x65,0x7d,0x69,0xd6,0x6e,0xa3,0x03,0xca,0x1a,0xcd,0xaa,0x34,0xbf,0xd5,0x82,0x93,0xa5,0x5b,0x68,0x00, - 0x46,0x37,0xb8,0xb4,0x5b,0x69,0x64,0xba,0x3d,0x61,0x69,0x2b,0x74,0x4a,0xde,0x29,0x1d,0x39,0x4f,0x38, - 0x30,0x3d,0x35,0xc9,0x1c,0x01,0x0f,0xd8,0x73,0x46,0xc4,0xea,0xc3,0xa2,0x57,0xa2,0x4e,0x40,0x65,0x88, - 0x14,0x79,0xd5,0x22,0xc9,0x3d,0x44,0xeb,0x23,0x36,0xbe,0x51,0x42,0xf3,0xb7,0x50,0x3b,0xd1,0xec,0xbd, - 0x5b,0x60,0x1d,0xb2,0x6a,0x53,0xa5,0x12,0xc7,0xcc,0x92,0x2a,0x94,0x7f,0x42,0xdd,0x6a,0xfb,0x0c,0x68, - 0x08,0x4d,0xb8,0x5b,0x21,0xdf,0x49,0xd2,0x3a,0x34,0xae,0xd6,0xc3,0xa2,0x05,0x38,0xec,0x45,0x24,0xf6, - 0x33,0xb9,0x24,0xde,0x6a,0xd2,0xd4,0x53,0x56,0xb2,0x4a,0xec,0xa3,0xe4,0x04,0x5a,0x57,0x89,0xf0,0xcb, - 0x4e,0x61,0x1c,0x1b,0xa9,0x1b,0xdb,0x5c,0xcb,0x38,0x72,0x2b,0xe3,0xb8,0x5b,0x87,0x4b,0x64,0xf0,0xd8, - 0xd8,0x57,0xfa,0xbc,0x25,0x73,0x5b,0x06,0xa3,0xc3,0xc7,0x4b,0x45,0x96,0x44,0x87,0x8f,0xdd,0x53,0x6e, - 0x19,0x68,0xe1,0x2e,0x8c,0x38,0x36,0x05,0x5f,0x7c,0xed,0x34,0x65,0x7f,0x02,0xf2,0xab,0x9c,0xa0,0x18, - 0xc5,0x49,0x9b,0x26,0x5d,0xd0,0x04,0xbc,0x8d,0x3e,0xb8,0xbb,0xeb,0xb1,0xd6,0x09,0x11,0xd7,0x3a,0x93, - 0xc8,0x88,0xc3,0xc7,0x99,0x91,0xb8,0xed,0xcc,0x76,0x77,0xcf,0x7d,0xef,0x9b,0x59,0x4f,0x46,0xd1,0xc3, - 0x6c,0xf7,0xb2,0xaa,0x87,0x80,0xb7,0x3d,0x3a,0x03,0x7a,0x3c,0xd7,0xbd,0x54,0x2e,0xb3,0xaa,0x1e,0xac, - 0x1a,0x7b,0x17,0xc9,0x75,0x2a,0x15,0xa4,0x3c,0x15,0x1e,0x78,0x41,0xb8,0x31,0xf6,0x65,0x07,0x4e,0xc7, - 0xd2,0x4e,0xc4,0x5c,0x2d,0x88,0x5a,0xf3,0xd1,0x75,0x02,0xc0,0xa7,0x6a,0xbc,0x64,0x3d,0x77,0xe2,0x30, - 0xbb,0xdb,0x13,0x50,0x99,0x8d,0x3c,0xd8,0xfe,0xb7,0xa7,0x05,0xbe,0xa4,0xea,0xe1,0x04,0x5c,0x3c,0xd4, - 0xac,0x52,0xd1,0x19,0x42,0x64,0xab,0x41,0xe6,0xb3,0xc8,0x8b,0xd5,0xad,0x5e,0xc5,0x1b,0x88,0x62,0x42, - 0x5f,0x4a,0xab,0xae,0x5b,0xf5,0xf5,0xf0,0x95,0x43,0xfb,0x65,0xf0,0x56,0xbd,0x28,0x38,0x1a,0xdc,0xc6, - 0xa5,0xe9,0x8e,0xbe,0xfc,0x84,0xa7,0x16,0xe7,0xea,0x53,0xb5,0xee,0xf8,0x6f,0xc9,0x39,0x98,0xcc,0x7d, - 0xfa,0xca,0xec,0x8d,0xd8,0x55,0x5a,0xb6,0xf6,0xce,0x79,0xbf,0xcf,0x42,0x75,0xef,0x8e,0x15,0xcf,0x09, - 0xd2,0x19,0xfb,0x8a,0x41,0x00,0x36,0x1d,0xeb,0x4d,0x6a,0x47,0x49,0xe5,0x5a,0xab,0x81,0x94,0xda,0xb5, - 0xb1,0x69,0xc4,0x5b,0x7b,0xac,0x58,0x0f,0x67,0xba,0x59,0x68,0x92,0x65,0x1b,0x3c,0x13,0x9a,0xbc,0x08, - 0x46,0xde,0x3c,0xab,0x88,0x1f,0x78,0x6a,0x13,0x80,0x59,0xa6,0xc4,0x0b,0x2c,0xf3,0xcb,0x1c,0x3e,0xb4, - 0x87,0xfa,0xfb,0xf2,0xcd,0x22,0xe4,0x7e,0x24,0x6b,0x31,0xe4,0xf2,0xfe,0x2f,0xd1,0xa3,0xa7,0x0e,0x83, - 0x13,0xa0,0xe5,0x01,0xd9,0x4f,0x9f,0x0c,0xe0,0x28,0x39,0x33,0x17,0x85,0xef,0x19,0x46,0x58,0x73,0x30, - 0xac,0xd6,0x94,0xc6,0x79,0xfb,0xf2,0xd0,0x11,0x82,0x40,0x3d,0xa7,0x2d,0x1c,0xd3,0xc3,0x59,0xf2,0xf3, - 0xc6,0x48,0x30,0xb1,0xfa,0x85,0xa7,0x57,0x2f,0x19,0x4f,0x9d,0x6b,0x84,0x6e,0x1c,0x39,0xe0,0x92,0x43, - 0xb1,0x84,0x85,0x52,0x69,0x02,0xef,0x25,0xfd,0x8f,0x94,0x0c,0x4e,0xbb,0xa1,0x12,0x6b,0x22,0xe6,0xec, - 0x54,0x47,0xb4,0x90,0x6e,0x6c,0x1c,0xd9,0xaa,0xb2,0x70,0x67,0x7b,0xd2,0xa8,0xa0,0x7b,0x2b,0xbf,0x62, - 0x76,0x60,0xaa,0xab,0x5a,0x44,0x1c,0x97,0xfd,0xbe,0xe3,0xc0,0x00,0x0e,0x87,0x44,0x51,0xe2,0x19,0xfc, - 0xd2,0x1f,0x4f,0x83,0xfe,0x41,0xf8,0x94,0x1f,0x6f,0xf0,0xf8,0x1a,0xa2,0xc5,0xd7,0xe3,0xc3,0x93,0xf8, - 0xee,0xa6,0x8a,0xe8,0x37,0x64,0x06,0x30,0x1a,0x3f,0x0a,0xe9,0xd9,0x1b,0x7b,0xd1,0xf8,0xe3,0x93,0x90, - 0x4e,0xf2,0x68,0xfc,0xd7,0x93,0x75,0xf8,0x7a,0x7c,0xa4,0x4a,0x1e,0x51,0xee,0x80,0x72,0x1f,0x76,0x96, - 0x7a,0xa8,0x4a,0x3d,0x6c,0xb6,0x77,0xa8,0x7e,0x85,0x9f,0x94,0x17,0x14,0x7f,0x44,0xc5,0xdf,0x57,0x2e, - 0xe4,0xaf,0x86,0xe6,0xbb,0xfc,0xc4,0x5f,0xc6,0x93,0x7c,0x9b,0x9e,0xd0,0xdc,0xc7,0xd4,0x9c,0xb7,0x47, - 0x59,0x9f,0xa0,0xde,0x9e,0xb7,0x17,0x8d,0x3f,0xb5,0xc3,0x09,0xd1,0xe5,0x13,0x0f,0x8d,0x3d,0x92,0x8a, - 0x9f,0xb1,0x89,0x3b,0xb2,0xa4,0x3b,0x9f,0xe8,0xfa,0x48,0x68,0x94,0xf8,0x44,0x95,0xf8,0x94,0x4a,0x70, - 0xbb,0x1b,0x25,0xf0,0x21,0x99,0xf0,0x9f,0x38,0xdc,0x34,0xd1,0x63,0xe5,0x32,0x5d,0xb1,0x53,0xa2,0xd5, - 0xfe,0x68,0x7c,0x3c,0x1d,0x9c,0xf4,0x57,0xe2,0xa8,0x7f,0x6f,0x25,0x4e,0xfa,0xbd,0x80,0xca,0x3d,0x38, - 0x08,0x9f,0x6f,0xc1,0x4d,0xdd,0xa8,0xe9,0xb9,0x83,0x9a,0x18,0x7a,0x5e,0xd2,0xc9,0xd5,0x11,0xfd,0xcd, - 0x69,0xc8,0xf5,0x22,0xc5,0x06,0xa1,0xd6,0x71,0xb0,0xb2,0x58,0x6b,0x46,0xa7,0xc4,0x46,0x5a,0xc6,0xfb, - 0x47,0x74,0xe0,0x1d,0xd2,0xf1,0x75,0x18,0x4e,0xb5,0x7f,0xee,0x29,0x00,0xc1,0xe5,0x3e,0xf5,0x61,0x94, - 0x8b,0xad,0x80,0xd8,0x93,0x11,0x32,0x93,0x0c,0xa2,0xd6,0xa6,0x00,0xb2,0x8d,0x1a,0x50,0x0c,0x1d,0xe5, - 0x71,0x19,0xe5,0x7d,0xa2,0xee,0xa9,0xd0,0xc3,0x46,0x21,0x54,0x22,0xf2,0x67,0x46,0x30,0x4d,0x79,0x8f, - 0x1a,0x79,0x6c,0x03,0x34,0x0b,0x66,0xfb,0xfb,0xd4,0xbd,0x8f,0x43,0x29,0x6a,0x54,0x41,0xd0,0xdb,0x9d, - 0x23,0x71,0x4f,0x71,0x0d,0xd1,0x93,0xbd,0xc0,0x42,0xdf,0x61,0xd6,0x3d,0x54,0x57,0xe9,0xf3,0x21,0xeb, - 0x9c,0x1c,0x1f,0x2b,0xad,0xd1,0x7a,0xdc,0xef,0x2f,0x71,0x4d,0xbc,0xd3,0x62,0xaf,0x91,0xb5,0x84,0xc0, - 0x8b,0x8a,0x7f,0x02,0xcb,0x30,0x3a,0x78,0xf7,0x58,0x1d,0x78,0xb5,0xfa,0x54,0xde,0xf7,0x38,0x6a,0xae, - 0xb9,0x03,0x5e,0xf6,0xfb,0x40,0xe6,0xd4,0x74,0x3f,0x55,0x3d,0x44,0x14,0x54,0x5f,0x58,0xc5,0x2c,0x66, - 0x29,0xfe,0x67,0xe8,0x65,0x01,0x07,0xa6,0xaf,0xc7,0xf3,0x93,0x60,0x9c,0x9d,0xac,0x56,0x15,0x2b,0xf0, - 0xaf,0x56,0x9f,0xe9,0x7e,0xb3,0x91,0x28,0x7b,0x86,0x41,0xf0,0xce,0xe9,0xb8,0xa0,0x41,0x9c,0x88,0x08, - 0xc5,0xcc,0x24,0x3d,0x17,0x34,0x81,0xc1,0x88,0x50,0xa6,0x0c,0x3e,0xf1,0x03,0xb7,0x81,0xbf,0xa2,0x93, - 0xba,0x6f,0x13,0xd1,0x85,0x36,0x34,0xa7,0x86,0x90,0xb8,0x26,0x3c,0x0b,0xca,0x6a,0x1d,0xba,0x20,0x76, - 0x9e,0xd6,0x00,0x30,0xbe,0x70,0xeb,0x38,0xfe,0x96,0xd6,0xc3,0x7c,0xe3,0xe6,0x5b,0xc0,0xcf,0xc0,0xa7, - 0x2f,0x1e,0x33,0x69,0xc5,0x5b,0x64,0x04,0xae,0xe7,0x18,0x1a,0x5a,0x1e,0x27,0xb9,0x2d,0x6b,0x67,0xae, - 0x2f,0x30,0x71,0x9d,0xce,0xa6,0xd8,0xc9,0xe3,0x6c,0xa8,0x1d,0xde,0x14,0xe3,0x72,0x9c,0x9c,0xf0,0xf2, - 0x98,0x39,0xa9,0xd8,0x6d,0x21,0x1a,0x51,0x9e,0xcb,0xe2,0x2a,0x4c,0x2c,0x8a,0x2c,0x64,0xaf,0x7e,0x19, - 0x8f,0x95,0x0d,0x40,0xe8,0x49,0x50,0x85,0xc9,0xad,0xf3,0xf8,0x3c,0xab,0x88,0xc6,0x40,0xca,0xb2,0x4a, - 0xbf,0x2a,0x8b,0xe5,0x02,0x57,0x65,0xa1,0x77,0x95,0xe5,0xd9,0xd5,0xf2,0x8a,0xd0,0x76,0x7a,0x9e,0x96, - 0xcf,0xb3,0xf3,0xac,0xae,0x6c,0xf2,0x8b,0x32,0xe1,0x49,0xb2,0xe9,0xc9,0xbb,0xee,0x74,0x29,0xff,0x2a, - 0x3b,0xcf,0xb3,0x59,0x36,0x49,0xf2,0xba,0x5d,0xa5,0x2b,0x4b,0xe8,0xd3,0x1f,0x84,0x0d,0xa0,0x77,0xe1, - 0xfd,0xf5,0xfb,0x49,0xf8,0x76,0x03,0x17,0x08,0x49,0x32,0x34,0x73,0x03,0xdd,0x94,0x94,0x23,0x08,0xef, - 0x5c,0x75,0x6b,0xd7,0xdc,0x64,0xf9,0xb4,0xb8,0xd9,0xdd,0x95,0x5f,0x28,0xc8,0xec,0xee,0x2e,0x7c,0xfb, - 0x66,0x1d,0x62,0x4b,0x6f,0x56,0x2b,0x2f,0xcd,0xf7,0x7f,0x79,0x25,0x7e,0x4f,0x9b,0xc2,0x05,0x9b,0x07, - 0x39,0xa1,0xe6,0xe9,0x55,0xec,0x21,0xa6,0xe7,0x1c,0x01,0x99,0xa4,0xc3,0x21,0x67,0xee,0xc8,0xbf,0x38, - 0x55,0x5c,0x6d,0x9f,0x5e,0x5f,0x89,0x8e,0x89,0xbc,0x59,0x99,0x48,0x6a,0x85,0x20,0xab,0x15,0x24,0x03, - 0xaf,0x54,0x91,0xab,0xac,0x42,0x58,0x20,0x7c,0x5b,0x9e,0x44,0x23,0x54,0xe5,0xb2,0xc4,0x25,0x65,0xc1, - 0x4b,0x23,0x1d,0x6c,0xbc,0xdd,0x61,0xa9,0xe2,0xf1,0xe1,0x57,0x0f,0x4f,0xfa,0xeb,0x6a,0xa0,0xac,0x2e, - 0xec,0x14,0x76,0xd3,0xa5,0x92,0x9b,0xa2,0xbf,0xd0,0x29,0x6c,0x71,0xbc,0xff,0x74,0x16,0x20,0x9a,0x7e, - 0x67,0x4b,0x96,0x6a,0xb7,0x39,0xa1,0xd0,0xf7,0x02,0x27,0x23,0x79,0xee,0xa4,0x36,0x73,0xc0,0xfe,0xb0, - 0x40,0xe5,0xb9,0x6d,0x26,0xb1,0xae,0xe9,0xb5,0x0f,0xf2,0x53,0xbe,0x8a,0x6e,0xe1,0x01,0x85,0x61,0x45, - 0xb1,0x81,0x06,0x0c,0x3b,0x15,0x6e,0xb0,0x81,0x3c,0xc4,0xe3,0x96,0x76,0x79,0x7e,0x4a,0xb0,0x5f,0xff, - 0xfa,0x83,0xaf,0x55,0x6e,0x60,0x14,0xe5,0x42,0x0d,0x61,0x32,0x0d,0x2a,0x51,0x16,0xb6,0x80,0x84,0x88, - 0xcd,0x06,0x78,0x30,0xd5,0x19,0xbe,0x88,0xef,0xae,0xaf,0xa2,0x3b,0xb9,0x11,0x58,0x96,0xc9,0x19,0xb5, - 0x02,0x8e,0xd5,0xb4,0xb3,0x99,0xd5,0x6e,0x77,0xb3,0x44,0xf3,0x3b,0x9b,0xf9,0x9a,0x1d,0xde,0xc8,0x68, - 0x0d,0xa7,0xa3,0x5b,0x02,0x8d,0x5d,0x55,0xf5,0xfa,0x74,0xe4,0x75,0xae,0xfc,0x66,0x39,0x13,0x0b,0xf4, - 0xad,0x83,0xca,0xd5,0x9c,0x77,0xd0,0x0a,0xe6,0x1e,0x45,0x9a,0x1f,0xb6,0xde,0x21,0xf5,0xb2,0xbb,0x8f, - 0x80,0xe4,0xca,0xbf,0x03,0x7c,0xb0,0x61,0x4b,0xbb,0x6c,0xbd,0x0e,0xdd,0x8f,0x76,0x8a,0x59,0x36,0xdd, - 0xff,0x37,0xe1,0xcd,0x28,0x54,0x37,0x9a,0xda,0x22,0xb3,0x69,0x34,0xb6,0xb3,0x71,0x44,0x69,0xda,0xdd, - 0xba,0xc8,0xd3,0x3a,0xb9,0x72,0x26,0xed,0x1f,0x3d,0xce,0x03,0xd1,0xd1,0x42,0xe8,0xeb,0x10,0x16,0x0c, - 0x7e,0x47,0x9f,0xc2,0x76,0x77,0x1a,0x32,0xc5,0xb8,0x53,0x24,0x6f,0xa8,0x2e,0x35,0x79,0x83,0x07,0x5c, - 0xc9,0xf7,0x1e,0xa0,0x69,0xcf,0xd5,0x33,0xb4,0x5a,0x77,0x75,0x7b,0x32,0x14,0xef,0x91,0xe2,0x1e,0xee, - 0x6a,0x90,0x13,0x87,0xf1,0x3a,0x9b,0x5c,0xfa,0x2e,0xd1,0xd8,0xaa,0x42,0xc7,0x39,0x18,0xab,0x8d,0xc4, - 0x41,0x33,0xa0,0x19,0x76,0xcd,0xdd,0x34,0x4d,0x17,0x00,0x99,0xae,0xd1,0x29,0xf1,0x71,0x93,0xfa,0xda, - 0xb1,0x18,0x12,0xfb,0xdd,0xa0,0xd1,0x0d,0x32,0x40,0xd3,0xa0,0xd7,0x57,0xcd,0x79,0x60,0xc1,0xa4,0x33, - 0x19,0xb2,0x87,0xbc,0x86,0x05,0x65,0x3d,0x78,0x50,0xa5,0xb5,0x5f,0x87,0x26,0x97,0x3d,0x88,0xb7,0xfa, - 0x1f,0xde,0x65,0x57,0xc4,0x15,0x65,0xb8,0x13,0x91,0x21,0xbc,0x40,0xc3,0x88,0x6b,0xbf,0x4d,0xf3,0xe0, - 0xfa,0x0a,0x85,0x34,0x4e,0xd8,0x56,0x54,0x01,0x40,0xe3,0x36,0x99,0x5b,0x6f,0x61,0x8c,0xf7,0xd7,0x6f, - 0x5e,0x00,0xe9,0x66,0x1a,0x68,0xe5,0xfd,0x8d,0xb8,0x97,0x41,0xba,0x09,0x99,0x97,0xf7,0x8c,0x55,0xab, - 0xaa,0xd8,0xf2,0x55,0x5a,0x77,0xec,0x3e,0xac,0x06,0xcf,0xb7,0x7a,0x73,0xa7,0x1d,0x95,0x9b,0xd8,0xec, - 0x7d,0x1f,0x6d,0x96,0xee,0xa8,0xff,0xa1,0x9d,0x68,0x56,0xd3,0x9d,0x51,0x98,0xf3,0xde,0x5e,0xa8,0x32, - 0x6e,0xf1,0xee,0x8f,0x1a,0xf2,0x80,0xbb,0xa9,0x31,0xef,0xbd,0x6d,0x9b,0x52,0xcd,0x2a,0xdd,0xed,0x3b, - 0x14,0x0a,0x8a,0x77,0xe2,0xef,0x7b,0xbf,0xd6,0x59,0x63,0x7b,0x53,0xdd,0xbd,0xe8,0x26,0x36,0xd2,0xe6, - 0x96,0x77,0xc1,0xfd,0xbe,0xe5,0xd5,0x9b,0x67,0xb3,0x76,0x0b,0xd8,0xef,0x6b,0xa4,0xb5,0x91,0x36,0xdb, - 0x6a,0xc0,0xfc,0x7d,0x2d,0x35,0xf6,0x52,0xab,0x1d,0x68,0x56,0xab,0xd8,0x6a,0x2d,0xe3,0x1d,0xeb,0xec, - 0x1e,0xb6,0xe8,0x56,0xe2,0xa3,0xaf,0xf2,0x34,0x60,0xb8,0x4a,0x38,0x26,0x51,0xa9,0x39,0x30,0xbd,0x38, - 0x46,0x73,0xd4,0xd8,0x89,0x44,0x0c,0x69,0x2b,0x23,0x1b,0x51,0x73,0x61,0x3d,0x07,0x34,0xfb,0x98,0x55, - 0x2f,0x5c,0x3a,0xb2,0xcb,0x45,0x17,0x24,0xb9,0xbe,0x83,0x69,0xd5,0x65,0x50,0x83,0x00,0x6d,0xb7,0xba, - 0x45,0x6a,0xa9,0x39,0xfd,0xa6,0xf4,0xd2,0x22,0x6d,0x38,0x88,0xb7,0x24,0x61,0x93,0x82,0x63,0x0f,0x1a, - 0x1b,0x21,0xc6,0x2a,0xd6,0x3d,0xab,0xcc,0x1c,0xf2,0xfd,0xf3,0x0c,0x09,0x62,0x28,0x09,0x2d,0x28,0xf7, - 0x2b,0xce,0x2c,0x69,0x86,0x83,0x58,0x5b,0xe8,0x61,0x35,0xca,0xad,0x35,0x4b,0xbf,0xa1,0x6a,0x5d,0x35, - 0x9a,0x4b,0xe2,0x4a,0xcf,0xec,0xe1,0xe3,0x38,0xb1,0x16,0x37,0x7f,0x8b,0x3c,0x51,0x60,0x54,0xd7,0x27, - 0x59,0x7e,0xc9,0x13,0x90,0xa8,0x09,0xd0,0x62,0x45,0xb9,0x9e,0xf0,0x13,0x4e,0x6c,0xcd,0x22,0x2a,0x6d, - 0x99,0x3e,0x91,0x98,0xb2,0xb9,0x40,0x15,0xe7,0xe1,0x24,0xae,0x94,0x0f,0x9e,0x03,0xff,0x6f,0xd1,0xf8, - 0xf8,0xe6,0x78,0xff,0x74,0x35,0x38,0xe9,0x07,0x07,0xe7,0xd6,0x1b,0xc3,0x12,0xba,0x81,0x13,0x88,0x1d, - 0x26,0x2d,0x95,0x02,0x18,0xda,0x2b,0x77,0x35,0x13,0xe5,0xa8,0x46,0x79,0x19,0xf2,0x1f,0x42,0x71,0x32, - 0x69,0xac,0x28,0xf7,0x64,0x46,0x3d,0xf1,0xca,0xe4,0x46,0x09,0x5a,0xd5,0x2c,0x11,0xb5,0x6c,0x13,0x85, - 0x9b,0x88,0xc4,0x0b,0x51,0xd2,0x06,0x35,0x7f,0xaa,0x96,0x28,0x51,0x60,0xc5,0x3e,0x1c,0x7b,0x5f,0xc2, - 0x4a,0x0d,0x02,0x51,0xf1,0x45,0x92,0x4e,0x7b,0x6c,0xb7,0xa6,0xdc,0x29,0x2e,0x62,0x55,0x7a,0x38,0x8d, - 0x17,0x83,0xd3,0x5a,0xa1,0x94,0xd4,0x5f,0xb4,0x95,0xaf,0x16,0xfa,0x2a,0x65,0xd1,0xbe,0x6e,0x9e,0xa9, - 0x39,0x5c,0x57,0xb1,0xcf,0x43,0x73,0xb6,0x29,0x5c,0xc7,0x85,0xd3,0xb0,0x2d,0x27,0x28,0x82,0x51,0x11, - 0x41,0xf7,0x3b,0x18,0x55,0xc6,0x96,0x7e,0x1e,0x4e,0x83,0xc8,0xac,0x7e,0x7b,0xef,0x2b,0x4b,0x95,0x6e, - 0xc7,0x05,0x2d,0xe4,0x3c,0x68,0x4e,0x6e,0x6e,0xfd,0x91,0xeb,0xed,0x1c,0xd7,0xa3,0x52,0x59,0x96,0x7b, - 0x41,0x54,0xb6,0xbe,0x65,0xa6,0xa1,0x13,0x58,0xc2,0x44,0x8b,0x2a,0x34,0xef,0x63,0x3f,0x56,0x87,0x30, - 0xa5,0x30,0xe5,0x8c,0x9a,0x16,0xed,0x9f,0x11,0xfd,0xe9,0xa8,0x91,0x87,0x10,0xa7,0x9b,0x1a,0x81,0x04, - 0x98,0x81,0x95,0x7b,0xab,0x4f,0x1b,0x7d,0xb1,0x54,0x26,0xec,0x12,0xc6,0x08,0xe9,0xb0,0xa1,0xf1,0xf5, - 0xf1,0xf0,0xf0,0x71,0x02,0x4a,0xb3,0x18,0x27,0xae,0xc6,0x57,0xd2,0xff,0xf8,0x64,0xd8,0x88,0x3c,0xe8, - 0x29,0x95,0xf0,0xb9,0xc2,0x86,0x4a,0x5f,0xba,0x08,0x78,0x2f,0x68,0xc1,0x00,0x62,0xf4,0xc8,0x18,0x2c, - 0xa8,0xd0,0x6e,0x91,0xbd,0xd7,0x82,0x8b,0x14,0x10,0xad,0x66,0x3c,0x64,0xe9,0x51,0x72,0x55,0x05,0x16, - 0x25,0xb7,0xc0,0x77,0x19,0xb8,0xf4,0xe8,0x07,0x41,0xb0,0xd2,0x4f,0xca,0x62,0xa7,0x8e,0xab,0xfe,0x6b, - 0xb5,0xd6,0x0a,0xc7,0xd5,0x0b,0x97,0x75,0x61,0x74,0x12,0x22,0x7a,0x70,0xb9,0x81,0x2f,0xb6,0xf8,0xa3, - 0xf9,0x0f,0xd5,0xeb,0xf8,0x4e,0xda,0x6a,0x9f,0xd6,0x7c,0xe4,0xa0,0x4f,0x6a,0x7f,0x75,0xd0,0xaa,0xec, - 0xf8,0xa3,0xa1,0x81,0xd7,0x3a,0x1d,0x3a,0x4f,0x43,0xf7,0xa4,0x73,0x57,0xab,0xde,0xbe,0x5a,0x40,0x35, - 0x61,0xb6,0x7d,0x8d,0x8a,0x3f,0xbb,0x46,0x2e,0xaf,0x20,0x06,0x1b,0xd9,0x3d,0x0b,0x42,0xbb,0x88,0x36, - 0x43,0x19,0x8e,0xb3,0x93,0xd6,0x50,0xdb,0x23,0xb5,0x97,0xc4,0xa3,0xcd,0x93,0x45,0xfc,0x58,0x39,0x73, - 0x6b,0xae,0xd9,0xb9,0xf2,0xb6,0x89,0x86,0x01,0x42,0xe4,0x79,0xed,0xfd,0x37,0xe9,0x9c,0x64,0x63,0x0e, - 0xad,0x9d,0x76,0x6c,0x40,0xc5,0x27,0x04,0x15,0x15,0xa0,0x02,0x51,0x2e,0x1d,0xa8,0xa8,0xfa,0x9f,0x58, - 0x7d,0xf0,0x91,0x95,0x75,0x66,0x6c,0xb7,0x72,0x44,0xfb,0xce,0xf7,0x8b,0x36,0xb4,0x14,0x42,0xa0,0xd0, - 0xc7,0x0d,0x38,0xc0,0x6a,0x36,0xeb,0xe8,0x71,0xab,0xc3,0x8e,0x7a,0xb1,0x36,0xe9,0xee,0x54,0x30,0xce, - 0xd0,0x55,0xf6,0xd0,0x63,0xbb,0x9a,0x41,0xc1,0x58,0x01,0x70,0x6e,0xba,0xa4,0x15,0x8b,0xf3,0x0f,0x85, - 0x60,0x47,0xc3,0xb8,0xdc,0x80,0xe1,0x0d,0x64,0xeb,0x38,0x45,0xd9,0xd2,0xdd,0x47,0x5b,0xbb,0xfb,0xe8, - 0x44,0xdd,0x98,0xb6,0xb0,0x59,0x19,0x58,0x4c,0xd6,0x84,0x4c,0x96,0x84,0x89,0x7d,0x52,0x5b,0x32,0xb0, - 0x71,0x51,0xdc,0xa8,0x28,0xc7,0xf7,0x7b,0x46,0x5f,0xb7,0x9a,0xa4,0xdc,0x86,0x52,0x5c,0x07,0x99,0xd8, - 0xb3,0x9c,0x93,0x21,0xd1,0x09,0xa1,0x41,0x76,0xda,0x6a,0xac,0xda,0xde,0x18,0x87,0x12,0xef,0xe4,0xc6, - 0x4c,0x9b,0xca,0xa0,0xd3,0x6d,0x70,0x53,0x69,0xef,0x0f,0x37,0x79,0x35,0x58,0xd6,0x19,0x22,0x5d,0xc0, - 0x13,0xf4,0xd6,0x81,0x40,0x84,0xb8,0x31,0x31,0x4d,0xae,0xe3,0x3d,0x33,0xd3,0xe2,0x3b,0xb6,0x4e,0xd0, - 0xd6,0x46,0xef,0x19,0x4e,0xab,0xed,0x6d,0x13,0xf5,0xdf,0x69,0x7a,0xcb,0x84,0x75,0x8f,0x6f,0x73,0xde, - 0x44,0x9d,0x28,0xfb,0xdd,0xf4,0xe6,0xbe,0x13,0x81,0x50,0x55,0x49,0x80,0x0e,0x2c,0x4f,0x94,0x7d,0x02, - 0x8f,0x2c,0x7e,0x02,0x5c,0x2b,0x04,0x36,0xe5,0xc5,0x44,0xbd,0x87,0xcd,0xac,0x36,0x67,0x41,0x98,0x8e, - 0xd2,0x61,0x3c,0xd4,0xf7,0x4e,0x4f,0xbd,0x7e,0x66,0x28,0x83,0x4d,0x91,0xf5,0x78,0x62,0x30,0xdd,0x12, - 0xde,0xcd,0xee,0x2b,0xc8,0x12,0xc9,0x0e,0x65,0x5b,0x42,0x7d,0xf0,0xf4,0xb0,0x54,0x2c,0xfa,0x86,0x38, - 0xf1,0x74,0xba,0x81,0x3f,0xd8,0x4e,0xdd,0x74,0x7c,0x4b,0xb3,0x75,0x60,0x5b,0x1c,0xba,0xd4,0x64,0x7b, - 0x46,0xed,0x99,0xd1,0x56,0xb7,0xdc,0x2a,0x1c,0x52,0x0c,0x56,0xe7,0x51,0x5a,0xfe,0x37,0x8e,0xd2,0xa9, - 0x8a,0x46,0x64,0x14,0x30,0xe0,0xf0,0xa7,0x39,0x2f,0xd3,0x6e,0x22,0xe6,0xcf,0x1b,0xd2,0xb8,0xb8,0x2e, - 0xdb,0x30,0x0d,0xd6,0x6a,0xdd,0xa3,0x0d,0xd6,0x19,0x5e,0x47,0x47,0x30,0x28,0x3d,0x3c,0x81,0xe6,0x06, - 0xcc,0x91,0x70,0x3e,0xb3,0xef,0x28,0x65,0x82,0x09,0x6f,0x46,0xf6,0x9d,0xd0,0x26,0x5e,0x24,0x7c,0x96, - 0x54,0xc4,0x4b,0x20,0x26,0xc3,0xf5,0x3d,0x26,0xc3,0xb5,0x98,0x0c,0x4b,0x9d,0x20,0xec,0xc8,0x3f,0x3a, - 0x51,0x5f,0x63,0x4b,0x61,0x05,0x8e,0xb0,0x97,0x04,0x5d,0xd2,0xc6,0x48,0xae,0xec,0xe2,0x3d,0xf8,0xa8, - 0x21,0xbd,0xd8,0x8a,0x8d,0xb6,0x34,0x78,0x0f,0xc2,0x68,0xb4,0xbb,0x0d,0x13,0xfd,0xe7,0xcd,0x6e,0xc1, - 0x42,0x5d,0xa3,0xba,0x07,0x07,0x49,0x3f,0xee,0x67,0xb4,0x89,0x52,0xc2,0x35,0xaf,0xc2,0x41,0x15,0x23, - 0x9a,0x4a,0xe3,0x20,0xce,0x53,0x38,0xc8,0xcd,0x6a,0xe3,0x20,0xb8,0x69,0x44,0x0e,0x9b,0xb7,0x06,0x13, - 0x8b,0x3a,0xdc,0x99,0xf0,0x13,0xad,0xaf,0x9e,0x54,0x55,0x76,0x9e,0xc3,0x9f,0xca,0x12,0x02,0x03,0x1b, - 0x20,0x74,0x1e,0x27,0x0a,0x89,0x0d,0xfd,0x49,0xdc,0x7d,0xb9,0x86,0x4b,0x7d,0xc2,0x5d,0xf7,0x64,0x6f, - 0xfd,0xfc,0xd2,0x32,0x1f,0x93,0xad,0xe8,0xab,0xed,0x8e,0x46,0x99,0x20,0x1b,0x04,0xe6,0x97,0xa3,0xee, - 0xf6,0x61,0xac,0x1c,0x6d,0xc9,0x0a,0xda,0xc8,0x2d,0x6b,0x21,0x37,0x65,0x2f,0xf8,0x5e,0xd4,0xd6,0x12, - 0x59,0x73,0xf7,0xb6,0xa2,0xb6,0xec,0xbf,0x81,0xda,0x30,0x0d,0x1b,0xeb,0xc6,0x01,0x7c,0x72,0x7d,0x4d, - 0x57,0xaf,0x43,0xc7,0x85,0x67,0xb6,0x89,0xfb,0xba,0x15,0xf4,0xca,0x6e,0x4f,0x08,0x8c,0xfb,0x6a,0x21, - 0x27,0x9b,0xde,0x10,0x34,0xee,0xcb,0x3b,0x70,0x5f,0x58,0x6c,0xa0,0xc0,0x72,0x2b,0x0a,0x2c,0x05,0x05, - 0x96,0x82,0x02,0x4b,0x85,0x02,0xcb,0x06,0x0a,0xcc,0xe3,0xd2,0x45,0x81,0xa5,0x8b,0x02,0xf5,0x0b,0x1c, - 0x7b,0x34,0x2c,0xb5,0xd1,0xd2,0xa0,0x4c,0xa7,0xcb,0x49,0xda,0xa5,0x6d,0xa9,0x7b,0xf7,0xe5,0x20,0xcb, - 0x27,0xf3,0xe5,0x94,0x68,0xd2,0x3a,0x18,0x6d,0xcc,0x6e,0x1a,0xfa,0x3e,0x6c,0x42,0x38,0x40,0x01,0xda, - 0x84,0x28,0x03,0xcc,0x50,0x2a,0xce,0x37,0x15,0xe6,0x2d,0xef,0xc1,0xbc,0xa5,0xc6,0xbc,0x65,0x37,0xe6, - 0x2d,0x05,0xf3,0x62,0x90,0x0e,0xe6,0x95,0xa0,0x7a,0x22,0xb0,0xeb,0x32,0x8d,0xcb,0xa8,0xc3,0xce,0xba, - 0x86,0x2f,0x02,0x5a,0xe6,0xe4,0x3a,0xc9,0xe6,0xc9,0x59,0x36,0xcf,0x90,0x1f,0xdf,0x35,0xa9,0x89,0x28, - 0x6d,0x5c,0xf6,0x22,0x4e,0xf9,0x5b,0x6d,0xfb,0x1a,0x2f,0xe8,0x59,0x19,0xc8,0xc6,0xde,0x5f,0x07,0x9f, - 0x0d,0x8e,0xbc,0xf0,0xad,0xd2,0xb2,0x34,0x66,0x0a,0x77,0x69,0x1e,0xdd,0xd5,0x59,0x4d,0x80,0xe6,0xfd, - 0xfc,0xd5,0x17,0x6f,0xb2,0x59,0xe6,0x85,0xd5,0x6d,0x55,0xa7,0x57,0xdf,0x3c,0x8f,0xbc,0x57,0xfc,0xd4, - 0xfb,0xe6,0xb9,0x17,0xce,0xb2,0xf2,0x8a,0xd8,0xd7,0xf4,0x57,0x69,0x32,0xf2,0x5e,0xa8,0x84,0x9e,0xfa, - 0x48,0xd4,0xf3,0xc2,0x49,0xb1,0xb8,0x2d,0xb3,0xf3,0x8b,0x3a,0xf2,0x9e,0xe9,0xc7,0xde,0xff,0xf3,0x7f, - 0xf7,0x1e,0x1e,0x3e,0x3c,0xec,0xfd,0x90,0x94,0x97,0xbd,0xeb,0x24,0xef,0xfd,0x9c,0xe6,0xd5,0x4d,0x41, - 0x2b,0xe4,0x11,0x90,0x27,0x70,0xa9,0x17,0x79,0x2f,0xe7,0x29,0xec,0xc0,0x38,0x6a,0x4b,0x4f,0xa5,0xf6, - 0xcc,0x15,0x31,0x96,0x7a,0x30,0x18,0x78,0x61,0x99,0x9e,0xd1,0xbe,0x79,0x99,0xe6,0x52,0xeb,0xf5,0x45, - 0xda,0x93,0xde,0xf6,0x6e,0xb2,0xf9,0xbc,0x77,0x96,0xf6,0xa4,0x44,0x3a,0x0d,0x7b,0x0b,0x69,0xb2,0x4c, - 0x67,0x65,0x5a,0x5d,0xf0,0xb6,0xeb,0x2d,0x68,0xd4,0xbd,0x64,0x46,0xc8,0x8c,0xba,0x3e,0xad,0xbc,0x90, - 0x39,0xa7,0x2f,0x96,0x75,0x8d,0x21,0x3d,0xc5,0x4b,0x23,0xed,0x55,0x72,0xcd,0x1f,0x92,0x5f,0xee,0xc2, - 0x34,0xbd,0xce,0x26,0xbc,0x08,0xf4,0x7d,0xfc,0xa5,0x71,0xdf,0xd0,0xbc,0xbd,0xaa,0x93,0x7a,0x59,0x45, - 0x77,0xc9,0x04,0x5e,0x56,0x17,0x45,0x96,0xd7,0x66,0x6a,0x9f,0xbe,0x44,0xa9,0x69,0x56,0xe1,0xb2,0x7b, - 0x1a,0x79,0xcf,0xd5,0x93,0x8e,0x3e,0x57,0xe4,0x08,0x9a,0x67,0x8a,0xbf,0xc9,0x5e,0x64,0x5b,0x2a,0x84, - 0xd9,0x14,0x25,0xbe,0x99,0xe2,0x6e,0x29,0x2f,0x5e,0xbd,0xe2,0x65,0xa2,0xbf,0x3d,0xd8,0x69,0xcf,0x8a, - 0x65,0x4e,0x65,0xaa,0x49,0x92,0x23,0x0c,0x14,0x34,0xf1,0xa9,0xf2,0x2b,0x7a,0xed,0x4d,0xf4,0x3b,0x56, - 0x29,0xcf,0x09,0xfc,0x5e,0x10,0x68,0x21,0x5b,0x7e,0x7b,0x75,0xd1,0x53,0x19,0xa6,0x04,0xf5,0xeb,0xfb, - 0xa2,0xe2,0xc5,0xd4,0xef,0xb4,0x36,0x55,0xcd,0x3d,0x53,0x65,0x54,0xef,0xcc,0x9b,0xb7,0x96,0x31,0x2d, - 0x59,0x71,0xff,0xec,0xb5,0x8c,0x48,0x26,0xc7,0x0b,0xd5,0x00,0x9f,0xb1,0xb6,0x52,0xdd,0xab,0x54,0xb2, - 0xb8,0xe5,0xf9,0x69,0x36,0x8b,0x3c,0xfa,0xe3,0xad,0x9d,0x0e,0xb8,0xad,0xd8,0x6e,0xd8,0x96,0x6c,0xcf, - 0x58,0xf6,0x96,0xe2,0x9c,0xa2,0x25,0x74,0x16,0xc1,0xfb,0x32,0xc7,0xdc,0xf5,0x24,0xad,0xc7,0x89,0x8d, - 0x12,0x5f,0x73,0xa9,0xa7,0xf3,0x79,0x71,0x53,0xd1,0x14,0xd2,0xd1,0xad,0x0c,0xe1,0x7b,0xb6,0x1b,0xbd, - 0x59,0x59,0x5c,0xf5,0x6e,0x8b,0x65,0xd9,0x13,0x00,0xc0,0x7c,0x31,0x48,0xa9,0x6d,0xa3,0xdc,0xfb,0x70, - 0xfd,0x06,0xdc,0xf6,0x16,0xcb,0x72,0x51,0x54,0x69,0x35,0xe8,0x01,0x5c,0x75,0xf1,0x66,0x19,0x6a,0x47, - 0x6d,0x75,0x6a,0x02,0xc6,0x9e,0x75,0xbd,0x88,0x0e,0x0e,0x8e,0x3e,0x7f,0x38,0x38,0xfa,0x94,0xb6,0xee, - 0xe0,0xe3,0x83,0xde,0xcd,0x45,0x9a,0xa3,0x07,0x3d,0x6c,0x3a,0x33,0xdf,0xe8,0x47,0x56,0x53,0xdb,0x7c, - 0x3c,0xd4,0xbd,0x62,0x36,0xeb,0x25,0x55,0xaf,0x2a,0xe0,0xec,0xa1,0xea,0x29,0xf0,0x42,0xef,0x52,0x7c, - 0x45,0x7f,0x16,0x1b,0x84,0xb2,0xa9,0x02,0x25,0xb2,0x89,0x7f,0x3a,0x41,0x2a,0xa4,0xfd,0x49,0x7e,0x4b, - 0x1b,0xf1,0x76,0xd0,0xfb,0x27,0x7d,0x0c,0xb0,0x93,0xcc,0xe9,0xb5,0xea,0x99,0xd3,0xab,0x27,0x56,0x7b, - 0x3d,0x1c,0x86,0xe8,0xed,0xd9,0x6d,0x0f,0xda,0x0f,0xd8,0xb2,0xf5,0x45,0x73,0xa2,0x7b,0x67,0xbc,0x8f, - 0x7a,0xcb,0x9c,0x68,0x2e,0xce,0xfd,0xfe,0xcb,0xe7,0xbd,0x39,0x10,0x43,0xd5,0x5b,0x2e,0x06,0x5e,0x63, - 0x03,0xe8,0xa5,0x72,0x7b,0xdd,0x28,0x21,0x4b,0xa5,0x16,0xbd,0x73,0xfe,0x69,0x3a,0x78,0x95,0x8a,0x9b, - 0xbc,0x87,0x7d,0xd4,0x2b,0xd9,0x2b,0xd6,0xa0,0xa7,0x30,0x4c,0x0a,0xb1,0x34,0x77,0x04,0xbb,0x86,0xb0, - 0x04,0x1d,0x0d,0x37,0x45,0x39,0xa5,0x51,0x4f,0x7b,0xb3,0x65,0x49,0x39,0xed,0x05,0x3c,0x4b,0x09,0x32, - 0xd0,0xd3,0x2a,0x9b,0xca,0x66,0xf3,0x42,0x5d,0x8d,0x30,0x97,0x7a,0xa2,0x4d,0x71,0x31,0x59,0x44,0xde, - 0x2f,0xf4,0x91,0xe7,0x5f,0x3f,0x7b,0x29,0xef,0x0a,0xb6,0x96,0x75,0x71,0x05,0x10,0x47,0xa8,0xa8,0x9e, - 0x1c,0x46,0xb4,0xe2,0x79,0xef,0x9b,0x97,0xbd,0x64,0x3a,0x85,0x27,0xd7,0x2d,0xf0,0x24,0x8b,0x40,0xa7, - 0xc2,0x19,0x4d,0x0c,0x96,0x85,0xa6,0x94,0x4a,0x5e,0xa6,0xe9,0x42,0x2d,0x05,0xe6,0x76,0x8e,0x06,0x00, - 0x1a,0x50,0x08,0x27,0x40,0x49,0x6a,0xbc,0xed,0x11,0x9c,0x4c,0x0b,0xe0,0x2d,0x42,0x1b,0x0b,0xf5,0x1d, - 0xc2,0x1d,0xe6,0x9b,0x34,0xa4,0xe5,0x59,0x9e,0xd6,0x57,0x49,0x75,0x49,0x03,0xe3,0xe7,0x1e,0x5e,0xbc, - 0xf0,0x9c,0x0e,0x1a,0x5a,0xf4,0xc8,0xfb,0x4a,0x1e,0xbc,0xf0,0x82,0x36,0xbe,0x98,0xea,0x7c,0xad,0x9e, - 0x6c,0x9a,0x8c,0xf2,0x9b,0x59,0xaf,0x22,0x92,0x07,0x51,0x85,0x09,0xba,0xb8,0x77,0x6a,0x51,0x1a,0xe0, - 0x4d,0x9d,0x7b,0xac,0x2b,0x3e,0x11,0x1a,0xa0,0x97,0xcd,0x1a,0x7b,0x4b,0xf9,0x9b,0xa0,0xfa,0xcf,0x7f, - 0x7c,0xd5,0xf3,0x93,0x9a,0x17,0xac,0x26,0x6c,0xdb,0x83,0xaa,0x5f,0x49,0xa7,0x61,0x7e,0x1e,0xf6,0x9e, - 0xe6,0xd3,0x12,0x32,0xaf,0x69,0x91,0x32,0x10,0x07,0x03,0xdb,0xa5,0x97,0xd6,0xed,0x32,0x21,0x28,0x65, - 0x30,0x44,0x83,0x9b,0x98,0xc1,0xaf,0xd5,0x41,0xd7,0xc0,0x53,0x9c,0x42,0xcb,0x4b,0xa7,0xa8,0x4a,0xfa, - 0x9a,0x0e,0x0a,0x3e,0xe7,0x28,0x8d,0x40,0x89,0xce,0xac,0x74,0x0a,0x23,0xa2,0x85,0xca,0x07,0x3c,0x83, - 0x02,0x58,0xd8,0x33,0x52,0xe5,0x98,0x13,0x52,0x6c,0xc4,0xb9,0x55,0x2a,0x4d,0x87,0x81,0xf7,0x54,0xb6, - 0xc8,0x4b,0xde,0x22,0x82,0x05,0x79,0x63,0x50,0x89,0x9e,0xdf,0x7f,0x34,0x78,0x74,0x1d,0xe8,0xe2,0xaf, - 0x5e,0x3f,0x15,0xfc,0x09,0x50,0xfc,0x01,0xdb,0xf8,0x9e,0xf2,0x4f,0x5f,0xea,0xb3,0x4c,0xed,0xa4,0xc6, - 0x87,0xd4,0x5e,0xe4,0x4a,0x09,0x9b,0xb2,0x13,0x3a,0xbf,0x09,0x78,0x48,0xcf,0xe0,0x61,0x2f,0xf2,0x84, - 0x06,0xc6,0x2c,0x53,0xf3,0x0c,0x5d,0x32,0x36,0x22,0x9c,0x40,0xc5,0x46,0x77,0x38,0x9b,0xd5,0x51,0x47, - 0xfb,0x70,0x39,0x9f,0x32,0xf6,0x40,0xaa,0x3e,0x89,0x35,0x52,0x47,0x9a,0x45,0xcf,0x1b,0xa5,0x1d,0xdc, - 0x4a,0xec,0x1a,0x16,0x54,0xd5,0x91,0x35,0xd8,0xda,0xba,0x29,0xcb,0xc7,0x74,0xf7,0x07,0x2a,0x98,0x03, - 0x75,0x7e,0x80,0x2b,0x6d,0x7e,0x81,0x2b,0x6c,0x7c,0x41,0xd6,0x0d,0x58,0x64,0x73,0xc4,0x44,0x6d,0x96, - 0x59,0x4a,0xb5,0x18,0xc9,0xe8,0x31,0x2f,0x17,0xe8,0xab,0x5e,0x78,0x5a,0x05,0x4c,0x5a,0x8f,0x43,0xcc, - 0xf5,0x24,0x0f,0x48,0x52,0xc3,0x09,0xed,0xbf,0xb4,0x7e,0x56,0xcc,0x69,0x5e,0xdd,0xbe,0xa4,0x38,0x78, - 0x28,0x11,0xe4,0x0e,0xbd,0x70,0x1b,0x0d,0x5a,0xa7,0x4c,0x65,0x77,0xd4,0xd8,0xe8,0x19,0xac,0x9f,0x2a, - 0x42,0x52,0x74,0x3a,0x70,0xf9,0x9e,0x65,0x3d,0xe6,0xb7,0x72,0xe8,0xc0,0xbb,0x36,0xe1,0xe3,0x1b,0x5a, - 0xd9,0xe5,0x42,0xc3,0x4f,0x46,0xe3,0x91,0x2f,0xfc,0x4c,0x98,0x11,0x27,0xed,0x21,0xad,0x3f,0x28,0xc9, - 0x79,0x8f,0x7d,0xcc,0x2f,0x09,0xa4,0x8f,0x08,0xa1,0xe5,0x54,0x68,0x51,0xe4,0x15,0xc1,0x4b,0xa8,0x3e, - 0x41,0x18,0xff,0x42,0xef,0x0b,0x56,0x89,0x9a,0x16,0xe7,0x5e,0xf8,0x10,0x85,0x2f,0x08,0x91,0x82,0x9e, - 0x48,0xdf,0x4d,0xd2,0x85,0x9c,0xd5,0x8f,0xb6,0x36,0x52,0x15,0xb3,0xba,0xd5,0xc8,0xc7,0x86,0xec,0xa4, - 0x52,0xe8,0x46,0x0f,0xc6,0x7c,0xf4,0x08,0xd2,0xe5,0x13,0x22,0x8e,0x92,0x4b,0xcc,0xa5,0x1c,0xc8,0xd0, - 0x04,0xeb,0x55,0x73,0xfa,0xeb,0x85,0x9f,0xba,0x15,0xd3,0x5a,0x68,0xab,0xc9,0xe5,0xeb,0x92,0x4d,0xae, - 0x9e,0xf6,0xf8,0xad,0x57,0xe3,0xb5,0x81,0x90,0xcc,0xd1,0x50,0x11,0x59,0x89,0xe9,0xd4,0x47,0x48,0x9e, - 0x26,0xe8,0x02,0x90,0x12,0x9d,0x00,0x44,0xa3,0xe3,0x8c,0x38,0x28,0x80,0xa5,0xd8,0xc6,0x91,0x8a,0x72, - 0x27,0xb6,0x1c,0x43,0x65,0x7a,0x55,0x5c,0xa7,0x0a,0x0f,0x0a,0xc1,0x2d,0xc7,0x9d,0xea,0xd3,0x73,0x3a, - 0xa2,0x00,0x11,0x84,0x9e,0xd4,0x53,0x23,0x97,0xbf,0x41,0xe8,0x27,0x53,0x47,0x60,0x23,0x5d,0xc1,0x84, - 0x0b,0x8e,0xfc,0x31,0x67,0x8c,0x20,0xc4,0xf2,0xf9,0x7b,0xa9,0xfb,0x0f,0x23,0xef,0xd3,0xff,0x8c,0xba, - 0xff,0x92,0x60,0xb3,0x38,0x4f,0xf3,0xb3,0x79,0x76,0xd9,0x3b,0x27,0x16,0x6e,0x4e,0x07,0xc4,0x59,0xfa, - 0x7b,0x76,0x4e,0x33,0x43,0xfb,0x3b,0x99,0x52,0x81,0x6b,0xa6,0x52,0xcd,0xc1,0x9b,0x76,0x11,0xfc,0x5f, - 0x53,0xe9,0x4a,0x75,0x1b,0x87,0x2e,0xd1,0x3b,0x8b,0x3c,0x4b,0x97,0x37,0xf4,0x7b,0x2e,0xe0,0x12,0xa2, - 0xc7,0xe8,0x34,0x1d,0x7e,0xe9,0xef,0x29,0x48,0xfe,0x2c,0x4f,0x7a,0x39,0x75,0x25,0xcd,0x5b,0x04,0xff, - 0x4f,0x8b,0x6a,0x9e,0x24,0x79,0x27,0xc9,0xff,0x85,0xe9,0x5e,0x21,0xa5,0x3a,0xa8,0xff,0xb7,0xd3,0x3f, - 0x43,0xfd,0xff,0x92,0xd5,0xd4,0xd7,0xc9,0x05,0x01,0xf2,0xfc,0xc3,0x59,0x80,0x66,0x2d,0xc5,0x07,0xbc, - 0xa2,0x8e,0x2d,0x60,0xc2,0x3c,0x6d,0x73,0x03,0x19,0x75,0xfc,0x3c,0xbd,0x66,0xb7,0xfe,0xdd,0x1c,0x41, - 0x32,0x3b,0x4f,0xcb,0x22,0xdf,0x64,0x08,0xbe,0xa3,0xcc,0x73,0xa0,0x13,0x9a,0x45,0xe5,0x07,0x9f,0x0e, - 0xce,0x4b,0xb4,0xd3,0x66,0x0c,0x7e,0xb5,0x25,0xa8,0x30,0xe1,0x2c,0x14,0x6a,0x32,0x07,0x3f,0xa2,0x27, - 0x68,0x49,0xba,0xf2,0x21,0xec,0xc1,0xd7,0xcb,0x6c,0x9a,0x9d,0xa7,0x5d,0xec,0x01,0xcd,0xc2,0x56,0xf6, - 0xc0,0x76,0xc6,0xb4,0xe4,0xf4,0xcf,0x05,0xad,0x16,0x83,0xf0,0xd4,0x25,0x58,0xe9,0xe4,0x97,0x49,0x66, - 0x68,0x69,0x73,0x09,0x3f,0x24,0xc9,0x25,0x21,0x5c,0xd0,0x49,0x04,0xd0,0xf3,0xec,0x2d,0x11,0xc0,0x57, - 0x3d,0x4c,0x96,0xb0,0x0c,0xf6,0xd8,0x49,0x01,0xd0,0xc9,0x8c,0xf3,0x08,0xbc,0x88,0x39,0x21,0x64,0x9d, - 0x27,0x49,0x29,0x60,0xd9,0xc6,0x17,0xa9,0x4c,0x71,0x8f,0x91,0x9a,0x93,0x6a,0x08,0x76,0x38,0xee,0xee, - 0x3d,0xdf,0xa8,0x48,0xc8,0x85,0x4a,0x9d,0xa5,0x04,0xdf,0x28,0xd2,0xbb,0xce,0x92,0x4e,0xee,0x81,0xf2, - 0xe9,0xfb,0x6f,0xdd,0xfe,0x5d,0xa4,0x67,0x80,0x91,0x2b,0x0c,0x69,0xd0,0x7b,0x25,0xa3,0x96,0xde,0x81, - 0xc0,0x27,0x2c,0x9b,0xa1,0xc7,0x3c,0x5a,0xb7,0x1b,0xc4,0x39,0xc0,0xcb,0xeb,0xef,0x19,0x46,0x8d,0xd2, - 0x0c,0x6c,0x67,0x84,0x25,0x33,0x22,0xec,0x09,0x85,0x12,0xab,0xf3,0x6d,0xda,0xbb,0x24,0x82,0xc2,0x6d, - 0xad,0x28,0x2e,0xdd,0xc9,0x25,0xaa,0x8d,0x50,0x69,0xb1,0xc0,0x70,0x1b,0x0b,0x40,0x34,0xec,0x02,0x63, - 0x9a,0x96,0xcb,0x4b,0xcc,0x48,0x5d,0xd4,0xe8,0xfa,0x54,0x58,0x87,0x04,0xc0,0x49,0x53,0xd9,0xe6,0x1c, - 0x9c,0x95,0xc6,0x9e,0xe5,0x53,0x59,0x01,0xed,0x06,0xff,0xa0,0xca,0x76,0x2e,0x04,0xda,0xa7,0x59,0x4a, - 0x09,0xfe,0x5a,0x0c,0xc4,0xaf,0xcb,0x79,0xef,0x22,0xe3,0x2d,0x43,0x47,0x01,0x26,0x85,0x77,0x1a,0x15, - 0xbb,0x49,0x26,0x17,0xf5,0x4d,0x01,0x2e,0x22,0xa3,0xd9,0x49,0x2d,0x1e,0x4b,0xa9,0x24,0xcd,0x4b,0x5e, - 0x2f,0x79,0x66,0x7b,0x84,0xa3,0x4b,0x40,0x36,0xcf,0x48,0xb5,0x95,0xa7,0x78,0x63,0x1a,0xd4,0x5c,0xc5, - 0x57,0xe9,0x59,0xb9,0x24,0xe4,0xb9,0x8d,0xb3,0xa0,0x69,0x65,0x48,0x63,0xe2,0x9e,0x4e,0x2d,0x9a,0xb5, - 0xf4,0x26,0x7b,0xfb,0x3b,0x80,0x2f,0xc9,0xbb,0x46,0x3a,0xe8,0xbd,0x21,0x60,0xa4,0x7a,0xd9,0xdb,0x9c, - 0xe1,0xf8,0x86,0x18,0xb4,0xb7,0xa9,0xbb,0x62,0xa8,0x09,0x7d,0x0a,0x1a,0x13,0xfd,0xf9,0x3d,0x7b,0x8b, - 0xfc,0x9b,0x94,0x46,0x7e,0x03,0x38,0xa6,0x97,0xab,0x34,0x55,0x78,0xfc,0x0c,0x26,0xef,0x9b,0x7c,0x06, - 0x3d,0x6e,0xe5,0x32,0x60,0x0b,0xf4,0x7e,0x3e,0x23,0xb9,0xda,0xe0,0x33,0x72,0xa0,0x72,0x9a,0x6a,0xc2, - 0x6f,0x38,0xff,0x68,0x0b,0x70,0xa7,0xed,0xa6,0x21,0x12,0x36,0xcd,0x78,0x37,0x2d,0x34,0xaf,0x91,0x5c, - 0x69,0x5e,0x23,0x99,0x57,0xe8,0xba,0xd9,0x93,0xcc,0x63,0xf0,0xa2,0xd2,0xb9,0xb2,0x24,0xb0,0x10,0xa6, - 0x83,0xaa,0xca,0x36,0x87,0x80,0x94,0x0f,0x27,0x9a,0xab,0x32,0x7b,0x7b,0x8d,0x66,0x9d,0xd2,0x86,0x09, - 0xc1,0x66,0xa1,0x8d,0xb0,0x95,0x09,0x79,0x05,0x34,0x4d,0xf3,0x36,0xd5,0x6c,0x08,0xe6,0x66,0x2b,0x13, - 0xb2,0x8d,0x0b,0x49,0xa0,0xe3,0xb2,0x64,0x06,0x08,0xb0,0xfd,0xc7,0x99,0x91,0xb3,0xec,0x2d,0xd1,0x81, - 0xbc,0x31,0xfe,0x3c,0x3f,0xe2,0x10,0xbd,0xef,0xe1,0x43,0x1a,0x2d,0xbb,0xdb,0x9f,0xb7,0xb9,0x61,0x45, - 0xd2,0x19,0x41,0x5a,0x72,0xde,0xe0,0x45,0x9e,0x12,0xb3,0x4b,0xeb,0x25,0x8c,0xc8,0xe2,0x3e,0x46,0x04, - 0x27,0x96,0x22,0x0b,0x54,0xa7,0x18,0x25,0x15,0x8b,0x8b,0x84,0xd1,0x78,0x9b,0x15,0x41,0x79,0xe7,0x70, - 0x83,0xc8,0x34,0x9d,0xcf,0x79,0x4a,0x3b,0x6a,0x6a,0x76,0xc1,0xf9,0xca,0x7d,0x55,0x36,0xf8,0x92,0x0f, - 0xf8,0x9a,0x4b,0x86,0x7c,0xe8,0xe7,0x54,0x9d,0x4d,0x26,0x05,0x15,0xdd,0x05,0x6a,0x76,0xaf,0xcd,0xa2, - 0xbc,0x20,0xf4,0x46,0xac,0xf5,0x5b,0x84,0xff,0xb1,0xc0,0xc1,0x00,0xdf,0xc5,0xa7,0xa0,0xf1,0xcb,0x79, - 0x0a,0xf2,0x18,0xcd,0xfe,0x4e,0xcc,0x12,0x5a,0x75,0x39,0x15,0x97,0x48,0x63,0x09,0xc5,0x35,0xc4,0xad, - 0x13,0x48,0x7c,0x2e,0xb0,0x6d,0x88,0x48,0xe3,0x93,0x8c,0xfa,0x5f,0x53,0xa9,0xf7,0xf3,0x23,0x04,0x04, - 0x86,0xbc,0x63,0x96,0x84,0x0a,0x10,0x81,0x52,0xca,0x86,0x0b,0x4d,0xab,0x72,0xa4,0x74,0x33,0x26,0x3f, - 0xe5,0xa0,0x77,0xc0,0x9c,0x10,0xf9,0x04,0x31,0x1d,0x58,0xf9,0x47,0xef,0x69,0xaa,0x9b,0x3d,0xf9,0x5a, - 0x97,0xa1,0x71,0xfd,0x5e,0xa4,0x97,0xaa,0xac,0xde,0xb5,0xc2,0xa3,0x10,0x76,0xa3,0xb3,0x15,0xe8,0x9c, - 0x26,0x13,0x07,0x29,0xe1,0xac,0x05,0x8d,0x15,0x04,0x9b,0xe5,0x55,0x68,0x86,0x88,0x08,0xeb,0x60,0x57, - 0x40,0x31,0xb7,0x18,0x96,0x33,0x50,0x7f,0xd9,0xe5,0x19,0xa1,0x10,0x3a,0xad,0xeb,0xe5,0x52,0x0e,0x21, - 0x45,0x52,0x50,0xfb,0x98,0x61,0x5a,0x40,0xc2,0xd3,0x39,0x8e,0x9a,0xbc,0xbe,0xc9,0xa8,0x1b,0x73,0xe4, - 0xa7,0xf9,0x01,0xb1,0xf4,0x58,0x07,0x2c,0xb4,0x54,0xbc,0xee,0x3e,0x17,0x98,0x02,0xc9,0x70,0x9e,0x97, - 0x68,0x11,0xe8,0x14,0xc0,0x8b,0xbb,0xd7,0xfc,0x3d,0xfc,0x8b,0x3a,0x6c,0x5b,0x1c,0xcc,0xaf,0xba,0xf6, - 0x56,0x36,0x86,0x21,0xdd,0x19,0x6c,0xae,0x48,0x46,0xe9,0x2c,0x13,0x8d,0x6b,0xeb,0xc8,0x9c,0xe7,0xfe, - 0xe9,0x62,0xe1,0x07,0x77,0xc9,0xbb,0xac,0xa8,0x44,0x11,0x16,0xcc,0x66,0x51,0x42,0xd1,0x96,0xd9,0xcc, - 0x74,0xb0,0xac,0x52,0xad,0x11,0xb5,0x69,0x3d,0x96,0x2a,0x0b,0xb0,0x46,0x70,0x02,0xb0,0xf4,0xb7,0x23, - 0x76,0x21,0xc6,0x8f,0x8c,0x86,0xe2,0xe6,0xeb,0x6a,0x75,0x18,0x36,0x53,0x9e,0xc4,0xba,0xe6,0x4b,0x62, - 0x06,0xb3,0x0a,0x71,0xb3,0x94,0xeb,0xe9,0xa8,0xd5,0x56,0x3f,0x3e,0x42,0xcc,0xfa,0x9e,0x2a,0xd8,0xf0, - 0x2a,0x42,0x20,0x00,0xae,0x82,0xc0,0xd2,0xb5,0x92,0x62,0x8b,0x21,0xd5,0x3e,0x4d,0x59,0x72,0xbb,0x5a, - 0x1d,0x05,0xeb,0x60,0x50,0x5f,0xa4,0xb9,0x5b,0x4e,0x0d,0x83,0xe7,0xc3,0xaf,0xa9,0x44,0x10,0x44,0x1b, - 0xdd,0x59,0x07,0xe1,0xaf,0xcb,0xd4,0xf1,0x4d,0xe8,0x4d,0x2e,0xd2,0xc9,0xa5,0x17,0xde,0xe9,0xb0,0x06, - 0x2a,0x34,0xc4,0x64,0x4e,0x94,0x48,0xac,0x72,0x7b,0x91,0x7a,0xbd,0xeb,0x71,0x02,0xd1,0xf4,0xe2,0x07, - 0x36,0xec,0x19,0xe6,0xc4,0x3c,0xf5,0xd6,0x5e,0xef,0x6f,0x97,0xe9,0xed,0x94,0x20,0x22,0xf6,0x44,0x14, - 0xf0,0x5d,0x7a,0x0b,0x00,0xa1,0x8c,0xc9,0x3c,0x9b,0x5c,0xea,0xe4,0x67,0x78,0xf1,0x7a,0x74,0xec,0xb1, - 0xfa,0x7b,0xec,0x1d,0x7a,0x4f,0x1a,0x5f,0x27,0x00,0x2e,0x8b,0x79,0x33,0x91,0x63,0x11,0x50,0xd2,0x01, - 0xa5,0xe9,0xbf,0x4e,0x36,0xf1,0xf3,0x29,0xd5,0xb8,0xbb,0xeb,0x31,0xfd,0xdf,0x5b,0xaf,0xdd,0x92,0x7b, - 0xc6,0xa1,0x10,0x1f,0x89,0xca,0x55,0x90,0x38,0xee,0x10,0x5f,0x1e,0x5f,0x14,0xc5,0x3c,0x4d,0x72,0xe3, - 0x60,0x68,0xe7,0x68,0x6d,0x39,0xb0,0xad,0x45,0x60,0xaf,0xc9,0xce,0x1a,0xa3,0x3b,0x67,0x68,0x1b,0x6e, - 0x9e,0x74,0x43,0x70,0x67,0x80,0x77,0xfe,0x70,0xbc,0x63,0x9f,0xe5,0xa2,0xf0,0x41,0x7a,0x05,0x67,0xb6, - 0x59,0xbe,0x00,0x86,0xb2,0xb9,0xd0,0x44,0x68,0x4c,0x68,0xe4,0x82,0xcf,0xa3,0x87,0xb0,0xbf,0xa5,0x99, - 0x87,0xe7,0x41,0x6d,0x28,0xef,0xf4,0xc6,0x57,0x21,0xd2,0x41,0x8b,0x6a,0x0d,0x54,0xe5,0xe4,0xb2,0x05, - 0x13,0x25,0x31,0xca,0xc5,0x56,0x98,0x90,0xdc,0xad,0x30,0xd1,0x8b,0xe3,0x5e,0x36,0xfd,0xff,0x15,0x64, - 0xf0,0x05,0x38,0x11,0xe9,0xfc,0xfb,0xbf,0x0c,0x0c,0xfc,0x48,0xf3,0xf7,0xff,0x11,0x40,0x20,0x6a,0x63, - 0x03,0x10,0x1a,0xb3,0x2a,0x27,0xf2,0x93,0xc7,0xf0,0xc3,0xa5,0xd3,0xb8,0x8f,0x3c,0xd3,0xfc,0x24,0xe1, - 0x2a,0x79,0xbe,0x51,0xaa,0x59,0x7d,0x9e,0x11,0x7e,0xc7,0x72,0x26,0x99,0xac,0x1e,0x0f,0x96,0x1d,0x4c, - 0xc7,0xea,0xfb,0xbd,0xab,0x2c,0x07,0x04,0x10,0xcd,0x4c,0x90,0xf0,0xf1,0xe1,0xe7,0x1f,0x7b,0xcd,0xea, - 0x5e,0xef,0x7a,0x1f,0xac,0xdd,0x5c,0x69,0xf0,0xa8,0x1e,0x0c,0x74,0xdf,0xb6,0x00,0x44,0x9a,0x4f,0xdf, - 0xd3,0x71,0x48,0x03,0xff,0xc3,0x6e,0x1f,0xd9,0x6e,0x7f,0xf2,0x81,0xdd,0x96,0x7e,0xb9,0x9d,0x6e,0x40, - 0xe8,0x58,0x75,0xf3,0x24,0xe4,0x90,0x38,0xe9,0x74,0x03,0xb2,0xb4,0xab,0xf9,0xf8,0x4e,0x02,0xd5,0x5a, - 0xc0,0x71,0x62,0x2a,0x3b,0x89,0x08,0xae,0xbc,0x0e,0x99,0xc0,0x89,0x94,0x63,0x24,0x05,0xb9,0x65,0x03, - 0xb0,0x54,0xf5,0x9d,0xb8,0xf1,0x15,0x49,0x1c,0xa9,0xdf,0x27,0xa9,0x44,0x0f,0xf6,0xf9,0x37,0x56,0xa9, - 0xfd,0xa3,0x2e,0x80,0x4e,0xa1,0x73,0x81,0x62,0xed,0x16,0xb9,0x05,0xfe,0x79,0x9c,0x9a,0x20,0xa8,0xea, - 0x29,0xe6,0xf4,0xfd,0x6d,0x0d,0x86,0x1d,0x7d,0xd3,0xbd,0x08,0x37,0xbe,0x22,0x8d,0x11,0x86,0x57,0xe6, - 0xc4,0xeb,0xb5,0x56,0x8e,0xc4,0x21,0xad,0x1c,0xde,0x1b,0x73,0xff,0x3c,0xb9,0xce,0x88,0x5b,0x2d,0xca, - 0xc1,0x9c,0x56,0x78,0x09,0x69,0xae,0xf2,0x3b,0xbe,0xcf,0x7e,0xc7,0xdb,0xe6,0xf3,0x1e,0x08,0x1e,0x63, - 0xc8,0x6f,0x0c,0x10,0x83,0xa1,0x6a,0xdc,0xbf,0x4b,0xe7,0x91,0xf7,0x17,0x22,0xf9,0x89,0x6b,0xa6,0x0f, - 0x45,0x65,0xc8,0x06,0xea,0x77,0x79,0x51,0xb3,0x03,0x0d,0x66,0x1e,0x18,0xeb,0x68,0x39,0xea,0xce,0x61, - 0x58,0x89,0x74,0x12,0x01,0x76,0xe4,0x9a,0x82,0x6f,0x86,0x26,0x48,0x50,0xa5,0xc0,0x1d,0x4f,0xd0,0xcf, - 0xc8,0x5b,0x69,0x6a,0x9f,0x48,0x81,0x73,0x66,0xca,0xa9,0x98,0x5c,0xfc,0xbc,0x4e,0xce,0x10,0xb4,0xc4, - 0xca,0xd7,0x20,0x90,0xb3,0xa2,0x61,0xd5,0x16,0x8b,0x3c,0xb5,0x7e,0x47,0x23,0xd1,0xa5,0xd3,0xb9,0x8f, - 0x0e,0xf1,0x8a,0x53,0xb3,0x21,0x13,0x5d,0x44,0x77,0x69,0x2e,0x78,0x93,0x3a,0x90,0x2d,0x22,0xef,0x70, - 0xc0,0xff,0xac,0xf0,0xb3,0x51,0x42,0xf5,0xe7,0xb0,0x59,0xb4,0x29,0xf6,0x33,0x62,0x02,0xfe,0xba,0x2b, - 0xce,0xc3,0x2c,0xa9,0x46,0xd1,0x56,0xa5,0x71,0xb7,0x11,0xaf,0x08,0x26,0x87,0x58,0x65,0x87,0x3f,0x21, - 0xfd,0xb7,0x32,0x0a,0x7e,0xd7,0x82,0x09,0xb6,0xeb,0x33,0x4c,0x3a,0x38,0x72,0x62,0x3d,0xd3,0x29,0x31, - 0xcd,0xb2,0x34,0xc4,0x7f,0x13,0x43,0x2c,0x9d,0x58,0x28,0xa6,0x57,0xea,0x18,0x46,0x56,0x35,0x21,0x0b, - 0x75,0x57,0xd2,0xb8,0xce,0xe9,0xff,0x19,0xfd,0xbf,0x89,0x0e,0x31,0x2c,0x76,0x96,0x34,0x6d,0xbb,0xc8, - 0x95,0xe3,0x60,0x98,0x0e,0x5c,0x80,0x00,0x8d,0x28,0xb1,0x6a,0x08,0x8d,0xab,0x43,0xe4,0x55,0x5a,0xbf, - 0xd2,0xb1,0x0c,0x43,0xd6,0xbd,0x94,0x57,0x29,0x4b,0x69,0x26,0x0e,0x14,0x1f,0x6f,0x88,0x1c,0xeb,0x7b, - 0xfc,0xe8,0x69,0xaf,0x28,0xca,0x4f,0x0a,0x40,0x9d,0x75,0x6d,0x2e,0x92,0xea,0x42,0x1b,0xf3,0x1d,0x05, - 0x43,0xd9,0x81,0x06,0x72,0xe0,0x77,0x47,0xed,0xaa,0xef,0x5b,0x40,0xc7,0xc7,0x4b,0x9b,0x25,0xe5,0x44, - 0xcb,0xaf,0xfb,0x9b,0xf4,0xab,0x64,0x5b,0xa6,0x79,0x6b,0x11,0x61,0x8e,0x3b,0xb3,0xab,0xba,0x58,0x74, - 0x76,0x47,0xc1,0x2d,0xcd,0xc4,0x3a,0xe0,0x7f,0xf6,0x88,0xae,0x2e,0x8a,0x9b,0x1f,0xdd,0xfd,0xd6,0xe9, - 0xf1,0x11,0xcb,0x90,0x37,0x96,0x21,0xbe,0x53,0x1b,0x3a,0x4a,0x95,0x3c,0xa2,0xd6,0xb1,0x9b,0xf3,0xcd, - 0xf5,0xda,0xdd,0x9d,0x10,0x99,0x50,0x6a,0xfa,0xbe,0xa3,0x44,0x10,0x76,0x24,0xc6,0xdd,0x3c,0x41,0xab, - 0x27,0x62,0xcd,0xb3,0x05,0x48,0xd6,0xe1,0x27,0xe9,0x23,0xd0,0x0b,0x74,0xe4,0x74,0x8f,0x13,0xf1,0xf7, - 0x80,0x18,0x37,0xda,0x0c,0x14,0x5e,0xee,0x18,0x8d,0xdf,0x18,0x4e,0x77,0x29,0x85,0x8b,0xbb,0xbb,0x65, - 0x28,0x98,0xa7,0x2f,0xbf,0x11,0x1e,0xb0,0xe5,0x8e,0x51,0x45,0x99,0x9a,0x17,0x88,0x2f,0xa3,0xf4,0x12, - 0xe1,0x68,0x90,0x79,0x2d,0x61,0xf0,0x46,0xde,0xd7,0xaf,0x5f,0xbf,0xec,0xe9,0xd7,0x1e,0x02,0x8a,0xf5, - 0xbc,0xbe,0x2d,0x30,0x50,0x68,0x04,0x29,0x7c,0x81,0x38,0xf2,0x7e,0x2c,0x4c,0x79,0x8f,0xd2,0xd5,0x1a, - 0x4a,0x4f,0xdb,0xa0,0xe0,0x63,0x9b,0xa4,0x41,0xdf,0x3b,0xce,0x8f,0x73,0xaf,0x9f,0x87,0xec,0xc9,0xd5, - 0x91,0x3a,0xdd,0xeb,0x3e,0x43,0x38,0xd3,0xf3,0x94,0x76,0xda,0x41,0xb2,0xc8,0x0e,0x34,0xaa,0xbd,0x63, - 0x56,0x2e,0x3a,0x3a,0x0c,0x2d,0x4f,0x17,0x1d,0xa5,0x8f,0x36,0x78,0xba,0xb4,0x2b,0xbc,0x98,0xf2,0xbe, - 0xa9,0x82,0x7e,0x2e,0x2b,0xe5,0x73,0x13,0x1c,0xa1,0x72,0x37,0x3c,0x68,0xce,0xeb,0x00,0x24,0x34,0x5c, - 0x52,0x30,0x90,0x3a,0x7b,0xd0,0x0b,0xd4,0x60,0x1c,0x41,0xd5,0x1f,0x1a,0xd0,0xc4,0xd1,0xc5,0xfa,0x6f, - 0x0d,0xca,0xb6,0xf9,0x67,0x06,0xe6,0x68,0x87,0xe9,0xc1,0x29,0x51,0xda,0x1f,0x5b,0x29,0xa5,0x02,0xf2, - 0x5f,0x5b,0x29,0x6e,0xef,0x4f,0xad,0x94,0xf4,0x04,0x83,0x69,0xcb,0x14,0xb7,0x1d,0x15,0x42,0x1e,0xb0, - 0x1f,0x59,0x79,0x84,0x1f,0x1c,0x19,0xe1,0x82,0x0e,0xcc,0xae,0xb5,0x33,0x07,0x69,0xea,0xcc,0xff,0x40, - 0xa7,0x36,0x4e,0xd6,0x46,0x09,0x27,0xc3,0x9c,0xb7,0x8d,0x02,0x2a,0x51,0x4e,0xe0,0x66,0x0e,0xa5,0xd8, - 0xe3,0xb8,0x91,0xa5,0x53,0xe5,0x7c,0x6e,0x64,0x21,0x05,0xc7,0x75,0x23,0x31,0x5b,0xb8,0x27,0x77,0xf3, - 0x2b,0x26,0xdd,0x1c,0xe6,0x8d,0x7c,0x95,0xb8,0xde,0xba,0xd2,0xe1,0x45,0x8a,0x4b,0x35,0x3a,0x26,0x3c, - 0x15,0xb1,0x67,0x1f,0xf1,0x1a,0xbd,0xc8,0xc3,0x72,0x28,0x34,0x71,0xf0,0x96,0x48,0x20,0x22,0x4e,0x3a, - 0xa0,0xc2,0xac,0x75,0xda,0xb9,0xd6,0xa9,0x5e,0xeb,0xd6,0xe2,0x22,0x7e,0x67,0xc7,0xe9,0xa6,0x96,0x93, - 0xce,0x30,0x0d,0x0f,0xf7,0x42,0x77,0x6d,0x61,0xa1,0xbe,0x0f,0x16,0x34,0xb8,0x6b,0x40,0xfd,0x5f,0x9b, - 0x8d,0xba,0x1b,0xc3,0x7a,0x8d,0x1b,0x7e,0x00,0xfb,0x07,0xee,0x10,0x67,0x0a,0xba,0x66,0xac,0x6e,0xcd, - 0x58,0x27,0xb5,0xb2,0x75,0x1f,0x29,0x92,0x81,0x70,0xe5,0x79,0x1a,0x1f,0x5a,0x1a,0xc2,0x9c,0xcb,0x70, - 0xa4,0x57,0x12,0xb7,0xe4,0x7e,0x52,0x39,0x57,0x6d,0xd6,0xee,0xf7,0xc3,0x66,0x82,0x8a,0xc6,0x71,0x14, - 0x99,0x64,0xd3,0x9d,0xd8,0x3b,0xf0,0x1c,0x3f,0xaa,0xbd,0x87,0x9d,0x65,0xf6,0x1b,0x65,0x1e,0x75,0x96, - 0x39,0x3e,0x6e,0x14,0xfa,0xb8,0xb3,0xd0,0xca,0x0b,0xdb,0x23,0x25,0x6a,0xf4,0xe1,0x27,0x87,0x3c,0x5d, - 0x9b,0xc4,0x94,0x3b,0x5b,0x4c,0x01,0x98,0x49,0x50,0x26,0x03,0x76,0x8a,0xa8,0x05,0xc2,0xa8,0x9a,0x02, - 0xa4,0x2a,0x9b,0x67,0xa6,0x31,0x9e,0xb0,0xac,0x82,0x46,0x19,0x03,0xc5,0x0b,0x68,0xb3,0x7d,0x57,0xa1, - 0xc0,0x33,0x61,0x4d,0xb6,0xd4,0x95,0x93,0x51,0xcd,0xb2,0x8a,0x39,0xf2,0x50,0xc7,0x16,0xd1,0xdb,0x9f, - 0x20,0x6d,0xa8,0x96,0x41,0x4d,0x10,0xff,0x98,0xc0,0x26,0x62,0xb2,0xa1,0x67,0xb8,0x59,0x19,0x7d,0x90, - 0x48,0x26,0x91,0x96,0xfb,0x74,0xf5,0x73,0xdd,0x3d,0x05,0xaf,0xd3,0x77,0xf5,0x9f,0x9b,0x86,0x1e,0x6f, - 0x97,0xcd,0x62,0x90,0x22,0x18,0x79,0x92,0x17,0xfc,0xc1,0xf9,0xf9,0x80,0xb6,0xa1,0x6a,0x42,0xed,0xaa, - 0xf9,0xfa,0x80,0x0a,0xa2,0x89,0xa2,0xab,0x3c,0xfc,0x90,0x2a,0x0d,0x05,0x15,0x5d,0x53,0xcf,0x7c,0x6f, - 0xdb,0x58,0xb2,0x85,0x86,0xef,0x0f,0xf8,0x44,0x43,0xcb,0x45,0x7f,0xe2,0x93,0x3f,0x50,0x53,0x69,0xbd, - 0xe8,0xaa,0xed,0xe5,0x7f,0xdf,0xfa,0x58,0xd0,0x80,0x77,0xef,0x8d,0x6b,0xbb,0xfb,0xd1,0xf8,0xc8,0xe1, - 0x05,0xea,0x0d,0x06,0x8b,0xa9,0xfc,0x68,0x3b,0x89,0xf6,0x5f,0x27,0x3f,0xed,0x28,0xff,0x28,0x61,0xd3, - 0xee,0x7a,0x17,0xee,0x7e,0xff,0x58,0xc1,0xc4,0xb5,0x2e,0x32,0xbb,0xe7,0x8f,0xb7,0x97,0x9a,0x43,0xf7, - 0x50,0xc0,0x2d,0x4e,0x53,0x36,0x12,0xeb,0xd8,0x97,0x90,0xcf,0xc0,0xa0,0x06,0x3e,0xf2,0xe8,0x28,0x90, - 0xe8,0xc8,0xbe,0x37,0xcb,0x60,0x72,0x61,0x58,0x69,0x9a,0x66,0x15,0x4f,0xf9,0x8b,0xdb,0x6f,0x38,0x5b, - 0xfa,0xf1,0x02,0xc5,0xd8,0xd3,0x7f,0x5a,0xc1,0x3c,0x48,0x31,0x2f,0x77,0xb5,0x0c,0x28,0x7a,0xf4,0x69, - 0xfa,0x71,0x58,0xe4,0xbf,0x34,0xe5,0x32,0xcd,0x83,0xb2,0xd5,0x31,0x0e,0xa0,0x5a,0xc2,0xb4,0xc3,0x3f, - 0x3a,0x3c,0xfc,0x48,0x70,0x76,0x3a,0x3d,0x40,0x4c,0xa0,0x3a,0x41,0x18,0x85,0xe1,0xc6,0xb1,0x6e,0xaf, - 0x6e,0xe1,0x1a,0xe6,0x7f,0xff,0x34,0x6e,0x2e,0x46,0xf7,0x81,0xdc,0x1a,0xd6,0xce,0x51,0xe8,0x1c,0xd2, - 0xef,0x9f,0x59,0x0f,0xd6,0x5f,0xb0,0xec,0xc4,0xea,0xaf,0x55,0xa0,0x89,0x57,0x56,0xec,0xf4,0x47,0xf9, - 0xb1,0xc9,0x25,0xdf,0x36,0x1e,0x48,0x43,0x7f,0x6c,0x6f,0x68,0x06,0x6c,0xe0,0xc8,0xc1,0x62,0xc0,0x54, - 0x65,0xb6,0xbe,0xea,0x16,0xd3,0x1f,0x1f,0x36,0x87,0x9d,0xb7,0xa3,0x9e,0x22,0x5e,0x94,0x02,0x5c,0x5b, - 0xda,0x2b,0x39,0x71,0x87,0x54,0x49,0x72,0xd8,0xe3,0xe4,0x3d,0xb2,0x25,0x75,0x68,0xaf,0x56,0x56,0x9a, - 0xe4,0xd6,0x5b,0xad,0x76,0x24,0x16,0x72,0x53,0xa8,0x24,0x02,0xd9,0xa6,0x9c,0x69,0xcb,0x05,0xa6,0x2d, - 0x86,0xab,0xcc,0x87,0x87,0x87,0x3c,0x1e,0x9d,0xb6,0x9d,0x91,0x71,0xa5,0x9b,0xff,0xd9,0xe7,0xc2,0x56, - 0x6b,0xd8,0xfc,0x5d,0x52,0xb2,0x0d,0x10,0x49,0xeb,0x03,0x99,0x44,0x0f,0x91,0x42,0x39,0xba,0xb2,0x33, - 0xe7,0xff,0x09,0xc5,0xaf,0xd5,0x29,0xb6,0x90,0xfa,0xcd,0xde,0x1e,0x31,0xb8,0xe3,0x62,0x66,0x09,0x29, - 0xe1,0xdd,0x45,0x52,0xfd,0x6c,0xb5,0x2d,0x36,0x2f,0x81,0xd9,0x42,0x5d,0xf7,0xb3,0x09,0xa2,0xab,0xd5, - 0xc3,0xfb,0x32,0x1f,0xdd,0x97,0xe9,0x66,0x58,0x48,0xb5,0x57,0x07,0x5a,0xbe,0xd9,0x75,0x77,0xe0,0x4c, - 0x9b,0x02,0x2c,0xac,0x8e,0x23,0x77,0x5f,0xff,0xbf,0x69,0x21,0xf6,0x1c,0x63,0x1e,0x02,0x00}; + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0xbc,0xbd,0x7b,0x73,0xdb,0xc6,0xb2,0x2f,0xfa,0xff, + 0xfd,0x14,0x26,0xcb,0x57,0x0b,0x58,0x1a,0xd1,0x52,0x72,0xd6,0xda,0x7b,0x81,0x46,0x58,0xb6,0x6c,0xc7, + 0x4e,0x6c,0x2b,0xb1,0x9d,0xa7,0xa2,0xad,0x82,0xc8,0xa1,0x84,0x98,0x02,0x18,0x00,0x94,0xac,0x88,0xbc, + 0x9f,0xfd,0xf6,0xaf,0x7b,0x5e,0x00,0x41,0x27,0xe7,0xdc,0xaa,0x5b,0x65,0x8b,0xc0,0x60,0xde,0x8f,0x9e, + 0x7e,0xf7,0xa3,0x7f,0x0e,0x1e,0xbc,0x28,0xab,0x07,0x8b,0x7c,0xaa,0x8b,0x5a,0x3f,0xc8,0x8b,0x79,0x59, + 0x5d,0x67,0x4d,0x5e,0x16,0x0f,0x96,0x0b,0x9d,0x51,0x52,0xad,0xf5,0x83,0x8b,0x55,0x31,0x5b,0xe8,0xd1, + 0xef,0xf5,0xe8,0xf5,0xab,0xe3,0xe7,0x6f,0xdf,0x3f,0x1f,0x35,0x9f,0x9a,0x07,0xff,0x7c,0xf4,0x7f,0x0d, + 0xe6,0xab,0x62,0x8a,0xdc,0x51,0x13,0xdf,0xdf,0x64,0xd5,0x03,0x9d,0xde,0x6f,0xc6,0x36,0xf1,0x41,0x11, + 0x55,0xf1,0x7d,0x3e,0x8f,0xf4,0x69,0x75,0x16,0x57,0xba,0x59,0x55,0xc5,0x03,0x3c,0x8f,0xf4,0xa7,0x65, + 0x59,0x35,0xf5,0x18,0x45,0xca,0x14,0x49,0xe9,0x7d,0x9e,0x54,0x6a,0x91,0x0c,0x8e,0x94,0xf9,0x98,0xdc, + 0x6f,0x36,0x63,0x53,0xa8,0x41,0xa1,0x69,0xb6,0x58,0x44,0xa5,0x2d,0xab,0x4a,0xe5,0x9f,0x8b,0x98,0x5e, + 0x16,0xe9,0xe0,0xd0,0xa7,0x6d,0x8a,0xd1,0x75,0xda,0xa8,0x62,0x34,0x4d,0x35,0xfd,0x9d,0xa5,0xbe,0xab, + 0x4a,0x2b,0xea,0x57,0x31,0x2a,0xf1,0x18,0xaf,0xd7,0x27,0x17,0xbf,0xeb,0x69,0x33,0x9a,0xe9,0x79,0x5e, + 0xe8,0xef,0xaa,0x72,0xa9,0xab,0xe6,0x8e,0xb3,0xdd,0xeb,0x62,0x75,0xad,0xab,0xec,0x62,0xa1,0x13,0xaa, + 0xfc,0x52,0x37,0x49,0xb5,0x89,0x37,0x54,0x5f,0x95,0x86,0x43,0x1f,0xd2,0x04,0x71,0xe9,0xd9,0x70,0x90, + 0x36,0x77,0x4b,0x5d,0xce,0x1f,0xbc,0xbf,0xbb,0xbe,0x28,0x17,0x7b,0x7b,0xf2,0x3b,0x6a,0xca,0xf7,0x4d, + 0x95,0x17,0x97,0x1f,0xb2,0xcb,0xbd,0xbd,0x5d,0x2d,0x6e,0xe7,0x55,0x34,0xad,0x8b,0x95,0x4e,0x86,0x6f, + 0xca,0xd9,0x6a,0xa1,0x87,0x9b,0x58,0xed,0x2a,0x3c,0x3c,0x3f,0xd7,0xb5,0xc9,0x66,0x8b,0x0d,0x0e,0xa5, + 0xbb,0x4d,0x6b,0xf8,0xbc,0x28,0x47,0x7b,0x7a,0x6f,0x2f,0x6a,0x52,0x0c,0x20,0x56,0xff,0xbd,0xa7,0xed, + 0x0a,0x35,0x63,0xfa,0xfa,0xbf,0xf0,0x75,0x58,0x72,0x53,0xc3,0xd4,0x8e,0xa9,0xd9,0xdb,0xc3,0xbf,0x91, + 0x6f,0xc9,0x17,0xc2,0x5a,0x56,0xa9,0xe9,0xdc,0xb4,0xd2,0x59,0xa3,0xa3,0x62,0xb5,0x58,0xc4,0xa8,0x8e, + 0x26,0x8c,0xf6,0xc2,0x8e,0xae,0x57,0x6a,0x48,0x29,0xd9,0x6a,0xd1,0x0c,0xbb,0x33,0x2e,0xa3,0x68,0x68, + 0xd4,0x5f,0x70,0x87,0x6a,0x9e,0x17,0x3f,0xc9,0x4d,0x4c,0x1b,0x36,0xe2,0x6d,0x44,0x9b,0x97,0x5e,0x69, + 0xa5,0xa9,0xbe,0x52,0xb9,0xe1,0xd2,0x60,0xdd,0x26,0xd2,0x67,0x9b,0xd1,0x45,0x5e,0xcc,0xb8,0x5f,0xaa, + 0x8c,0x63,0xbb,0xbf,0x2a,0xcc,0x51,0x91,0x6e,0xef,0xe6,0xce,0x68,0x27,0x2e,0x87,0xaf,0x75,0x64,0xfa, + 0xbe,0x49,0x7a,0x3e,0xba,0x1d,0x8c,0x7e,0x69,0x35,0xcc,0x86,0x34,0xfb,0x4a,0xa3,0xb9,0xb2,0xb3,0x24, + 0x26,0xa3,0x99,0xa2,0x65,0x55,0x36,0x25,0x06,0x39,0xba,0xca,0xea,0x93,0xdb,0xc2,0x4e,0x96,0x9c,0x02, + 0x14,0x40,0x1d,0xcb,0x74,0x38,0x54,0x05,0xcd,0x6e,0x9d,0x1e,0xfd,0x2b,0xde,0x44,0xa7,0xad,0x4d,0x5e, + 0x60,0x63,0xe2,0x08,0xd3,0xa4,0xd1,0x2a,0x9a,0x15,0x2a,0xa2,0x7f,0xd3,0x69,0x49,0xb7,0xda,0xb1,0x9b, + 0xce,0x1f,0xdf,0x1c,0xf3,0x20,0xdd,0x1a,0x9e,0xca,0x56,0x78,0xf0,0xa4,0xaa,0xb2,0xbb,0x33,0xda,0x11, + 0x69,0x69,0xba,0x12,0x6f,0x5c,0x81,0xcc,0x17,0x78,0x70,0x53,0xe6,0xb3,0x07,0x87,0x94,0xaf,0xf1,0xdf, + 0xeb,0xe0,0x3b,0x96,0x60,0x90,0x62,0x82,0xb7,0x77,0x99,0x2f,0x31,0x45,0x09,0xda,0x3f,0xae,0x7d,0xe9, + 0xf6,0x19,0xed,0x00,0xdf,0x01,0xb3,0x07,0x07,0x47,0x63,0x59,0x34,0x33,0x34,0x3a,0xad,0xdf,0xd9,0xd1, + 0x9d,0xcc,0x29,0xdf,0x38,0x68,0x9a,0x3a,0xa6,0xd7,0x6b,0x4d,0x3f,0xdd,0x89,0xf0,0x8d,0xaf,0x7a,0xc6, + 0xff,0xc2,0x7c,0xdc,0x35,0x05,0x0b,0x77,0xbe,0x64,0x80,0x4d,0x8c,0xde,0x9b,0x11,0x0e,0x82,0x73,0x44, + 0x27,0xef,0xb4,0x39,0x8b,0x15,0x26,0xd9,0x6d,0xe2,0x22,0x3d,0x54,0x55,0xda,0x8c,0x16,0xba,0xb8,0x6c, + 0xae,0xc6,0xc5,0xe3,0x6a,0x5c,0xec,0xef,0xc7,0x5a,0xda,0xe1,0x5d,0xdb,0x9c,0x16,0x67,0xaa,0x50,0x34, + 0x1a,0xbd,0xa0,0xb5,0xed,0x6c,0xff,0xbf,0xb9,0x7b,0xca,0x78,0x6f,0xaf,0x5d,0x69,0x79,0x46,0x87,0x86, + 0x06,0xd2,0x58,0xf8,0x49,0x00,0xb9,0xe6,0xc5,0x4e,0x72,0x65,0x9e,0x9e,0xae,0xe6,0x73,0x5d,0x25,0xe1, + 0x29,0xe9,0xdb,0x1d,0x92,0xad,0x33,0x41,0x54,0xc7,0xce,0xe2,0xc1,0x5e,0x18,0x60,0x0b,0xed,0xed,0xd9, + 0x84,0xd1,0xb4,0x2c,0x68,0xf7,0xae,0xa6,0x4d,0x59,0xc9,0xc7,0x30,0x85,0x32,0x0e,0x6d,0x6d,0xc1,0xee, + 0x09,0xb3,0x8c,0x6c,0xb3,0x38,0xc7,0x7d,0xe9,0xa6,0x6f,0x74,0x09,0x5e,0x3f,0xcb,0x9a,0xac,0x6f,0x70, + 0x3d,0xb0,0xdd,0x66,0xa7,0x5a,0x69,0xde,0xeb,0x26,0x2b,0xa6,0x61,0xf2,0xa6,0x3d,0x63,0x3f,0xe6,0xfa, + 0xf6,0x6f,0x56,0x1c,0x94,0xda,0xdb,0x0b,0x5e,0xa8,0xbf,0xa8,0x65,0xb2,0x9d,0x44,0xf5,0x25,0x0c,0xa5, + 0x2e,0xdc,0x38,0xe5,0x29,0xec,0x58,0x50,0x0c,0x7d,0x93,0x83,0xde,0xd7,0x25,0x03,0x5f,0x83,0xa3,0x48, + 0xd9,0xdf,0xae,0xae,0x2f,0xfa,0xd7,0xbd,0xe0,0x2f,0x9d,0xec,0xb2,0x07,0x93,0x9a,0x1e,0xbf,0x5b,0x64, + 0x79,0x61,0xde,0xa7,0xf4,0xfe,0x83,0x1d,0x71,0x92,0xd1,0x1b,0x4d,0x95,0xfe,0xdc,0x6e,0xc2,0xf7,0xed, + 0x6d,0xf4,0x22,0x5f,0x7c,0xb6,0x14,0xbe,0xf7,0x6c,0xbe,0x45,0x79,0xf1,0xb9,0x52,0xf8,0xde,0xd3,0x96, + 0x29,0x90,0xac,0x64,0xd6,0x74,0x76,0xdd,0xb7,0x7f,0x6b,0xde,0xb4,0x04,0x2e,0x46,0xcb,0x7c,0xa9,0xb9, + 0xe4,0x0f,0xef,0x5e,0xbf,0xd7,0x59,0x35,0xbd,0xfa,0x2e,0xab,0xb2,0xeb,0xfa,0x6f,0x2e,0x7f,0xa7,0x54, + 0x67,0x7b,0x75,0xbe,0xca,0x4a,0x66,0xc5,0x2c,0xab,0x66,0x4f,0xab,0xf2,0xb6,0xd6,0xd5,0xf3,0xe2,0x66, + 0xfb,0x16,0x8a,0x82,0x96,0xdc,0x4a,0x15,0xd9,0x4d,0x7e,0x99,0xd1,0x49,0x58,0xaf,0x87,0xef,0x74,0x36, + 0x6d,0xde,0x12,0xd6,0x77,0xa3,0x01,0x57,0xdd,0x27,0x80,0x91,0x19,0x1d,0x17,0x3a,0x66,0xf2,0xf5,0xfd, + 0xb4,0xca,0x97,0xcd,0xce,0x3c,0xef,0x7b,0xbf,0xd0,0xcc,0x44,0x7d,0x63,0xbd,0xa5,0x8b,0xb8,0xbc,0xa5, + 0x72,0x3d,0xdf,0x66,0xe5,0x94,0xb0,0x80,0x02,0x8b,0x40,0x00,0xee,0x79,0x36,0xbd,0x4a,0x16,0x8a,0xd0, + 0x82,0x4b,0xbf,0xf2,0x0f,0x9a,0xa8,0x1f,0xe5,0x2c,0x80,0xdc,0x4d,0x05,0xe7,0xdc,0xdb,0x9b,0x46,0x45, + 0x3c,0x61,0x04,0xb3,0xe1,0x24,0xba,0x14,0x93,0x30,0xed,0x7e,0x83,0x94,0xdc,0xa5,0xd0,0x55,0x0a,0x64, + 0x38,0x8a,0x13,0x79,0xdd,0x58,0x00,0x5b,0x11,0x68,0x2e,0xd3,0xac,0xba,0xe4,0x8e,0xd5,0x16,0x44,0x57, + 0x8f,0xcb,0x71,0x45,0x20,0x7a,0x11,0xb9,0x4f,0xd2,0x8a,0xbd,0x6c,0xe8,0xae,0xd7,0x9f,0x1a,0x5d,0xcc, + 0x92,0xee,0xdd,0x6c,0x32,0x2c,0x08,0x2f,0x88,0x3c,0xba,0x42,0xb0,0xf9,0x1e,0xe0,0x38,0x2d,0x7a,0xa1, + 0x9b,0x9e,0x54,0x11,0x4a,0x27,0x7a,0x43,0x58,0x1b,0x9d,0x37,0x3a,0xb0,0xbd,0x7b,0xb2,0x19,0x55,0x7a, + 0xb9,0xc8,0x68,0x28,0x8f,0xfe,0xe7,0xb7,0xfa,0x9f,0x8f,0xd4,0x70,0x18,0xfb,0x24,0x4a,0x79,0xc8,0x49, + 0x1b,0x85,0x23,0xbf,0x7c,0x7a,0xf2,0xa6,0xaf,0x92,0x7f,0xff,0xeb,0x8b,0xff,0xfa,0x4f,0xca,0x80,0xf8, + 0x2a,0xab,0x8e,0xcb,0x99,0x7e,0xd2,0x44,0x87,0x31,0xdf,0x5e,0x8d,0x99,0xa9,0x23,0xee,0xc7,0x66,0xa3, + 0xba,0xe3,0xf3,0x57,0x49,0x11,0x1d,0xfd,0x3b,0xde,0xce,0xd0,0x42,0x4e,0xa2,0xe0,0x6b,0x21,0x2b,0xeb, + 0xb0,0xc9,0x79,0xa5,0xf5,0x9f,0x9a,0xd6,0x2a,0xf6,0x0b,0x5d,0x76,0xee,0x8f,0x16,0xa2,0x91,0x6f,0x5d, + 0x2e,0x4d,0x2f,0x96,0x32,0xd8,0x8d,0xa0,0x6c,0x83,0x42,0x3a,0x29,0x5b,0xf0,0x8e,0xd2,0x6a,0xc6,0xd9, + 0xdb,0x69,0x17,0x65,0x49,0xd4,0x53,0xb1,0x1b,0xa5,0xf9,0x3b,0x48,0x10,0xa6,0x60,0xf5,0x77,0xf0,0xb4, + 0x45,0x0f,0x3c,0xb3,0x78,0x12,0x8d,0x6f,0xb5,0x8d,0xa5,0xcc,0x7b,0x4a,0xbc,0xd3,0x97,0xcf,0x3f,0x2d, + 0x77,0x95,0x58,0x7a,0x9c,0x78,0x99,0x55,0xb5,0x7e,0xb1,0x28,0xb3,0x26,0x92,0x9e,0x00,0x83,0x71,0xdb, + 0xfd,0xab,0xf4,0x70,0x6f,0xef,0x4d,0xd6,0x5c,0x8d,0xe6,0x8b,0x92,0xce,0x8e,0x8e,0x81,0x6a,0xed,0xed, + 0x01,0x70,0x17,0x39,0xd1,0x04,0x61,0xad,0xb3,0x60,0x2e,0x72,0x06,0xa2,0xbd,0x17,0x7a,0x73,0xa5,0xfb, + 0x4f,0x03,0xed,0xcb,0xac,0x99,0x5e,0xf9,0x0a,0xaf,0xb6,0x77,0xc5,0x64,0x38,0x4c,0xf8,0xfe,0x1b,0x99, + 0x4b,0x99,0xb2,0xac,0xd7,0x0b,0x6e,0xad,0x71,0xb3,0x89,0x51,0x4f,0xbe,0x79,0x7f,0xf2,0x76,0x24,0xeb, + 0x9e,0xcf,0x41,0x52,0x31,0x72,0xf4,0x45,0x9c,0xb8,0x71,0xfa,0x96,0xae,0x7b,0x27,0xc4,0x23,0x99,0x74, + 0x6d,0x66,0x6f,0x69,0xf4,0x93,0x26,0x09,0x50,0xca,0x1b,0x41,0x0f,0x3d,0xbe,0xd7,0x43,0x2f,0x31,0x06, + 0x58,0x2f,0x17,0x79,0x13,0x0d,0xd5,0x10,0xb8,0xfa,0xe1,0xb8,0x7c,0x5c,0x59,0x88,0x53,0x12,0xb4,0x29, + 0x4e,0x2b,0x02,0x11,0x67,0x44,0xf0,0xba,0x79,0x9f,0xf4,0x1c,0xdf,0xe2,0x14,0x03,0x7c,0x5d,0xde,0xea, + 0xea,0x98,0x68,0xf9,0x28,0x3e,0xdb,0xf4,0xa2,0x5f,0x84,0x88,0x6e,0x36,0x37,0xd1,0xb0,0x5e,0x94,0x8d, + 0x9a,0x96,0xd7,0xcb,0xb2,0x20,0x40,0x36,0x54,0x83,0xc3,0x98,0x51,0xea,0xcb,0x94,0x3e,0x7e,0xd4,0x77, + 0xaa,0xd2,0x73,0xc5,0x99,0xf0,0xe7,0xa0,0x9e,0x12,0x56,0x49,0x97,0xd0,0x30,0x38,0x96,0x77,0x0e,0xff, + 0xb5,0x58,0xac,0xcc,0x52,0x41,0x63,0x22,0x80,0xaf,0x3f,0x11,0x26,0xae,0x85,0x24,0xfc,0xea,0xe0,0xc8, + 0x51,0x8f,0x3c,0x5e,0x02,0x26,0x85,0x3a,0x8a,0x37,0xbc,0xf3,0x2f,0xb6,0x77,0x7e,0x1b,0x97,0xf5,0x6d, + 0x3e,0x69,0x11,0x50,0x17,0x01,0x89,0xe4,0xb2,0x1c,0xfb,0xd5,0xea,0xa3,0x50,0x4d,0x51,0x37,0x37,0x1e, + 0x3a,0x6b,0x42,0xb7,0xd7,0xeb,0x08,0x3f,0x74,0x5b,0x14,0xb1,0xe9,0xdd,0x79,0xfa,0xe8,0x20,0xfa,0xed, + 0x36,0x7e,0x74,0xa9,0x6e,0xd3,0xe3,0x28,0xfa,0x2c,0x00,0x3e,0x57,0x21,0x70,0xf3,0x3d,0xd5,0x13,0x9c, + 0xe6,0x1f,0x96,0x4b,0xbb,0x3c,0xc9,0x90,0xe8,0xfb,0x18,0x80,0xfd,0xe9,0xce,0x4a,0x01,0x88,0x19,0x08, + 0xb7,0x8b,0xee,0x7b,0x70,0x8c,0xf2,0x1f,0xd3,0x47,0xbf,0x3d,0x8d,0x4e,0x9f,0x1c,0xfc,0x7a,0x86,0x3e, + 0x7e,0xfa,0xcb,0x3e,0x7e,0x54,0xc3,0x83,0x87,0x47,0xc3,0xb8,0xbd,0x5f,0xa8,0x2a,0xde,0x00,0xef,0x53, + 0x8b,0x09,0x05,0xcb,0x01,0x4a,0x7a,0xd2,0x3b,0xb0,0x46,0xa8,0x6c,0x5a,0x80,0xa4,0xfd,0x3d,0xbc,0xa6, + 0x2d,0x8c,0xdf,0xbe,0x52,0x0d,0x4d,0x3e,0xa9,0xbe,0x3a,0x9a,0x34,0xa3,0x6c,0xb9,0x5c,0xdc,0xd1,0x9d, + 0xe7,0xf2,0x11,0xbe,0x2b,0x4b,0xcc,0xf7,0xa0,0x7d,0x8e,0x37,0x8e,0xd2,0x3e,0x97,0x8a,0x1c,0x1d,0xa5, + 0x8a,0x00,0x41,0x78,0x28,0x3d,0xd1,0x20,0xff,0x0e,0xc7,0xfe,0x20,0xda,0xcc,0x07,0x9a,0xce,0x5f,0xa1, + 0x6f,0x05,0x67,0xa6,0x6e,0x8e,0x8b,0x83,0x83,0x71,0x5c,0xf1,0x06,0x38,0x2d,0xf6,0xf5,0x99,0x67,0x1a, + 0xb8,0x4a,0x3f,0x74,0x8e,0x35,0x88,0x31,0x1d,0x83,0x54,0x4b,0xb1,0x73,0x1c,0x1b,0xcb,0x97,0x78,0x8e, + 0x55,0xb0,0xf9,0x81,0xc2,0x28,0xa2,0xfd,0x88,0xe0,0xf3,0xb4,0x1f,0x1d,0x73,0x54,0xb0,0xb7,0xf7,0x81, + 0x06,0x8a,0xa7,0x00,0xa5,0x70,0xd5,0x9c,0xd8,0xbb,0x94,0x77,0xe5,0xef,0x6d,0x26,0x97,0xdb,0xc5,0x83, + 0xa3,0x8d,0x7a,0x96,0xf6,0xad,0x7f,0x30,0x31,0xaf,0xfc,0xc9,0x05,0xc4,0xb6,0x44,0xf5,0xe1,0x58,0xe6, + 0x07,0xd7,0x16,0xcd,0xcc,0xd4,0x9c,0xde,0x41,0xb1,0x5e,0x0f,0x2a,0x9b,0x89,0xa0,0xf3,0x80,0x48,0x0f, + 0x07,0x26,0xa9,0x02,0xf3,0x4c,0xb9,0x9b,0xea,0xee,0x5e,0x18,0x7d,0x5d,0x30,0xac,0xf2,0x4e,0x92,0xd4, + 0x5d,0xd2,0x6d,0xe1,0x21,0x83,0x59,0x4c,0xea,0x92,0x79,0x04,0xd8,0xd6,0x37,0xba,0xba,0x8b,0x3a,0x38, + 0x83,0x29,0xc2,0x03,0xc1,0x7c,0x61,0xf7,0x62,0x38,0x21,0x0e,0x0d,0x9a,0x82,0x68,0xdf,0x6e,0x92,0x6f, + 0xee,0x52,0x37,0x1f,0xf2,0x6b,0xda,0xfb,0xdc,0xa2,0x7b,0xe3,0x7e,0xad,0xd7,0x79,0x9b,0xd7,0x90,0x59, + 0x68,0x42,0xc0,0x11,0xb8,0x83,0xaa,0x5b,0x09,0xda,0x2d,0x59,0xe6,0x87,0x51,0xbb,0x61,0x64,0x5b,0xc3, + 0x68,0x0d,0x02,0x84,0xbe,0x1d,0xc7,0x86,0xef,0xb9,0x00,0x71,0x39,0xda,0xf8,0x4d,0xf0,0xae,0x7b,0xa9, + 0x6c,0x6d,0x24,0xea,0xbc,0xad,0xd0,0x72,0x4b,0x1e,0x14,0xa6,0x6f,0x07,0x47,0xbe,0xa6,0x37,0x1e,0x4c, + 0xd2,0x08,0xbb,0x50,0x91,0x4e,0x0d,0x40,0x21,0xd8,0xac,0xf6,0x58,0x36,0x57,0x79,0x1d,0x9c,0x4c,0x03, + 0x1d,0x5f,0xa4,0xc3,0x19,0x91,0xc1,0x07,0x44,0x91,0xd0,0x00,0x0f,0x2a,0xc2,0x7e,0x75,0x45,0xf8,0xbd, + 0xfa,0x2e,0x3d,0x1d,0x06,0xf7,0xcb,0x70,0x96,0x57,0x34,0x59,0xa0,0x3b,0xd4,0x70,0x9e,0x2f,0x1a,0xc2, + 0xad,0xce,0xd4,0x6b,0xca,0x74,0xa1,0x69,0x34,0xfa,0x98,0x61,0x34,0x7d,0x13,0x60,0x4d,0x15,0x98,0x0f, + 0x6f,0xca,0x15,0x97,0xbf,0xc6,0x6f,0x90,0xfe,0xc3,0x72,0x26,0x05,0x56,0xfc,0xe0,0x3f,0x3c,0xd3,0x74, + 0xad,0x97,0x77,0x68,0x52,0x9e,0xf8,0x5b,0x86,0xb6,0x4d,0xbe,0x99,0x0e,0xdf,0x74,0x55,0x95,0x04,0x03, + 0x97,0x34,0x01,0xfc,0x2e,0x23,0xf9,0x8e,0xee,0x3f,0x4d,0xeb,0x40,0x9d,0x7c,0x9b,0xde,0x97,0x4b,0xcc, + 0xca,0x1b,0x50,0x25,0xb4,0xd9,0xa9,0xe0,0x65,0xae,0xeb,0xa4,0xef,0x42,0xaf,0x89,0x24,0x2d,0x1a,0xf0, + 0xb6,0x0d,0x4d,0x44,0xe5,0x3e,0xe4,0x4b,0x24,0xcc,0xf4,0x4d,0x43,0xc8,0x62,0xcd,0x1f,0x75,0xc5,0xec, + 0x77,0xda,0x96,0xcc,0x07,0x47,0x1f,0x5e,0x66,0x60,0xbd,0x57,0x09,0x63,0x22,0xb7,0x59,0x55,0xb4,0x12, + 0xf2,0xcb,0x82,0x06,0x37,0x7b,0xbe,0xd0,0x3c,0xff,0xc9,0xe9,0x99,0xa2,0x8d,0x07,0x3c,0xbd,0xbf,0x23, + 0x79,0xfd,0x4e,0xf3,0x50,0x66,0x1f,0xb2,0xcb,0xe4,0xf7,0xe0,0xfd,0x49,0xd3,0x54,0x9c,0xf0,0x43,0xf1, + 0xb1,0x28,0x6f,0x0b,0x53,0x25,0x25,0xe1,0x08,0x64,0x97,0x6f,0xb3,0x6b,0x5d,0x2f,0xe9,0xa6,0x48,0x4e, + 0x14,0xe3,0x3b,0x44,0xda,0x37,0xe8,0xad,0xf9,0x96,0x3c,0x53,0xd7,0xab,0xba,0xf9,0xa1,0x66,0xb6,0x2e, + 0x15,0xcb,0xea,0xbb,0x62,0x0a,0x16,0xee,0xf9,0x22,0x9f,0xeb,0xe9,0xdd,0x74,0xa1,0x5f,0x96,0xe5,0xc7, + 0x3a,0x79,0xbd,0x51,0x3f,0xa4,0x8f,0xb2,0x83,0x3f,0xe9,0x72,0xfa,0x6d,0x75,0x78,0xf8,0xf4,0xbf,0xf0, + 0xf7,0xf8,0xf0,0x00,0x3f,0xcf,0xfe,0xcd,0x7f,0xff,0x9b,0x5f,0x5e,0xf0,0xcb,0x0b,0x7e,0xf9,0xf2,0xbf, + 0x9e,0xf1,0xdf,0x17,0xf4,0x72,0xf4,0xe2,0xc5,0x8b,0xdf,0x56,0x5f,0x50,0xa1,0x03,0xfe,0x79,0x86,0xbf, + 0x5f,0xbe,0xe0,0x97,0xff,0x75,0x88,0xbf,0xff,0x85,0xda,0xbe,0x38,0xfa,0x6f,0x64,0x3b,0x3e,0xe4,0x97, + 0x17,0xcf,0xe9,0xe5,0xcb,0xc3,0xc3,0x23,0x7a,0x79,0xf6,0x5f,0xa8,0xe0,0xc5,0x7f,0xf8,0xcb,0x8b,0x67, + 0xc7,0x78,0x79,0xf6,0x82,0x5f,0x5e,0xbc,0x78,0xf6,0xc8,0xc3,0xc4,0x3f,0xfd,0x79,0x88,0x9a,0x7d,0x50, + 0x50,0x2d,0x3a,0xc8,0x9e,0x90,0x2f,0xff,0x2d,0xec,0xc4,0xff,0xfc,0x0b,0xbf,0xfe,0x38,0xfd,0x24,0x60, + 0x18,0x04,0xe9,0x67,0x64,0x0c,0xc2,0xe3,0x2e,0x54,0xc8,0xf9,0x1e,0x54,0xea,0xb6,0xca,0x1b,0xcb,0x06, + 0x9f,0x96,0xc5,0x3c,0xbf,0x5c,0x59,0xb6,0xf8,0x26,0xe6,0x63,0xf6,0x07,0xdf,0x53,0x82,0xb7,0x47,0xc3, + 0xd3,0xff,0x19,0xee,0xff,0x30,0xaa,0xcb,0x55,0x35,0xd5,0xfb,0xc3,0xd1,0xc3,0xf3,0xdf,0x7e,0x9b,0x9d, + 0x0d,0xe5,0xfe,0x7e,0xa9,0x7e,0x4c,0x87,0xe7,0xe7,0x7c,0x77,0x9f,0x9f,0x0f,0xf3,0x82,0xee,0x9b,0xaf, + 0xd3,0xdd,0x54,0xb9,0xfa,0xa5,0xf7,0xe3,0x4f,0x3f,0x3f,0x2f,0x6e,0xf2,0xaa,0x2c,0xb0,0x35,0x08,0xe4, + 0x0f,0x5a,0x09,0xa3,0xa5,0xd9,0x12,0xea,0xd7,0xf4,0x97,0xbd,0xbd,0xfe,0x6f,0x6d,0xfc,0x42,0x7d,0x9b, + 0x7e,0xbd,0xb7,0x27,0x6d,0x8e,0x3c,0xe7,0x80,0xe8,0xc2,0xea,0xc9,0x25,0x8a,0xb5,0x73,0xff,0x9c,0x7e, + 0xbb,0xb7,0xf7,0xe8,0xba,0xce,0xf5,0x9a,0x6e,0x97,0x19,0x65,0x78,0x34,0x6a,0xe8,0x3c,0x47,0xdf,0xc6, + 0xea,0x1b,0x7c,0xfb,0xd6,0xe1,0x98,0x43,0xe4,0x7a,0xf0,0x9f,0xd1,0xe1,0x30,0xfe,0xea,0x50,0x7d,0xdf, + 0xf9,0xa8,0x67,0x97,0xfa,0x11,0x7f,0x69,0x9a,0x34,0x6a,0x7f,0xa3,0xf3,0x55,0x95,0xf9,0x8c,0x10,0x6f, + 0x34,0x96,0x2f,0xaf,0x08,0x58,0xad,0xf3,0x65,0x36,0xa3,0x3f,0x25,0xfd,0x29,0x6b,0xd7,0x28,0x51,0x7a, + 0xf4,0x0a,0x8a,0xe9,0xd7,0x58,0x69,0xa9,0xe9,0xd1,0xf4,0xaa,0x2a,0xaf,0xf5,0x6f,0x8f,0x7e,0x9b,0xed, + 0xfb,0xde,0xe1,0xc3,0xf2,0x2a,0x2b,0x9a,0xf2,0xfa,0xf7,0xba,0x95,0xfc,0xed,0xe8,0x9a,0x41,0xfb,0xa3, + 0x39,0xc1,0xc2,0x79,0xf9,0xe9,0xb7,0x47,0x11,0x95,0x8c,0x1f,0x11,0x12,0x57,0x34,0x84,0x17,0x8c,0x6e, + 0xf1,0x59,0x55,0x0d,0x20,0x32,0xc1,0xf1,0xaf,0x63,0x77,0x9f,0xe2,0xf3,0xb8,0x7f,0x63,0x11,0x8a,0x3e, + 0x5c,0x66,0x75,0xcd,0xa0,0xf5,0x1e,0x72,0xab,0x90,0x2d,0x44,0x75,0x1d,0x6e,0x36,0xb1,0x32,0x13,0x9f, + 0xcd,0x66,0xcf,0x6f,0x68,0x32,0x5f,0xe7,0x75,0xa3,0x0b,0x5d,0x45,0x43,0xf4,0xef,0xc0,0x95,0x17,0x69, + 0x49,0x13,0x5c,0x42,0xbc,0xfd,0xf2,0x40,0xa8,0xb4,0xcd,0xf6,0x7f,0xb9,0xb7,0x17,0xbd,0x4c,0x07,0xb4, + 0xbc,0x03,0xda,0x0c,0x92,0x2c,0xa4,0x6e,0xc4,0x38,0xfd,0x54,0xd7,0x35,0x04,0x3a,0x0c,0x58,0x87,0xcc, + 0x63,0x30,0xa9,0x23,0x5d,0xdc,0x8c,0x7e,0xfc,0xe1,0xf9,0xf9,0xf3,0xb7,0x3f,0xd2,0x2c,0xbc,0xdc,0xa8, + 0xac,0x09,0xb6,0xc9,0xf9,0x39,0xbe,0x3d,0x7b,0xfe,0xe3,0x87,0x93,0x93,0xd7,0xef,0xcf,0xbf,0x7e,0x7d, + 0xf2,0xf4,0xc9,0xeb,0xf3,0x97,0x27,0x27,0xdf,0x9e,0x9f,0xfb,0x93,0x5b,0x37,0x01,0x89,0xdb,0x43,0x38, + 0xd2,0x7a,0x14,0xcc,0xd3,0x7a,0x30,0xa5,0xd3,0x6c,0x56,0xc4,0x93,0x83,0x51,0x2c,0x47,0x6c,0xda,0xa8, + 0x55,0xd3,0x7b,0x16,0xac,0x78,0x8f,0x8a,0xc9,0x63,0xdc,0xcf,0xca,0x7a,0xa7,0xe7,0x0b,0x0d,0xfe,0x18, + 0x65,0x34,0xcf,0x23,0x82,0xaf,0xdf,0x12,0x7e,0x10,0x8f,0xa7,0x3b,0xea,0xd6,0x92,0x9f,0x7e,0xe3,0xc9, + 0xfb,0xf6,0xe2,0xb5,0xf8,0x5f,0xb8,0x7e,0x47,0x35,0xed,0xbc,0x1e,0x60,0xbf,0x71,0x28,0x4d,0x8b,0x82, + 0xea,0x41,0x03,0x85,0x0b,0x62,0xaa,0x02,0x2d,0xa8,0xc2,0x32,0xb4,0x3b,0x5a,0x65,0x82,0x8c,0xd8,0x46, + 0xad,0xbc,0x04,0xe4,0xb3,0x2a,0xdc,0x15,0x9f,0xed,0xa0,0x6a,0x36,0x91,0xc0,0xa7,0x05,0x65,0x50,0xf3, + 0x26,0x3d,0x54,0xcb,0x66,0xab,0x78,0x4e,0xed,0x37,0xfb,0xfb,0x4a,0xea,0x5a,0x5d,0xd4,0xe9,0xe9,0xd9, + 0x66,0xbc,0xec,0xf4,0xf1,0xfd,0xea,0xa2,0xa7,0x9b,0x94,0x7b,0xb4,0x5c,0xd5,0x57,0xcc,0xcf,0x6d,0x15, + 0xa9,0xf4,0x75,0x79,0xa3,0xbb,0xa5,0x04,0xa3,0xe1,0x72,0x6a,0xab,0xc8,0x4c,0x2f,0x09,0x93,0x09,0xfb, + 0x47,0x9f,0x1b,0xc2,0x7e,0xb0,0x5c,0xee,0x11,0x9d,0x79,0xa6,0x97,0x5c,0x51,0xb7,0x86,0xa2,0x6c,0xf2, + 0xf9,0x5d,0x58,0x03,0x46,0xdf,0xa4,0xbe,0xb3,0x86,0xfb,0x38,0xf6,0xa4,0xc1,0xa1,0xf2,0xc4,0xc9,0x58, + 0x3f,0x2e,0xc6,0x9a,0x29,0x03,0x7d,0x36,0x12,0x24,0x27,0x92,0x46,0xa4,0xf1,0x14,0x33,0xcb,0x53,0x3a, + 0x6b,0x68,0x9a,0xfc,0x79,0xb8,0xe2,0xf3,0x30,0x6b,0xec,0x6c,0x04,0x45,0x02,0xaa,0xe4,0x1a,0x9b,0x0a, + 0x99,0xca,0x65,0x14,0x66,0x99,0x35,0xa7,0x33,0x47,0x20,0x1d,0x9d,0xf1,0xd1,0xb8,0x69,0x3a,0xd4,0x86, + 0x82,0xdc,0x35,0x57,0x99,0xaa,0xcd,0xec,0x37,0xd9,0x65,0xda,0xc8,0xb2,0x01,0x1d,0x4c,0xb5,0x3c,0x4f, + 0xaf,0xf2,0xc5,0x8c,0x70,0xc2,0xb4,0x90,0xf7,0x46,0x7f,0x6a,0xd2,0x4a,0x9e,0xf5,0xe2,0x3a,0x2d,0xe5, + 0xb1,0xa8,0x53,0x81,0x1a,0xa6,0x54,0x59,0x70,0xc6,0x5c,0x5e,0xe7,0xc5,0xb1,0x49,0x08,0x33,0xcd,0x8b, + 0x13,0x46,0xca,0xea,0x4e,0xea,0x7b,0x70,0x2a,0x5e,0xcd,0x5a,0xa9,0x84,0x28,0x81,0x2f,0xa5,0xf1,0x60, + 0x9b,0x30,0x98,0xa9,0xad,0x24,0xeb,0xa4,0xbf,0x32,0x44,0x43,0xab,0x1e,0xc2,0x86,0xe8,0x53,0x2b,0xa9, + 0xca,0x6e,0x09,0x5a,0xcb,0x33,0xf3,0xe8,0x9b,0x7c,0x1a,0x24,0xbc,0x2b,0x4b,0x54,0xa5,0x19,0x0e,0xdb, + 0xc4,0xe3,0xf2,0x1a,0x17,0x65,0x90,0xed,0x78,0x41,0x8d,0xce,0x82,0x84,0x13,0x34,0x6d,0x5f,0x19,0xbf, + 0x7a,0x91,0x41,0x98,0x75,0x97,0xd6,0x41,0xda,0x1b,0x4d,0x53,0x1d,0xf6,0x86,0x88,0x2b,0xa4,0x7f,0x07, + 0x3a,0xff,0xaa,0x5c,0x10,0x2a,0x9e,0x82,0x20,0xbc,0xa4,0xeb,0x83,0x97,0x22,0xb9,0xef,0xa2,0x17,0x9b, + 0xf1,0x65,0x23,0xcb,0x04,0x02,0xa8,0x07,0xca,0xf7,0x4f,0xcb,0xa6,0x57,0xbe,0x4f,0x48,0x71,0x74,0x13, + 0x1c,0x02,0x6a,0x58,0x0e,0xfd,0x5d,0xd3,0x16,0xb8,0x3b,0x81,0x31,0xb3,0x97,0x87,0x06,0x75,0xd1,0x8c, + 0xe4,0xdc,0x34,0x8e,0xf8,0x95,0xfd,0x42,0x3b,0x2e,0x9c,0xb4,0x43,0xa5,0x03,0x52,0xf6,0xa2,0x09,0xb9, + 0x5b,0x5c,0x3c,0x32,0x33,0xd2,0xfe,0xf1,0xfc,0x4b,0x7f,0x06,0x9e,0x34,0x1e,0xe9,0x33,0x65,0x71,0x0e, + 0x2e,0x09,0xd0,0x61,0x17,0xab,0xc6,0x6d,0x60,0x96,0x29,0x9a,0x67,0x7b,0x70,0xe9,0x33,0xfa,0x47,0x3f, + 0xb4,0x95,0x55,0x63,0xb7,0x2d,0x3f,0xb5,0x77,0x17,0x68,0xa8,0x60,0x0d,0x3d,0x75,0x8f,0x9d,0xdf,0xd0, + 0x1f,0x1e,0xa1,0xd9,0x3c,0x8d,0x7b,0x54,0xbc,0x61,0x53,0xa6,0x30,0x5b,0x73,0xd0,0xf8,0x67,0x4a,0xf7, + 0xe7,0xa3,0xf1,0xcf,0x9c,0x6e,0x37,0x77,0xe3,0x9f,0x39,0xdd,0x9e,0x91,0xc6,0x3f,0x53,0xba,0xdf,0x52, + 0x8d,0x7f,0x96,0x76,0xcd,0xf6,0xc4,0xd4,0x63,0xb6,0x8e,0x1b,0x43,0xcc,0xfb,0x95,0x3e,0xef,0xc2,0xfd, + 0x63,0x5a,0xfa,0xd3,0x21,0x40,0x10,0xd1,0x54,0x04,0x64,0x40,0x59,0x5d,0xe5,0x73,0x90,0x72,0xab,0xc2, + 0x3e,0x09,0x2b,0x10,0x0f,0x65,0x85,0xf7,0x0a,0x54,0x72,0xad,0x87,0x67,0x23,0x23,0x0b,0x6a,0xb3,0xb2, + 0x64,0xa5,0x8e,0x71,0x1f,0x8d,0x7f,0x8a,0xce,0x69,0xaa,0x03,0x76,0x5b,0x48,0x15,0x13,0x71,0xd4,0xc7, + 0x6d,0x02,0x77,0xa7,0x80,0xac,0x27,0x14,0xe0,0x88,0x66,0x92,0xca,0x53,0x1d,0x12,0xba,0x45,0xac,0x32, + 0x81,0xd5,0xe7,0xe7,0xe5,0x05,0xa1,0x1b,0xf5,0x6d,0x6e,0x30,0xa2,0x29,0x61,0xa8,0x32,0xb0,0x84,0x1f, + 0xed,0x70,0x92,0x32,0x2d,0xc6,0x17,0x34,0xfa,0x8f,0x63,0x4e,0x37,0x83,0x43,0xb2,0xd9,0x32,0x5f,0xb8, + 0x9b,0xba,0x04,0x4b,0xa0,0xbc,0x60,0x94,0x48,0xf8,0x21,0x25,0x35,0x88,0x6b,0xc7,0x5c,0x1c,0xb4,0xbd, + 0x72,0x61,0x10,0x72,0xff,0x6e,0x9b,0x40,0xd5,0x21,0xe0,0x8c,0x32,0xad,0x46,0x33,0x11,0xab,0xa7,0x38, + 0x1a,0xfe,0x5c,0x7c,0xe4,0xad,0xfd,0x14,0x20,0x1f,0xe5,0x3f,0x35,0xdb,0x37,0x26,0x13,0x23,0x0e,0x6a, + 0xeb,0x25,0x1f,0x81,0xa5,0x79,0xbf,0xb9,0x3e,0x06,0xc1,0x4d,0x57,0xd2,0x4f,0xa2,0x6f,0x84,0x49,0x18, + 0xf2,0xb7,0x58,0x75,0x99,0x3b,0x93,0xe8,0xc7,0x0e,0x77,0x10,0x9a,0x34,0x86,0x04,0x21,0x2a,0x89,0xd2, + 0xa8,0x8b,0x5b,0x52,0xb1,0xb6,0xbc,0xad,0xe8,0xca,0xd9,0x78,0xb9,0xf3,0x14,0x0b,0x36,0x46,0x27,0x72, + 0xa5,0x4f,0xf3,0xb3,0x78,0x23,0xd5,0xa9,0x5b,0x1a,0x34,0x77,0xb5,0x35,0x8d,0x74,0xbe,0x13,0x4e,0xbd, + 0xcd,0x16,0x1f,0x81,0x0a,0xf8,0x29,0x79,0xdf,0x48,0xdf,0x78,0x8b,0x00,0xbf,0x9e,0xb2,0x60,0x60,0xd0, + 0xe6,0x1a,0xdd,0x38,0x25,0x13,0x66,0x36,0xdb,0x91,0xc7,0xa2,0x1d,0x84,0xe7,0x30,0xf7,0xa7,0x66,0x82, + 0x2b,0x5b,0x3e,0x24,0x4f,0x41,0x29,0xe5,0x74,0xb1,0x12,0x58,0xeb,0x97,0x43,0xc4,0x4e,0x21,0x2c,0xaf, + 0x9f,0x43,0x56,0x58,0xe7,0x04,0x88,0xa5,0x1f,0x54,0x4d,0x5e,0xff,0xb8,0x82,0xaa,0x56,0xc1,0x6b,0xf1, + 0xa9,0x61,0x7d,0x2d,0x4a,0x20,0xf8,0x53,0xd8,0x25,0x21,0xf4,0xa8,0xf0,0x20,0xec,0x61,0xe3,0x6f,0x64, + 0x37,0x63,0xb2,0x8e,0x59,0xff,0x96,0x79,0xa6,0x6b,0x96,0xed,0xd2,0xe4,0x63,0x3a,0x98,0xc3,0x97,0xad, + 0xd7,0x83,0x23,0x42,0xd9,0xb3,0x51,0x78,0x3f,0x48,0x7d,0x74,0x37,0x62,0xb3,0x52,0x25,0x6a,0x2a,0x8f, + 0x84,0xe4,0x8d,0x09,0xa1,0x1f,0x4c,0xd7,0xeb,0x2f,0x50,0xa8,0x73,0xce,0xd6,0x6b,0xea,0x3f,0xb0,0x16, + 0xd9,0xba,0xab,0x74,0x50,0x82,0x5f,0x08,0xfe,0xea,0xdf,0x56,0xbf,0xeb,0x5c,0x53,0xaa,0x43,0xd6,0x08, + 0x20,0xa8,0x27,0xb5,0x95,0x5e,0x25,0x96,0xc5,0xf5,0x20,0xc0,0xd3,0xa2,0xdc,0xe0,0x71,0x74,0x98,0x56, + 0xf4,0xba,0xe2,0xf3,0xe5,0x92,0xba,0xfc,0x48,0x5a,0x9a,0x86,0x7e,0x62,0x56,0xda,0xaa,0xc3,0x06,0xb5, + 0x65,0x60,0xb7,0x5b,0x84,0x4a,0x51,0xb5,0x5e,0xeb,0x01,0x90,0x8b,0x6a,0x80,0x67,0x33,0x2d,0xd1,0x74, + 0x32,0xf5,0xb2,0x89,0xa4,0x20,0x7c,0xc8,0x4d,0x83,0xa6,0x93,0xed,0x0e,0x39,0xed,0xe6,0x38,0x60,0xef, + 0x7d,0x68,0xec,0xd9,0xa0,0x55,0xe9,0xee,0x20,0x42,0x3c,0x23,0xcf,0xd3,0x73,0xdc,0x52,0x16,0xc0,0x5d, + 0x67,0x9f,0x9c,0x14,0x06,0x6a,0x67,0x4e,0xca,0xa2,0xd5,0x11,0x60,0x19,0xef,0x77,0xcd,0x8a,0x43,0xd8, + 0xf1,0xfc,0xd4,0x15,0xba,0xf8,0xaa,0x69,0xed,0x08,0x63,0x2b,0x8c,0x16,0x99,0xdd,0xde,0x8e,0xb5,0x6d, + 0xf6,0xe9,0x7a,0x5d,0xd1,0xb0,0xed,0xb6,0x9c,0x14,0x49,0x35,0x89,0x68,0x3b,0x56,0x02,0x58,0x78,0x18, + 0xaa,0x6a,0x83,0xb4,0x22,0x4e,0x22,0x5b,0x7b,0x70,0x0f,0x3f,0x6f,0x1c,0x43,0x7a,0xc7,0xa0,0xc3,0xf1, + 0x88,0x3a,0x94,0x13,0x35,0x99,0xce,0xf9,0x5e,0x85,0x87,0x65,0xbd,0x16,0x89,0x11,0xad,0xfe,0x4c,0x2f, + 0x74,0xa3,0x79,0x70,0x8a,0xb3,0x84,0x3d,0x0b,0x17,0xe1,0xa4,0x69,0x33,0xec,0x0d,0x02,0xb1,0x43,0x61, + 0x2b,0xd2,0x29,0x73,0xec,0x81,0x5e,0x4a,0x57,0xfc,0xd3,0xdf,0xda,0x6f,0x9b,0x4f,0x21,0xd9,0x00,0xb0, + 0xd5,0x02,0xd5,0xbe,0x1f,0x1d,0xfe,0xb3,0xf0,0x7e,0x75,0xc8,0xfb,0x15,0x60,0xc0,0x7c,0x64,0xd5,0xaa, + 0x35,0x04,0x91,0x3b,0x6a,0xef,0xa5,0x3d,0x00,0x32,0x71,0x90,0x37,0xbc,0x15,0x7e,0x6f,0xd2,0xb7,0xa3, + 0x5e,0x56,0xa8,0x07,0xb2,0xcf,0xfc,0x52,0x0e,0x02,0x8d,0x51,0x77,0x35,0x0b,0xe5,0x90,0xae,0x9a,0x49, + 0x87,0x42,0xa6,0x99,0x48,0xda,0x0c,0x75,0x02,0x60,0x87,0xe3,0xec,0x71,0x6e,0x3b,0x95,0x51,0x87,0x2c, + 0x38,0x26,0xb0,0x43,0x40,0x26,0x3f,0xcd,0x30,0xf1,0x51,0xc5,0x4b,0xa0,0x4a,0x96,0xc0,0xa8,0x27,0x2c, + 0x22,0x98,0x54,0xd0,0x1b,0xdc,0xdb,0x5b,0x44,0x50,0x1e,0x5b,0x44,0xd0,0x83,0xa3,0xce,0x01,0x4c,0x26, + 0x7c,0xcc,0x8a,0x50,0x2b,0x34,0x20,0x8c,0x5e,0x35,0x6d,0x89,0xca,0x83,0x62,0xd2,0x81,0x3c,0x55,0xda, + 0xab,0xad,0x61,0xb5,0xec,0x58,0x65,0x83,0x3a,0xd3,0xc7,0x8b,0x98,0x34,0x41,0xa6,0xc6,0xcb,0xbf,0x6c, + 0xcf,0xca,0x4d,0xa2,0x27,0x4d,0x8f,0xee,0x29,0x65,0xf8,0x5c,0xa3,0x8c,0xb3,0xf0,0xe5,0x4c,0x4d,0x7f, + 0xae,0xe1,0x20,0x23,0x5d,0x8e,0x09,0x14,0x6e,0xbd,0x70,0x21,0xbc,0x20,0x53,0xf4,0x83,0x91,0xda,0x69, + 0x86,0x6d,0x9a,0x74,0xb7,0xef,0x44,0x27,0xb4,0x35,0xfc,0x20,0x8a,0x49,0xff,0xc6,0x22,0x5c,0xac,0x47, + 0x4c,0x71,0x70,0xc4,0x42,0x17,0xcb,0x8a,0x73,0x47,0x48,0x68,0xd6,0xb6,0x08,0x8c,0x6e,0x8e,0x24,0xb8, + 0xf2,0xde,0x34,0x9e,0xd7,0x2a,0xc2,0xa6,0x36,0xe6,0x49,0x87,0xbe,0x25,0xea,0xd5,0x93,0x0f,0x51,0x09, + 0x30,0x5c,0x6e,0x7e,0x17,0xc4,0x7e,0x87,0xec,0x8c,0x86,0xe0,0x16,0x3f,0xd1,0xa1,0x16,0xc2,0xc0,0x4f, + 0x78,0x93,0x48,0x1e,0x3a,0x62,0xaf,0xfb,0xb1,0xd4,0xdf,0x99,0x5f,0xf2,0xae,0x81,0x70,0xf6,0xbb,0xdd, + 0x59,0xf6,0x87,0xf5,0xf0,0x2c,0x7d,0xc3,0xd9,0xa8,0x5f,0xcc,0xfb,0xdb,0x22,0xb3,0x9d,0x90,0xae,0x10, + 0x52,0x49,0x60,0x11,0xdd,0x50,0x36,0x49,0xbb,0x24,0x7f,0xdc,0x76,0x4c,0x07,0x8e,0x64,0xe3,0x74,0xf3, + 0x8d,0x42,0x3e,0x14,0xaa,0xcc,0x52,0xe5,0xb8,0x14,0x30,0x55,0x04,0x5c,0xcc,0x2e,0xc8,0xd2,0x92,0x50, + 0x2e,0x55,0xa7,0xc0,0xbc,0xc6,0x74,0xf9,0x0f,0xda,0xbb,0x20,0xc3,0xe9,0xcb,0x52,0x1c,0x43,0x85,0x9c, + 0x69,0x36,0xc9,0xec,0x96,0xa9,0xbb,0x5b,0xa6,0x8e,0x27,0x75,0x72,0x5a,0x9f,0x39,0x1c,0x78,0x83,0x71, + 0x13,0x90,0x5a,0xd6,0x29,0x3d,0x5c,0xeb,0xe6,0xaa,0x9c,0xf1,0x63,0x5e,0x60,0x00,0x78,0x02,0x25,0xb5, + 0x6a,0xf4,0xac,0x7f,0x62,0xb6,0x87,0xf3,0x19,0x89,0xbf,0x1d,0x19,0xa4,0xac,0xd8,0x0e,0xca,0xb5,0x7f, + 0x93,0xcf,0x74,0xfa,0x4a,0xd4,0xda,0x5f,0x74,0xd5,0xe7,0xbb,0xcc,0x4e,0xcd,0x5a,0x1e,0x1e,0xe0,0x7d, + 0x17,0x5e,0xd9,0x7d,0x47,0x94,0x17,0x49,0x1b,0xb8,0x49,0xc8,0x73,0xbb,0x7a,0x7b,0x8b,0xf1,0x34,0xb0, + 0xae,0x84,0x81,0x31,0x0c,0x26,0x69,0x75,0xb6,0xee,0xc4,0x42,0x74,0x88,0xab,0x00,0x61,0x06,0x5d,0xd3, + 0x55,0x62,0x8a,0x4a,0xc6,0x9c,0xb1,0x40,0xf9,0xe9,0x2d,0x81,0xbf,0xb3,0xf4,0x1e,0x5f,0x58,0x9a,0xb4, + 0x31,0x2a,0xc5,0x54,0xf9,0xc2,0x56,0xc8,0xeb,0x8d,0x2d,0x50,0xc4,0x28,0x9a,0x9d,0x29,0x94,0xcb,0xa8, + 0x1c,0x80,0xe7,0xa4,0x4c,0xa4,0x78,0xb9,0x19,0xdb,0x45,0xcb,0x09,0x15,0xd7,0xbb,0x06,0x24,0x6b,0x18, + 0x8e,0xc8,0x25,0x7e,0x6e,0x58,0xb2,0x8c,0xd0,0x82,0x29,0x42,0x2d,0x98,0xea,0xb4,0x60,0x2d,0x98,0xfb, + 0x79,0x55,0x5e,0x27,0x78,0xde,0xf4,0x8f,0x20,0x97,0x11,0x98,0xdd,0x5b,0x60,0xdb,0x56,0xd8,0x98,0x0b, + 0x1a,0x09,0xc1,0x01,0x29,0x9f,0x6f,0x54,0x16,0x27,0xf2,0x9c,0x6d,0x36,0xdd,0x61,0x38,0x8b,0x80,0x91, + 0x13,0x5a,0xf2,0xd2,0xe8,0xb8,0x23,0xf5,0x37,0xe3,0x62,0xb9,0x7f,0xcf,0xd2,0x57,0x58,0x7a,0x28,0x06, + 0xdc,0x43,0x47,0x22,0xa9,0x94,0x70,0xf1,0xd8,0xae,0x84,0x9b,0x1c,0x10,0xa2,0x70,0x41,0xa4,0x22,0xf2, + 0x8d,0x44,0x75,0xb0,0xe6,0x63,0x2e,0x9b,0xca,0x26,0xd1,0xe6,0xa2,0x7d,0x3b,0xba,0xce,0x3f,0x11,0xe5, + 0xe1,0x87,0x2a,0x64,0x93,0x4d,0xef,0x52,0x4f,0xae,0x12,0xf9,0x6c,0x34,0x15,0x79,0x8a,0xe8,0x62,0x35, + 0xc7,0x3e,0x17,0x55,0xf2,0x3a,0xca,0x63,0xff,0xae,0x63,0xdc,0xa0,0x39,0x51,0x2c,0x92,0xee,0x35,0xe6, + 0x1c,0xc0,0xfd,0x1d,0x56,0x3a,0xeb,0xf5,0x8b,0x66,0x9c,0x81,0x9c,0x2e,0x23,0xbc,0x2b,0x51,0xba,0xa4, + 0xb3,0x69,0x4f,0x78,0xe6,0x81,0xf6,0xeb,0xa6,0x75,0x72,0xb7,0x54,0xee,0x0a,0x5b,0x35,0xf0,0x0d,0xde, + 0x1d,0x74,0x48,0x0b,0x87,0x92,0x96,0x98,0x62,0xa1,0x6e,0x6e,0x41,0x48,0x98,0x0c,0x79,0x90,0x21,0x3f, + 0x33,0x72,0xfa,0xa7,0xe8,0xb5,0x23,0xe1,0x4a,0x5a,0xea,0x49,0x49,0xdb,0x39,0x29,0x59,0xbf,0x07,0x19, + 0xf1,0x37,0x3b,0x0b,0x50,0xbe,0xb7,0x5b,0x57,0x8a,0x26,0x18,0x4e,0x07,0x70,0xf0,0x24,0x82,0x02,0xbe, + 0xc2,0x56,0x6a,0x00,0x08,0x7f,0x6a,0xa2,0xa7,0xa2,0xf1,0xa7,0xca,0x11,0x63,0xcd,0xe8,0x4b,0x0d,0x05, + 0x27,0xfa,0xcd,0x01,0x21,0xa9,0x49,0x67,0xe4,0x12,0xc7,0x19,0x84,0x39,0x76,0xab,0x0e,0x21,0xfd,0x20, + 0x62,0x2b,0xa3,0x9f,0x4f,0x20,0xee,0xb8,0xb5,0x29,0x6a,0x15,0xfe,0x94,0xab,0x34,0x9a,0x3e,0x3e,0xa4, + 0x05,0x78,0x3c,0x15,0x08,0x3b,0x38,0x8c,0x37,0x54,0xde,0x41,0xa1,0x2c,0xbe,0xdf,0xbe,0xc5,0x00,0x11, + 0x9f,0xc0,0xf4,0xc4,0xb7,0x2e,0xd3,0x60,0x10,0x79,0x6d,0xed,0x57,0xc6,0x87,0xac,0x2c,0x01,0x92,0xf6, + 0xa1,0x81,0x4b,0x72,0xa4,0x45,0xd1,0xdd,0xb3,0xe7,0x7a,0x3e,0xb3,0x9e,0x8a,0x97,0xf1,0x8c,0xce,0xf9, + 0x0b,0x2e,0x6c,0x4f,0x1e,0xd8,0xa4,0xf1,0x4e,0xa1,0x0c,0x1d,0x8d,0xe1,0x0b,0x7f,0xbb,0xa6,0x3f,0x10, + 0x8a,0x21,0x23,0x9f,0x54,0x8e,0xc2,0xaa,0x36,0x6c,0xdf,0xd3,0x58,0x3a,0xf2,0x69,0x33,0xfe,0xd8,0x44, + 0x34,0x15,0x8a,0xf0,0xd2,0x2c,0x56,0xf4,0xb2,0xea,0xdb,0x6b,0x3f,0x04,0x6c,0xbd,0x26,0xd4,0xfc,0x8b, + 0x62,0x2b,0x81,0x83,0x9e,0xac,0xcb,0x1f,0xfd,0x76,0x0b,0x29,0x9c,0xc7,0x17,0xf4,0xe9,0xd1,0x19,0x14, + 0xb4,0xbc,0x70,0xb8,0x69,0x5d,0x06,0xdc,0x40,0x2a,0xbd,0x0e,0xc8,0x98,0x9f,0x02,0xdc,0xb7,0x8b,0x2d, + 0xd9,0xd9,0xa1,0x9a,0x34,0x8d,0x68,0x72,0x98,0x1c,0x1c,0x05,0x2a,0x49,0x20,0x2d,0x74,0x97,0xb4,0xa0, + 0x7a,0x90,0x1d,0x38,0x6d,0xf3,0x59,0x5d,0x8e,0x3f,0xdc,0x1d,0x74,0xd5,0x44,0xa2,0x85,0xd3,0x02,0x57, + 0x54,0xf7,0xb8,0x4a,0xab,0xd1,0x43,0x61,0x60,0x8f,0xed,0x26,0xaf,0xfc,0xfa,0xb6,0xb4,0x20,0x58,0x03, + 0xc6,0x83,0x54,0x02,0xc7,0xf9,0xe3,0xd2,0xf6,0x2e,0x07,0x70,0x91,0x16,0x06,0x40,0xe2,0x70,0xa0,0x64, + 0xc9,0x2a,0x25,0xbd,0x30,0x5d,0xf5,0x32,0xc4,0x1f,0xd1,0xbf,0xaa,0xa3,0x6a,0xf1,0xe0,0xaa,0x2c,0x3f, + 0x0e,0x09,0x12,0xfe,0x68,0x7b,0xbf,0x99,0xe7,0x05,0xd5,0x73,0x77,0x0f,0xd9,0x44,0x70,0x3a,0x5f,0x6e, + 0xf3,0x38,0x78,0x8c,0x51,0x9e,0x16,0x81,0xd6,0x58,0xa8,0x21,0x06,0x7e,0x4a,0xee,0xf8,0x29,0x33,0x82, + 0x08,0x92,0x70,0xc5,0x2a,0x15,0x33,0xe6,0x0d,0x48,0xf7,0xfa,0x74,0xe5,0xfe,0x90,0xfe,0x96,0xfb,0xc3, + 0x07,0xd1,0x77,0x74,0x49,0xe4,0xb5,0x7e,0xc4,0x1c,0xd1,0x78,0xc8,0x2a,0x77,0xbe,0x22,0x3e,0x98,0x6e, + 0x9c,0xb6,0x9c,0xdb,0x94,0xb9,0x1f,0xc4,0x8f,0x21,0x9e,0xf0,0x76,0x14,0x6a,0x7c,0xf0,0x74,0x9a,0x12, + 0xed,0x2f,0xa1,0xdd,0x8e,0x4c,0x91,0xb4,0x05,0xad,0x36,0x91,0xb0,0x7e,0x8d,0xfd,0xc4,0x19,0x86,0xc2, + 0x33,0x69,0x95,0xa7,0xee,0x7e,0xed,0x67,0xd7,0x76,0xe5,0xeb,0xb0,0x2b,0x22,0xb6,0x5d,0xaf,0xfb,0x2c, + 0x07,0x60,0x45,0x43,0xb0,0x2e,0x6e,0xae,0xaa,0xf2,0x96,0xa8,0x38,0xf3,0x2e,0x4d,0x80,0xb9,0x86,0xb5, + 0xf8,0xa5,0x51,0xbf,0xb2,0x2c,0xe3,0x5b,0x88,0xa1,0xd4,0xcf,0x2c,0xbd,0x76,0x6d,0x7d,0x03,0x31,0x93, + 0xa4,0x89,0xfc,0xeb,0x5b,0xab,0xbd,0x78,0x18,0x8f,0xbf,0x75,0x4c,0x8c,0xc3,0x50,0x0a,0x46,0xe4,0xa7, + 0xa7,0x44,0x8d,0x04,0x2c,0x62,0xf8,0xd7,0x27,0x41,0x35,0x0b,0xc4,0x52,0x54,0xf3,0x6c,0xe0,0xea,0xf7, + 0x74,0x07,0x4a,0xc2,0xa8,0xd2,0xd4,0xf1,0x1b,0x48,0xdb,0x7e,0x69,0x09,0x39,0xbe,0x17,0x8d,0xe3,0xe8, + 0x1b,0x30,0x13,0x21,0x89,0x15,0x25,0xb0,0x72,0xd5,0x44,0x27,0x84,0xe1,0xff,0xca,0xe2,0x73,0x0b,0xbd, + 0x7f,0xee,0x9f,0xa5,0x37,0xab,0x86,0xcd,0x68,0x4f,0x84,0xc8,0xae,0xd6,0xeb,0x01,0x75,0xa5,0x9b,0x0a, + 0x99,0xb1,0xd5,0xbf,0xee,0x7e,0x3b,0xf6,0xd6,0x4a,0x6c,0xee,0xd6,0xfd,0x1e,0xca,0xaa,0x7f,0xb1,0x44, + 0x00,0x0c,0x30,0x78,0xd0,0x44,0xeb,0x06,0x23,0xe2,0xb1,0xb4,0x0c,0x14,0x83,0x31,0x7d,0xd3,0x28,0xda, + 0xaf,0x9e,0x7f,0xd2,0xe8,0xf4,0x48,0x69,0x11,0x7e,0x74,0x1b,0xe5,0x39,0x29,0x74,0x6a,0x0d,0x34,0x0c, + 0x52,0xfd,0x81,0x90,0x92,0xb7,0xe5,0x4c,0x3b,0x85,0x70,0x9a,0xed,0xb1,0x76,0x2c,0x86,0xa8,0xd0,0xea, + 0x1e,0x9a,0x33,0xd9,0xb4,0xd1,0x15,0xdb,0x59,0x41,0x89,0x45,0xb5,0xa7,0xbd,0x81,0x92,0x8d,0xde,0x3f, + 0x8a,0xff,0xef,0x2f,0xa8,0x09,0xa1,0xc9,0x7c,0x7d,0x76,0xde,0xdd,0x26,0xaa,0x74,0x87,0x73,0xfb,0xad, + 0x11,0x6e,0x86,0xdc,0x7f,0xdc,0x68,0x7c,0x92,0xbc,0x9a,0x68,0xfb,0x60,0xd2,0xc5,0x58,0x50,0xe7,0x3f, + 0xe4,0x53,0x80,0x1d,0x5e,0x54,0xf0,0x81,0x90,0x91,0xce,0xf4,0xcf,0x44,0x27,0x45,0x3f,0xb3,0x7c,0xe9, + 0x17,0xda,0xb3,0x84,0x9c,0x35,0xfd,0x52,0x7e,0xbb,0xc7,0x02,0x99,0x93,0x49,0x6a,0xc3,0x12,0x42,0x82, + 0x37,0x46,0xb5,0xa0,0x94,0x19,0x26,0x74,0xd8,0x9b,0x2d,0x80,0xe9,0x7b,0x9f,0x61,0x60,0x25,0x68,0x11, + 0x23,0x50,0x8f,0x42,0x13,0xcb,0x70,0xd4,0x00,0x2b,0x5b,0x4a,0x95,0x4c,0xd2,0x45,0xe0,0x2b,0x0e,0xa6, + 0xcc,0x62,0x76,0xbc,0xe5,0x17,0x55,0xf9,0xa7,0x2e,0x38,0x6d,0x8b,0xbb,0x2d,0x1a,0xdb,0xc2,0x48,0xb1, + 0x2c,0xe3,0x26,0xe4,0x58,0xe5,0x7c,0x01,0xb0,0x0a,0x41,0xe4,0x30,0xac,0x31,0x8b,0xde,0xe9,0x7d,0xe3, + 0x2e,0x87,0x80,0x61,0xc4,0x8a,0xb3,0xe8,0xb0,0x28,0x1e,0x7a,0x83,0xc5,0x22,0x8d,0xaa,0x0e,0xe7,0x2a, + 0xde,0x2e,0x04,0x95,0x5b,0x94,0x13,0x9d,0xc2,0x5a,0x77,0x75,0x98,0x05,0x30,0x0c,0xf7,0x86,0xce,0x40, + 0x85,0x95,0xb2,0x54,0x91,0x0e,0xff,0x1f,0xa4,0x11,0xca,0x4c,0x74,0x99,0x53,0x8b,0x4e,0x9a,0x38,0xc8, + 0x54,0xa5,0xc3,0x81,0xc9,0x54,0xec,0xca,0x64,0x2e,0xd5,0xfb,0x02,0xfa,0x6d,0x4d,0x5a,0xb5,0xf2,0xa9, + 0x12,0x6a,0x7a,0x85,0x9a,0xca,0xcd,0x45,0x88,0xbc,0xd1,0x97,0x21,0x42,0x10,0x02,0x1a,0x6f,0xef,0xa1, + 0xb7,0x74,0x9f,0xad,0xd8,0xdf,0x31,0xc9,0xa1,0x72,0x3c,0x9a,0x17,0x4c,0x50,0x74,0xb0,0x84,0xca,0x5d, + 0xf2,0x2f,0xc1,0x0e,0x62,0xa8,0xee,0xcb,0xd1,0xf6,0xbd,0x39,0x80,0x78,0xdf,0x82,0xf6,0xb1,0xa7,0x97, + 0x2a,0x27,0x93,0xec,0xb9,0xac,0xa9,0x32,0xa6,0xe2,0xdd,0x35,0xd2,0xa9,0xc7,0x6b,0x53,0xcf,0x21,0x2b, + 0x0c,0xa5,0x0b,0x2b,0xed,0x6e,0xde,0x1c,0xb2,0x7e,0xc6,0x56,0xd5,0x4a,0x2d,0xd4,0x9c,0x5b,0x9f,0x0a, + 0xfd,0xb0,0x22,0xac,0x7d,0x7a,0xa6,0x16,0x84,0x35,0xd3,0xcf,0x3c,0xa5,0xa3,0x30,0xa5,0x3d,0x4d,0xd8, + 0x19,0x9d,0xa9,0x32,0x5a,0xc4,0x13,0xfa,0xbb,0x42,0xf5,0xc0,0x66,0x25,0x77,0x4a,0xdd,0x5d,0x51,0x9d, + 0x84,0x5b,0x47,0xf3,0x11,0x66,0x38,0xf8,0x96,0x53,0x12,0x96,0x82,0x9a,0x9a,0x8f,0xcc,0xb4,0x43,0x4b, + 0xaa,0x27,0x99,0x9e,0xcc,0x6a,0xf0,0x13,0xac,0xe5,0xe2,0x38,0x59,0x11,0x74,0x5c,0x50,0x7d,0x0b,0x1e, + 0xd3,0x4a,0x71,0xad,0x8b,0x38,0xf6,0xbd,0xd6,0x31,0xa8,0x96,0x29,0x08,0xe4,0x8a,0x36,0x9b,0xf4,0x39, + 0x96,0xea,0x65,0x18,0xae,0xe1,0xc0,0xe4,0x57,0xdb,0x9b,0x93,0xd1,0xaa,0x71,0xe7,0x6c,0x19,0x63,0x29, + 0x80,0xb3,0x11,0xb0,0x1b,0x1a,0x7d,0xf0,0x46,0x44,0x97,0x91,0xe6,0xd5,0x42,0xe5,0x04,0x76,0x42,0xf0, + 0x51,0xd0,0xab,0x66,0xab,0x68,0x5b,0x60,0x0c,0x6a,0x1a,0x6f,0x4a,0xb0,0x50,0x2a,0x4c,0x1c,0xfa,0x9d, + 0xe4,0x51,0x6d,0xa6,0x34,0xa3,0x27,0x36,0x99,0x9b,0xd1,0x4c,0x57,0x69,0x1d,0x23,0x5d,0x20,0xe4,0x94, + 0xd0,0x68,0x2e,0x41,0x35,0x9c,0x81,0x1f,0x2f,0xf9,0x58,0x1b,0x01,0x8c,0xf8,0x40,0xb3,0x7d,0xae,0x43, + 0x34,0x0b,0xd4,0x0c,0x10,0x29,0x66,0xca,0x47,0x01,0x5a,0xf7,0xc0,0xe9,0xba,0xab,0x72,0xbd,0x36,0x5c, + 0x75,0x7e,0x1d,0x1c,0x8e,0x4d,0xe6,0xaa,0x9b,0xb9,0x6a,0x67,0xae,0x90,0x79,0xe3,0xf4,0x9b,0xbd,0xe9, + 0x91,0xee,0x98,0x5a,0x4e,0x4e,0x59,0xc0,0x7f,0xb6,0x65,0xd6,0x33,0xb9,0x42,0xd6,0x44,0xae,0xc2,0xc0, + 0xca,0x28,0xac,0x40,0xcc,0x8c,0xf2,0x48,0xe4,0xf4,0xc0,0x00,0x8f,0x18,0x7e,0x38,0xe1,0x79,0x60,0x4c, + 0xd4,0x81,0xb5,0xbc,0xc9,0x59,0xab,0x86,0x61,0xd8,0x16,0xfb,0xb2,0x34,0x3c,0xe7,0xb8,0xcf,0x02,0x8c, + 0x30,0x00,0xda,0xc8,0x8b,0xd3,0x69,0xba,0xf0,0x8a,0x34,0xaa,0x7b,0xd6,0x27,0xd6,0xcc,0xe7,0xab,0x43, + 0x96,0x4e,0x44,0x54,0x25,0x75,0xa3,0x52,0x91,0xa6,0x4a,0x87,0xf1,0xfe,0xf0,0x7c,0xb8,0x4f,0xb3,0x7e, + 0x7a,0x88,0x3d,0x4a,0xdf,0x57,0x38,0x20,0x0b,0x6c,0x64,0x9a,0x93,0x15,0x8f,0x69,0xbf,0xa2,0xaf,0x32, + 0x3a,0x5a,0x5a,0x16,0x43,0xe3,0xea,0x5a,0xf0,0xda,0x9b,0x0d,0xb5,0xc0,0x6a,0x24,0x20,0xde,0x27,0x5c, + 0xc9,0xa4,0x5b,0x05,0x6c,0x51,0xe8,0xb8,0x10,0x49,0x26,0xe5,0x22,0xfa,0x86,0x22,0x94,0xbb,0xb2,0x2d, + 0x6f,0x15,0x92,0x46,0x93,0x08,0x76,0xda,0x40,0xb3,0xa1,0x50,0xc8,0x93,0x5d,0x41,0x81,0x82,0x9e,0x68, + 0x86,0x00,0xf0,0x39,0x8d,0x8f,0x36,0xbf,0x42,0x35,0xf5,0x66,0x41,0x79,0x87,0xfb,0x5a,0x06,0x48,0x7f, + 0xcf,0x87,0xb6,0xcb,0x68,0xd7,0xd1,0x61,0x8b,0x40,0x59,0x49,0x7b,0x8b,0x85,0xbf,0x36,0xa9,0xea,0x11, + 0x2e,0x34,0x6d,0xe1,0x42,0xd3,0x6b,0x6a,0x65,0xee,0x42,0xd8,0x5b,0x61,0x23,0x07,0xb2,0x86,0xdc,0x37, + 0x9a,0xd1,0xba,0x13,0xc1,0x03,0xde,0x11,0xf8,0xa2,0xe3,0x7a,0xcc,0xdd,0xaa,0x99,0xea,0x05,0x27,0x91, + 0x88,0x8b,0x27,0xe1,0xab,0xca,0xe8,0x10,0x81,0x11,0x95,0x06,0x89,0xa7,0xd9,0x99,0xa8,0x0a,0x6c,0x6a, + 0x4a,0x36,0x74,0x19,0x6e,0xd6,0x41,0xcd,0x5e,0x04,0x2c,0x05,0x0f,0xf0,0x0a,0xa1,0xb7,0xe1,0x13,0x70, + 0xd3,0x96,0x88,0xe7,0x3a,0x7b,0x68,0x6b,0x27,0x7b,0xd4,0x71,0x32,0x15,0x3c,0xe7,0x70,0xe3,0x80,0x7c, + 0x40,0x57,0xdd,0xf8,0x59,0x1d,0x10,0xf6,0x33,0x70,0x66,0x5c,0xe6,0x32,0xdc,0x04,0x04,0xea,0xfd,0x46, + 0x09,0xbf,0xa9,0xd9,0x21,0xa6,0x67,0x0e,0x50,0x96,0xe6,0x0c,0xef,0x30,0x7d,0x2c,0x2a,0xce,0x9a,0xa6, + 0xaa,0xdd,0xc3,0x08,0xb6,0x64,0xd8,0x51,0x0c,0x06,0xc2,0x44,0x22,0xa9,0x8c,0xfa,0xcc,0x40,0x4c,0x08, + 0xbd,0x26,0xcb,0x80,0xf5,0xad,0x21,0xa2,0x16,0x2b,0xbf,0x8c,0x0b,0xc4,0x51,0x61,0x27,0x02,0xf2,0x66, + 0xfb,0x4c,0x47,0x96,0x80,0x38,0x6f,0xa5,0x3c,0x90,0x13,0xd6,0xa6,0x94,0x9a,0xa6,0xc5,0x69,0x0d,0x2b, + 0x2f,0xfc,0x20,0xf3,0x78,0xd8,0xe8,0x6b,0x68,0x2c,0x6b,0xa0,0x08,0x39,0x36,0x2f,0x4d,0x5f,0x70,0x7c, + 0xa6,0xe8,0x9a,0xd1,0xfc,0x59,0xaf,0xa9,0x44,0x32,0xb5,0xf5,0x6f,0x9c,0xc5,0xf0,0x4a,0xb8,0x8e,0xc5, + 0xe9,0xea,0xcc,0x18,0x7a,0x5c,0xea,0xd8,0x0d,0x14,0xc9,0x4e,0x4a,0xe2,0xa7,0xff,0x32,0x84,0x55,0x01, + 0x54,0x62,0x55,0x80,0x50,0x5f,0x88,0xc0,0xc1,0x03,0xc1,0x7c,0x30,0x1f,0xbe,0x82,0xbb,0xd6,0x6d,0x04, + 0x7e,0x71,0x5b,0x80,0xe6,0xe0,0x0b,0x54,0x59,0x26,0x03,0xaa,0xf5,0x61,0x6d,0xf4,0xcc,0xe9,0x36,0x17, + 0xd6,0xc8,0x43,0xca,0x3b,0x96,0x63,0x25,0x68,0x61,0x01,0xb3,0x84,0x45,0xfe,0x27,0xdd,0x25,0x9e,0xa1, + 0xe3,0x13,0xcd,0xca,0x02,0x71,0x16,0x98,0x51,0x43,0x12,0xc1,0xd5,0x80,0xc2,0xa6,0xff,0xf4,0x42,0x88, + 0xe3,0x5b,0x2e,0xe1,0x99,0x16,0x76,0xa6,0xf8,0xee,0x85,0xd8,0x41,0x11,0xb2,0x4e,0x30,0x85,0x70,0xec, + 0x87,0x38,0x61,0x53,0x02,0x64,0x04,0x24,0x4a,0x06,0x33,0x10,0xf3,0x4e,0xf9,0xce,0x8e,0x0d,0xa2,0xde, + 0x12,0x54,0xac,0xe4,0xfe,0xe6,0x9f,0x12,0x18,0x06,0xcd,0x6f,0xfa,0x04,0x85,0x56,0x81,0x44,0x6f,0xb7, + 0xa6,0x45,0x7b,0x98,0x69,0x19,0xab,0x9f,0xc0,0xb3,0x33,0x93,0x33,0xa4,0x03,0x6b,0x12,0x68,0x50,0x43, + 0x42,0x51,0xcc,0x9b,0x1b,0xd5,0x50,0xe5,0x90,0x1e,0x78,0x1d,0xb4,0x36,0x56,0xb0,0xad,0xf3,0xd9,0xd5, + 0x90,0x98,0xd8,0xcb,0xbe,0x8d,0xe2,0xc5,0x49,0xc1,0x86,0xcf,0xc6,0x96,0xbf,0xe9,0x37,0x16,0xde,0x12, + 0xc2,0xe0,0x96,0x6c,0xce,0x12,0xbe,0x3b,0x31,0x3a,0xe1,0xdc,0x59,0x5d,0x8c,0xa3,0xe0,0x8d,0x16,0x1c, + 0xf7,0x85,0xdb,0x69,0xf1,0x44,0xee,0xcf,0x24,0x74,0x5e,0x43,0x20,0xea,0xd3,0xdd,0x6e,0xbf,0x45,0x5a, + 0x74,0xcc,0x2b,0xf5,0x59,0x85,0x0d,0xa2,0xf8,0x02,0xcc,0xe2,0x89,0x6e,0xb1,0xcf,0x7a,0x94,0x0c,0xe1, + 0xaf,0x27,0x30,0xe1,0xec,0x52,0x3e,0xd0,0x34,0xdd,0x16,0x19,0x80,0xba,0xd9,0xb6,0xdd,0x36,0xa4,0x89, + 0xb7,0xeb,0x73,0x60,0x6d,0x17,0x04,0x63,0x95,0x30,0x2d,0x3c,0xec,0xca,0x4b,0x46,0xb6,0x4d,0xc0,0xb7, + 0xab,0xe6,0x3a,0xa9,0xa2,0x26,0xac,0xa8,0xda,0x3f,0x0a,0xeb,0x01,0x69,0x06,0xa0,0xbe,0xc2,0x81,0x3b, + 0x35,0x7e,0x9f,0x72,0xa2,0x8e,0x61,0x00,0x71,0x06,0x42,0xd1,0xe0,0x19,0xc2,0xe5,0xdc,0xce,0x42,0x68, + 0xfd,0x22,0x5d,0x8d,0x40,0xbc,0x46,0xf1,0x78,0xb0,0x18,0xcd,0xca,0x42,0x8f,0xe3,0x42,0xe0,0x90,0x26, + 0x24,0x57,0x34,0x2e,0xac,0xc4,0x24,0x0e,0xf3,0x6f,0x1c,0x29,0xb6,0x65,0xc1,0x16,0x8e,0x24,0xeb,0x4c, + 0x52,0xd6,0x9d,0x24,0x02,0xa1,0xcc,0xde,0xb7,0x73,0x55,0x9f,0xa9,0x1a,0xa3,0x74,0xb8,0x56,0x11,0xb3, + 0xe2,0x0f,0x41,0x48,0xea,0x88,0x45,0x09,0x80,0x67,0x06,0x20,0xef,0x5c,0x77,0xf8,0xec,0x04,0xb3,0x58, + 0x5b,0xeb,0x21,0x1b,0x18,0xcf,0xde,0x13,0x8c,0xae,0xa1,0xdd,0x97,0x4f,0x30,0xcf,0xeb,0x35,0xae,0x1d, + 0xd6,0x87,0xfa,0x10,0x7d,0x80,0x03,0x87,0x2a,0x66,0x61,0x48,0x99,0x4a,0x7b,0x10,0xea,0xda,0x0a,0x4c, + 0x51,0x4a,0x34,0x72,0x00,0x56,0xf2,0x40,0xb2,0xb3,0xcc,0x9b,0x48,0x56,0x41,0x17,0x8c,0xd9,0x53,0xe4, + 0x2f,0x00,0x75,0x8f,0xdc,0x49,0xb6,0x11,0x49,0xbc,0xeb,0xf5,0x6d,0x08,0xa8,0x21,0xc8,0xe0,0x5a,0x0c, + 0xe7,0xd4,0x5a,0xb3,0xd5,0x43,0x85,0xfd,0xf8,0xcc,0x17,0x7b,0xda,0xde,0xf5,0x5b,0x87,0xf6,0xc0,0x60, + 0xa3,0xce,0x54,0x3a,0xe1,0xbb,0xce,0x57,0xf0,0x51,0x6f,0xf1,0x3d,0xd3,0xb7,0x23,0x6b,0xf5,0x45,0x47, + 0x86,0xae,0x44,0x3b,0xb6,0x92,0xc8,0x18,0x82,0x0c,0xad,0xcf,0x13,0xea,0x41,0x49,0x53,0x96,0xe4,0x78, + 0xca,0x15,0x58,0xea,0x93,0x4f,0x84,0x63,0xa1,0x99,0x2d,0xd4,0xf9,0x53,0x17,0xfd,0x2f,0x62,0xde,0xbc, + 0x45,0x6c,0x79,0xae,0x5d,0x81,0x1d,0x2f,0xcc,0x73,0x64,0x30,0x33,0xee,0x0e,0x76,0x26,0x42,0x9e,0xe9, + 0x82,0x28,0x33,0x23,0xf2,0xa0,0x83,0x7a,0xb7,0xd0,0xe6,0xe5,0x92,0x72,0xc4,0xb4,0xf4,0xe1,0x0d,0xdd, + 0x58,0x64,0xc1,0x3c,0xb0,0x38,0x60,0x9c,0x43,0xab,0xea,0xed,0x28,0x30,0x38,0x23,0x30,0x5f,0x43,0xa6, + 0x43,0xb0,0xa9,0xbc,0x46,0x42,0x2d,0x64,0x96,0x79,0x01,0x95,0x95,0x98,0x2a,0xf8,0x03,0x3f,0x21,0x55, + 0xac,0x3c,0x52,0xc8,0x34,0xd5,0x2a,0xfd,0x44,0x3f,0x63,0xbe,0x8d,0xf2,0xf5,0x7a,0x65,0x7e,0x23,0x68, + 0x94,0x88,0xf0,0x93,0x26,0x34,0xa2,0xd2,0x65,0xc1,0x95,0x94,0x05,0x53,0x6f,0xa7,0xc6,0xda,0x30,0x19, + 0xee,0x53,0xbe,0x16,0xb7,0x07,0x05,0x99,0xe1,0xe3,0x8e,0x72,0x2d,0x48,0x01,0x11,0x67,0x72,0x08,0x7b, + 0x74,0x4d,0xde,0x87,0x80,0xce,0xa8,0x9b,0xd6,0xac,0xfb,0xfb,0xa1,0xd2,0x9a,0xfb,0xdf,0x4d,0xe3,0x03, + 0x56,0xb1,0x38,0xca,0xa9,0x8f,0xd0,0xc2,0x13,0x8a,0xf4,0x41,0x47,0x92,0x9e,0xb6,0x36,0xe8,0x48,0x0a, + 0xbf,0x63,0xcb,0xcc,0x17,0x05,0xce,0x88,0x57,0x05,0x19,0x9d,0x8b,0xc5,0xe6,0x77,0x00,0xfa,0x86,0x43, + 0xc0,0x2a,0x9e,0x84,0xfc,0x4a,0x39,0x42,0x80,0xf7,0x1b,0x35,0x38,0x6a,0x01,0xf4,0x87,0xee,0xc6,0xb3, + 0xc2,0x75,0x6d,0x74,0x25,0x89,0x14,0x46,0x09,0xbd,0x1f,0x15,0x13,0xc6,0xef,0x89,0xb8,0x88,0xe1,0x5d, + 0x40,0x05,0xc3,0xfe,0xa0,0x03,0x06,0x74,0xf7,0x5c,0x84,0xf2,0x4d,0x40,0x56,0x07,0x88,0x98,0x13,0x5c, + 0x9d,0xf5,0xb9,0x86,0xe3,0xe4,0xe7,0x06,0x84,0x0b,0x61,0x51,0x41,0xdc,0xc9,0xb0,0xef,0xb9,0xde,0xe2, + 0x80,0xbb,0xa4,0x7b,0xaf,0x6d,0x2d,0xb6,0xae,0x6c,0x2a,0xa0,0x1a,0xab,0x82,0x1f,0xc0,0xae,0x13,0x8f, + 0x2d,0xeb,0x98,0xc5,0xce,0x96,0xcf,0x0c,0x3e,0x58,0x29,0x7f,0x26,0x0c,0xa5,0xf0,0x14,0x27,0x01,0xc6, + 0x52,0x05,0xf2,0x62,0x91,0xcb,0x43,0xdf,0x18,0x8a,0xad,0x0c,0x4f,0xcb,0xc9,0xe9,0x99,0x55,0x9b,0x80, + 0x50,0x33,0xc9,0x37,0xbb,0x76,0xcc,0xef,0x01,0x04,0x65,0xc3,0xf6,0x7b,0x87,0xd3,0x15,0x9b,0x71,0x5b, + 0x82,0xde,0xf4,0x10,0x37,0xf0,0x37,0xd3,0x39,0xc8,0x79,0x3c,0xf9,0x1d,0xe0,0x81,0x25,0x28,0x39,0x8b, + 0x46,0x0c,0x0e,0x10,0x01,0x0d,0x97,0x17,0x08,0x3a,0xa0,0x7f,0x8b,0x09,0x3a,0x4b,0x91,0xee,0xf8,0x46, + 0x2c,0xe6,0x66,0x0c,0x30,0xad,0xa0,0x3b,0xe9,0x75,0xc1,0x2c,0x3b,0xac,0x65,0xad,0x1c,0x68,0xac,0xa5, + 0x5f,0xb4,0x45,0xe8,0xdd,0xbb,0xbc,0x62,0xa0,0x06,0x15,0x34,0xf0,0x07,0x91,0x69,0xff,0xe8,0xcc,0x5b, + 0x3b,0x05,0x3a,0x5b,0x2d,0x50,0xbb,0x8d,0x13,0x4c,0xf4,0x7e,0xd3,0xd2,0x74,0x62,0x88,0x4e,0x68,0x60, + 0x99,0x3e,0xc4,0x6a,0x9f,0x17,0x29,0x34,0xf8,0xcf,0xeb,0xf4,0x0a,0x3f,0x8b,0xf4,0x98,0x53,0x9b,0xf4, + 0x9c,0x7f,0xff,0x48,0x5f,0xe1,0x27,0x4f,0xdf,0xe1,0xe7,0x3a,0x7d,0xcf,0xa9,0xf3,0xf4,0x96,0x7f,0x3f, + 0xa6,0x1f,0xf9,0xf7,0x22,0xfd,0xc4,0xbf,0x37,0x44,0x27,0xe3,0x57,0xa7,0x77,0xfc,0xbb,0x4a,0x7f,0xe7, + 0xf4,0xcb,0xf4,0x84,0x7f,0x67,0xe9,0x33,0xfe,0x5d,0xa6,0xaf,0x82,0xc9,0x7a,0x63,0x17,0x16,0x1b,0x40, + 0x40,0x22,0x51,0x2b,0xcc,0x0d,0x5a,0xd1,0x7c,0x9b,0xc3,0x3c,0x66,0xe9,0xf2,0xf9,0x0a,0x46,0x8b,0x93, + 0xa8,0xee,0x10,0xc0,0x25,0xd1,0x3e,0xe7,0x65,0x95,0x5f,0x42,0x8e,0x96,0x96,0x09,0x65,0x28,0xe9,0xae, + 0x2c,0x7d,0xa2,0xb1,0xc1,0x4a,0x33,0x22,0xe4,0xcf,0xa1,0x5c,0x93,0x2f,0x08,0xd1,0x57,0xf3,0x74,0xb0, + 0x18,0x7b,0xeb,0x1d,0xa3,0x03,0x2e,0x5a,0x1e,0x3b,0x4c,0x79,0x8c,0x2d,0x8c,0xb1,0xe0,0x59,0x18,0x7b, + 0xc2,0x3a,0x15,0x90,0x69,0x6c,0x7c,0x44,0xdf,0x83,0x6d,0x10,0x88,0x84,0x5f,0x99,0x77,0xba,0x5f,0x8c, + 0x85,0x17,0xee,0xec,0x1e,0x9b,0x93,0xa9,0xb9,0xce,0xd7,0x6b,0x90,0x38,0xa3,0x00,0x37,0x50,0xf6,0x53, + 0x0a,0x51,0x03,0x34,0xf8,0x5c,0x4a,0xbf,0x49,0x8a,0x61,0xa8,0x0d,0x83,0x3a,0xb6,0x3c,0x4f,0x76,0x6d, + 0x26,0xa5,0x13,0x5b,0x4d,0xfb,0x2e,0x8b,0xde,0xae,0x02,0x83,0xb1,0x05,0x6a,0xc1,0x68,0xf4,0xc8,0x48, + 0x1a,0x16,0x50,0x5b,0x68,0x4e,0xda,0xdf,0x80,0x94,0xa5,0x71,0xd1,0x02,0xd5,0x62,0x9b,0x21,0x68,0xcb, + 0xf9,0xb4,0x47,0x09,0x4a,0x0e,0xf5,0x4f,0x3a,0xaa,0x95,0xbd,0xbc,0xe7,0x1e,0x27,0xdb,0x22,0x15,0xf2, + 0xd8,0x1c,0x6a,0x6b,0x01,0xe2,0x1b,0x51,0x01,0xc9,0x0d,0x92,0x28,0xdf,0x24,0xbb,0x9b,0x35,0x0d,0x74, + 0xda,0x0d,0x30,0xf8,0x17,0x3d,0xa8,0xcb,0x93,0x96,0xcf,0x9c,0xa0,0xb5,0x82,0xdb,0xb6,0xc6,0x2a,0x44, + 0x59,0x18,0x3e,0x41,0x14,0x09,0x37,0x01,0xf7,0xb2,0x6c,0x4c,0xdc,0xc1,0xfc,0x31,0x95,0x3c,0xe8,0xa6, + 0xd7,0xc4,0xea,0x82,0x1b,0xeb,0x9a,0x03,0x1a,0x23,0xc2,0xb1,0xdc,0xd0,0xc1,0x7f,0xa3,0x03,0x95,0x67, + 0x3e,0x0e,0xaf,0x75,0x7a,0x0f,0x87,0x45,0x1d,0x0f,0x26,0x4c,0x0f,0x6f,0x59,0x3e,0x31,0x75,0xbe,0x95, + 0x0a,0x84,0xf7,0x99,0x75,0x37,0x00,0x14,0x86,0xb9,0xbe,0x1f,0xb5,0x5e,0x3e,0x59,0xe4,0x37,0xfe,0x86, + 0x1f,0xbf,0x46,0xeb,0x7a,0xc9,0x82,0x29,0x56,0x82,0x66,0x0c,0xa8,0xaf,0xa1,0x8e,0x1e,0x9a,0x61,0xc3, + 0x9c,0x33,0xf1,0x26,0x39,0xd9,0xe4,0x5e,0xce,0xe1,0x8f,0x05,0xe1,0x7c,0x49,0xa3,0xe4,0x2d,0xd1,0x1b, + 0x56,0x55,0xe6,0x4e,0xe4,0xc5,0x82,0x8e,0xc3,0x07,0x83,0xe4,0x8e,0x73,0x66,0xea,0xc1,0x4b,0x2b,0x5f, + 0xfc,0x69,0x65,0x1e,0x08,0x69,0xef,0x20,0x0a,0x90,0x2a,0xb4,0x53,0xbc,0x5b,0x4d,0xa2,0x1b,0xb6,0xcd, + 0x9c,0x46,0xc7,0x30,0x2a,0xa0,0x31,0x51,0x8f,0x1b,0xc2,0x0a,0x47,0x0f,0xd9,0x69,0x43,0x04,0xd1,0x8c, + 0x5e,0x5c,0x1b,0x8c,0x93,0xc5,0x3c,0xca,0x4e,0x42,0xd2,0x37,0x4a,0xbd,0x55,0xf5,0x78,0xd0,0xd9,0x84, + 0x0c,0x25,0x0f,0x0d,0xde,0x59,0xca,0x48,0xc3,0xb3,0x04,0x40,0xf4,0xb0,0x05,0x38,0xd2,0xc1,0x00,0x9c, + 0x8b,0x41,0x66,0xb9,0x20,0xeb,0x75,0x2d,0x2c,0x8c,0x41,0xed,0x93,0x32,0x66,0x8a,0x04,0x05,0xf9,0x62, + 0x63,0xd3,0x08,0x3c,0x00,0x73,0xa4,0x7a,0x08,0x55,0x0c,0x74,0x63,0x0c,0x0e,0x75,0xec,0xb8,0x44,0xd3, + 0x78,0x1c,0x7e,0x0e,0x96,0x08,0xf0,0x72,0xf4,0xf0,0xc6,0x3d,0x9e,0xf3,0xa3,0xb0,0x24,0xf8,0xd1,0xc1, + 0x55,0xf1,0x67,0xb2,0xb3,0x11,0x18,0x47,0x8e,0x1e,0x0a,0x6e,0x6b,0x86,0x6f,0x50,0xde,0x0a,0x1f,0x3c, + 0x3c,0x66,0x60,0xac,0xb7,0x55,0x7d,0xe2,0x7b,0xe8,0xd2,0x1c,0x79,0x29,0xd2,0xc2,0x29,0xf3,0xd0,0x75, + 0xd0,0xea,0x3e,0xa5,0x81,0x89,0x0a,0xee,0x97,0x5a,0xd2,0x1d,0xbe,0x7c,0x3c,0xb7,0x77,0xf8,0xd2,0x62, + 0x16,0xb3,0x74,0x7e,0xba,0x3c,0x53,0x57,0x5b,0x3a,0x43,0xe3,0xc5,0xe9,0xec,0x2c,0x7d,0xdb,0x44,0x33, + 0x75,0xa5,0xa0,0xfa,0xb2,0x31,0x3a,0x3c,0x7d,0xca,0x45,0x44,0xfd,0x30,0xd9,0x57,0xf1,0xc2,0x5e,0xa7, + 0xdb,0xb3,0x68,0x0d,0xd7,0xeb,0x9e,0x19,0x7e,0xed,0x07,0xad,0xbe,0xd7,0xac,0xe2,0x7d,0x2d,0x96,0x1f, + 0x4d,0x70,0x6b,0xe4,0xaa,0xb4,0xbc,0x46,0xee,0x04,0x8d,0x7f,0x6a,0xbc,0x89,0x10,0x5c,0x1f,0x1f,0x6e, + 0x22,0xdd,0x73,0x18,0x7b,0x0e,0xa8,0x2a,0x7c,0xc7,0x41,0x7b,0xdb,0xd6,0xb1,0x3f,0xdd,0x75,0x09,0x0f, + 0x91,0x6c,0xff,0xd9,0xf2,0xc6,0xc5,0xf2,0x4c,0x56,0xb8,0xb7,0x46,0x83,0x55,0x5f,0x0b,0xe3,0x0a,0x70, + 0xe5,0x8d,0x78,0x3e,0x21,0x28,0x18,0xbe,0x02,0x5d,0xcd,0x0a,0x38,0x54,0xb6,0x9e,0x51,0xe0,0x9c,0xaf, + 0x03,0x77,0xf8,0xa0,0xfb,0x32,0x93,0x28,0xd2,0x84,0xa3,0x51,0x4a,0xc1,0x1e,0x50,0xd8,0xc4,0x74,0x6a, + 0xf9,0x08,0x31,0x91,0x87,0xa8,0x90,0x16,0x87,0x7a,0x6d,0x9c,0xa7,0x6c,0x77,0xbb,0xb7,0xa3,0x6d,0x00, + 0xe8,0xe5,0x5e,0xae,0x27,0x13,0x76,0x78,0x48,0x55,0x27,0x84,0x2a,0x9a,0xba,0xf9,0x1a,0x55,0x6f,0xdb, + 0x96,0x0d,0xaf,0x75,0x20,0x50,0xfd,0xc1,0x5e,0x23,0x84,0x04,0x09,0x9f,0xba,0x74,0x5a,0x73,0x0b,0xb0, + 0x1d,0xdd,0x0e,0x80,0x1a,0xa5,0xb7,0xe9,0x8a,0x9a,0x74,0x61,0xb4,0x27,0xd9,0x84,0xaa,0x4f,0x23,0x5e, + 0x6a,0x99,0xb3,0xae,0x13,0xe0,0x6f,0x3e,0x8b,0x03,0xd5,0xb7,0xa8,0xc7,0x8d,0x36,0x64,0x1d,0xac,0xfa, + 0x62,0xa4,0x4a,0xa2,0xce,0x44,0x73,0x11,0x18,0xe5,0xb8,0xb4,0x31,0x0b,0xd0,0x1a,0xab,0x79,0x32,0x0b, + 0xf2,0xd8,0x24,0xe3,0x6e,0xe9,0x47,0x3d,0x2e,0xa4,0xc2,0xf2,0x16,0xfb,0x87,0x6a,0x37,0xac,0x01,0x79, + 0x77,0x1c,0x82,0x82,0x8d,0xd0,0x4c,0x22,0xaf,0x99,0x68,0x42,0xa2,0x5f,0x8b,0x32,0x9b,0x11,0xce,0x6b, + 0x7a,0x66,0xde,0x3a,0x7d,0x0b,0x52,0x59,0x2f,0x17,0x0c,0x5b,0xdf,0xaa,0xd7,0xd2,0x95,0x84,0x14,0x22, + 0xbd,0x1a,0xdb,0x6c,0xc5,0xa6,0xe6,0x6a,0x21,0x16,0xe7,0x98,0xf5,0x22,0x1a,0x42,0xa2,0x99,0x04,0x1e, + 0x76,0xa2,0x1e,0x0c,0x0a,0x42,0x6c,0x67,0xc2,0x38,0xff,0x8c,0xe1,0x49,0xd5,0x35,0x3c,0xa9,0x60,0xf4, + 0xde,0x3e,0x9a,0xe3,0x86,0x85,0x48,0x56,0x61,0x48,0x19,0x87,0x8a,0x38,0xde,0xac,0x3a,0x61,0x75,0x5c, + 0x56,0xb1,0xe9,0x70,0x6c,0xb3,0x2c,0xba,0x59,0x16,0xb1,0x19,0x0c,0x36,0xfa,0x32,0x7d,0xd3,0x76,0xcb, + 0xe4,0x17,0x28,0xfd,0x1a,0x48,0xa6,0x8e,0x55,0x3d,0xf1,0x0d,0x27,0x73,0x80,0x2f,0xa8,0x8c,0x5c,0xb5, + 0x4a,0x62,0x8f,0xb4,0x36,0x05,0xc3,0x1d,0x7e,0xc5,0x24,0x72,0x29,0x2e,0x46,0x60,0x2d,0x5a,0xaa,0x2b, + 0x77,0x99,0x4e,0xa3,0x6b,0xb6,0x4f,0xa2,0x9f,0x49,0x19,0xee,0x98,0xbd,0xbd,0x6b,0xd1,0x4e,0x42,0xee, + 0x84,0xbe,0xfb,0x83,0x87,0x02,0xc1,0xab,0xcf,0xa6,0x72,0x4a,0xb7,0x9b,0x34,0xec,0x0e,0xc6,0x62,0xbe, + 0xc0,0x33,0x14,0xe7,0xf3,0x9b,0xa6,0xbd,0x67,0x24,0xaf,0x49,0xc0,0xf8,0x71,0x22,0xae,0x09,0xb1,0x5e, + 0x64,0x77,0x13,0x97,0x93,0x46,0x95,0xac,0xd2,0x40,0xbb,0x28,0xdc,0x02,0x66,0xcf,0x74,0xc6,0x53,0x06, + 0x27,0x28,0x0a,0x2b,0xc2,0xf4,0x1c,0x61,0x7a,0x94,0x69,0x66,0xbd,0xfe,0xe2,0xf0,0xd0,0x74,0xb3,0x91, + 0xfa,0x59,0xfc,0xb9,0xab,0xbd,0x45,0x6f,0x7b,0x57,0xc6,0xfd,0x04,0xaa,0xb5,0xb5,0xc0,0xc0,0xaf,0x66, + 0xdb,0x7a,0xdb,0xfe,0xa4,0x35,0xf8,0xc4,0xd7,0xb0,0xd9,0x44,0x74,0x15,0x2a,0xda,0x26,0x71,0x97,0x75, + 0xbd,0x85,0xdd,0xde,0x81,0x37,0xeb,0x90,0xdb,0x96,0xc9,0x3e,0xa4,0x5b,0xde,0xb8,0xfa,0x1e,0x80,0x31, + 0xd1,0xca,0x40,0x7e,0xe8,0x95,0x98,0xbb,0x22,0xa1,0xab,0x3b,0xbb,0x4c,0x4a,0xba,0x32,0xa8,0x61,0x07, + 0xf7,0xc6,0x42,0xe7,0x6f,0xd4,0xc3,0x82,0x1d,0xa9,0xd1,0xfd,0x74,0x4d,0x98,0x02,0xbc,0x90,0xf4,0xab, + 0xde,0xf3,0x57,0x80,0x0a,0x7e,0xe0,0x4b,0x6a,0xbd,0x1e,0x32,0x8f,0x78,0xc8,0x17,0x4d,0x27,0x83,0x86, + 0x47,0x18,0x38,0xb8,0x29,0x96,0x2b,0xb8,0x67,0xd5,0x8e,0x7b,0xa6,0x3d,0xf7,0x2c,0x66,0x41,0xbe,0x29, + 0xc1,0x75,0xd9,0x90,0x0e,0xc2,0x23,0xd3,0x86,0x47,0xa6,0x60,0x33,0x52,0xb1,0xcd,0x88,0xc9,0x0c,0x66, + 0xd3,0x45,0x36,0xfd,0x48,0xa8,0x67,0x46,0x44,0x6b,0xd7,0x82,0x44,0xf8,0xa0,0x99,0x83,0x72,0x75,0x9c, + 0x64,0x74,0x68,0x59,0x55,0x04,0x35,0xa5,0xa7,0xb5,0x63,0x8e,0x64,0x74,0x47,0x71,0x5a,0xbd,0x01,0xe0, + 0xb2,0x26,0xed,0x02,0x60,0x96,0x5b,0x0a,0xd1,0x56,0xed,0xb9,0x8d,0x90,0xc8,0x35,0x52,0xc5,0xd6,0x48, + 0x80,0x66,0xd6,0x71,0x1f,0x41,0x72,0xfb,0x6c,0x39,0x75,0x66,0xbd,0xce,0xa1,0x18,0xd2,0x92,0x3d,0x55, + 0xf6,0x06,0xfa,0x44,0xd0,0x66,0x3c,0xd7,0x51,0x26,0x0a,0x03,0xb8,0xdf,0xd6,0x6b,0x7e,0xaf,0xe5,0xfd, + 0x28,0xd0,0x4f,0xde,0xb0,0xe6,0xaf,0x05,0xd8,0xb6,0x4f,0xb6,0xcf,0x44,0x9b,0xef,0xd8,0x64,0xd0,0x60, + 0x77,0x3c,0x52,0x3b,0xe6,0x29,0xba,0x4d,0xa7,0x2f,0xec,0xec,0xca,0x77,0x73,0x81,0x6e,0xae,0xe2,0xe9, + 0xe9,0x82,0x71,0xaf,0x05,0xf5,0x06,0xf6,0x9a,0x56,0x28,0x41,0x58,0x01,0x0f,0x97,0xe6,0x98,0xa8,0xa6, + 0xa9,0xb2,0xaf,0x0a,0x5f,0x04,0x3d,0x74,0x5f,0xe4,0xd5,0x80,0x70,0x56,0x14,0x04,0x50,0x9c,0xaa,0x8c, + 0x55,0xb3,0x09,0x7c,0xd6,0x86,0x82,0x08,0x94,0x55,0xe7,0x44,0x36,0x82,0x10,0xa5,0x6e,0x2d,0x3b,0xea, + 0x67,0x66,0x8c,0x44,0x20,0x2e,0x69,0x6c,0x73,0x83,0xef,0xaa,0x3a,0xde,0x96,0xef,0xd0,0xdd,0xe5,0xee, + 0x89,0x59,0xba,0xa4,0x12,0x31,0xe3,0xa0,0x57,0x81,0xdc,0x62,0xe6,0xe4,0x16,0xd7,0x84,0x99,0x5e,0x3f, + 0xb6,0xef,0xe3,0x6b,0xba,0x45,0xae,0x4e,0xaf,0xcf,0x52,0x6a,0x69,0x46,0xbf,0x9d,0xc6,0x4c,0x37,0xae, + 0xd8,0x9a,0x7c,0x29,0x67,0x4d,0x06,0x79,0xc5,0x3b,0x5a,0x34,0xe0,0x4a,0xd0,0x22,0xe2,0x3c,0xe8,0xa4, + 0x50,0xe1,0xb2,0x65,0x17,0x74,0xf3,0xd1,0xf9,0x36,0xbb,0xe8,0xda,0x10,0xa4,0x63,0xf6,0xef,0x78,0xcd, + 0x1c,0x31,0xa6,0x53,0xaf,0xe3,0xcd,0xa0,0xff,0xde,0x6b,0xbc,0x8a,0x90,0xd5,0x0e,0x32,0x86,0x72,0x6f, + 0x5b,0x46,0x9d,0x66,0x17,0xbf,0xd5,0xd6,0xc4,0x91,0x99,0x87,0xaf,0x99,0x7b,0x58,0x42,0x66,0xbd,0x5e, + 0x97,0x04,0x59,0x47,0xe7,0xa2,0xd9,0xc3,0x1e,0x4c,0x99,0xa7,0xf8,0x27,0xe3,0xba,0x71,0x92,0x8b,0xb5, + 0x09,0x0f,0xee,0xc6,0x6f,0x21,0x56,0x75,0x5a,0xaf,0x57,0x21,0x4d,0x77,0xd3,0x44,0xc3,0x9b,0x95,0x3e, + 0x70,0x17,0xcb,0xc1,0x70,0x9f,0x51,0xa3,0xfd,0xe8,0x66,0x32,0xa4,0x97,0x1b,0x66,0xe7,0x6a,0xd5,0xeb, + 0x62,0xa3,0x50,0xf7,0xa0,0x00,0x41,0x86,0x5a,0xbc,0x38,0x59,0x2a,0x87,0x17,0x27,0x57,0x0c,0xde,0x56, + 0x1e,0xde,0xd5,0x1b,0xe6,0x1a,0x04,0x7a,0xf6,0x2d,0x7e,0xb8,0xbf,0x94,0xc1,0x73,0x68,0xf8,0x47,0x69, + 0xfe,0x09,0xe4,0x95,0xe7,0x5e,0xa3,0x29,0xe0,0xd6,0xfe,0x14,0x30,0x20,0x80,0x3b,0x1a,0x99,0x6a,0x57, + 0x84,0x01,0x1b,0x97,0x82,0xa5,0xa6,0x65,0x5a,0x81,0xad,0x4e,0x4b,0x60,0x0d,0xea,0x32,0xd1,0xb8,0x29, + 0xd3,0x2f,0x62,0xd5,0x07,0xf7,0xf9,0xcc,0x15,0x8c,0x71,0x15,0x56,0x9d,0xd2,0x6e,0x6f,0xbe,0x0d,0xfc, + 0xd7,0x9c,0xa1,0x99,0x4e,0xf9,0x69,0xdc,0xb2,0x8d,0xe5,0x9c,0x87,0xe3,0xae,0x76,0x50,0xaf,0x0f,0xe4, + 0x4a,0x84,0xe4,0x56,0x34,0x16,0x87,0x14,0x2f,0xdd,0x2b,0xa2,0x02,0x91,0x20,0x17,0xd1,0xff,0x0e,0x61, + 0x89,0xc7,0x5f,0x40,0x4d,0x7f,0x52,0xe1,0x08,0x55,0x71,0xc2,0x4a,0xfb,0x6c,0x35,0xbb,0x03,0x21,0xeb, + 0xea,0x5f,0x6f,0x33,0xe9,0x61,0x13,0x1c,0xb7,0xe4,0x5a,0x81,0x63,0x28,0x06,0xd5,0x46,0xc0,0x7d,0x0a, + 0xd3,0x05,0xcf,0xc6,0x06,0xd4,0x15,0x9a,0x5d,0xe4,0xb9,0x5b,0x9c,0x5a,0xb3,0xf6,0xab,0x31,0xd3,0xef, + 0x86,0x38,0xb6,0x4f,0xa3,0xa2,0x86,0x2c,0xa8,0xe3,0xa5,0x50,0x2c,0x85,0xdf,0x8e,0x5a,0x0e,0x0f,0x61, + 0x9f,0x6a,0x36,0xf4,0xdb,0x51,0x9f,0x13,0x43,0x94,0xc2,0x3a,0xb6,0x77,0x30,0xcc,0xfa,0x21,0x35,0x5c, + 0x56,0x50,0x39,0x21,0x88,0x9a,0x42,0xdc,0x17,0xc8,0xfa,0xdc,0xc1,0xa8,0x11,0xdd,0xc5,0xb5,0xa1,0xfb, + 0xeb,0xfa,0x01,0x2a,0x8e,0x85,0x82,0x4d,0x80,0x36,0x82,0xd8,0x2c,0xfd,0x41,0x73,0xf6,0x26,0x10,0x9e, + 0x6e,0x5d,0x89,0x59,0x22,0x77,0x25,0x2e,0xa0,0xbd,0xbd,0x3f,0xf8,0x42,0x61,0xe0,0xdc,0xba,0xf3,0xe1, + 0xfb,0xbe,0x19,0xb1,0x5c,0x0d,0xfb,0x4c,0xbb,0x97,0x31,0xd2,0x59,0xf8,0x66,0xd3,0xe5,0x05,0x96,0xb4, + 0xb0,0x7c,0xc3,0x9e,0xdb,0x04,0x5b,0x39,0xb0,0x24,0x09,0x25,0x33,0xf0,0x4c,0x93,0xc2,0x9c,0xb8,0xac, + 0x74,0x7e,0x69,0x82,0x3b,0x18,0x45,0x14,0x84,0x36,0x8a,0x02,0xdb,0x78,0x50,0xf4,0x40,0x7f,0x1d,0xdd, + 0xdb,0x32,0x53,0xab,0xd3,0xc0,0x7d,0x8e,0x13,0x2c,0xd7,0x5e,0x7f,0x68,0x1a,0x64,0x00,0x60,0xa3,0x3b, + 0xd7,0xe8,0x91,0x11,0x71,0x36,0xa5,0x7e,0xd0,0x49,0xcd,0x78,0xf8,0xc3,0xfa,0xe6,0x92,0x15,0x46,0xcc, + 0xf7,0x3f,0x70,0x4b,0xb1,0x74,0x87,0xe5,0x7b,0x2f,0xb5,0xfa,0x51,0x0b,0xa1,0xe2,0xed,0x1d,0x5a,0xd2, + 0x81,0x28,0x8c,0xf2,0x43,0xf0,0x0f,0x4a,0x16,0x26,0x94,0x12,0x86,0x76,0xba,0x1d,0x98,0xe9,0xcc,0x7a, + 0xc1,0x37,0x27,0x2c,0x56,0xa0,0x32,0x27,0xda,0x53,0x98,0xa1,0x6c,0xe1,0x97,0x9d,0x6a,0x3d,0x6d,0xad, + 0x1e,0x5f,0xe2,0x57,0x6d,0xd4,0x6f,0x76,0x8a,0xc2,0x7a,0x0e,0xa5,0xc5,0xf6,0x8c,0xb9,0x9c,0xec,0x0d, + 0xfc,0x6c,0xf1,0xce,0x68,0xea,0xa8,0x4f,0x85,0x47,0x62,0x43,0x1d,0xb0,0x6f,0xcd,0xdc,0xbc,0xd4,0x4c, + 0xd6,0xb5,0x5d,0x69,0xff,0x1c,0x7e,0x9c,0xcf,0x3b,0x5f,0xbf,0x69,0x01,0xeb,0x97,0x4e,0x5a,0xe5,0xd5, + 0xf6,0x23,0x67,0x4d,0xd7,0xaf,0xef,0x32,0x36,0x04,0x5a,0x89,0x33,0x67,0x5a,0xa8,0x42,0x36,0xf2,0xf7, + 0x6e,0x3b,0xbe,0x84,0xa7,0x9a,0x15,0x1f,0x1d,0xc6,0x85,0xbf,0xd5,0xea,0x67,0xad,0xbe,0x01,0x46,0xa5, + 0x5e,0xda,0x7d,0xc8,0x3b,0xa0,0x29,0x3a,0xcb,0xaf,0x43,0xde,0x85,0x13,0x98,0x53,0xb6,0x46,0x05,0x04, + 0x04,0xbd,0xeb,0xa0,0xe5,0xc2,0x01,0xc5,0xb1,0x55,0xeb,0x35,0x5a,0x7a,0xf1,0x38,0x16,0x4d,0x29,0xcb, + 0x44,0xf1,0xee,0x93,0xb7,0x15,0x5a,0x2b,0xcf,0x3d,0xb0,0x1c,0xe5,0x73,0x31,0x2a,0x7d,0x15,0xb0,0x60, + 0xb8,0x31,0x6b,0x35,0x65,0xd5,0x46,0xb6,0x72,0x5a,0x45,0xfc,0x76,0xeb,0x56,0x2d,0x2e,0x0d,0x7b,0x74, + 0xdf,0xb4,0x78,0x3c,0xe3,0xb6,0x04,0x8e,0x86,0xd2,0x3d,0x8c,0x40,0x34,0xf8,0x68,0xb8,0x2f,0x6c,0x82, + 0x9f,0xa1,0xfb,0x81,0xef,0xdc,0x70,0x6d,0x02,0xc6,0xc8,0x20,0x32,0x2c,0xcc,0xee,0xd0,0x0e,0xcd,0xd0, + 0xc0,0x2e,0xf5,0xbd,0xeb,0x74,0xef,0xf0,0xef,0x75,0xaf,0xdc,0xd5,0xbd,0xd0,0x9d,0x6f,0xd8,0xc1,0xcc, + 0x74,0x90,0x6d,0xe2,0x2c,0x6d,0x64,0x41,0x39,0xbc,0x80,0x10,0x69,0xb0,0x3f,0x14,0x33,0x34,0xb1,0x53, + 0x0e,0xc4,0xa7,0x84,0x62,0x79,0x03,0xe4,0xc7,0x39,0x8b,0x50,0x5f,0x12,0x0a,0x82,0xe8,0x49,0x8d,0x55, + 0xa5,0xaf,0xc0,0xe7,0x3d,0xbf,0xca,0x6a,0xb8,0xbb,0x65,0xbf,0x9a,0x7c,0x59,0xe9,0x6b,0xf8,0xf3,0x67, + 0x06,0xc9,0x70,0x9f,0xee,0x19,0x36,0x67,0x63,0x04,0x9e,0x3d,0x53,0x4d,0xf9,0xef,0x8a,0x75,0x2a,0x17, + 0x05,0xd6,0x7f,0xce,0x7f,0x97,0x18,0x3e,0xe3,0xba,0xb0,0x07,0xbc,0x2a,0x52,0x78,0xab,0x1e,0x15,0xe5, + 0x2d,0xfb,0x02,0xdd,0xdb,0x1b,0xfc,0x6c,0x70,0xcd,0x22,0x35,0xfe,0x31,0x03,0x2f,0xc2,0xe3,0xeb,0xfe, + 0xb0,0x09,0xd7,0x05,0x6a,0x20,0x4a,0x98,0xf6,0xf8,0x57,0x1d,0x53,0x1e,0xee,0x71,0x34,0xe4,0x1f,0xb8, + 0x83,0x27,0x02,0xf9,0x7d,0x93,0x5d,0x2f,0x69,0x2d,0xaf,0x8a,0x1e,0xb1,0x9c,0xd4,0x05,0x57,0xf1,0x81, + 0x0e,0xa9,0xd3,0x72,0x53,0x9a,0xd7,0x91,0x3a,0x8f,0xb6,0x78,0x4c,0x04,0xf8,0x8b,0x11,0x5c,0x7b,0x45, + 0xfd,0x5e,0xf1,0x09,0x3a,0xce,0x0e,0x34,0xfd,0x01,0x5b,0x84,0x87,0xbf,0x2c,0x1e,0xd7,0x6e,0xde,0x97, + 0xec,0x5f,0xa5,0x49,0xeb,0xe2,0x74,0x49,0xcb,0x3d,0x12,0xff,0xce,0x1c,0xf6,0x88,0x9f,0x22,0xf8,0x41, + 0x40,0x1d,0x34,0x99,0xec,0x54,0x86,0x57,0x65,0x54,0xad,0x0a,0xb7,0xe0,0x53,0xef,0xad,0xad,0x4a,0x6b, + 0xf7,0x42,0x55,0xa7,0xae,0x1d,0x64,0x72,0x5c,0x25,0xb7,0x2c,0xb2,0x26,0x7f,0x13,0x43,0x62,0x1f,0x8d, + 0xe1,0x96,0x56,0x38,0x4c,0xd8,0x63,0x60,0x15,0xe1,0xd6,0xed,0x63,0xa3,0x9a,0x0a,0x18,0xc8,0x68,0xd8, + 0xc2,0x04,0x30,0x9d,0xcd,0x44,0x6e,0xae,0xc1,0x01,0x66,0xcf,0x10,0xba,0x4a,0xd9,0xde,0x2b,0x64,0x01, + 0xc3,0x13,0x7b,0x47,0xf0,0x24,0x1c,0x61,0xeb,0x12,0x1b,0x88,0x3f,0xa1,0xcc,0x19,0x6d,0xcb,0xb7,0x23, + 0xeb,0x7e,0x9a,0x32,0x35,0x23,0xd9,0xa2,0xf3,0x05,0xbc,0x98,0xc9,0xde,0xbc,0xc4,0xa6,0xbb,0x2b,0x7a, + 0x1c,0x3d,0x5a,0x77,0x61,0x88,0xb1,0x58,0xca,0x39,0xb7,0x5d,0x12,0x5d,0x11,0x9f,0x60,0x3d,0x70,0x72, + 0x72,0x35,0x89,0x8c,0x6b,0x31,0xbd,0x4c,0x07,0x83,0x8a,0x1f,0x44,0xc8,0x09,0xaf,0xbf,0x9c,0x84,0x07, + 0x23,0x41,0xce,0xfe,0xbc,0xe3,0x24,0x3c,0x18,0x59,0x2b,0x5d,0x96,0x9c,0x84,0x07,0x49,0x92,0x85,0x4f, + 0x2b,0xf3,0x60,0x7c,0x7d,0x71,0x0b,0xbe,0x62,0x5f,0x5f,0x50,0x8d,0xf1,0xa5,0x38,0xbd,0xb0,0x02,0xec, + 0x7c,0x96,0xee,0xef,0x5f,0x9a,0x17,0xbf,0x70,0x52,0x61,0x5e,0x35,0x77,0xbe,0x1e,0xe7,0x22,0x0d,0xda, + 0x37,0xc6,0x65,0xa5,0xbe,0x7d,0x16,0xbe,0xd3,0xc7,0x57,0xb3,0xda,0x98,0x79,0x85,0x59,0xba,0xa9,0xfa, + 0x13,0x21,0x97,0x75,0x4d,0x33,0x8c,0x80,0x7e,0xbd,0x3e,0x5d,0x38,0x1f,0x61,0xb9,0x0d,0x8d,0x45,0x27, + 0x51,0xf8,0x1a,0x6e,0x23,0x00,0xde,0x3f,0x8c,0x37,0xdb,0xd8,0xef,0x2a,0x13,0x4e,0x64,0x34,0xdc,0x8e, + 0x75,0xd1,0x7c,0x46,0x17,0x63,0xbf,0xed,0x51,0x63,0xdc,0xa4,0x46,0xed,0xc2,0xab,0x5b,0x88,0xd3,0x82, + 0xa0,0x3b,0x56,0x3f,0xc9,0x74,0xee,0x24,0x36,0x5f,0x8d,0x67,0x39,0x3b,0x7d,0x4e,0xcb,0xd4,0xe4,0x25, + 0x08,0x32,0xbe,0x0b,0xc3,0x4b,0x74,0x3c,0x4f,0x32,0x38,0x19,0x5f,0x89,0xa2,0x9d,0x75,0x0d,0x69,0xf6, + 0x20,0x1b,0xfe,0x1a,0x2f,0xaa,0xd2,0xac,0x0d,0x10,0x11,0xda,0xfb,0xf1,0x48,0xec,0x7e,0x70,0xe6,0xab, + 0xc6,0x0a,0xf0,0x1f,0x52,0x0e,0x3a,0x91,0x0f,0xcc,0xbe,0x7d,0x30,0xfc,0xc7,0x7e,0x67,0x75,0xf6,0xff, + 0x31,0xfc,0x87,0xb7,0x48,0x76,0xdb,0x4c,0xf0,0x69,0x81,0xe9,0x66,0x47,0xc1,0xf8,0x63,0xb5,0xc4,0x6e, + 0x88,0x02,0xdd,0x14,0xd5,0x1a,0xa1,0x38,0x8a,0xed,0x8b,0x3a,0x09,0x6b,0xbb,0xf6,0x76,0x61,0xbb,0x3b, + 0x04,0x2b,0x8d,0x3a,0xe9,0xb0,0xbf,0xb3,0x0b,0x60,0xf6,0x9f,0xf3,0xf1,0x1a,0x6c,0x42,0x57,0xbe,0x31, + 0xce,0x72,0x65,0x1e,0xe3,0x4e,0x97,0x82,0x7e,0x87,0x93,0x6f,0x37,0x88,0x99,0x63,0x6c,0x7a,0xbb,0x49, + 0x1a,0x07,0xa3,0xb4,0xff,0x08,0x3d,0xb4,0xbe,0xfe,0xd3,0xb8,0xa0,0xa0,0xe9,0x9d,0xef,0x1a,0x2f,0xb9, + 0x81,0xaa,0x9b,0x74,0x77,0x1c,0x9e,0x9f,0x76,0x4d,0x5b,0xe7,0xa8,0x93,0x60,0x6d,0x26,0x95,0xaf,0xb0, + 0x0e,0xce,0x6a,0x38,0x51,0xed,0x53,0x5b,0xb4,0x27,0xd1,0x42,0xff,0xce,0x0c,0x09,0x18,0xdd,0x72,0x52, + 0xcc,0x5b,0x3a,0x00,0x13,0x03,0xb3,0xb3,0x01,0x67,0x24,0x9d,0x6f,0xa0,0x5e,0xc9,0x99,0x98,0x56,0x0a, + 0xc6,0xc6,0x97,0x16,0xef,0x55,0xb9,0xbe,0xc0,0x05,0x2f,0xc2,0x13,0xea,0x6e,0xa8,0x83,0xa3,0x71,0xf1, + 0xd5,0x12,0xd6,0xbe,0xc0,0x7b,0xa8,0x92,0xaf,0xb8,0xa6,0x18,0x06,0x94,0xb8,0xd4,0x4c,0x40,0x9d,0xfd, + 0x23,0x05,0xb2,0x53,0x30,0xc8,0xba,0xb0,0x7b,0x63,0xbc,0x00,0x7f,0x76,0xc1,0xf7,0x31,0x5d,0x9a,0x37, + 0x1c,0xd9,0xc6,0xfa,0x2c,0x6e,0x0d,0x98,0xfa,0x1d,0x8e,0x16,0x88,0xa6,0x07,0x8e,0x2d,0x07,0xc6,0x7c, + 0x8a,0x19,0x13,0x1d,0x18,0x7f,0xd2,0x7c,0xe6,0xd7,0x6b,0xb1,0x43,0x75,0xc7,0xa5,0xb5,0x5d,0x84,0x6b, + 0x6c,0x6b,0x6d,0xb9,0x9f,0x94,0x73,0x5a,0x99,0x83,0x36,0xbd,0x08,0x34,0x14,0x6f,0xae,0x55,0xa3,0xb6, + 0x8c,0x79,0xed,0xa7,0x7f,0x58,0xee,0xf2,0xdf,0x3a,0xce,0x3c,0x33,0xbb,0x9b,0xd8,0x74,0xe6,0x43,0xa3, + 0x8f,0x7d,0x5b,0x20,0x00,0x70,0x3c,0x13,0xe1,0xad,0x01,0x87,0xbb,0xad,0x5a,0xb6,0x7d,0x49,0xff,0xd5, + 0x19,0x0b,0x0f,0x97,0xf3,0x1f,0xd7,0xa9,0xb5,0xa1,0x9d,0x4f,0x38,0xe0,0x67,0x17,0xcc,0x0c,0x0e,0x38, + 0xc2,0x53,0x4d,0xb4,0x6c,0x20,0xa0,0xbd,0x8b,0xdc,0x47,0x7b,0x77,0x8b,0xe6,0xe7,0xf8,0x7f,0xab,0x73, + 0x9d,0xd3,0x3d,0x6e,0x5d,0xa6,0x47,0x1b,0xf1,0x1b,0x77,0x41,0x38,0xd5,0x5f,0xbb,0x77,0x3c,0x61,0x9f, + 0x8b,0x27,0x81,0x6b,0xa5,0x27,0x8e,0x91,0x7f,0x51,0x7c,0xc6,0x3b,0x31,0x9d,0x1d,0xa8,0xf6,0x28,0xca, + 0x54,0xeb,0x6d,0x3f,0xa7,0xf2,0x39,0x6d,0x76,0xea,0x87,0x11,0x96,0x73,0x11,0x2a,0x87,0x1e,0x17,0x46, + 0x39,0xd0,0x4e,0x0c,0xf4,0xf3,0xed,0x01,0xb6,0xf4,0xc3,0x58,0x0b,0x63,0x7c,0x97,0x0c,0x66,0x5b,0xb7, + 0x41,0x94,0xd9,0x9d,0x92,0x05,0xd0,0xcc,0xb2,0x57,0xcf,0x02,0xcd,0x39,0x6a,0x73,0x6f,0xcf,0xa8,0x69, + 0x88,0x94,0xc9,0x35,0x96,0xc7,0xf7,0xa5,0xb3,0x73,0x12,0x39,0xc6,0xdb,0x46,0x94,0x38,0xc1,0x71,0x83, + 0x1f,0x46,0x38,0xe8,0x8e,0x95,0xb8,0xf8,0x59,0xaf,0x79,0x32,0x87,0xd2,0x36,0x0c,0x58,0xbc,0xb2,0x68, + 0x26,0x7a,0x52,0xe0,0x38,0x19,0xff,0x2a,0xcc,0x1b,0x32,0x8c,0x7f,0x78,0x10,0x12,0xcf,0x5c,0xdd,0xa1, + 0x6e,0x69,0x7a,0xf4,0xc5,0x44,0xea,0xf3,0xa1,0x46,0xe9,0x93,0x93,0xe4,0xbd,0xf5,0x6c,0x22,0xad,0x99, + 0x46,0xd0,0x1e,0x04,0x64,0x93,0x3e,0xe8,0xe9,0xda,0x63,0x1b,0xb3,0x05,0x5c,0x2f,0x12,0xcd,0x09,0xbd, + 0x91,0x5e,0x3c,0xaa,0xdd,0x5d,0xe7,0x1a,0xc5,0x11,0x1f,0x3d,0x88,0x43,0xe8,0x00,0x04,0x8e,0x74,0xa8, + 0xee,0x28,0x1e,0xc6,0xea,0x7e,0xd3,0x71,0x4e,0xc2,0xb2,0x9c,0x84,0xe5,0x72,0x31,0x47,0xca,0x81,0xe1, + 0x4e,0xcb,0x28,0xd1,0x7a,0x31,0xac,0xb6,0x76,0x03,0xad,0x7b,0xa8,0xd9,0x63,0x46,0xee,0xcd,0x37,0x84, + 0x22,0x28,0xdd,0x6d,0x0b,0x1f,0xb8,0xe5,0xd9,0xf8,0x10,0xa6,0x10,0x4f,0xb0,0xae,0xd4,0xe2,0x9f,0x11, + 0xfe,0x9a,0x45,0x45,0x37,0x79,0x4d,0xe1,0x5e,0x54,0x48,0x8e,0x06,0x91,0xec,0x22,0x3b,0x3d,0xb4,0xd7, + 0x58,0x7f,0xd7,0xf9,0x53,0xdb,0xb5,0x6d,0xcf,0x6d,0x86,0x9f,0xec,0xde,0xef,0x37,0xb1,0x84,0x93,0x5b, + 0xaf,0x6d,0x1c,0x68,0x37,0x43,0xad,0xb9,0x84,0x21,0x60,0xcf,0x8a,0xe4,0x93,0x3c,0xc9,0x71,0x90,0x31, + 0x14,0xb6,0xc1,0x43,0xec,0x4b,0xc2,0x8d,0xef,0xd0,0x0b,0x3a,0x20,0x27,0xea,0x44,0x9d,0xb3,0x7d,0x87, + 0xd9,0xb4,0xb7,0xf8,0x00,0x55,0xaf,0x8d,0x6c,0x12,0xdb,0x3b,0x0c,0x85,0x4f,0x27,0x5c,0x06,0xf2,0xc3, + 0x40,0xfc,0xe1,0xb5,0x47,0xf5,0x19,0x77,0x5d,0x5b,0xdc,0xb6,0xaa,0xeb,0x7f,0xac,0x65,0x1a,0xfa,0x89, + 0xe3,0x4e,0x29,0x98,0x86,0x1a,0x19,0x9a,0x4d,0xb1,0x5d,0xe3,0x5e,0x08,0x7a,0x73,0x4e,0xf0,0x0e,0x48, + 0x02,0xec,0xa0,0x3c,0x34,0xbb,0xed,0x88,0x25,0xd9,0x51,0x70,0x9f,0xdb,0xb0,0x62,0x12,0x19,0x78,0x57, + 0x4d,0x9e,0x42,0xaf,0x20,0xf9,0x08,0xbd,0x04,0x0b,0xdf,0x4e,0xe2,0xc4,0x7e,0xe7,0xbf,0x13,0x68,0xb0, + 0xc1,0x79,0x6f,0x41,0x1b,0x9a,0xd6,0x2c,0x28,0x83,0xcf,0x31,0x01,0x56,0x53,0x92,0xff,0xd2,0x2c,0xef, + 0x8e,0x2b,0xaf,0xdb,0x90,0xf0,0x69,0xe8,0x14,0xa7,0x83,0xa0,0x9b,0xeb,0x6f,0x6b,0xc3,0x10,0x79,0xde, + 0x9b,0xce,0x56,0x3d,0xe0,0x82,0x39,0xdf,0xe7,0x7c,0x5d,0x62,0x01,0xed,0x35,0x1b,0xc6,0x21,0x40,0xba, + 0xf3,0x9c,0xaa,0xe5,0xc2,0x0d,0x78,0x3b,0x1f,0x77,0xf4,0xac,0x7d,0xb6,0xbd,0xb3,0xcb,0xa0,0xe8,0xa7, + 0x6d,0x3d,0xd6,0x85,0x30,0x4f,0x45,0xfc,0x53,0x8c,0x8c,0x67,0x84,0x58,0x6d,0x7b,0x29,0x63,0x93,0x17, + 0x36,0xfc,0x86,0xea,0xd8,0xad,0x38,0xe3,0x91,0x6d,0x80,0x49,0x79,0x0f,0xb2,0xca,0x5b,0x49,0xb4,0x80, + 0x97,0xbd,0x38,0x98,0x7d,0x57,0xaf,0x68,0xca,0xed,0xb1,0x43,0x3e,0x93,0xc2,0xd8,0x21,0xfb,0xd5,0xe2, + 0x77,0xcb,0xc1,0xbd,0x6f,0xbf,0xa7,0xd6,0xa3,0x57,0xbf,0x4e,0x99,0x95,0x56,0x70,0x70,0x49,0x9d,0x2d, + 0xf4,0xcc,0x6a,0x51,0xb6,0x4e,0x2c,0xec,0x55,0xcb,0x33,0xa8,0x40,0xd2,0x0f,0xb8,0xf9,0x16,0x8e,0x29, + 0xcd,0x07,0x93,0xf7,0xba,0x77,0xc2,0x09,0x39,0x0e,0x7c,0x27,0x36,0x86,0xed,0x6d,0x1d,0xca,0xd3,0x3c, + 0x45,0xc1,0xf8,0xe0,0x76,0xae,0x50,0x9d,0x4c,0xc6,0xb1,0x02,0x8b,0x45,0xbd,0x08,0xe5,0x54,0x73,0x2a, + 0xdd,0xcd,0xb1,0xb3,0x4f,0x0e,0x34,0xe2,0x3f,0x78,0x57,0xe5,0xe7,0x50,0xcf,0x8d,0xc2,0x98,0x9c,0xcf, + 0xcd,0x25,0x3d,0x25,0x32,0xfe,0xd0,0xdc,0xce,0x47,0x63,0xdb,0x6c,0x1b,0x09,0x48,0x1b,0x80,0x69,0xcb, + 0x02,0xc4,0x9e,0x00,0x73,0x85,0x4a,0xf2,0x05,0x7c,0x7e,0xcc,0xa1,0x91,0x23,0xf3,0xc4,0x80,0x1c,0x3a, + 0x61,0x70,0x9e,0xe8,0x9c,0xcb,0x55,0xd6,0xfb,0x5c,0x63,0xc4,0xa6,0x45,0x4b,0x8c,0xda,0xb5,0x7f,0xda, + 0xea,0xb7,0xb5,0xe9,0xcc,0x3c,0x06,0xd7,0x85,0xac,0xa1,0x23,0xe6,0x30,0x7e,0x79,0x9a,0xa9,0x8c,0x87, + 0xa9,0xf7,0xf7,0xe9,0x29,0x9c,0x66,0xb7,0xd2,0xf0,0x50,0x27,0x3b,0x84,0xb6,0x70,0xd6,0xd6,0x77,0x68, + 0x4b,0x8c,0x3a,0xbb,0xb1,0xff,0xe6,0xc6,0xb5,0x12,0xf8,0xf6,0x77,0x58,0x03,0x54,0x7b,0xb3,0x38,0x68, + 0xa0,0xef,0x3a,0xd9,0x6e,0xc3,0xe6,0xea,0x36,0x73,0xdb,0x6e,0xa6,0x30,0xae,0x8b,0xa5,0x09,0xb3,0x90, + 0x85,0x79,0xa0,0x14,0x76,0x64,0x48,0x09,0xfc,0x4b,0xef,0x44,0x33,0xd0,0x1b,0xfd,0xdd,0xe5,0x65,0x35, + 0x83,0x2d,0x14,0x47,0x3c,0x85,0x22,0x11,0xfc,0xe8,0xb5,0xba,0x64,0x36,0x21,0xbc,0x96,0xba,0xe9,0x73, + 0x07,0xcc,0x4d,0x6d,0xd6,0xde,0xc9,0x44,0xb0,0x64,0xed,0x43,0x95,0xb2,0xc9,0x4f,0xe6,0x1d,0x7c,0xb2, + 0x82,0x0a,0x2d,0x5a,0xe8,0x52,0xba,0x15,0x89,0x91,0x79,0x68,0xd8,0x6b,0x1d,0x51,0x3c,0x8b,0xd5,0x82, + 0x3d,0xfe,0x7b,0x9b,0x5b,0xba,0x65,0x40,0x18,0xda,0x0e,0x7e,0x75,0x70,0x94,0xf4,0xd8,0xbd,0x84,0xd1, + 0x65,0x3b,0xb9,0x07,0x83,0x79,0x64,0x02,0xe3,0x82,0x85,0x14,0x4a,0x76,0x9e,0x75,0xb0,0x02,0xbe,0x57, + 0x18,0x9c,0x00,0xa9,0x91,0x53,0xc3,0x12,0xd9,0xb6,0xef,0xd8,0xb6,0xdb,0x4d,0xe8,0xb9,0x58,0xbd,0x95, + 0x13,0xec,0xfc,0x2d,0xb9,0x14,0x3b,0x91,0xd7,0x2c,0xe2,0x7c,0x05,0x21,0x7f,0x2e,0xc2,0xc8,0x60,0xde, + 0x5e,0x75,0x4c,0x1d,0x8c,0x7b,0xc8,0x41,0xc9,0xbe,0xc7,0x4b,0x0e,0x3b,0x43,0xf0,0x0b,0xbf,0xeb,0x75, + 0xd9,0xa3,0x96,0xef,0x55,0x4d,0xc5,0xdd,0x09,0xb3,0x88,0xef,0x58,0xa9,0xaf,0xad,0x97,0x11,0x7a,0xcb, + 0xe6,0x53,0xdb,0xc7,0xab,0xa1,0x23,0x0d,0x4d,0xd7,0x15,0x1d,0xc6,0xf7,0x05,0x9d,0x46,0x6d,0x3c,0xcc, + 0x31,0xdf,0x90,0x03,0x04,0x04,0xda,0xf9,0x93,0xcf,0x13,0x06,0x5d,0xa7,0xc5,0xe1,0x91,0xf7,0x7b,0x09, + 0xda,0x4b,0xa1,0xfe,0xf8,0xb8,0xb0,0x0a,0xe2,0x56,0x53,0x1c,0xc6,0xb6,0xa1,0x82,0x79,0x65,0xd4,0xb2, + 0xaa,0x6d,0x1d,0xfa,0x40,0x5f,0x39,0x2d,0x5b,0xba,0xcb,0x5b,0x0a,0xd4,0x65,0xa0,0xce,0x5c,0x6c,0xe9, + 0x9e,0x97,0x4e,0x56,0x8b,0x8f,0xae,0x9d,0x0f,0xb4,0x1a,0xbc,0x26,0x4a,0x1b,0x95,0xa0,0xd0,0xd0,0x40, + 0xef,0x36,0x34,0xd0,0x5b,0x86,0x06,0x16,0xbf,0xf6,0xd3,0x45,0xf0,0x8e,0xee,0x49,0x1d,0x4e,0x13,0xad, + 0x29,0x13,0x55,0x1a,0x18,0x42,0x68,0xc8,0x98,0x6a,0x24,0xd4,0x7a,0x31,0xa7,0xa7,0xcf,0x11,0x12,0xaa, + 0x70,0xf3,0x68,0x35,0x62,0xb5,0x57,0xed,0x11,0xf1,0x5f,0xa0,0x65,0x6c,0xbf,0xb0,0xb8,0xd2,0xfa,0x52, + 0x04,0x48,0xb2,0x2f,0x45,0x20,0xba,0xb2,0xb1,0xa8,0x1c,0x29,0x07,0xae,0xd3,0xe8,0x61,0x55,0x96,0xf0, + 0x43,0x55,0xc8,0x53,0x02,0x0b,0x31,0x57,0x86,0xb9,0xc9,0xf4,0x41,0xcf,0x99,0x3c,0x0c,0x18,0xed,0x46, + 0xb4,0xe1,0x45,0x0c,0x36,0x61,0x5b,0x98,0xd8,0xb4,0x94,0xc4,0xcd,0xbb,0xa3,0xfc,0x5d,0x4a,0x9b,0x21, + 0x00,0x62,0xbd,0xeb,0x04,0x17,0x26,0x6c,0x10,0x0d,0xf5,0xd3,0x00,0x1d,0xc1,0x97,0x75,0xf0,0xa7,0xd3, + 0xcf,0xe9,0xec,0x13,0x06,0x20,0x22,0xdd,0xb8,0xaf,0x35,0x31,0x8b,0xb0,0x23,0x0b,0x6d,0x5e,0x5d,0xa8, + 0xab,0xce,0xe2,0x39,0x5b,0x8a,0xf6,0x29,0x41,0x34,0x11,0xac,0x91,0x51,0xb1,0x1c,0x87,0xea,0xff,0xba, + 0xbb,0x9b,0xd9,0x1a,0xad,0x6d,0x99,0x05,0x13,0x8a,0xd0,0xee,0xc9,0x09,0x42,0xbc,0xdd,0x93,0x57,0x2e, + 0x82,0x8e,0x1f,0x2f,0x62,0x68,0x55,0xfe,0x77,0xcb,0x1e,0x1a,0xd7,0xfa,0xb9,0x74,0x98,0xe9,0x5a,0xf6, + 0xe2,0x3f,0x14,0xdb,0x8e,0x21,0xee,0xad,0xdc,0x9b,0x76,0xf0,0xe4,0x80,0x94,0x33,0x99,0xdc,0x29,0x1d, + 0x2a,0xbd,0x35,0xdd,0x61,0x01,0x9e,0xef,0x0c,0xdd,0x69,0x07,0x5c,0xed,0x93,0x4c,0xc1,0xdb,0x8e,0x5f, + 0x44,0x63,0xb3,0x47,0xe8,0x1f,0xf0,0x37,0xe1,0x46,0xa8,0x8e,0xa3,0x91,0xed,0xeb,0x97,0xee,0x82,0x87, + 0xe2,0x65,0xdf,0xc6,0xb5,0x55,0xc2,0x5b,0x90,0x9e,0x1c,0x17,0xbb,0x5c,0x2e,0x87,0xa4,0x32,0x5c,0xe5, + 0x8c,0x8d,0x68,0xd9,0x7a,0xce,0xf9,0xac,0xef,0x7d,0x80,0x8c,0x70,0xa8,0x36,0x98,0x2c,0x00,0x84,0x77, + 0x75,0xba,0x00,0x71,0x61,0x6d,0x93,0xc2,0x74,0xd0,0x72,0x1f,0x7a,0x85,0x75,0x5b,0x71,0x15,0x3d,0xfb, + 0x49,0x48,0xec,0x0d,0xa2,0x3a,0x7f,0x36,0x17,0xc3,0xdb,0xcd,0xae,0x28,0x8e,0x2d,0x7c,0xeb,0xa1,0x10, + 0xf4,0x7a,0x27,0xa1,0xd6,0xca,0xec,0x90,0xb3,0x56,0x7c,0xbe,0x87,0xa0,0xf8,0x3e,0x34,0xed,0x34,0x71, + 0x48,0x93,0x3e,0xef,0x24,0xf7,0xf9,0x9e,0x77,0xe6,0x00,0xb8,0xf4,0xac,0xb9,0xb3,0x19,0xd0,0xa7,0xc2, + 0xf9,0x7a,0x1d,0x7b,0x65,0x34,0x11,0xea,0x1d,0x9a,0xfb,0xc7,0xd0,0xf5,0x2e,0x1f,0xc0,0xeb,0x28,0xbf, + 0xbe,0xd6,0xb3,0x1c,0x41,0x98,0xc1,0x88,0xd1,0xd6,0x6d,0x6c,0x29,0xf4,0xdd,0xb6,0x27,0xd5,0x36,0x77, + 0xd7,0x95,0x0e,0xf9,0xbc,0xe5,0x16,0x93,0x77,0x9b,0x2a,0x2c,0x1d,0xb7,0x14,0xac,0x9b,0x5d,0x6b,0xfc, + 0xe8,0x7f,0x58,0x64,0xff,0x68,0xdc,0x9a,0x9b,0xb2,0x25,0x12,0xdd,0x9a,0x96,0x9d,0x2a,0x3b,0xa2,0x43, + 0xd0,0x74,0x75,0x08,0x2a,0x51,0xb3,0x01,0x8f,0xc4,0xd8,0xa7,0xc3,0xaa,0x47,0xe0,0x2c,0x7b,0xaf,0x68, + 0xbd,0x06,0xee,0x8c,0x0a,0xec,0x61,0x23,0xec,0x63,0x43,0x88,0x0e,0xf8,0xf5,0x21,0x6a,0xab,0x76,0xa0, + 0xc6,0x87,0xe5,0x2e,0x63,0x42,0x1e,0x43,0x4b,0x5b,0x27,0xd0,0xc2,0x51,0x4e,0x67,0x27,0x50,0xd8,0x71, + 0x26,0xdf,0xa3,0x39,0x62,0xda,0x14,0x46,0x67,0x08,0x5e,0x39,0xba,0x8d,0xce,0xe7,0xbb,0xdb,0xe4,0x90, + 0x43,0x1d,0x9f,0x38,0x4e,0x39,0xe9,0xb3,0xb7,0x4e,0xd1,0x3b,0xe7,0x9d,0x48,0x52,0xdb,0x0e,0x5e,0xcc, + 0xb0,0xd8,0x3b,0x80,0x37,0x62,0x94,0xd0,0xa6,0xf0,0xed,0x1d,0x4c,0xb9,0x74,0xce,0x3b,0x2e,0x6a,0x29, + 0x6b,0x86,0x19,0xe5,0xa2,0xf2,0x9e,0x8d,0x6a,0xef,0x33,0xa5,0x06,0xeb,0x8e,0x0a,0x46,0x79,0x9a,0x9d, + 0xd6,0x67,0xb1,0x84,0x0c,0x86,0x91,0x2b,0x87,0x5b,0xbf,0xcf,0xac,0xc8,0xa6,0x46,0x34,0x1b,0xf1,0x03, + 0xe6,0x3a,0xd5,0x9e,0x47,0x08,0xea,0x77,0xa0,0xa2,0x8c,0xbc,0xb4,0x3b,0x5e,0xc0,0x9b,0x8c,0xe5,0x23, + 0x7e,0x75,0x34,0x79,0xc8,0xa1,0x33,0xbc,0x1b,0x82,0xf4,0x61,0xe4,0x1d,0x4a,0x1e,0xc1,0x8f,0xca,0x3f, + 0xb8,0xbc,0x75,0x06,0xc9,0xc7,0x0c,0xc2,0x13,0x9c,0x24,0xf8,0x92,0xe4,0xc9,0xb1,0xbe,0x24,0x1f,0x67, + 0xd6,0x9f,0x24,0x10,0x7c,0x3a,0xd6,0x15,0xfd,0xf7,0xce,0x8e,0x75,0xcf,0xc9,0x6a,0xa1,0xd5,0x5d,0x79, + 0x5a,0x67,0x5b,0x30,0x55,0xfe,0x50,0x2f,0x38,0x16,0x98,0x20,0x03,0xf0,0x92,0x80,0xbb,0x64,0x6c,0x13, + 0xe0,0x9e,0x12,0x79,0xd2,0x72,0x02,0x9d,0x5b,0x36,0x21,0x3d,0x3f,0xe7,0xc8,0x0e,0x49,0x98,0x20,0x15, + 0x01,0xf4,0xe0,0xb6,0xca,0xa1,0xfe,0x21,0x87,0xe6,0xfc,0x66,0xa5,0xcf,0xcf,0xad,0x7d,0x10,0x72,0x31, + 0x8e,0x4a,0xbf,0xfe,0x1b,0x7f,0x30,0xba,0xa7,0x85,0x67,0xc4,0xdb,0x44,0x71,0x78,0x25,0xa9,0xde,0x80, + 0xd3,0x27,0xa1,0x7b,0x5c,0x63,0xdc,0x59,0xcb,0xc0,0x9c,0x69,0x4b,0xa2,0x64,0x31,0x3d,0xcb,0x3e,0x33, + 0xaf,0x41,0xe0,0xcf,0x0e,0x20,0x67,0xc4,0xad,0x3f,0xbc,0xa8,0x44,0xfa,0xd8,0x46,0xf2,0x68,0xe3,0x31, + 0xbf,0xb8,0x1d,0x27,0x3d,0xee,0xc7,0x07,0x0f,0x3d,0xbe,0x65,0x90,0x5b,0xf8,0x18,0xd1,0x7d,0xb2,0xa4, + 0x66,0x1b,0x43,0x86,0x80,0x49,0x7b,0xc4,0x56,0x35,0xa1,0x96,0x08,0x53,0x4a,0x76,0x80,0x1e,0x32,0x07, + 0x6a,0x60,0xa1,0x46,0x49,0xe8,0x2c,0x36,0x48,0x87,0x20,0x34,0x28,0x6b,0x38,0xdd,0x2e,0x04,0x53,0xfb, + 0xdd,0x86,0x83,0x3a,0x38,0xd8,0x42,0x87,0xe1,0xf4,0xc3,0xef,0x1b,0xbb,0xa0,0x4a,0x36,0x88,0x55,0x30, + 0xb3,0x56,0x6e,0x62,0xb5,0x4a,0xa0,0x84,0x1f,0x78,0xef,0x34,0xed,0xbd,0x63,0x70,0xe3,0x87,0xde,0xae, + 0xf7,0x61,0xcb,0xae,0x57,0xec,0x91,0x7a,0x4e,0x0a,0x5c,0x52,0x04,0x2c,0xa0,0xf6,0x72,0x5b,0xbf,0xc5, + 0x3d,0x11,0x7d,0xc5,0x39,0xb2,0x91,0xe6,0xb6,0x8e,0x9b,0xa1,0xbb,0xba,0x5b,0x44,0x05,0xd0,0xe3,0xa1, + 0x67,0x15,0x5a,0x3a,0x4d,0x4e,0x5f,0x48,0x72,0x96,0xe2,0xdf,0xa3,0xe3,0xba,0xa0,0xc7,0xe6,0x5a,0x1b, + 0x34,0x5b,0xb5,0x73,0x73,0xf0,0x0a,0x6b,0xf3,0xcc,0x12,0x98,0x1f,0x35,0xbc,0x4a,0xa4,0x56,0x75,0xa3, + 0xed,0x84,0x46,0x77,0x50,0x69,0x8b,0x15,0x14,0x8c,0x15,0x14,0x10,0xcb,0x48,0x76,0xac,0x06,0x20,0x20, + 0xd7,0xec,0xc4,0x33,0x46,0xfb,0x77,0xb3,0x83,0x69,0xb2,0xb7,0xd7,0x76,0x88,0x06,0xcd,0x4e,0x78,0xd8, + 0x54,0x1d,0x57,0xae,0x60,0x08,0xb2,0x4d,0x17,0xaf,0x84,0xf3,0x75,0x21,0x0b,0xc7,0x47,0xe3,0x1d,0x91, + 0x6b,0x26,0x68,0x83,0xc4,0x65,0x17,0x0f,0x9f,0x67,0xea,0x0d,0x21,0x82,0xdf,0x5a,0xbb,0xd7,0x44,0x5c, + 0x0a,0x0f,0x61,0x08,0x7b,0x90,0x2d,0x38,0xc8,0xb6,0x3d,0x24,0x90,0x7c,0x32,0xf2,0x96,0xdc,0xe7,0xc5, + 0x74,0xb1,0x9a,0xe9,0xe4,0x1d,0x8d,0xef,0x93,0x7b,0xbc,0xce,0x3e,0x25,0xb6,0x8d,0xb7,0xec,0x8c,0xec, + 0x6c,0xa3,0x0c,0x4e,0x9b,0x74,0x21,0x08,0x33,0x69,0xfa,0x49,0x35,0x7c,0xfe,0x28,0x92,0x45,0x67,0xd8, + 0xdb,0xae,0xc1,0x09,0x7d,0x59,0xf0,0xe2,0xaa,0x8b,0xc1,0x80,0x71,0x6f,0xaa,0xf1,0x55,0xd1,0x66,0x33, + 0x76,0xc7,0xdd,0xb8,0x7c,0x06,0x06,0x89,0x33,0x0b,0xe1,0x90,0x0f,0xcd,0xf0,0x42,0x2b,0x51,0x02,0xfd, + 0xcc,0x66,0xea,0xf3,0xbf,0xff,0x7b,0xc1,0xe4,0xbf,0xc4,0xbf,0x54,0xad,0x9a,0xcc,0xec,0xfc,0xcd,0x9a, + 0x06,0xad,0x9a,0x36,0x4a,0x36,0x4e,0x7f,0x8f,0xcd,0xe6,0xb5,0x4a,0xde,0x74,0x4c,0x58,0x2f,0x1b,0xe7, + 0x04,0xf4,0xc2,0x16,0x37,0x25,0x8c,0x6c,0x73,0xc2,0x02,0x1a,0xe3,0x8a,0xcc,0x0c,0xd6,0xba,0x36,0x33, + 0x3d,0x66,0x9e,0x32,0xed,0xb7,0x01,0xfc,0xc3,0x53,0xb7,0xe0,0x98,0x0b,0xc6,0x65,0xec,0xe2,0x86,0xde, + 0xf3,0xc0,0x69,0xae,0xe5,0x27,0x07,0x53,0x6f,0xb4,0x59,0x98,0xff,0x36,0x4d,0x45,0x81,0x84,0xc3,0xc3, + 0xd2,0x3d,0xc8,0xac,0x44,0x36,0xd2,0x29,0xd8,0x7f,0xe5,0x30,0x49,0x86,0xfb,0xfc,0x08,0x6b,0x9d,0x84, + 0xb3,0x8d,0xb3,0xd3,0xe9,0xd9,0xa4,0xd7,0xb4,0x1d,0x5f,0x7a,0xac,0xdb,0xef,0x22,0x38,0x1d,0x56,0xce, + 0x8f,0x30,0x9c,0xbd,0xc2,0x3b,0xa3,0xf6,0x49,0xb2,0x34,0xb4,0x4b,0xf7,0xf6,0x2c,0x9c,0xfe,0x8a,0x8d, + 0x2d,0x5e,0x15,0xc6,0x4b,0x1a,0x7d,0x13,0xee,0x5e,0xa6,0x6a,0x3a,0x66,0xca,0xe8,0xe1,0xc8,0x99,0x8d, + 0xad,0xb0,0xd7,0x9b,0x89,0xa7,0xce,0x2d,0xf0,0x03,0x30,0x44,0xc5,0x61,0x21,0x81,0xcb,0xf1,0xe0,0x6f, + 0xd3,0x64,0x6f,0x77,0xd3,0x58,0x36,0x46,0xc2,0x50,0x42,0x24,0xae,0x9a,0x7c,0x91,0xde,0xdf,0x66,0x55, + 0x91,0x60,0xbd,0x99,0xcd,0x9b,0x7c,0x50,0x6c,0x4f,0x64,0x56,0x39,0xf9,0xae,0x51,0x52,0xcb,0x3b,0xd1, + 0x32,0xd6,0xc9,0xc3,0x06,0x70,0xd6,0x51,0x57,0x21,0x49,0xe5,0xc0,0x74,0x05,0x07,0x3f,0xe2,0x11,0x1f, + 0x2a,0x0e,0x7d,0x60,0x1b,0xd2,0x59,0x38,0xc5,0x52,0x5e,0x72,0xd2,0x77,0x76,0xfb,0x58,0xdb,0x2c,0x7b, + 0x77,0x7a,0xcc,0x12,0x47,0xac,0x2f,0xe8,0x3a,0xc3,0xae,0x96,0x85,0x3c,0xa1,0x4f,0x1f,0xa2,0xa6,0x87, + 0x0b,0x4e,0x40,0xab,0x8b,0xb8,0x81,0xbd,0xde,0x8f,0x78,0x82,0x0d,0x45,0x9b,0x64,0xb1,0xd0,0xb3,0xef, + 0x16,0xab,0xcb,0xbc,0xf0,0x8e,0xca,0xba,0x1f,0xd8,0xc5,0x2a,0x9b,0xd2,0xb9,0x48,0x6f,0x60,0x3e,0xc7, + 0x01,0x65,0x6c,0xe4,0x32,0x6d,0xcc,0xd4,0x9b,0x77,0x99,0xe8,0xba,0x46,0xa7,0xb4,0xcf,0x90,0x7f,0x64, + 0x1a,0x9d,0xb8,0x27,0xeb,0x4a,0x1b,0x0e,0xad,0xfa,0x4a,0xb0,0x29,0x86,0x37,0x48,0x60,0xd2,0x2a,0x54, + 0xa4,0x83,0x48,0xb7,0x3b,0x1d,0x22,0x7d,0xe8,0x59,0x48,0x1e,0x78,0xc0,0xa5,0x0c,0xdf,0x55,0xab,0x42, + 0x96,0x59,0xb5,0xaa,0xdd,0xb5,0xba,0x60,0x55,0xb7,0xa9,0x4e,0x3b,0x1f,0x93,0xc8,0xdb,0x20,0xc1,0x5e, + 0x45,0x23,0xb6,0xa1,0xb8,0xe2,0x63,0x29,0x42,0x5a,0x58,0x61,0x82,0x55,0x8a,0x6b,0x6d,0x00,0x6b,0xb2, + 0x02,0x21,0xfb,0xd0,0x45,0xb7,0x32,0x15,0xf5,0xc9,0xa2,0x59,0xe0,0x29,0xf1,0xab,0x0a,0x1b,0xbf,0xaa, + 0xd8,0xd8,0xc8,0xbb,0xad,0x3d,0xc8,0x34,0x11,0x47,0x61,0xe9,0xfd,0x06,0x57,0xf9,0x98,0x06,0x41,0x7d, + 0xfa,0x4f,0xe8,0x87,0xa2,0xc5,0xd9,0xc8,0xeb,0xf7,0x1c,0x8a,0x62,0x28,0x3e,0x47,0xf3,0x66,0xf3,0x37, + 0x0b,0xd6,0x75,0x65,0x9c,0x0b,0x99,0xa2,0x3b,0x98,0x32,0xce,0xc2,0xcc,0xbf,0x8c,0x7c,0xd9,0xcd,0x67, + 0x9a,0x53,0x2e,0x7c,0x51,0xb6,0x10,0xb6,0xb5,0x6f,0x90,0x99,0x19,0xc9,0x1b,0x4d,0xc5,0xa9,0x5f,0x88, + 0x68,0x9d,0x43,0xdb,0xf7,0x8b,0xd1,0xbf,0x47,0x47,0x5f,0x0c,0x25,0xcc,0x5c,0x91,0xde,0x44,0xe2,0x12, + 0x51,0x89,0x97,0x44,0x3a,0xea,0x9c,0xc6,0x46,0xd8,0x0a,0x35,0x11,0xd2,0x91,0x29,0x99,0x46,0x55,0x6b, + 0xb8,0xb3,0x06,0xb6,0x70,0x09,0x5e,0x07,0xe5,0x7e,0xcd,0xb9,0x99,0xc3,0x89,0x5b,0x38,0x67,0xff,0x35, + 0x6a,0x56,0x65,0x97,0x97,0xfc,0x54,0x2f,0xf5,0x62,0x41,0x37,0x07,0x82,0x5d,0xa8,0xb7,0x9c,0x59,0x48, + 0x45,0x35,0xa5,0x8a,0xa9,0x85,0xbb,0x25,0xd0,0x8a,0xe5,0x22,0xcb,0xb9,0xdf,0x07,0x65,0xb1,0x00,0x31, + 0xf0,0x03,0x67,0xa5,0x43,0x54,0xde,0xce,0xe9,0x70,0xd4,0x04,0x51,0x08,0x7f,0x67,0xc3,0x25,0x95,0xad, + 0x9a,0x72,0x5e,0x4e,0x57,0x35,0x3f,0x51,0xd1,0x3b,0xc5,0x2d,0xe8,0x99,0xc2,0xa6,0x24,0x00,0xc9,0x56, + 0xed,0x55,0xb9,0xa8,0x09,0x6a,0xd2,0xb8,0x08,0x0e,0xda,0xeb,0xd4,0xfc,0xda,0xfc,0xe6,0xf5,0x1a,0x72, + 0x41,0xfb,0x22,0x83,0x94,0x77,0x42,0x44,0x67,0x79,0x8d,0x91,0xcc,0x94,0x2e,0xe4,0x17,0xb6,0x0e,0x45, + 0x49,0xb3,0x9b,0x63,0x1b,0xaa,0xab,0x7c,0x36,0xa3,0xae,0x01,0xb0,0x34,0xba,0xba,0x26,0xfc,0x8f,0x12, + 0x69,0x95,0xaa,0x46,0xe5,0xf5,0x75,0xb6,0x54,0x79,0xa3,0xaf,0x19,0x0f,0x55,0x8b,0xb2,0x5c,0xaa,0x6b, + 0x6a,0x22,0x5f,0xd2,0xd4,0x48,0xa3,0x45,0x79,0x55,0xe9,0x39,0xfd,0xd0,0x84,0xe6,0x7f,0x12,0xc6,0x5f, + 0xd6,0x57,0x19,0x30,0x7f,0xdf,0x42,0x51,0xde,0x56,0x54,0x0f,0xd5,0x50,0xa8,0x65,0x46,0x00,0x91,0x8e, + 0xdd,0xa7,0xbc,0x21,0x34,0x22,0x9b,0x61,0xba,0xe8,0xe1,0x8f,0x15,0x1d,0xa2,0x99,0x32,0x81,0xcb,0x67, + 0x4a,0xf0,0x5e,0x5a,0xaf,0xec,0x7a,0x41,0x0b,0xa5,0xdc,0x98,0x60,0x06,0xc1,0x0b,0x43,0xa8,0x5f,0x51, + 0xc3,0x15,0x13,0x3d,0xad,0x34,0x2d,0x13,0x7d,0xc4,0xb6,0x85,0x8b,0x4b,0x8e,0x4e,0xa5,0x6e,0x72,0xf6, + 0x55,0x4c,0x8b,0xf1,0x27,0x6d,0x9b,0xab,0xa6,0x59,0x26,0x8f,0x1e,0xdd,0xde,0xde,0x8e,0x6e,0xbf,0x1c, + 0x95,0xd5,0xe5,0xa3,0xa3,0xff,0xfc,0xe7,0x3f,0x8f,0x3e,0x2d,0xf2,0xe2,0xe3,0x50,0xfd,0xd4,0x07,0x93, + 0x86,0x49,0x2b,0x50,0xc6,0xbf,0x60,0x36,0x27,0xf9,0x39,0xd9,0xc4,0xdf,0x51,0xff,0x22,0x8c,0xe8,0x8f, + 0x5e,0x98,0xf6,0x53,0x21,0xf2,0x45,0xc9,0xf9,0x6f,0xe5,0x5c,0xe8,0x22,0x2a,0x96,0x7a,0xd9,0x5b,0x46, + 0x70,0x12,0xf8,0x11,0x67,0x0c,0x3b,0xd0,0x7c,0xf9,0x71,0xcb,0xf2,0x79,0xc6,0x62,0xa7,0x94,0xdd,0xde, + 0xc0,0x23,0xd5,0x36,0xfa,0x11,0x8f,0xe3,0xa8,0x4a,0x7b,0x3e,0x58,0xdc,0x01,0xa6,0x10,0x33,0x0e,0x57, + 0x16,0xe9,0xf4,0xeb,0x22,0x92,0x37,0x18,0x65,0x8a,0xfa,0x54,0x0e,0xc6,0xe4,0xc8,0x99,0x6c,0x39,0xf6, + 0xba,0xcd,0x0f,0xee,0x15,0xde,0xe3,0x1e,0x35,0x79,0x63,0xd6,0x94,0xb3,0x2e,0x6b,0x1e,0x30,0x3e,0x7f, + 0xc1,0xc7,0x5f,0x01,0xa3,0x6d,0x29,0x9a,0x8f,0xc8,0x8a,0xaf,0x8e,0x71,0x90,0xa1,0xa5,0x24,0xc6,0x96, + 0xde,0xfe,0xb0,0x25,0xc7,0xbd,0x0f,0x32,0x27,0xbf,0xb0,0xea,0x47,0xab,0x74,0xf0,0x16,0x0b,0x6c,0x48, + 0x72,0x67,0xc1,0x39,0x39,0x35,0x4f,0xb6,0x99,0xb3,0xc4,0x3c,0x04,0x52,0xd3,0x5f,0x3a,0x56,0x36,0x13, + 0x3d,0x69,0xf6,0x87,0x0f,0x86,0xfb,0x3a,0x69,0x12,0x0e,0x2e,0x10,0xd8,0x1e,0x86,0x4b,0xb8,0x25,0x61, + 0xee,0x35,0x7f,0x51,0x6c,0xb9,0xb0,0x83,0xd5,0x46,0xb3,0x95,0xa2,0x4e,0x68,0x4f,0x60,0xdb,0x0d,0xc5, + 0x9f,0x7b,0xc4,0x17,0xc9,0x7e,0x4a,0xbd,0x20,0x8c,0x7a,0x3f,0x0d,0xb9,0x70,0xe0,0xda,0x4f,0xbb,0xad, + 0xc9,0x4e,0x19,0x0e,0xdb,0x3a,0x03,0x0d,0x2b,0x15,0x62,0x09,0xf1,0xdf,0x54,0x47,0xbf,0x45,0x5b,0x51, + 0xa5,0x57,0x12,0x8e,0xad,0x8b,0x8a,0xbe,0xa5,0xfb,0xac,0xbe,0x21,0xd4,0x78,0xfb,0x60,0x7d,0x71,0x78, + 0x78,0xf8,0x08,0xf6,0xa5,0x44,0x79,0x35,0x57,0x7d,0x39,0xe8,0xe8,0xfd,0xf7,0x23,0x44,0xdc,0xe6,0x3f, + 0x6f,0x5e,0xd3,0x69,0xf8,0x99,0x01,0xe6,0x55,0x73,0xbd,0x50,0x17,0xe5,0xec,0x4e,0xe1,0x9a,0x55,0x57, + 0x04,0x21,0x14,0x4e,0x1c,0x61,0x93,0xb4,0x2b,0x05,0xd0,0x37,0x79,0x43,0x7f,0xb3,0xd9,0x0c,0x20,0x5c, + 0x65,0x15,0x2d,0x33,0xde,0xeb,0x9c,0xa0,0xce,0xbc,0x2c,0x09,0x88,0x71,0x39,0xfc,0x1c,0xa9,0xab,0x2f, + 0xd4,0xd5,0x97,0xea,0xea,0x7f,0xa9,0xab,0x7f,0xa9,0xab,0x7f,0xab,0xab,0xcb,0xaa,0x5c,0x2d,0x55,0x91, + 0xdd,0x10,0x48,0xe1,0x59,0x22,0xf8,0x78,0xa3,0x66,0x04,0x2c,0x17,0x6a,0xd6,0x28,0xc2,0x6a,0x11,0xae, + 0x04,0xe9,0xac,0x59,0xab,0xd5,0x32,0x9f,0x72,0x7c,0x94,0xab,0x4a,0xe5,0xd7,0x97,0xd4,0x19,0x1a,0x54, + 0x5e,0xa8,0x72,0xa1,0x96,0xf0,0xbe,0xa6,0x56,0x0b,0x95,0xa9,0x0b,0x22,0x46,0x2f,0x2a,0x75,0x31,0xcb, + 0xe9,0x7f,0xa9,0xe8,0x71,0x4a,0x50,0x93,0xa0,0x38,0x75,0x89,0xcf,0xd3,0x6c,0x4e,0x14,0xe9,0xb5,0xca, + 0xd5,0xc7,0x8b,0x19,0x55,0x50,0x7d,0x54,0x7f,0xa8,0x6a,0xa9,0x08,0xc6,0x56,0xcd,0x54,0x55,0xab,0x8b, + 0x3b,0xc2,0xe9,0xeb,0xec,0x7a,0xa9,0x08,0xe4,0x12,0x2e,0x55,0x2f,0x33,0xba,0xad,0xe8,0x0a,0xa0,0xbb, + 0xa5,0x5e,0x5d,0xd0,0xff,0xa5,0x82,0x61,0x99,0x5a,0x29,0x9a,0x7c,0x75,0x4b,0x2d,0xf0,0xbd,0x96,0xad, + 0x66,0x79,0xa9,0x00,0xa5,0x41,0x0a,0x7f,0x54,0x90,0xed,0x94,0xd4,0xd2,0x05,0x41,0x43,0x71,0x79,0xae, + 0x38,0x98,0x0b,0xc1,0xcd,0x55,0x45,0xd4,0xc8,0x34,0x2b,0x6e,0x32,0x6a,0x89,0x43,0xd7,0x03,0x56,0xcb, + 0x03,0x61,0xdf,0xf0,0xaf,0xa5,0xec,0xd8,0xa7,0x34,0x3c,0xfa,0x2f,0x93,0x65,0xe0,0x2d,0xaf,0x45,0xc3, + 0x6b,0xd3,0xd0,0xc3,0x15,0xb5,0xa8,0x2e,0x56,0x4d,0x83,0x29,0xa4,0x21,0x42,0x84,0x46,0x73,0xa6,0x17, + 0x33,0xc2,0xe9,0xf9,0x8e,0x51,0x72,0x07,0x2f,0xb2,0x0b,0xaa,0x7d,0xa1,0x2f,0xa1,0x7e,0x72,0x8d,0x3b, + 0x06,0xb7,0xb1,0x54,0x6d,0xae,0xe5,0x72,0xd5,0x20,0xa7,0xbd,0x96,0xed,0x35,0xed,0x6e,0x6f,0xba,0x99, + 0xb2,0x1c,0x97,0x61,0x9e,0x2d,0xca,0x4b,0xaa,0xa4,0x58,0xf1,0x1f,0xdc,0x4c,0x34,0x35,0xd7,0x34,0xa1, + 0x77,0xca,0xdc,0xe1,0x4a,0x0b,0xbf,0x43,0xe1,0x1a,0x2a,0x6f,0x95,0x75,0x4b,0xad,0x2e,0x16,0xe5,0xf4, + 0xe3,0x1f,0xab,0x12,0xb7,0xdb,0xbc,0x42,0x7c,0x9a,0x06,0xbb,0x85,0x76,0xfe,0x37,0x82,0x45,0xdc,0x5c, + 0xaa,0xac,0xc8,0xaf,0x91,0x77,0x9a,0x57,0x53,0x46,0x29,0xf2,0xe5,0x92,0x36,0xa8,0x9a,0xae,0x2a,0xba, + 0x78,0x70,0xa1,0xe2,0x46,0xae,0xa7,0xd4,0x08,0x7d,0xa2,0x0d,0x2a,0x4e,0xab,0x69,0xb8,0x45,0x73,0x30, + 0xcf,0xa6,0xd8,0x80,0x81,0x91,0xb7,0xba,0x54,0x97,0x8b,0xbb,0xe5,0x15,0xed,0x9c,0xec,0x52,0x63,0x23, + 0x6b,0x5e,0x7c,0x2a,0x71,0x9d,0xd5,0xb4,0xa9,0xf3,0xba,0xa6,0xf3,0x75,0x20,0x99,0xb8,0x25,0xfa,0x43, + 0x15,0xd2,0x3d,0x59,0x2e,0xee,0x2e,0x4b,0xf9,0xe5,0x72,0xc0,0x31,0x55,0x7d,0x9b,0xe3,0x66,0xab,0xd9, + 0xb6,0x9a,0xe7,0x87,0xff,0x70,0xc9,0x86,0xf7,0x0c,0xf4,0x78,0x6e,0x72,0x7d,0x3b,0x64,0xf1,0xe6,0xf7, + 0xbd,0x57,0xcc,0xcf,0x05,0x43,0xe4,0x6f,0x0a,0x56,0xa9,0x62,0xd2,0xbd,0xea,0x0d,0xf9,0xcb,0xd0,0xa3, + 0xc2,0xe4,0x70,0x53,0xe2,0xc8,0x9d,0xa3,0x36,0xdd,0x96,0x15,0xdf,0xce,0x15,0xf5,0x46,0xd3,0x81,0x40, + 0x67,0x16,0x6a,0x55,0x2d,0x86,0x46,0x7d,0xd7,0x55,0x38,0x27,0xc4,0xe7,0x4f,0x1d,0xdd,0xb7,0x98,0x51, + 0xbd,0xee,0x0a,0xbb,0x66,0x95,0xc6,0xb1,0xb8,0x73,0x7c,0x30,0x94,0x6d,0x01,0x50,0xd8,0x80,0x85,0x2a, + 0xd7,0x90,0x0e,0xbc,0xf6,0x05,0x11,0x35,0xc3,0xe4,0x91,0x45,0x59,0xd8,0x93,0xb9,0x6e,0x9e,0x50,0x62, + 0x4e,0x5b,0x57,0x47,0x43,0xfb,0x65,0xa8,0xfc,0x23,0x4b,0x61,0x5a,0x7d,0x78,0xfb,0xbe,0xd3,0x61,0x33, + 0x91,0xfd,0x3d,0x7e,0xfb,0x3e,0xfa,0x96,0xc3,0x9c,0x22,0x04,0x5b,0x3b,0xda,0x5b,0xd2,0xb3,0x1a,0xbb, + 0x02,0xc3,0x35,0xae,0xb4,0xb1,0x7c,0xff,0x1b,0x85,0x4d,0x4e,0x2e,0x2b,0xfe,0xf2,0x9e,0x32,0x93,0xba, + 0xd5,0x7d,0xe3,0xaf,0x39,0xf8,0xcc,0x71,0x89,0xc0,0xd6,0x81,0x15,0x02,0x0b,0xf4,0x3b,0xe3,0x6d,0x46, + 0xc1,0x37,0xe8,0x38,0x29,0xa2,0xfb,0xe8,0x3c,0xf7,0xe7,0x0d,0xbe,0x71,0x5e,0xc1,0x1e,0x76,0x8d,0xdf, + 0xf2,0x05,0xf1,0x7d,0xa3,0x40,0xfb,0xbf,0x27,0xb4,0x8d,0x8e,0x45,0x7f,0xe6,0x20,0xc3,0x06,0x8e,0x50, + 0xe0,0x85,0xa2,0x3f,0xa7,0xf9,0xb8,0x81,0x41,0x04,0x66,0xf5,0x58,0x00,0xc4,0x56,0x77,0x1b,0xff,0x2d, + 0x95,0xdc,0xef,0x71,0xcf,0xb0,0x6f,0xd7,0xad,0xcc,0xad,0xed,0x43,0x34,0xd2,0x90,0x5d,0xd8,0x56,0x55, + 0x6a,0x36,0x78,0xa7,0x00,0xdd,0xba,0x98,0x01,0x43,0xf1,0x75,0x2b,0xe3,0x2d,0x4a,0xd8,0xb3,0xdf,0xaf, + 0xf4,0x02,0x5f,0x0d,0x15,0xe5,0xc0,0xf9,0xe5,0xe2,0x3b,0xbc,0x08,0xda,0x4c,0x9b,0x00,0x45,0xe4,0xb4, + 0x40,0x4b,0xca,0xd6,0x69,0x5d,0x1b,0x78,0xe7,0x74,0xd6,0x61,0x62,0xd9,0xe7,0x87,0x10,0xb2,0x08,0xbd, + 0xb8,0x56,0x19,0x42,0x9b,0x42,0x8d,0x66,0xac,0x27,0x1d,0xe7,0x1a,0xd0,0x46,0x98,0xc8,0x2f,0x9c,0xe3, + 0xe0,0xd7,0xf8,0x43,0xe1,0x47,0xe3,0xfc,0x25,0xf1,0x5d,0x78,0x55,0xbc,0x28,0xab,0xde,0x5a,0x32,0x36, + 0xc6,0x32,0x7c,0x8d,0x32,0x7e,0x7c,0xb8,0xb7,0xc7,0x49,0xcc,0x4a,0xb0,0x75,0x9f,0x96,0x67,0xf2,0x50, + 0x8a,0x83,0x8a,0xbc,0x4a,0xad,0xa7,0x1d,0x22,0x15,0x37,0x0a,0xee,0xdc,0xb3,0x2a,0x3d,0x35,0xba,0x0a, + 0x43,0x6f,0x6e,0x3f,0xb4,0x86,0xbc,0x43,0x70,0xbc,0xb1,0x8b,0x87,0x4e,0x16,0x31,0x0c,0xa2,0x87,0xd5, + 0x55,0xc7,0xa8,0x1a,0x9e,0xb8,0x0d,0x77,0x90,0x25,0x10,0xa2,0x25,0xa7,0xc5,0x69,0x47,0xe0,0x91,0x82, + 0x13,0x03,0xff,0x14,0xb9,0xf1,0xda,0x08,0x79,0x25,0xbc,0x8c,0xf1,0x73,0x57,0xa7,0x1e,0x5e,0x5b,0xc4, + 0x51,0xd8,0xc0,0x38,0x02,0xf1,0xfe,0x0f,0x78,0xf5,0x60,0x1d,0x10,0xd9,0x35,0x14,0xff,0x37,0xa9,0x77, + 0x37,0x55,0xb0,0x5b,0x7f,0x09,0xe0,0x90,0xea,0xcf,0xe5,0x71,0xe2,0x6c,0x2c,0x0f,0x81,0xcd,0x8a,0xbd, + 0xe2,0xd0,0x4f,0x29,0x16,0x23,0xec,0x11,0x04,0xa3,0x79,0x02,0xda,0xf4,0xbb,0x05,0x5d,0x62,0x57,0xe5, + 0x62,0xc6,0x91,0x36,0xdb,0x9e,0x36,0x78,0x9c,0x61,0x02,0x1c,0xd1,0xb5,0x53,0x8c,0x57,0xba,0x00,0x69, + 0x9f,0x56,0x2d,0x3d,0x08,0x78,0xe1,0xb2,0x31,0x68,0x38,0x9c,0xee,0xe3,0xb4,0x18,0xef,0xef,0x57,0x84, + 0xf0,0x96,0x1c,0xfb,0xc8,0x04,0xbb,0xa2,0xad,0x51,0x9e,0xa5,0xde,0xb5,0x4b,0xc6,0x8b,0xbe,0xf2,0xc7, + 0x6c,0xe1,0xc2,0x80,0x2f,0xaa,0xde,0xe3,0xb1,0x40,0xc3,0x79,0xd5,0x3a,0x1e,0x0b,0xb3,0xc4,0xd6,0xad, + 0xa6,0x8f,0x4b,0x6e,0xef,0x93,0x20,0xa9,0xdf,0x2f,0x9c,0x92,0x88,0xf2,0x58,0xf4,0x9c,0x70,0xb0,0x54, + 0xcb,0x43,0x9d,0x2e,0xab,0xed,0x5a,0x55,0xe3,0x5d,0xa4,0x4e,0x91,0x63,0xab,0x11,0x36,0xc6,0x30,0x39, + 0x56,0xd0,0x5b,0xf3,0xd1,0xd2,0x80,0xa8,0x4f,0xe3,0x2a,0xad,0xc5,0x61,0xd5,0x14,0x3f,0xd5,0x24,0x2a, + 0x47,0xb4,0x3a,0x3f,0xb2,0xe1,0x5c,0x65,0x02,0x96,0x70,0xd2,0x93,0xea,0x92,0x12,0xb2,0xea,0x92,0x30, + 0x55,0x38,0x37,0xb7,0x7b,0x9e,0x5d,0x7b,0x94,0xe0,0xbc,0x40,0xd3,0x93,0x7e,0xfc,0x71,0x17,0x19,0xea, + 0xcc,0x05,0x2c,0x2b,0xc1,0x9c,0x96,0xd2,0xe0,0x54,0xf5,0x95,0x95,0x5b,0x03,0x65,0x56,0xae,0x0c,0x80, + 0xcb,0xca,0x52,0xb6,0xe2,0x0d,0xb4,0xcf,0x4a,0x4f,0x4c,0xa5,0x57,0xa1,0xa9,0x34,0xb5,0xb5,0xc2,0xb0, + 0x86,0xb6,0x5a,0x69,0x72,0x33,0xce,0x27,0x0b,0x86,0xae,0x92,0x3e,0x54,0xf3,0x38,0x99,0x47,0xf1,0x66, + 0xe1,0xe4,0x4d,0xf2,0x79,0x59,0xd6,0x0d,0x8b,0x1c,0xdb,0x7e,0x33,0xdb,0x2d,0x2e,0x3a,0x2d,0x2e,0xb8, + 0xc5,0xee,0x24,0x98,0x96,0x65,0x34,0x83,0x3c,0x76,0x4b,0x50,0xc7,0x53,0x0e,0x78,0x4e,0x25,0x79,0x25, + 0x86,0xab,0x42,0x26,0x87,0x50,0x2f,0x95,0x99,0x33,0xc4,0xbb,0x73,0xde,0x8f,0x44,0xb9,0xdd,0xb7,0xac, + 0x3a,0xfb,0xa8,0x37,0x7b,0x68,0x3d,0xfe,0xa0,0xdc,0x15,0x38,0xcf,0xc6,0xcd,0x83,0x6f,0xc0,0x9c,0xb0, + 0x6e,0x76,0x33,0x58,0xf9,0xb7,0x74,0x5e,0x41,0x83,0x7a,0x86,0xd3,0x7e,0x06,0x97,0x5c,0x58,0x3d,0x78, + 0x61,0x0a,0x84,0x95,0x9e,0x71,0x59,0x13,0x1d,0xca,0xfc,0x4e,0x77,0xde,0x82,0xb0,0x2d,0xb3,0xaa,0x75, + 0xab,0x56,0xd9,0xed,0x5b,0xa3,0x66,0x8d,0x12,0xfb,0xc3,0xd1,0x70,0xbf,0x15,0x10,0x27,0xec,0x12,0xf4, + 0x99,0x7e,0x2f,0xf3,0x82,0xed,0xe8,0x83,0x30,0x81,0xd5,0xb6,0xe3,0xc7,0x46,0xb6,0x19,0xff,0x58,0x67, + 0x3c,0x12,0x20,0x3b,0x2a,0xf8,0x32,0x6a,0xac,0x97,0x25,0x91,0x63,0x56,0x2c,0xc7,0x84,0x1a,0xac,0xbd, + 0xca,0xfc,0x78,0x1e,0xc0,0xdd,0x9a,0xf4,0xee,0x01,0x47,0xc8,0x73,0x41,0xb2,0xd9,0xf1,0x07,0x5d,0x13, + 0x15,0x81,0x8f,0x2a,0x00,0xfe,0x37,0xad,0x8b,0xb3,0x5f,0x4c,0x35,0x30,0xde,0x81,0x98,0x31,0x53,0xb4, + 0x35,0xcf,0xf3,0xe2,0x4a,0x57,0x39,0xa3,0x06,0x34,0xec,0xd2,0x82,0x02,0x0b,0x8a,0xcb,0x28,0xc4,0x47, + 0x63,0x7b,0x0f,0x23,0x1e,0x13,0x35,0x86,0xd1,0x4d,0xd3,0xa6,0xe5,0x7e,0x9a,0xdd,0x12,0xea,0x4e,0x92, + 0x80,0x4d,0x0e,0xb2,0x82,0xc0,0x03,0xe2,0x2b,0x8d,0xc3,0x7d,0x86,0x39,0x45,0x93,0x7e,0x05,0xdf,0xf7, + 0x71,0x96,0xae,0xa0,0xad,0x33,0xa5,0x3f,0x70,0xbe,0xbd,0xb7,0x77,0x49,0xdb,0x98,0xa6,0x31,0x8b,0x5d, + 0x5d,0x88,0xc7,0xfc,0x7d,0x8c,0x03,0xcd,0xd0,0x84,0x7d,0x42,0xf1,0x93,0xc9,0x6c,0x3d,0x5e,0x9a,0xef, + 0x04,0xc9,0xe2,0x32,0x42,0xad,0x68,0xf9,0xa7,0x02,0x01,0x11,0x6b,0x83,0x1e,0x3a,0xcc,0x88,0x50,0xe0, + 0x3f,0x0b,0xf5,0x47,0xc1,0x01,0x10,0x5f,0xe3,0x67,0xbd,0xde,0xca,0x84,0x8f,0x01,0xbb,0xe5,0xb2,0xf2, + 0xc8,0xa9,0x41,0xdd,0x1c,0x56,0x30,0x3c,0x18,0x42,0xde,0x31,0xb9,0xb3,0x79,0x92,0x1f,0xc0,0x3d,0x9a, + 0xbc,0x84,0xc0,0x70,0xd2,0x6c,0xd5,0xac,0x09,0x90,0x15,0x69,0x97,0xfd,0x6a,0xf9,0xf3,0xcf,0xdf,0x3c, + 0x7d,0xfe,0xcc,0x39,0xe0,0x42,0x43,0x93,0x21,0x98,0x88,0xc3,0x44,0xab,0x2d,0x0c,0xaf,0x90,0x11,0x68, + 0xe6,0xe3,0xb5,0x3f,0xf5,0xd2,0x04,0x2f,0x0b,0x76,0x1a,0x30,0x9c,0x67,0x8b,0x5a,0x24,0x02,0x13,0xf3, + 0x9c,0x74,0xd9,0xcc,0xdc,0x85,0xbd,0xbd,0xb7,0x5c,0xbb,0x4e,0xa4,0x0f,0x1b,0xd3,0xe6,0x4f,0x9f,0x1b, + 0xa0,0x9b,0x5f,0x78,0x9b,0x6e,0xf7,0x4b,0x3e,0xf1,0x1c,0xb9,0xd9,0x0a,0x62,0xdd,0xb9,0x49,0xa6,0x0d, + 0xcd,0x95,0xc7,0x7d,0xb3,0x27,0x01,0x85,0x10,0xab,0x9b,0xb6,0xfb,0x37,0x34,0x65,0x1f,0x9e,0xff,0xfc, + 0xe1,0xc9,0xbb,0xe7,0x4f,0x5a,0xb3,0x46,0xe9,0x4b,0x8f,0x2f,0xd8,0xd9,0x1d,0x4a,0x44,0x6d,0x68,0xce, + 0x9c,0xe7,0x7a,0x79,0xb5,0x15,0xce,0x0d,0x51,0xd7,0x47,0x75,0x53,0x2e,0x5f,0x59,0x45,0x44,0x08,0x04, + 0xb2,0xcb,0x4c,0xc0,0xb7,0xb2,0x1d,0x62,0x8d,0x3c,0xab,0x85,0x6b,0xb1,0x25,0x76,0x5a,0xc8,0x1e,0x19, + 0x76,0x7d,0x56,0xb6,0x61,0x08,0x41,0x7b,0x96,0x53,0x80,0xc0,0x85,0x47,0x25,0x6e,0x1c,0x2a,0x71,0x53, + 0x85,0x66,0xd3,0x1d,0x90,0x80,0x53,0x5a,0x99,0x83,0x86,0x48,0x80,0x2e,0x42,0xe3,0x20,0x42,0x90,0xce, + 0x90,0xdf,0x28,0x61,0x3b,0xad,0xe7,0x38,0xfa,0x9c,0xc5,0x00,0x0a,0xd9,0x56,0xa6,0xcc,0x64,0xb2,0x10, + 0xa1,0x4e,0x7f,0x64,0x8d,0xde,0x29,0x94,0x47,0x98,0xc3,0x9d,0xa3,0x2f,0x5c,0x40,0xd7,0x70,0xe7,0x86, + 0xfa,0xea,0xf4,0x97,0x82,0x0e,0xe6,0xaf,0x05,0xc4,0xc9,0xb1,0xaa,0xd9,0x68,0xf1,0x7c,0x59,0xe9,0x1b, + 0xce,0xc8,0x42,0xac,0x36,0x99,0x2b,0xb2,0x11,0x38,0xbf,0x0b,0x33,0xa6,0xb5,0x99,0x8c,0xe3,0x4a,0x9d, + 0xfb,0xf9,0x78,0xe2,0xe6,0xe3,0x49,0x38,0x1f,0xb7,0x6d,0x4c,0x2e,0x3d,0xae,0xb6,0x3c,0x95,0x95,0x91, + 0xb3,0x5e,0xfd,0xbc,0xa7,0xb2,0x7c,0x6f,0xef,0x53,0xc5,0x36,0xa9,0x62,0xfa,0x89,0x42,0x4f,0xab,0xf4, + 0x57,0x44,0xe5,0x8b,0x60,0xb5,0x28,0x6a,0x1a,0xf4,0x78,0x7a,0x74,0x16,0x3f,0x4e,0xff,0xf5,0x65,0x70, + 0x8f,0x7e,0x74,0xb7,0x07,0xef,0xe2,0xa7,0xce,0xa8,0x65,0x56,0x40,0xd1,0x6d,0xac,0xd3,0x7c,0x74,0x0e, + 0x89,0xc3,0x72,0xdb,0xd3,0x8b,0xb5,0x8b,0x14,0xbe,0xfe,0xaa,0xaa,0xd8,0xde,0x02,0x29,0x6c,0x37,0x64, + 0x5d,0x37,0x7d,0x05,0x54,0x39,0x78,0x7f,0x9c,0x1e,0x8a,0x5d,0x11,0x72,0x8a,0x63,0xef,0x67,0x86,0xf2, + 0xa6,0xd1,0x58,0x22,0xdc,0xde,0xda,0x79,0x7f,0x0c,0xe2,0xcd,0xe6,0xb8,0xda,0xde,0xb8,0x18,0x4a,0xd5, + 0x4c,0xee,0x6d,0x54,0xec,0xc2,0x45,0xc5,0xae,0x36,0x49,0x78,0x74,0x3f,0x05,0xc3,0x8e,0xaa,0xf5,0xfa, + 0xb8,0x8a,0x7b,0x0f,0x0a,0xac,0x68,0xed,0xf0,0x09,0xad,0x6d,0x1d,0xff,0xf7,0x95,0x77,0x36,0xe6,0x2e, + 0xa9,0x12,0xfe,0x3b,0x07,0xee,0x8a,0x2a,0x8b,0xd8,0x6f,0x7a,0x93,0xe2,0x8c,0xee,0x83,0xf7,0xf1,0x71, + 0x65,0x4e,0x45,0x67,0x8e,0x73,0x76,0x0d,0x58,0x39,0x5f,0x3a,0x3f,0x4f,0x86,0xd3,0xab,0xac,0xb8,0x04, + 0x04,0x34,0xbe,0x91,0x59,0x32,0xeb,0x83,0x35,0x71,0x7e,0xb6,0x2c,0xe2,0xd0,0xa0,0xca,0x04,0xfc,0xe4, + 0xe4,0x8d,0x54,0x37,0x15,0x57,0xd7,0x52,0x51,0xa7,0xe8,0x54,0xd9,0x0f,0x5b,0xc5,0xa7,0xe2,0x36,0x6a, + 0xc5,0xee,0x4e,0xd5,0xc7,0x4a,0x7d,0xaa,0xd4,0x6d,0x15,0x62,0xdd,0x34,0x0a,0xe3,0xf5,0x8e,0x77,0xe1, + 0xc3,0x4a,0x7d,0xf0,0x47,0xe1,0xbd,0x3b,0x0a,0xef,0xc3,0xa3,0xf0,0xbc,0x6f,0x1a,0x6d,0xe4,0xb4,0xd6, + 0x64,0xba,0x44,0x8f,0xf6,0x65,0x66,0xd6,0xea,0xb4,0x53,0x90,0x27,0x79,0x9a,0xea,0xed,0x54,0x4f,0x10, + 0xc0,0xa1,0xa3,0xbf,0xf7,0xb7,0x32,0xcb,0xd5,0x3f,0x05,0x50,0x88,0x85,0x80,0x20,0xb4,0x90,0xc9,0xe6, + 0xa1,0x09,0x74,0x6e,0xc8,0x0a,0x74,0xbd,0x12,0x9a,0x62,0x18,0xf0,0x3f,0x00,0xc3,0x0b,0x76,0x61,0x4d, + 0x3b,0xe9,0xe5,0x87,0x37,0xaf,0x39,0x41,0xfc,0xee,0x39,0x63,0x25,0x31,0x3f,0x6d,0xbb,0x96,0x4b,0x39, + 0x40,0x7c,0xca,0xc4,0x4a,0x8c,0xb9,0xcd,0x8b,0x95,0x1e,0x8b,0x47,0x6a,0xce,0x0a,0xee,0x4e,0xed,0xd0, + 0xf7,0xac,0xc5,0x4f,0x0a,0xb3,0x40,0x89,0x0c,0x01,0x7c,0x0d,0xd6,0x21,0xde,0xba,0x86,0xdf,0xbd,0x3b, + 0xf9,0xfa,0xdd,0xf3,0xf7,0xef,0x87,0x1c,0x41,0xc4,0x5c,0x3f,0x50,0x00,0x3e,0x17,0x17,0x22,0x62,0xad, + 0xb5,0x4a,0xe1,0x8f,0x7a,0x32,0x1c,0x26,0xa2,0xec,0x45,0x2f,0xe3,0x93,0x2a,0xca,0x14,0x3b,0xa0,0xcd, + 0x8c,0xbb,0x91,0x55,0xec,0x7c,0x03,0x76,0xc6,0xb9,0xb7,0xf7,0x0d,0x0c,0xec,0x6c,0xf5,0x02,0xa0,0x5d, + 0x16,0x5a,0xc2,0xe8,0x61,0x95,0x3e,0xa4,0x43,0xb5,0x83,0x53,0x49,0x08,0xe8,0xcd,0x30,0x8e,0x7d,0x91, + 0x74,0xf8,0xb8,0xbe,0xb9,0xfc,0x6a,0xb8,0x5f,0xed,0x0f,0x1f,0x3f,0xe2,0xc7,0x20,0x4e,0xc8,0xc3,0x6a, + 0x34,0xcf,0xab,0xba,0xe1,0x49,0x18,0x67,0xe1,0x4b,0xdc,0x9d,0x20,0xff,0xcd,0xc8,0xe5,0x16,0x9d,0xec, + 0x21,0xcf,0x2d,0xfc,0xe6,0x07,0x5b,0x0d,0xcc,0xf2,0x00,0xa9,0xe6,0x3d,0x51,0x79,0x43,0x81,0x4d,0x68, + 0x2e,0x78,0xd2,0xe2,0x84,0xd8,0x38,0x3d,0xe0,0x54,0xd3,0x34,0x0e,0x4f,0xbe,0xfb,0xf0,0xea,0xe4,0x6d, + 0x0b,0x11,0x58,0xaf,0xfb,0xf8,0xb9,0x83,0x43,0xd6,0x52,0x0c,0x18,0xbb,0xa2,0xfa,0x63,0xa6,0x0b,0x7c, + 0x8f,0xa0,0x03,0x56,0x8e,0x05,0x12,0xc0,0x22,0xa2,0xda,0x72,0x28,0xfa,0x6d,0x00,0x85,0xfa,0x65,0x5f, + 0x20,0x37,0x6f,0x2c,0xd1,0x21,0xac,0xae,0x4a,0x22,0xae,0x13,0x55,0xc3,0x17,0x89,0x85,0xcc,0xd7,0x04, + 0x0c,0xa8,0xde,0x6b,0xa0,0x38,0xfc,0x99,0xf6,0xc9,0xb5,0xd7,0x4a,0xc7,0x5b,0xc4,0x61,0x1d,0xcd,0xa3, + 0xeb,0x95,0xef,0x8c,0xd0,0x7a,0xbf,0x7b,0x18,0xf1,0xdc,0xc1,0x88,0xe7,0xd5,0x46,0x3d,0xa3,0x8b,0xb1, + 0x6d,0x3e,0x6b,0xb4,0xac,0x60,0xd8,0xf2,0x28,0x89,0x46,0xfb,0xf1,0x23,0xe7,0x3b,0xd3,0x58,0x95,0x3e, + 0x1a,0x47,0x93,0xc1,0xe9,0xff,0x44,0x67,0xff,0xfc,0x2d,0x8e,0x1f,0x5d,0xf6,0xd9,0x01,0x35,0x36,0x68, + 0xb7,0xe5,0xdf,0x49,0x49,0x08,0xec,0x9c,0x9a,0x3a,0xce,0xe5,0xa9,0x44,0x32,0xe7,0xce,0xd3,0x02,0xd3, + 0xed,0x69,0x5e,0xc0,0xa6,0x44,0x54,0xb9,0x38,0xb8,0x48,0x5f,0x55,0xbe,0x7f,0xef,0x2a,0xef,0xf6,0xd6, + 0x77,0x8f,0xd1,0x15,0xe6,0x86,0x4e,0x3e,0x44,0xad,0x77,0x9a,0x89,0x24,0x30,0x32,0x7f,0x57,0x7d,0x4e, + 0xfe,0xf9,0x7c,0x87,0x30,0xf1,0x59,0x25,0x4e,0x5f,0xd1,0x85,0x37,0x95,0x7a,0x51,0xa5,0x8f,0xfe,0xe7, + 0xe0,0xe0,0x91,0xfa,0x8e,0x1e,0x7e,0xab,0xff,0x39,0xc8,0x69,0xdb,0x55,0x4d,0x56,0x34,0x0f,0x1f,0xa9, + 0xd7,0xd5,0x96,0x65,0x0d,0xcd,0xc8,0x8b,0xca,0x9a,0xdd,0xc6,0xa6,0xfb,0xc0,0x7c,0x9c,0x82,0x89,0x76, + 0xd1,0x0b,0x29,0xef,0x77,0x26,0x6f,0xd1,0x9f,0xf7,0x13,0xfb,0x32,0xa6,0x73,0xc7,0x38,0x2d,0xe5,0x06, + 0x73,0x57,0x0d,0x5d,0x1f,0x86,0x41,0x20,0xec,0x2a,0xfd,0xa1,0x32,0x7b,0xa8,0xeb,0x0a,0xfb,0xaf,0xbc, + 0x5f,0x9a,0xa6,0x61,0xdc,0xcc,0xee,0x48,0xc4,0x97,0x52,0x90,0x88,0x58,0x2e,0x60,0x64,0xfe,0xa4,0x2f, + 0x3e,0xe6,0x84,0xd1,0x0e,0xdf,0x94,0x7f,0x42,0x3c,0x51,0x0f,0xcf,0xd4,0x0f,0x5b,0xbb,0x8b,0x7a,0xf0, + 0xa6,0x4a,0xdf,0xfc,0x15,0x50,0x92,0xfa,0x6d,0x90,0x55,0x80,0xd1,0xa8,0x49,0x6f,0x23,0x8e,0x74,0xcc, + 0xca,0xaa,0x6f,0xdc,0x19,0x69,0xc6,0xa1,0x8a,0x81,0xd1,0x7d,0x38,0x8c,0x47,0x4d,0xf9,0x03,0x50,0x8a, + 0xe3,0xac,0xd6,0x51,0xbc,0x6f,0x95,0x1a,0x8e,0x9c,0xb7,0xf5,0xaa,0xe5,0x04,0x4f,0x66,0xe9,0x6d,0x45, + 0x70,0x66,0x9f,0x95,0x36,0xab,0x76,0x2b,0xd5,0xa6,0xb5,0x15,0xff,0xec,0x20,0xdb,0x8c,0x64,0x57,0x1d, + 0x24,0xbb,0x08,0x37,0x20,0x83,0xe7,0xc2,0xb9,0x6d,0xf6,0x28,0xf8,0xfb,0x56,0x0a,0x9e,0x6d,0x88,0x02, + 0x55,0xf3,0xf5,0x8a,0xcb,0x77,0x95,0xb6,0xb2,0xab,0x05,0xbd,0xfb,0x58,0xd6,0x9c,0xb6,0x5e,0x9b,0xf2, + 0x7c,0x2f,0xcf,0xd3,0xd5,0x7a,0xbd,0x50,0x4b,0x1c,0x14,0x73,0xe9,0x4a,0xe5,0x7c,0x3f,0x9b,0x94,0x4e, + 0x0d,0x69,0x1e,0x2d,0xed,0x6d,0x2d,0x11,0x2d,0x97,0x71,0xb2,0x14,0xdf,0xa4,0x7d,0xe6,0x1b,0x0a,0x5e, + 0x13,0xc4,0xbb,0x87,0xdf,0x44,0xcd,0xb8,0xc7,0x20,0x7b,0x1c,0x47,0x88,0x47,0xf8,0x19,0xad,0x8e,0xd2, + 0x6a,0x69,0x14,0x29,0x1d,0xf3,0xd2,0xe8,0x68,0xc0,0xf1,0x44,0x65,0xcc,0xcd,0x5e,0x59,0x86,0x65,0x90, + 0xec,0xec,0xd0,0xa1,0x4f,0x42,0x68,0xb4,0x35,0xce,0xcd,0x5b,0xb5,0xe5,0xdd,0x62,0x6e,0x4d,0xc5,0x6d, + 0x0e,0x57,0xc3,0x61,0x5b,0xe7,0x71,0x19,0xcd,0x60,0xba,0xb3,0xb7,0xf7,0xba,0x8a,0xa6,0xb4,0x00,0x16, + 0x0f,0xe1,0xcf,0xb3,0x38,0xca,0x52,0xfe,0x4e,0x1b,0x72,0x4e,0xbf,0x2e,0x9b,0x89,0x51,0x8f,0xbb,0x3c, + 0x33,0xf4,0xc1,0x4f,0x1e,0xe4,0xfe,0xe9,0x40,0xee,0x9f,0x04,0x72,0xff,0x60,0x68,0xb1,0xff,0xc8,0xef, + 0xa6,0x97,0x1e,0x3f,0x63,0x0d,0x07,0x07,0xcf,0x63,0xf1,0x39,0xcc,0xe4,0x10,0x10,0xe6,0x38,0x60,0x31, + 0x3c,0x10,0x16,0x83,0x36,0xa0,0xf5,0x8f,0xaa,0x0f,0x0e,0x87,0xf2,0x01,0x57,0x8b,0xf1,0x28,0xb8,0x61, + 0x5a,0xbc,0x9b,0xea,0x81,0x46,0x01,0x3d,0x8b,0x7d,0x6a,0xfe,0xb2,0x87,0x36,0x03,0xcb,0x60,0x18,0x83, + 0x5f,0x35,0x2e,0xc2,0x3e,0x31,0xf7,0x6a,0xc8,0x42,0x91,0xa6,0x9f,0xa8,0x8b,0x8a,0x7d,0x1d,0x7b,0x28, + 0xef,0xd5,0x85,0xfe,0x7f,0x9e,0x04,0x41,0x58,0x7a,0xe6,0xc1,0x7d,0x50,0x61,0xaa,0x0d,0xac,0xbe,0xcd, + 0x7e,0xb0,0x33,0x22,0x33,0xe7,0x99,0xb9,0x7f,0x6b,0xf6,0xe8,0x0c,0xb9,0x59,0x0b,0x66,0xb2,0x8a,0xbf, + 0x22,0x28,0xc5,0x46,0xe6,0x16,0xc0,0x13,0x7c,0xa7,0xd1,0xb2,0xe1,0xa5,0x9d,0x98,0x2e,0x8b,0xc7,0x4e, + 0x31,0x94,0x31,0x77,0x76,0x33,0x98,0xf2,0xaf,0x2b,0x7f,0x51,0x03,0xbd,0xdc,0x0a,0x3a,0xef,0xb1,0x01, + 0xe7,0xe4,0x9a,0xc5,0x3f,0x53,0x50,0xed,0x1f,0xe8,0xf4,0xfc,0x82,0x43,0x29,0x9a,0xa7,0x43,0xe0,0x92, + 0xea,0x03,0x2b,0xde,0xd3,0xc5,0xbd,0x33,0x26,0xeb,0x2f,0x7c,0x89,0x86,0x34,0xcc,0x2f,0x5b,0xb7,0x84, + 0x51,0x99,0x02,0xef,0xa9,0x12,0x8d,0xa9,0x66,0x7f,0x78,0xc0,0xaf,0x43,0xc5,0x3f,0x1f,0xca,0x4e,0xfa, + 0x41,0x53,0x9a,0x4f,0x4f,0x18,0x6b,0xeb,0x7e,0x16,0x5c,0x6e,0xa8,0x16,0x3a,0x0b,0x3f,0xf2,0xab,0x49, + 0x0d,0xeb,0xe4,0x04,0xae,0x93,0x9f,0xba,0x75,0xca,0x67,0x53,0x27,0xa3,0x2a,0xbf,0x56,0x29,0x9c,0x35, + 0x7f,0xa3,0xbe,0xa5,0x15,0xf5,0xac,0x90,0xa1,0xfa,0x99,0xde,0x45,0x4f,0x83,0x5f,0xbf,0xe9,0x7c,0xfe, + 0xbe,0xf5,0xae,0x99,0x53,0x5f,0xb6,0x4a,0xe8,0xf0,0x15,0x19,0xc6,0xbf,0xc2,0xaa,0xcd,0xc5,0x2c,0x33, + 0x5e,0xa1,0xa1,0x81,0x19,0x54,0x13,0xe8,0x16,0xb8,0x0c,0xb7,0x7c,0x45,0x77,0xb2,0x45,0xe8,0x91,0x5c, + 0xde,0x1f,0x3a,0xfd,0xba,0xed,0xa4,0x3e,0x2f,0x60,0x0b,0xb5,0xdd,0x70,0xd8,0xbb,0xdd,0xed,0xb6,0x73, + 0x45,0x18,0xa5,0x34,0xfb,0xa4,0x3d,0xd6,0xdb,0x76,0x22,0x37,0x6a,0xb4,0x34,0xca,0xf4,0xeb,0x89,0xa9, + 0x15,0x3a,0x98,0x84,0x1d,0xb9,0x6c,0x2f,0xa0,0x22,0xf3,0xd9,0x8f,0x23,0xc8,0x41,0x22,0xc9,0x11,0x27, + 0x3e,0xa0,0x54,0xaf,0x34,0x1e,0xce,0x6a,0xbd,0x8d,0x2c,0xc2,0xcf,0xdd,0x17,0x65,0x2b,0xf4,0x54,0x81, + 0xc4,0x4d,0x28,0x3b,0x2c,0xcb,0x8e,0x57,0xb5,0x2d,0x8e,0x98,0xf8,0x1b,0xda,0x4a,0x66,0x75,0xf9,0x22, + 0x70,0xd4,0x02,0xf0,0x19,0xb9,0x00,0x7d,0xca,0xdc,0x0f,0x41,0x53,0x79,0x69,0x65,0xf2,0xdb,0xb5,0xed, + 0xed,0xdd,0xf5,0xb6,0x02,0xeb,0x07,0x03,0x64,0x03,0x6f,0xe9,0x65,0x9b,0x4b,0x36,0x95,0x8a,0x15,0x3c, + 0x89,0xb0,0xc8,0x36,0xc7,0x83,0x4c,0x14,0xcb,0xd7,0x61,0xb9,0xc4,0x46,0x75,0x12,0x50,0xc9,0x11,0x23, + 0xc6,0xf7,0x76,0x9d,0x22,0x38,0xcd,0xb7,0xd5,0xe4,0xfb,0x2a,0xd1,0x25,0xe1,0x2f,0x88,0x23,0x17,0xda, + 0x2c,0xf5,0xf2,0x80,0x6a,0x05,0xb3,0x4c,0x98,0x3b,0x2e,0x3a,0x7c,0x57,0xcf,0xfe,0xda,0xdb,0xdb,0xdf, + 0x9f,0x7e,0x05,0x99,0xc0,0x0a,0x8b,0xb3,0x23,0x20,0xd8,0xf4,0xb1,0xc9,0x10,0xab,0x7c,0xff,0x08,0x20, + 0x7c,0x8b,0x83,0x85,0xc6,0xc4,0x2f,0x7b,0x49,0x17,0xf1,0x45,0xc4,0x13,0x05,0x05,0xb0,0x75,0xb6,0x58, + 0xc4,0x91,0x5a,0x3f,0x8c,0x83,0xbb,0x79,0x5a,0xb6,0x31,0x1e,0xb3,0xc3,0xa8,0x53,0xc7,0xc6,0xbf,0x11, + 0xe3,0x4e,0x50,0xf1,0x2f,0xd3,0xa8,0x3a,0xfd,0x86,0x68,0xe7,0x67,0x08,0x65,0x36,0x3c,0x63,0x20,0xef, + 0x3c,0xf1,0x40,0x67,0x31,0x77,0x39,0x56,0x95,0xec,0xf8,0x9e,0x4c,0x59,0xba,0x2a,0x39,0x1e,0xb8,0xaa, + 0x91,0xbd,0x29,0x3f,0x53,0xe1,0xd4,0xe5,0xf8,0x4c,0x85,0x2b,0x54,0xc8,0x56,0x3d,0x0b,0x5a,0x8e,0x79, + 0x7a,0xe8,0xb4,0x26,0x65,0xa9,0xb2,0xaf,0x78,0xbb,0xd1,0x23,0x65,0xc8,0x28,0x43,0xee,0xf4,0x7e,0x91, + 0xe3,0xe7,0x6a,0xb2,0x32,0x39,0x7e,0x46,0x8e,0x15,0xe5,0x98,0xba,0x1c,0xf3,0x94,0xd2,0xa3,0x45,0x0a, + 0xc5,0x48,0xd8,0xfd,0x30,0xfb,0x22,0xfe,0xea,0x90,0x6a,0x5d,0x4d,0xbe,0xad,0x92,0x9f,0xab,0x84,0x05, + 0x85,0x93,0x42,0x1a,0xb3,0x75,0x27,0xb6,0x8a,0xe4,0x50,0xdd,0x63,0xa7,0x25,0x85,0x32,0xfb,0x2c,0x59, + 0x28,0xb7,0xcb,0x92,0xb9,0xba,0xca,0xea,0x0f,0x76,0x89,0x12,0xa9,0x65,0x6f,0xaf,0x2e,0x85,0x38,0x92, + 0xe9,0xb4,0x44,0xd1,0xf0,0x2c,0xbc,0xde,0x56,0xa5,0xf7,0x07,0x38,0xb6,0x37,0xb8,0x77,0x7e,0x1d,0x37, + 0xa2,0x57,0xc2,0x6c,0x39,0x87,0x14,0xda,0x71,0x84,0x0c,0x61,0x4d,0x09,0xcb,0x10,0xa1,0x08,0x4c,0x33, + 0x16,0x25,0x6d,0xd4,0x7d,0xfa,0xdb,0x18,0x87,0x17,0xc1,0xe1,0x5a,0x94,0x01,0x48,0x39,0xd2,0x5f,0xfe, + 0xd3,0xb0,0x89,0xbd,0x2e,0xf6,0xc1,0x51,0xec,0x2e,0x78,0x22,0x9a,0x14,0xe4,0x8e,0x41,0x05,0xf3,0x0e, + 0x44,0x21,0x52,0x60,0xcc,0x61,0x87,0xe4,0x16,0xbb,0x10,0x03,0x10,0xfb,0x36,0x9a,0x02,0xa7,0x86,0x19, + 0x0e,0x87,0x60,0x70,0xe9,0x91,0x01,0x9f,0x74,0x43,0x39,0xa1,0xbf,0x87,0x0e,0xb1,0x8b,0x8c,0xc6,0x81, + 0x21,0x61,0xeb,0xce,0xd7,0xee,0x85,0x31,0x9a,0x84,0xf7,0xff,0x99,0xfe,0x00,0xeb,0x54,0x87,0xdc,0x00, + 0x10,0x4c,0xa1,0xf8,0x68,0xa1,0x04,0xe8,0x13,0x7f,0x5b,0x33,0x79,0x12,0x5e,0xd3,0xb4,0x63,0x4c,0x42, + 0x70,0x91,0x12,0x71,0x52,0x31,0x1f,0x28,0x33,0xa5,0x66,0xee,0xdd,0x16,0xbb,0x72,0x29,0x61,0xb9,0x1b, + 0xe7,0x08,0xfe,0x39,0xaa,0x54,0x97,0xb6,0x72,0x75,0x87,0xfc,0x73,0x7a,0x92,0x0f,0x17,0xae,0x57,0x76, + 0x62,0xd4,0x13,0x57,0xf6,0x09,0xd7,0xab,0x8e,0x5d,0x13,0xea,0xdc,0x96,0x36,0x9f,0x6e,0x7d,0xff,0x5c, + 0xf9,0xa7,0x94,0x36,0x33,0x67,0x4d,0x7d,0x4c,0x9b,0x42,0x7d,0xa2,0x3f,0xc6,0x88,0x64,0xfc,0x69,0x6f, + 0xef,0x93,0x23,0x42,0x3e,0xa6,0x9f,0x9c,0xac,0xf7,0x53,0xea,0xd2,0xd9,0x61,0x60,0x3a,0xf8,0xd8,0x8a, + 0xf1,0x3a,0x80,0x46,0xcb,0xbb,0xb2,0x04,0x65,0x44,0x1b,0x99,0x97,0xe4,0xfd,0x7a,0x7d,0x8c,0xc3,0x4c, + 0x6b,0x70,0x2c,0x5b,0xe0,0x61,0xfa,0x7e,0x6f,0x6f,0x39,0x59,0x26,0x2b,0xf5,0x01,0x8f,0x57,0x93,0x2b, + 0x3a,0x1f,0xcf,0xf1,0x38,0x9b,0xcc,0xe8,0xd8,0x9c,0xe0,0xf1,0xc9,0x7a,0x7d,0xa3,0x7e,0xc7,0x53,0x8f, + 0x65,0xcf,0xf1,0xe4,0x38,0xb9,0x54,0xcf,0xf0,0xf5,0x7c,0xbd,0xbe,0x53,0xaf,0xf0,0x74,0xbb,0x5e,0x5f, + 0xa8,0x77,0xe9,0x75,0x34,0x8d,0x9e,0xc6,0x93,0xa7,0x32,0x67,0xc9,0x53,0x04,0xa8,0x62,0xab,0x95,0x94, + 0xd1,0xbe,0x8c,0xd1,0x9b,0xef,0xd2,0xeb,0x32,0xfa,0x3d,0x56,0xaf,0x53,0xbf,0x53,0x5a,0x01,0x31,0xe3, + 0xfb,0x17,0x88,0x48,0x43,0xc4,0xae,0x7a,0x4e,0x10,0x0f,0xbf,0x1f,0x08,0x3f,0x7a,0xed,0x77,0xe7,0x24, + 0xa2,0x1c,0xfc,0xe1,0x61,0xac,0x5e,0xed,0xed,0xbd,0x02,0x1b,0x22,0x79,0xb6,0xb7,0xf7,0x2c,0x62,0x23, + 0x7c,0x57,0x2d,0x5b,0xf4,0xc6,0xb0,0xf2,0x16,0x02,0xf6,0xaa,0xa4,0x9e,0x02,0xd6,0x7a,0x4d,0x8b,0xb0, + 0x5d,0xc1,0x55,0x8b,0x40,0x3f,0x0f,0x02,0x30,0xa8,0x5c,0x9e,0x83,0xd9,0xc8,0xfc,0x40,0xff,0x7c,0xca, + 0x0a,0x00,0x67,0xf0,0x6e,0x58,0x19,0x5d,0x29,0x13,0xe0,0xa8,0xc2,0x39,0x73,0xa7,0xa7,0xfb,0x1e,0xc5, + 0xea,0xf7,0xbd,0xbd,0xdf,0xa9,0xf7,0xaf,0xd9,0xd6,0xee,0x64,0x6f,0xef,0x04,0xfd,0xc6,0xa8,0x4b,0x33, + 0xa8,0x52,0x46,0xad,0xaa,0x36,0xca,0x60,0xc7,0x1c,0xcc,0x05,0x61,0x04,0xa5,0x99,0xaa,0xef,0xe8,0xf9, + 0xaa,0x8c,0xde,0xc5,0x93,0xe0,0x6e,0x7b,0xad,0xde,0xc5,0x49,0x86,0x1c,0x35,0xb5,0xc7,0xf6,0xac,0x2e, + 0xde,0x2f,0xe6,0x43,0x94,0xe2,0x75,0xd8,0x29,0xea,0xca,0x7a,0x4d,0x95,0xbd,0x8e,0x5a,0x4e,0xd5,0x96, + 0xbb,0x60,0x89,0x3f,0xee,0xc1,0xdb,0x16,0x2c,0x31,0xe9,0x7f,0x03,0x96,0x94,0x2c,0x3e,0x17,0xd7,0xa4, + 0x0e,0x74,0xd8,0x1b,0x27,0x32,0x0a,0x2b,0x21,0x10,0xb3,0xfe,0xe3,0x7a,0x60,0x8a,0xc7,0xd6,0x19,0xa6, + 0x84,0x68,0x3a,0xc3,0x94,0x2e,0x72,0xce,0x30,0x45,0xce,0xf7,0x6b,0x7c,0x62,0x98,0xc2,0x99,0x04,0x96, + 0xe0,0x74,0xcb,0x87,0x1b,0x57,0xbb,0x3b,0xdb,0x80,0x23,0x1c,0x85,0x54,0x72,0xdc,0x85,0x47,0xfd,0x22, + 0x3c,0x03,0x4f,0x70,0x06,0x66,0x31,0xc1,0x0e,0x1c,0x99,0xbb,0x78,0x72,0x27,0x55,0x25,0x77,0xf6,0xc8, + 0x9c,0xa7,0x7e,0x7c,0x9d,0xd3,0x11,0xee,0x4f,0x0e,0x3a,0xe6,0xde,0x82,0x6d,0x1a,0xf5,0xa6,0x9b,0x2d, + 0x6b,0xdc,0x0d,0x5c,0xd8,0x63,0xb6,0x30,0xc7,0x6c,0x4e,0x4b,0x7f,0x1e,0x1e,0xb3,0x0b,0x73,0xcc,0x56, + 0x84,0xb4,0x13,0x5e,0xce,0xc7,0x2c,0xc2,0x5e,0xb9,0xe2,0x18,0xa9,0x71,0x1c,0x5c,0x12,0xee,0xb0,0x5d, + 0x4e,0x2e,0x23,0xc2,0x8f,0x11,0xf0,0xc5,0xcb,0x52,0xa9,0xdf,0xe7,0xad,0x4d,0x3b,0x68,0xed,0xc1,0xf6, + 0x98,0xa2,0xfe,0xde,0xc3,0xf5,0x6f,0x5f,0xba,0x84,0x19,0x35,0x43,0x43,0x68,0x49,0x82,0x71,0xec,0xf8, + 0xd6,0x1e,0xa8,0x95,0x39,0x50,0xf3,0xfe,0x03,0xb5,0x6a,0x8d,0xda,0x1e,0x28,0x9a,0x94,0x27,0x72,0xa0, + 0x8e,0x5b,0x07,0xea,0x5c,0x1d,0xbb,0x03,0x75,0x6e,0x0f,0x14,0xd1,0x23,0x33,0x4a,0x39,0xa7,0x46,0xd7, + 0x6b,0x2a,0x76,0xde,0x66,0x4d,0x5c,0x05,0xf7,0xf8,0x50,0x38,0xf4,0x2d,0xb3,0xd2,0x41,0x5e,0xbf,0xcd, + 0xde,0xb6,0x1c,0x95,0x5e,0x97,0x86,0xa8,0xe6,0xc8,0xd5,0x96,0x78,0x76,0xce,0x35,0xe6,0x45,0xed,0xa2, + 0xc6,0x42,0x6f,0x82,0xb2,0xb7,0x19,0xb3,0xd0,0xb0,0x38,0x3d,0x3c,0x4b,0xa0,0x19,0xd2,0x60,0x91,0x2c, + 0xf7,0xc1,0xe0,0x5d,0x5f,0x05,0xd1,0xa6,0x6e,0xcc,0xc9,0x1e,0x04,0x8a,0xe4,0xb2,0x2e,0x73,0x20,0x27, + 0x12,0xe7,0xa5,0xec,0xf3,0x1a,0xcb,0x1c,0x3c,0xd6,0xe5,0xb9,0xe6,0x50,0x68,0x35,0x1d,0xba,0x86,0x0f, + 0xed,0x89,0x71,0x0f,0x2a,0x51,0x6f,0x32,0xc7,0x2c,0xdd,0xdf,0x17,0x66,0x5f,0x75,0x9a,0x21,0x58,0x33, + 0xa4,0xa2,0x86,0xa1,0x3a,0xf5,0x59,0x8a,0x38,0x8f,0x20,0xab,0x33,0x79,0x60,0xb4,0x65,0x1e,0x8d,0x09, + 0x79,0xf0,0x2d,0xd0,0x76,0xf4,0xdc,0xfd,0x55,0xb0,0x4f,0x80,0x9b,0x61,0x8e,0xa0,0xf1,0xd3,0xd2,0xea, + 0x56,0xe1,0x7c,0xcf,0x23,0x1b,0x35,0x95,0x10,0x5d,0x5a,0x7c,0x2b,0xd8,0x25,0x28,0xc7,0x8a,0xa6,0x22, + 0x8f,0x4d,0x39,0x32,0xea,0x13,0x8e,0x9c,0xa2,0xda,0x57,0x6e,0x3a,0xa8,0x55,0x60,0x6d,0x2e,0x95,0xf9, + 0x00,0xac,0x96,0xaf,0x8b,0xd0,0x7c,0x36,0x76,0x1d,0xdb,0x67,0x6d,0x59,0xb0,0xc1,0x28,0xde,0x19,0xb6, + 0x9b,0x22,0x69,0xcd,0xc1,0x3e,0xb9,0x27,0x78,0x81,0xa7,0x49,0x64,0x84,0x46,0xf4,0x91,0x89,0xa0,0xb7, + 0x55,0x91,0x85,0x99,0x4b,0xa1,0xc8,0x66,0xe2,0x5f,0x77,0x71,0x0d,0xcf,0x75,0x19,0x0f,0xa8,0xbf,0xbb, + 0x50,0xd2,0x12,0xa6,0xf8,0xb8,0xee,0x63,0xc5,0x72,0x97,0xb2,0x94,0x3b,0xb2,0x93,0x23,0xeb,0x55,0x74, + 0xb3,0xb4,0x05,0xe1,0x05,0x09,0xcc,0x68,0xc9,0xb3,0xc7,0xd5,0xc8,0x2a,0x2d,0xfb,0xb5,0xcf,0x62,0x9f, + 0x7a,0x9a,0x9d,0x45,0x50,0x36,0x8d,0xc7,0xc6,0xd0,0xba,0xb6,0x6e,0x8f,0xc2,0xc1,0x6c,0x5c,0xf7,0xd5, + 0xe0,0x70,0xe3,0xdf,0xac,0x6e,0xa6,0xb1,0x1b,0xbc,0x0e,0x62,0x05,0xaa,0x1b,0xb9,0xab,0x69,0x63,0xdc, + 0xc4,0x13,0x59,0x66,0x6c,0xdc,0x7a,0xb2,0xda,0xb2,0x6d,0x40,0xb2,0xba,0x89,0x93,0xce,0x97,0xe8,0x06, + 0x7c,0x2a,0x88,0x7b,0xd4,0x15,0x35,0x79,0x8d,0x29,0xce,0xa3,0x39,0x0d,0xf9,0x72,0x7b,0xbe,0x09,0x62, + 0x44,0x81,0x06,0xb5,0x6b,0x72,0xd5,0xb5,0x63,0x18,0x89,0x90,0xbe,0x5d,0xb6,0x93,0xd9,0x5b,0x4c,0xf4, + 0xe5,0x0e,0x6f,0x6c,0xc3,0x10,0xb5,0xf7,0xac,0x81,0x97,0xb2,0x5f,0x39,0xb2,0x28,0xcf,0xaa,0xa1,0x54, + 0xb4,0xea,0xcd,0xd6,0x9b,0xea,0x1c,0xd6,0xc8,0xbc,0xf5,0x38,0x50,0xd5,0x0b,0x75,0x0d,0x51,0x58,0x64, + 0x66,0x83,0x1d,0x6e,0x25,0xac,0xe9,0x1f,0x98,0xcd,0x07,0x07,0x70,0xe6,0xa4,0x5c,0xe2,0xa9,0x0c,0xba, + 0x87,0x93,0xd6,0x39,0x2e,0x62,0x21,0xe3,0x57,0x6d,0x5b,0x0e,0xa3,0x20,0xb7,0x6a,0x89,0x84,0x3b,0xec, + 0x8e,0xab,0x40,0x84,0xd6,0x85,0x93,0xf1,0xfd,0x61,0xe0,0xe9,0x8a,0x68,0xdb,0xc7,0xc1,0x6e,0xac,0xe2, + 0x39,0xc7,0xc5,0x55,0x76,0x86,0x8d,0x63,0x44,0x28,0xb1,0xd8,0x88,0x29,0x76,0x1d,0xd0,0xb3,0x56,0x1f, + 0x44,0xf2,0xd2,0x5d,0x35,0x23,0xab,0x37,0x85,0xc2,0x5e,0x5e,0x5b,0x7b,0xc9,0x71,0xcf,0x94,0x5a,0x72, + 0xb3,0xff,0xbc,0xf9,0xcb,0xa0,0xeb,0x0d,0xf8,0x52,0x1c,0x01,0x74,0x9d,0xd4,0x4b,0xa7,0xfc,0x40,0xcb, + 0xd8,0xa6,0x9d,0x96,0x7c,0xe8,0x04,0x6a,0x5a,0x9d,0x0d,0x03,0x7d,0x22,0xe8,0xf7,0x4b,0xb6,0x98,0xbd, + 0x9b,0x88,0x26,0x2f,0x67,0xe7,0x08,0xe3,0xb9,0xdd,0x5b,0x45,0xcf,0x12,0xdf,0x39,0x00,0x2d,0x60,0x4d, + 0x2e,0x32,0xb6,0x3b,0x79,0x35,0x8b,0xe3,0xd5,0xa8,0x65,0x8a,0x62,0xe6,0xcf,0x48,0x14,0x1e,0x04,0x5e, + 0x9e,0xc6,0xc5,0x98,0x0d,0x46,0x9d,0x2a,0x2c,0xc3,0x19,0x1d,0x38,0x26,0x1a,0x9d,0xd7,0xa6,0x56,0x2c, + 0x4a,0x7f,0xb5,0xca,0x1b,0xfa,0xca,0x48,0xa1,0xeb,0xaa,0x85,0x3d,0x2d,0xd5,0xda,0xd7,0x79,0x71,0x6c, + 0x13,0xfe,0xf7,0x9b,0xf1,0xc3,0xbf,0x08,0x3c,0x78,0xe6,0x66,0xa1,0xab,0xc7,0x69,0x69,0xb6,0x59,0xc1, + 0x11,0x9a,0x8d,0xf3,0x31,0xd1,0x13,0xf3,0xba,0x79,0xe1,0x9d,0x5b,0xb6,0xae,0x93,0x52,0x24,0xb0,0xe8, + 0x58,0xe9,0x2f,0x09,0xf4,0xd2,0x58,0x09,0x60,0x54,0x7c,0xe8,0xf8,0x26,0xae,0x6c,0x72,0x78,0x21,0xbb, + 0x44,0xba,0x51,0x23,0x89,0x35,0x2e,0xab,0xd3,0x0e,0xcb,0x6a,0xf5,0xb2,0xbb,0x61,0x16,0x71,0x61,0x3f, + 0x09,0x82,0xb8,0x32,0x23,0xc3,0xf5,0xfd,0xd8,0x9e,0x3d,0x09,0x58,0x27,0x06,0x10,0x2e,0xaa,0x82,0x04, + 0x22,0x65,0xe6,0x01,0xd4,0x18,0x78,0xf3,0x4e,0xa2,0x73,0xc4,0x9f,0x7b,0xc2,0xda,0xb4,0x8b,0x88,0xc9, + 0xa7,0x16,0x60,0x3b,0x0f,0x6c,0xad,0x35,0xdb,0x5a,0x5b,0xc9,0x9e,0x61,0xb3,0x81,0xfb,0x28,0x77,0xbd, + 0xe9,0xe3,0xbe,0x04,0xb3,0x64,0x5c,0x49,0x7b,0x27,0xc5,0xfb,0x69,0x99,0x74,0x3d,0xcb,0xb9,0x56,0x80, + 0x20,0x1e,0xa6,0xe9,0xc1,0x41,0xe1,0x0b,0xc0,0x6d,0x46,0xe3,0xd5,0x24,0xfc,0x07,0xb8,0x35,0xdc,0x44, + 0xee,0x7e,0x15,0x53,0x96,0xbe,0xcb,0x5d,0x6c,0x56,0x9c,0xdc,0x12,0x84,0x8c,0xb9,0x2a,0xcf,0xd9,0xbf, + 0xb4,0xc1,0x86,0x3a,0xfd,0xe7,0x39,0xb6,0x69,0x34,0xbf,0xdc,0xd5,0xb1,0x37,0x98,0xf1,0x2b,0x2f,0x22, + 0x1f,0x64,0x8b,0x27,0x32,0xa2,0x04,0x7e,0xe0,0xf8,0x0c,0x2d,0x0c,0x42,0x13,0x22,0xe6,0x4e,0xc7,0xce, + 0x43,0x88,0x02,0x10,0x82,0x85,0xf7,0x86,0xb0,0x02,0x4c,0x90,0x4d,0x81,0x7e,0xb2,0xe1,0x50,0xe6,0xd0, + 0x8b,0x32,0x58,0x98,0xa7,0xa6,0x3a,0x8f,0x43,0x41,0xed,0x85,0xef,0x20,0xed,0x50,0x29,0x13,0xd4,0xba, + 0x86,0x57,0xa0,0x27,0xac,0xca,0xc0,0x68,0xed,0x52,0x44,0xd5,0x96,0xb2,0x94,0x70,0xf7,0x3d,0x66,0x3a, + 0x38,0xfa,0x6d,0x23,0x9c,0x4a,0xd7,0xe5,0xe2,0x46,0xcf,0xe2,0xc9,0x7b,0x7b,0xec,0x70,0x23,0xe8,0x9e, + 0xd2,0x50,0xd2,0xb1,0xfa,0x11,0x19,0xe0,0x55,0xfd,0x9e,0xa5,0xe2,0xd4,0x25,0x69,0xce,0xbd,0x6a,0x63, + 0x0f,0xd5,0x18,0x7b,0x28,0xc9,0x7d,0xbc,0xa0,0xf5,0x9c,0xb1,0x0d,0x11,0x5e,0x4f,0x18,0xcf,0x8a,0xfb, + 0xdc,0x23,0xf5,0x81,0x70,0x27,0x1a,0x9d,0xa9,0x2b,0x83,0x68,0xd3,0x1a,0x5e,0xf1,0xac,0xcc,0xd2,0x2b, + 0xbf,0x88,0xb3,0x74,0x86,0x60,0xd2,0x6c,0xeb,0x11,0x83,0xb6,0xe0,0xe5,0x46,0xc9,0x9b,0x10,0x8b,0xb9, + 0x4c,0xbd,0x62,0x9a,0xac,0x0f,0x72,0x5f,0xf3,0xa5,0xc6,0x41,0x35,0x69,0x2b,0xcd,0x1e,0x5b,0x6f,0x80, + 0x7e,0x2b,0xcd,0x62,0x9b,0x76,0x3a,0x73,0x5b,0x69,0xab,0x03,0x92,0xc3,0x35,0xbf,0x81,0x92,0x1f,0x43, + 0xdb,0x09,0xb0,0x26,0xe4,0xa2,0xa3,0x7a,0x43,0xeb,0x7b,0xb9,0x85,0x49,0x42,0xe1,0x5e,0x50,0x5f,0x6c, + 0x04,0x22,0xaa,0x0f,0x89,0x90,0x3e,0xe4,0x41,0xdb,0xd0,0x64,0x84,0x8f,0x81,0x40,0x21,0x4c,0x4c,0x9f, + 0x5e,0x9d,0xd1,0x50,0x7c,0xd4,0x32,0xa2,0x9c,0x0b,0x7c,0x7a,0x42,0x3f,0x97,0x67,0xea,0x3c,0x1d,0x64, + 0x82,0x8e,0x2e,0x1f,0xa7,0x44,0x79,0xce,0x1e,0xa7,0x97,0xe3,0xb8,0x8c,0xae,0x89,0xec,0xa1,0xc2,0xfb, + 0xfb,0xcb,0xb3,0xa4,0x04,0x1e,0x87,0xaa,0x0e,0x0e,0xae,0xce,0x12,0xda,0xa1,0xd7,0x8a,0xc8,0xea,0xe8, + 0x29,0x7e,0xa9,0x37,0x85,0x22,0x6a,0xdb,0x66,0xe6,0xea,0x69,0x12,0xce,0x62,0x64,0xbc,0x51,0x4f,0x38, + 0x23,0xfd,0x72,0xc6,0xcb,0x58,0xd9,0x7a,0xb8,0x03,0x07,0x07,0x97,0x92,0xf1,0xda,0x64,0xbc,0xf6,0x19, + 0xcf,0x7b,0x90,0x91,0x6b,0x73,0xeb,0x07,0x76,0x9b,0xd1,0x8d,0x40,0x30,0xdf,0x83,0x56,0xc5,0x37,0xa6, + 0xab,0x37,0xbe,0xab,0x7d,0x15,0x73,0x25,0x52,0x7d,0xd0,0x45,0x3f,0x16,0xa2,0x14,0x6b,0xd1,0x96,0x9e, + 0x12,0xd9,0xa5,0x96,0xea,0x0a,0x11,0x71,0x22,0x90,0x19,0x77,0x6c,0x65,0x36,0xa9,0x4f,0xf9,0xe1,0x8c, + 0x68,0xf3,0x3b,0x65,0x72,0x4c,0xe6,0x11,0x5a,0xb5,0xfd,0xe6,0x9b,0x67,0xc6,0xdd,0x5a,0x50,0x13,0xd3, + 0x33,0xd3,0xb7,0x85,0xef,0x1b,0x52,0x6d,0x00,0xef,0xbe,0x7e,0x2e,0x82,0x7e,0xc2,0x8c,0xa9,0xa7,0x7a, + 0xdf,0xeb,0xf1,0xf2,0xab,0xab,0x09,0x2e,0x46,0x22,0xa8,0x4f,0x2f,0xf7,0x8f,0xce,0x08,0x68,0x11,0x86, + 0x95,0xc8,0x8b,0x60,0x5c,0x6a,0xa6,0x2e,0x09,0x40,0x25,0xb3,0xaf,0x68,0xa3,0x1d,0x9b,0xa1,0x6d,0xa2, + 0xa5,0xba,0xa1,0x74,0x10,0xea,0x09,0xef,0x44,0x26,0xd7,0x1c,0x22,0xd6,0xb6,0x81,0xa5,0xcc,0x50,0x6e, + 0xba,0xa0,0x5f,0x46,0xe0,0x2e,0xd5,0xa1,0xba,0xf4,0xfb,0x0d,0x7c,0x0d,0xa6,0x04,0x8e,0x69,0x11,0x0e, + 0x69,0xa6,0xed,0x97,0x38,0xf9,0xcb,0x4a,0x13,0xf9,0x2e,0x4a,0x74,0x8c,0x23,0xf4,0xe4,0x33,0x07,0x47, + 0xed,0x3e,0xec,0xd6,0xb2,0xcb,0x1f,0xb7,0x30,0x6c,0x4d,0x80,0xbe,0x4a,0x38,0x73,0x74,0xcb,0x38,0x29, + 0x89,0xed,0x53,0x1f,0x9e,0xae,0xdb,0xc8,0x53,0x0f,0x7e,0x0b,0xec,0xd6,0x5f,0x21,0x66,0x31,0x19,0xe7, + 0x15,0xc2,0xff,0x13,0xfb,0xf5,0x81,0x9d,0x8d,0x78,0x15,0x51,0xa1,0xdb,0x91,0x50,0xa5,0x88,0x76,0xd6, + 0x30,0xa0,0xc6,0xdf,0x77,0x42,0x30,0xb0,0xe5,0x0f,0x9c,0xfc,0x5b,0x25,0x5e,0xb6,0xf7,0x09,0xa1,0x57, + 0x95,0x56,0xeb,0xf5,0x74,0x6f,0x6f,0x0a,0xd0,0xa7,0xcc,0x65,0xa0,0x0c,0xdc,0x35,0x84,0x13,0xe3,0x36, + 0x2d,0xe8,0xef,0xbd,0xdf,0xf5,0x83,0x7b,0x42,0xd6,0x05,0x34,0x4e,0x05,0xc5,0x28,0xd3,0xa9,0x9f,0x7a, + 0x28,0x15,0x19,0x5a,0xba,0x14,0x5d,0x1e,0x85,0xc4,0x1e,0x78,0x1e,0x07,0xe4,0x34,0x96,0xc2,0x55,0x5b, + 0xc7,0x06,0x11,0x59,0x19,0x3d,0x93,0xab,0xac,0x3e,0x76,0xea,0xbd,0x51,0x2c,0xe4,0x32,0xb5,0xea,0x1a, + 0x74,0x3a,0xd2,0xbe,0x07,0x5e,0xe5,0x16,0x1c,0x1f,0x46,0x3a,0x7d,0xa2,0x0b,0x0f,0xde,0xd2,0x0f,0x59, + 0x70,0xe0,0x47,0x60,0xa7,0x4e,0xf7,0x55,0x09,0xbc,0x77,0x26,0x87,0x33,0x1b,0x9d,0x75,0xbe,0x5e,0x0f, + 0xde,0x47,0x73,0xb5,0x22,0x70,0xcf,0x4b,0x12,0xdf,0x2f,0xe0,0x79,0x5f,0x68,0xe9,0x79,0x3a,0x6f,0x59, + 0x99,0xa3,0xc4,0x62,0xbd,0x9e,0xb7,0x1b,0x7e,0x80,0x88,0x45,0x2b,0xe3,0x92,0x1b,0xb3,0x69,0xa2,0x4a, + 0x87,0x71,0xc2,0x6f,0x44,0xd9,0x1a,0x15,0x7c,0xa2,0xe3,0x14,0xdf,0x5f,0xa3,0x93,0x97,0xa2,0x96,0x28, + 0x8d,0x0d,0xae,0xb1,0xc0,0x53,0xb1,0xdb,0xc8,0x75,0x34,0xb5,0x6e,0x6f,0x4c,0x90,0x45,0xde,0x1a,0xc1, + 0x61,0x32,0x98,0x9d,0x79,0xb7,0x52,0x36,0xef,0xee,0xaf,0x73,0xf1,0xd4,0x56,0x49,0x5d,0x5b,0x2e,0x8b, + 0x5a,0x70,0x90,0x6c,0x98,0x99,0x5a,0x6e,0x9a,0x4c,0x1d,0x00,0x49,0xa0,0xad,0x34,0x63,0x76,0x8c,0xe3, + 0x37,0x33,0x97,0x79,0x66,0x90,0x1d,0xaa,0x4c,0x30,0x1b,0x03,0x3e,0xf8,0x4f,0xed,0xad,0x86,0x66,0xdc, + 0xaa,0x78,0x08,0xb5,0x35,0x40,0x7f,0x89,0xb6,0x82,0xd7,0x9f,0x79,0x21,0x1a,0xfd,0x5d,0xb5,0x9a,0x17, + 0xc0,0xf8,0xb0,0xf1,0xe4,0x60,0xcb,0xb1,0x59,0xba,0xdd,0xf6,0x91,0xe1,0x1d,0xbe,0x37,0xe3,0x29,0xc2, + 0x5e,0x5a,0x33,0xf0,0x95,0x55,0x46,0xa6,0xa5,0x18,0x35,0xe5,0xeb,0xf2,0xd6,0xea,0x2a,0x8a,0x79,0xb8, + 0x51,0xb3,0x50,0x53,0x39,0xc6,0x57,0x82,0x57,0xd1,0xc5,0xd1,0xa2,0xa9,0xaf,0x78,0xa0,0x73,0x01,0xaa, + 0x8e,0x97,0x2b,0x30,0xf8,0xa6,0x73,0x8b,0xe1,0x3e,0xc1,0xe9,0xb3,0x70,0xc7,0xae,0xfa,0xa5,0x0f,0x2a, + 0x72,0x27,0xaa,0xc6,0x74,0x3d,0xbb,0x7d,0x7a,0x41,0x7b,0xf2,0xa2,0x8f,0xec,0xb8,0x08,0xc8,0x8e,0x8b, + 0x33,0x82,0xe0,0xe8,0xc9,0x25,0x9f,0x7a,0xd1,0x59,0xbc,0xf3,0x95,0x9c,0x53,0x25,0xe7,0x3d,0x54,0xeb, + 0xb9,0xa7,0x5a,0xcf,0x99,0x6a,0xbd,0x14,0x2c,0xe9,0x36,0xbd,0xdc,0x82,0x69,0xa8,0xfe,0x76,0xc4,0x5e, + 0x1a,0x67,0xae,0xef,0x9f,0xd2,0xa3,0xf1,0xa7,0xc7,0xb7,0xe0,0xa7,0xda,0x5a,0x3f,0xd1,0xa9,0xe1,0x84, + 0xd3,0x4f,0x67,0x16,0x71,0xa6,0xdc,0x54,0xf3,0x25,0xd5,0x2a,0x03,0xdd,0x98,0xdb,0x02,0x5e,0x2f,0x0e, + 0xd5,0xa1,0xb9,0x26,0x88,0x74,0x41,0xa4,0xbd,0x20,0x2c,0x95,0xac,0xde,0x22,0x16,0x68,0xb6,0x11,0xd6, + 0x86,0xe4,0x88,0xee,0x0d,0x9b,0x34,0x29,0x2a,0x65,0xb8,0xa7,0xc9,0xe9,0x05,0x2c,0x93,0xd4,0x87,0x4a, + 0xfd,0x5e,0xa9,0x9f,0x2a,0xf5,0xf5,0xc4,0x19,0x6d,0x95,0xca,0x72,0xc5,0xf0,0x2c,0xbb,0xa8,0xe3,0x60, + 0x81,0xf9,0xb7,0x01,0x5f,0x7d,0x62,0x44,0x36,0x4c,0x00,0x6c,0x92,0xfb,0x8d,0xb3,0x22,0xb9,0x26,0xe2, + 0x32,0x1e,0x7f,0x43,0x77,0x8d,0x53,0x55,0xdf,0x32,0x30,0x13,0xef,0x23,0x54,0xb9,0x31,0x66,0xd9,0x12, + 0x95,0x35,0x3b,0x14,0xdd,0xc7,0xec,0x28,0xf1,0x86,0xc6,0x04,0x4f,0xc7,0x1f,0x4b,0x11,0xb7,0xc1,0x0e, + 0x86,0xed,0x8d,0x51,0xf4,0xae,0x4c,0xef,0xad,0x0d,0x74,0xd2,0xc5,0x1d,0xe3,0x7b,0xeb,0xf9,0x84,0xa5, + 0xc7,0x70,0x4d,0x2a,0x34,0x20,0x07,0x2e,0x67,0x51,0xda,0x8d,0x31,0x53,0x85,0xd9,0x74,0xb1,0xd3,0x2e, + 0xfa,0xae,0xdc,0xb2,0xfd,0xb6,0x06,0x82,0x74,0xe1,0x5f,0x18,0xcd,0x15,0x6f,0x1a,0xd3,0xf8,0x8a,0x61, + 0x71,0x73,0x9d,0x2d,0x4d,0x78,0x08,0xe7,0x97,0xf1,0x9c,0xd9,0x71,0x43,0xeb,0xa8,0xc7,0x75,0x90,0xfd, + 0x0c,0x34,0x23,0x89,0xc2,0x25,0x81,0x27,0xbc,0x86,0x3e,0x6d,0x67,0x67,0x22,0xac,0x82,0x67,0x8e,0x08, + 0xcc,0x1a,0x3d,0xdb,0x93,0x6f,0x2c,0x10,0xb8,0x55,0x6a,0xaa,0x19,0xaa,0xdb,0xb2,0x57,0x19,0x25,0xcc, + 0xc9,0xca,0x5f,0x4f,0x77,0xe5,0x33,0xab,0x88,0xef,0xdf,0x70,0x17,0x65,0x85,0x00,0x7b,0xe0,0x72,0xa3, + 0x3b,0x53,0x5b,0x2e,0x54,0xa0,0xe0,0xd7,0x59,0x97,0xf8,0x7e,0x6b,0x12,0xc7,0x56,0x61,0xdf,0x4d,0xa5, + 0x89,0xfb,0xf4,0x97,0x13,0xcb,0xe0,0x79,0x54,0x97,0x04,0xd1,0xa2,0xf6,0xbe,0x36,0x30,0xff,0x15,0x42, + 0x06,0x20,0xf6,0x31,0x44,0x2e,0xb0,0xbb,0x36,0x0e,0x6c,0x26,0x26,0xce,0xdf,0x56,0x59,0xa7,0x3a,0x71, + 0x8c,0x5e,0x96,0xbc,0xea,0xda,0x1b,0x5b,0x38,0xc7,0x02,0x84,0x55,0x82,0xb6,0x31,0xce,0x05,0xb0,0x80, + 0xb2,0x69,0xcd,0x94,0x01,0x15,0xf3,0x78,0xcd,0x85,0x53,0x78,0x7a,0x62,0x9f,0x94,0x35,0x29,0xde,0xa1, + 0x53,0xe4,0x32,0x6e,0x62,0x82,0x15,0x01,0x57,0xa7,0xa3,0x3b,0xe5,0xba,0x90,0xfa,0xc1,0x89,0x72,0xc5, + 0x7a,0xbd,0x15,0x75,0xd2,0xc1,0xc6,0x9c,0xad,0xaa,0x0f,0x59,0x0a,0x63,0xf9,0x52,0x36,0xa0,0xc0,0xe3, + 0xe9,0xb8,0x86,0x77,0x35,0x42,0x1b,0xfd,0xd7,0xd3,0x1a,0x2e,0x4c,0xf2,0xf4,0x5d,0x44,0xc0,0x06,0xb6, + 0x9a,0x50,0x81,0xe5,0xf0,0x64,0xe2,0x73,0x50,0xec,0x15,0x23,0x9f,0x90,0xe6,0xde,0xa8,0xe0,0x55,0xc4, + 0x45,0x02,0xaf,0xc3,0xb8,0x67,0xa0,0x91,0x62,0x32,0xbf,0x82,0x12,0x1a,0x4c,0x6f,0x78,0x8f,0xb5,0x52, + 0x53,0xc2,0x95,0xc6,0x25,0xef,0xf8,0x76,0x3a,0x21,0xda,0x01,0xb6,0x7b,0x5c,0xb6,0x0c,0x8c,0x11,0xe8, + 0x51,0x57,0x77,0x7d,0xfa,0xb8,0xb4,0x25,0xac,0x9b,0x66,0xcf,0x1b,0x0a,0x65,0x6d,0x62,0x2e,0x35,0x84, + 0x0b,0xb8,0x49,0x63,0x8c,0xa7,0x12,0x63,0x48,0x13,0x30,0x41,0x4a,0xf1,0xd5,0x6a,0xcc,0x1d,0x9d,0xf5, + 0x0f,0x0c,0x6a,0x3d,0x6b,0x63,0x47,0x26,0xe3,0x2a,0xa5,0x5b,0xf2,0x48,0x61,0x0f,0x99,0x0f,0x0e,0xfe, + 0x05,0xfd,0xfc,0xd8,0x12,0xa7,0x77,0x8d,0x19,0x6e,0xd8,0x94,0x01,0xe8,0x1f,0x3f,0x42,0x3b,0xb8,0x60, + 0x4c,0x55,0xbe,0x00,0x55,0x15,0xa4,0x60,0x34,0xcb,0x6b,0x06,0x7d,0xf2,0xa1,0x65,0x40,0x19,0xcc,0xc4, + 0xa0,0x87,0x1d,0x01,0x69,0xa0,0xa8,0xb9,0x6f,0xc9,0xe1,0x27,0x4d,0x82,0xd2,0xbb,0xc5,0x3b,0x12,0xb6, + 0x92,0xa0,0x38,0xc3,0x90,0xe4,0x8e,0xd0,0x7b,0xba,0x70,0x12,0xf1,0xf8,0xda,0x85,0x1c,0xdd,0xdd,0x1d, + 0x15,0x29,0xd5,0x4e,0x44,0x97,0x69,0xbe,0xe8,0x36,0xcf,0x11,0x50,0xce,0x09,0x66,0x54,0xf9,0x25,0xfc, + 0xb3,0x3f,0xa3,0x31,0x2e,0xb2,0xbb,0x74,0x58,0x50,0x67,0x8c,0x33,0x4a,0xb6,0x67,0x99,0xc9,0x07,0xa8, + 0xcd,0x77,0x92,0xa0,0x96,0x51,0x4e,0x0c,0x73,0x8d,0x6f,0x43,0x46,0xfa,0x20,0xb7,0x0d,0x8f,0x66,0xa7, + 0x54,0x9a,0x03,0xb6,0x74,0xeb,0x4a,0xab,0x49,0x9e,0x48,0xdb,0xbd,0xae,0x8d,0xb6,0xc6,0x38,0x1e,0x54, + 0x83,0x74,0x10,0x02,0x98,0xe8,0x2f,0xc7,0xbc,0xd5,0xd7,0x6a,0xf2,0x97,0xbd,0xed,0x9b,0x24,0x00,0xb9, + 0xe5,0x5f,0x15,0x34,0x83,0xe9,0x1f,0x6b,0x5f,0xad,0x66,0xf8,0x70,0xed,0x54,0xf4,0xac,0xb1,0x38,0xb6, + 0x30,0x47,0xfb,0x2f,0xbb,0xc8,0x11,0xd3,0x1f,0xd2,0xe6,0x61,0x1f,0xf7,0xc6,0x51,0xbd,0x28,0x4a,0x25, + 0x4f,0xcb,0x92,0x90,0xd0,0x42,0x4d,0xeb,0xda,0x3d,0x63,0x8f,0xd9,0x6c,0xac,0xe9,0x67,0x9e,0x03,0xf5, + 0x6e,0x93,0x12,0x28,0x67,0x87,0x79,0xac,0x62,0x76,0x98,0xab,0x93,0xb6,0xa5,0xf9,0x1d,0xe6,0xed,0x49, + 0x0f,0xf4,0xce,0xda,0x49,0x3b,0xf3,0x76,0x1a,0xb4,0x9a,0x21,0xc9,0xa9,0x28,0xf5,0x29,0x93,0x2e,0xbe, + 0x45,0xce,0x82,0x1b,0xe7,0x43,0x19,0xf8,0xd1,0xc6,0x61,0xdd,0x72,0xd6,0x61,0x21,0x25,0xb8,0x96,0x2d, + 0x37,0x1d,0x36,0x64,0xc0,0x84,0xea,0xf8,0x55,0x07,0x66,0xac,0x58,0xf8,0x20,0x2a,0x6a,0xd0,0x02,0x1b, + 0xee,0x05,0x01,0xcb,0x1d,0xeb,0x80,0x43,0x35,0xfa,0xf0,0x7f,0xcc,0x38,0x60,0x17,0x46,0x36,0x72,0xd3, + 0x76,0xdc,0xb6,0x56,0x98,0xc7,0x92,0x4a,0xdc,0x46,0x79,0x7c,0x96,0x96,0x88,0xf3,0xb8,0x1d,0xb8,0xf5, + 0xa4,0x74,0x6c,0xfd,0x47,0xbf,0xcd,0x0e,0x7c,0xe8,0x83,0x87,0x8f,0x8c,0xd1,0x1b,0xe3,0x1c,0xce,0x6e, + 0x2b,0x6a,0x45,0x47,0xb8,0x97,0x90,0x08,0xdb,0xae,0x4c,0x7c,0x97,0x37,0xc6,0x96,0xb1,0xec,0xf5,0xc7, + 0x2d,0x78,0xdc,0x2f,0xe2,0x88,0xee,0x59,0x5f,0x9e,0x21,0x8e,0xa6,0x80,0x9f,0x82,0x1d,0xad,0xbd,0xb2, + 0x7b,0xb8,0xa5,0x91,0x2f,0x1d,0x79,0x58,0xb6,0x02,0x36,0x74,0x43,0x08,0x74,0x43,0xf2,0xf4,0x84,0x12, + 0x30,0xa1,0x05,0x99,0xa3,0x2f,0x76,0x6c,0xd1,0xef,0x84,0x9d,0x38,0xcf,0x43,0x87,0x16,0xd7,0x62,0x8f, + 0xf9,0x10,0x02,0xba,0x20,0x5a,0xa7,0x87,0x4c,0xed,0x86,0xad,0x89,0x5c,0x31,0x6d,0xbc,0x8d,0xd3,0xbc, + 0x47,0xff,0xca,0x91,0xd7,0x51,0xe0,0xdb,0xda,0xb3,0xfa,0x4d,0xd0,0x39,0xda,0x4d,0xa5,0x75,0x1c,0xe4, + 0x3e,0xa1,0x3e,0x76,0xe6,0x8e,0x23,0x43,0x3b,0xd9,0x7e,0x39,0x11,0xe4,0xcb,0xc4,0x26,0x18,0x9e,0x07, + 0x8a,0xe5,0x07,0xc3,0x7d,0x29,0xb2,0xca,0x67,0xfb,0xc3,0x83,0xe1,0x38,0x67,0xa6,0xbb,0x18,0x43,0xf1, + 0xf3,0x24,0xf7,0xcc,0x9f,0x49,0xb6,0x0f,0x6c,0x17,0x8f,0xc3,0x24,0xdb,0xcf,0x39,0x52,0x41,0x1d,0xe5, + 0xc2,0xdc,0x84,0x41,0x81,0x11,0xad,0x4a,0x8a,0x53,0x87,0xcf,0xe2,0x09,0xa7,0x70,0x19,0xfc,0xf2,0xdf, + 0xb1,0xe8,0x60,0x18,0xe3,0x2e,0x82,0x5c,0xf2,0xc0,0xca,0x44,0xc1,0x8c,0xa4,0x38,0x1b,0xec,0x43,0x7e, + 0x95,0x06,0x31,0x08,0xd4,0x02,0x93,0xb0,0x12,0x66,0x48,0xd7,0xc9,0x15,0x42,0xef,0x75,0x92,0x04,0x37, + 0x7d,0x56,0x32,0x0f,0xaa,0x05,0xe7,0x63,0xb5,0x80,0x43,0x2a,0xb9,0x15,0x06,0x7d,0x88,0xef,0x83,0x8e, + 0x28,0x42,0x87,0xda,0x86,0x9b,0x28,0x27,0xfa,0x92,0x4a,0xd2,0xc6,0xc5,0x6f,0x34,0x58,0xf4,0xdd,0xf4, + 0x7d,0xa9,0x66,0x28,0x01,0x77,0xcd,0x6a,0x4c,0x2c,0xba,0xfb,0xc2,0xda,0xd9,0x8f,0xd9,0xca,0x67,0xd5, + 0x1c,0xe4,0xec,0x5c,0xa6,0x0a,0x1d,0xf2,0xbb,0x85,0xc7,0xe5,0x45,0x74,0xd9,0x5c,0x0d,0xbd,0xba,0x5c, + 0x9b,0x30,0xd3,0x41,0xde,0x23,0xd5,0x0e,0x71,0x14,0x89,0x52,0xa4,0xd9,0x34,0x62,0xb4,0x7e,0x40,0x4d, + 0x4a,0x7b,0x00,0x0e,0x34,0xd2,0xdc,0x6d,0xc9,0x95,0xc8,0x8e,0xd4,0x2c,0x34,0x12,0x58,0x42,0xc1,0x9f, + 0xba,0x30,0x35,0x5d,0x78,0x2e,0x86,0x3f,0xb3,0x58,0x49,0x62,0x5b,0xa7,0xd7,0x7e,0x98,0xc3,0x4d,0x9e, + 0xd5,0xde,0x1b,0xb6,0xe3,0x82,0x2c,0xd3,0x06,0x58,0xe6,0xc6,0xcb,0xbc,0x36,0xea,0x5d,0x89,0x69,0xc1, + 0x26,0x34,0xa0,0x9b,0x75,0x8b,0x02,0x18,0x8f,0x4b,0x2e,0xe0,0x88,0xbe,0x31,0x18,0x24,0x53,0xb0,0x9c, + 0xf7,0x02,0xd0,0x3c,0x78,0x8d,0x8c,0x4a,0x85,0xd3,0x96,0x74,0xdf,0x9d,0xf6,0xa4,0x07,0x97,0x2f,0x4c, + 0x75,0x62,0x89,0xa9,0x6f,0xbf,0x2b,0x6b,0xe1,0xf1,0xc0,0xb6,0xe0,0x69,0xb9,0x62,0x36,0xf0,0xf1,0x22, + 0xa7,0xa2,0xef,0x68,0x17,0x86,0x45,0xbf,0x0b,0x6f,0x14,0xc3,0x36,0x2e,0x25,0x30,0x66,0x50,0x1b,0x7b, + 0x7f,0x59,0xe8,0x79,0x03,0x01,0x28,0xfd,0x28,0x30,0x46,0x9b,0x72,0x49,0xaf,0xf4,0x97,0x39,0xb6,0xeb, + 0x75,0xe9,0xba,0x80,0x21,0xb8,0x00,0x50,0xb9,0xe9,0x0a,0x23,0x03,0x74,0xac,0x9d,0x8d,0x04,0x1d,0xeb, + 0xc0,0x56,0x88,0x53,0x86,0xce,0xb5,0x79,0xc4,0x9e,0x03,0x96,0x9f,0xd4,0x70,0xbf,0xc4,0x6f,0x3c,0x54, + 0x79,0xb0,0x0b,0xad,0x8d,0x42,0x3a,0x3c,0xac,0x87,0x9b,0x8d,0x71,0x7b,0xf1,0xae,0x14,0xe0,0x87,0x66, + 0x5f,0x13,0x40,0xf6,0xe6,0x46,0xc9,0xab,0x52,0xf9,0xb7,0xaf,0xe1,0x81,0x37,0x31,0xd7,0xc4,0xbb,0x52, + 0x89,0x96,0xe7,0x1b,0x31,0x12,0xe8,0x72,0x36,0x18,0x2a,0xdb,0xb0,0x15,0x82,0xf2,0x8d,0xc3,0x17,0xbf, + 0xdb,0x82,0x20,0xc3,0x1a,0x5b,0x65,0xdc,0x1b,0x17,0x0a,0x47,0x77,0x09,0x65,0x2d,0x83,0xb5,0xdb,0xb0, + 0x64,0x92,0x5c,0x72,0xb0,0x7a,0x21,0x89,0x8d,0x87,0x98,0xbe,0x0b,0x23,0xb0,0x53,0x46,0x57,0xf8,0xbe, + 0x0a,0x43,0x10,0xc8,0xa1,0x45,0xea,0x10,0xbe,0x71,0x87,0xb4,0xa0,0x7d,0xb1,0x41,0xcc,0x8d,0xc1,0x6e, + 0x71,0x6c,0x04,0x59,0x09,0x19,0xe3,0x42,0x9b,0xf6,0x5d,0x47,0xf0,0x35,0x62,0x83,0xd3,0x84,0x91,0x67, + 0x33,0x0f,0x22,0x89,0x0c,0x25,0x9a,0xb3,0x74,0xe4,0xa7,0x95,0x20,0x4f,0xe9,0xca,0xaf,0xf9,0x46,0x9a, + 0xf2,0x15,0x8e,0x8b,0x8d,0x1d,0xe3,0x4c,0x05,0xa2,0x81,0x6f,0x65,0x60,0xf7,0xb4,0x0d,0xbb,0xe9,0xba, + 0xb8,0x81,0x8c,0x9d,0x48,0xa7,0xdc,0x85,0x8f,0x29,0x4e,0xa7,0xa2,0xec,0x39,0x55,0x94,0xdf,0x80,0xef, + 0x69,0x3f,0xf8,0xce,0x98,0x72,0x1d,0x83,0xa9,0x1d,0xc8,0xb8,0x9d,0xeb,0x41,0xb6,0x66,0x99,0x3f,0x76, + 0xea,0x89,0x73,0xdb,0xe5,0x65,0x5a,0x9d,0xce,0xcf,0xc6,0xcb,0x2d,0x48,0x98,0xa9,0xa5,0x3b,0x31,0xe9, + 0xf2,0x73,0xe7,0x8d,0xfa,0xb9,0xe4,0x7e,0x4e,0x8c,0xef,0xc0,0x65,0x9c,0x2c,0xec,0xd3,0xc6,0xc4,0xe5, + 0x59,0xd2,0x5e,0x8b,0x24,0x6e,0x18,0x14,0x51,0x39,0x55,0x98,0x7b,0xb3,0xd4,0x45,0xa3,0x72,0x39,0x72, + 0xe7,0x5b,0x75,0x47,0xfc,0xa4,0xd6,0xaa,0xda,0x0d,0xec,0xe0,0x92,0x8d,0xb7,0xe2,0x0d,0x2e,0xe9,0xd6, + 0x65,0x0f,0xa1,0x63,0x1f,0xda,0x8a,0x73,0x5c,0x65,0xf5,0x1b,0x18,0xb1,0x22,0x8e,0x8e,0x51,0x64,0x61, + 0x42,0xd7,0x1a,0xc7,0xbe,0x61,0x2e,0x93,0x7d,0x7b,0xd1,0x7a,0xfb,0xae,0x34,0xe3,0x38,0xaf,0xf4,0x7c, + 0x41,0x97,0x9c,0x23,0x6e,0xe1,0x4c,0x7b,0x54,0xce,0xe7,0xb5,0x6e,0x5e,0xea,0xfc,0xf2,0xaa,0x09,0x4a, + 0x6d,0xf9,0x7e,0x08,0xa0,0x4a,0x4b,0xe9,0x9c,0x83,0x8e,0x09,0x5c,0x61,0x45,0x5d,0x4d,0x3b,0x3a,0x80, + 0x2f,0xd5,0x16,0x7c,0xa9,0x7a,0x41,0x08,0x9d,0x8e,0x6d,0x2e,0xd9,0xf7,0xf0,0xaf,0x67,0x80,0xb1,0x3b, + 0xe2,0x34,0xfd,0xb4,0x75,0x8c,0x9a,0x3f,0xc8,0xf9,0x01,0x3b,0x8d,0xa1,0x84,0xc1,0x23,0xd7,0xae,0xc5, + 0x51,0xc5,0xc0,0x0d,0xb6,0x44,0xec,0x53,0x85,0x75,0x96,0xfb,0x2c,0xd6,0xbe,0x67,0x95,0x29,0xdf,0x98, + 0x2c,0xaf,0x8c,0x87,0x6e,0xc0,0x0d,0x1b,0x02,0xc1,0x7d,0xf8,0x55,0x39,0xab,0x93,0x7b,0xb3,0x1e,0x1d, + 0x86,0x2f,0x30,0xb0,0x5f,0x2b,0xaf,0x1d,0xec,0x50,0x30,0x93,0xbd,0x7d,0x3d,0x9b,0xc4,0xb1,0x9d,0xcb, + 0x29,0x74,0x19,0x58,0x0a,0xc0,0x40,0xab,0xc7,0x0e,0xb0,0x2f,0xb5,0x7f,0xc1,0x7e,0xac,0xa0,0x83,0xc8, + 0x57,0xf7,0xcb,0xca,0xe8,0xb1,0xf4,0xd2,0x9c,0x26,0x2c,0x97,0x5e,0xb4,0x54,0xe5,0x0a,0xcb,0x37,0x9c, + 0x96,0x91,0xb7,0xaf,0x77,0x59,0x43,0xb5,0xdd,0xc2,0x6e,0x2e,0x33,0x1c,0x5a,0xde,0xd0,0xc0,0x0b,0x8e, + 0x5d,0xc6,0x1f,0x98,0x1f,0x39,0xcf,0x2f,0x47,0x88,0x8e,0xf1,0x43,0xcd,0x0e,0xd7,0xb6,0xdc,0x69,0x18, + 0xa4,0x3e,0x74,0xbc,0xf3,0x5d,0xc1,0x1c,0xfa,0xa1,0xf8,0x79,0xe7,0x20,0x04,0x00,0xa6,0x86,0x59,0x65, + 0xbd,0xf3,0x08,0x69,0xc4,0x84,0x00,0x7d,0x35,0xa1,0x49,0xec,0x47,0xe1,0xf4,0x98,0x6f,0x1c,0x32,0xc4, + 0x7e,0x61,0x5f,0xf5,0xfc,0x65,0xa3,0x7c,0x0f,0xf3,0xfa,0x9d,0x46,0xc0,0x27,0x3d,0x43,0x1c,0xf4,0xef, + 0x8b,0xde,0x4f,0x10,0x17,0xa5,0x2f,0xc2,0x6f,0xb4,0x0d,0x3f,0x88,0xfc,0x87,0x40,0xfd,0xb4,0x37,0x54, + 0x14,0xfb,0x3b,0x9f,0xc0,0xcf,0xfb,0x30,0x19,0x22,0x32,0x01,0xb7,0x3d,0x91,0x47,0x6b,0x40,0xdd,0x6a, + 0xee,0x87,0xe2,0x63,0x51,0xde,0x16,0x5b,0xc1,0xa8,0xe5,0x44,0x0e,0xbe,0xf6,0x2e,0x7b,0xe9,0xf5,0xfb, + 0xa2,0xa5,0x99,0x8e,0xbd,0x07,0x94,0xb4,0x25,0x89,0x12,0x28,0xdf,0x54,0xa7,0xcd,0x99,0xdb,0x8b,0x78, + 0x31,0x7a,0xec,0x7f,0xe5,0x01,0x9d,0x83,0x34,0xb5,0x3d,0x22,0x72,0xf1,0xb4,0x15,0xcf,0xdd,0x5b,0x12, + 0x83,0x5f,0xd6,0x1e,0x03,0xfc,0xdc,0xee,0xcc,0x6a,0x9d,0xb3,0x4b,0x9d,0x8f,0xb6,0x4b,0x7b,0xba,0xb3, + 0x34,0xd7,0x13,0x0e,0xe5,0x07,0x84,0x0d,0xb2,0x14,0x76,0xe0,0xda,0xf6,0x7d,0x19,0xb7,0xbf,0x05,0x71, + 0xb2,0x5e,0x97,0x1c,0xd4,0x27,0x08,0xb3,0x68,0x71,0x84,0xf4,0xeb,0xc9,0x65,0x99,0x9c,0xb4,0xbf,0x4a, + 0x94,0xe9,0xb4,0x97,0x1a,0xe8,0xe5,0x3c,0xf9,0x09,0x43,0x18,0x51,0xad,0x82,0xd8,0x9a,0x82,0x48,0x30, + 0x6b,0xa6,0x93,0x96,0xde,0x35,0x36,0x56,0x65,0x80,0x0c,0x0d,0x81,0x21,0xb4,0x78,0x47,0x06,0xe7,0x01, + 0x36,0x23,0x05,0xb1,0xb2,0x31,0x7c,0x97,0x73,0xac,0x66,0x44,0x5c,0x3e,0x51,0xf7,0x17,0x1d,0xcf,0xeb, + 0x5c,0xd2,0x99,0xa8,0x89,0x83,0xc4,0x20,0x84,0xe6,0xde,0x5e,0xd8,0xb2,0xe0,0xfe,0x60,0xb5,0x33,0x82, + 0x54,0x80,0x2e,0x30,0x91,0x61,0xc2,0xa0,0x98,0x61,0x88,0xfa,0x43,0xd3,0x75,0x13,0x4f,0x10,0xce,0x03, + 0x1a,0x21,0x5b,0x55,0x03,0x3e,0xc9,0xd7,0x93,0xce,0xfe,0xdd,0xf6,0x25,0xb0,0xed,0x56,0xfe,0x8f,0x95, + 0xae,0xee,0xde,0xf3,0x79,0x67,0x55,0xe5,0xbf,0x70,0x33,0xe3,0x2e,0xe8,0x8d,0xf7,0x49,0xc0,0x6e,0xf0, + 0xbf,0xde,0x29,0x0c,0x78,0x4b,0xf8,0xd4,0x4d,0x53,0x96,0x0b,0x82,0xaf,0x59,0x83,0xff,0x23,0x04,0xeb, + 0x05,0x99,0x03,0xef,0x37,0x1f,0x8c,0x94,0x00,0x71,0x94,0xd3,0x0f,0xc5,0x26,0x36,0x68,0x21,0x73,0x09, + 0xa2,0x2f,0x61,0xe5,0xfc,0xe5,0xbf,0x62,0x68,0x98,0x38,0x6f,0x92,0xd4,0x5c,0x8f,0x73,0x95,0x71,0x11, + 0x2e,0x62,0x00,0x51,0x37,0x00,0xf7,0xec,0xa7,0x8a,0x2e,0x31,0x2c,0xa1,0x8d,0x48,0x15,0x0d,0x83,0x5c, + 0xc3,0x38,0x0a,0xe2,0x6a,0x6f,0x79,0x76,0x90,0x53,0xc4,0xcc,0x09,0x63,0x10,0xbf,0x69,0x10,0x51,0xbb, + 0xac,0x9a,0x3a,0x2d,0xda,0x1d,0xf2,0xec,0x51,0xea,0xfb,0x97,0xf1,0x78,0x6b,0x1d,0x38,0xc6,0x6e,0x7a, + 0x7a,0x4a,0xa7,0x5d,0xc1,0x0b,0xd1,0xd9,0x19,0xae,0xf4,0x45,0x49,0x23,0x17,0x29,0x82,0xad,0xd8,0x26, + 0xc6,0xe3,0xe8,0x10,0x13,0xf1,0xdf,0xb1,0x45,0x4e,0xe3,0x68,0x98,0x4d,0xff,0x6b,0x7a,0xf8,0xaf,0x2f, + 0xe9,0x8a,0xa9,0x80,0x67,0x13,0x22,0xb8,0xdd,0x8d,0xe1,0x0a,0x0a,0xdb,0xd4,0x3c,0x8d,0x65,0xbc,0xe5, + 0xb5,0xaa,0x48,0xa3,0x21,0xa1,0x71,0x1c,0xb3,0x6b,0x46,0xc0,0xbf,0x35,0x56,0xe3,0x1a,0x20,0x71,0xde, + 0x09,0x10,0x1b,0x06,0xfe,0x7e,0xcf,0xcf,0x7f,0xfc,0xe1,0xf9,0xf9,0xb3,0xe7,0x3f,0x7e,0x38,0x39,0x79, + 0xfd,0xfe,0xfc,0xeb,0xd7,0x27,0x4f,0x9f,0xbc,0x3e,0x7f,0x79,0x72,0xf2,0xed,0xf9,0x79,0x18,0x26,0xdb, + 0xde,0xd8,0xce,0xfd,0x81,0x78,0x29,0x81,0x03,0x3f,0xd9,0xe9,0x7c,0x63,0x98,0x89,0x1e,0xf8,0x3d,0xea, + 0xdc,0x14,0x59,0xd5,0xd6,0xa8,0x68,0xd9,0xb8,0x3b,0x26,0x41,0x69,0xb8,0xac,0x72,0xc3,0x68,0xcb,0x33, + 0x2a,0x62,0xf8,0x98,0x63,0xe9,0x9a,0x63,0xd6,0x10,0x68,0x5a,0xde,0x19,0x42,0x6d,0xcb,0x7b,0xd5,0xe9, + 0x59,0xe2,0xfc,0x75,0x3c,0x30,0xaa,0xfa,0xf7,0xb6,0xf2,0x04,0xb1,0xba,0x96,0x77,0x49,0xee,0x83,0x9c, + 0x89,0x1b,0xe4,0x3e,0xc7,0x29,0x90,0x1a,0xb2,0xe3,0x35,0x36,0x6e,0x56,0xec,0x2a,0x45,0xe5,0x81,0xc3, + 0x03,0x99,0x94,0xbf,0x53,0x8f,0xb3,0xff,0xe3,0x9a,0x8a,0xb6,0xcc,0x27,0xef,0xc4,0x93,0x1a,0xb0,0x9d, + 0xc0,0xb6,0x3b,0x92,0x8d,0xf0,0xa0,0xda,0xa7,0x45,0x50,0x6e,0x82,0x21,0x74,0x58,0x01,0x39,0x19,0xb9, + 0x70,0x04,0xce,0xce,0xc0,0xa8,0xe7,0x55,0x76,0xfb,0x86,0xc5,0xf6,0x69,0xe3,0x50,0x2a,0xe8,0x43,0x19, + 0x42,0x91,0x1f,0x69,0x43,0x6d,0x9b,0xd0,0x16,0x13,0x3a,0x91,0x49,0xc1,0x9e,0x94,0x36,0x44,0x33,0x31, + 0x0b,0x91,0x6f,0xf1,0x59,0x72,0x2f,0x77,0x31,0x61,0xa9,0x17,0x0b,0x9d,0xc0,0x9c,0x65,0x2c,0xe8,0xba, + 0x7c,0xc7,0xb5,0xbf,0x7d,0xac,0x07,0x83,0x4e,0x8f,0x82,0x12,0x1b,0x95,0x05,0xf7,0x0a,0x21,0xbc,0x8c, + 0x45,0xf5,0x4d,0x81,0x1b,0x33,0x5f,0xb0,0xed,0x72,0x01,0x02,0xd6,0xc2,0x0a,0xac,0xe7,0xc9,0x6e,0xf9, + 0x76,0x69,0xf8,0x3a,0xd8,0x2a,0xda,0x42,0x4d,0x77,0x16,0xb5,0xca,0x54,0xbd,0x45,0x5d,0xd0,0x59,0x57, + 0xbe,0x5d,0x78,0x2b,0x70,0xb8,0x1d,0x69,0xdf,0x44,0x19,0xa6,0xae,0xbc,0x28,0x51,0x69,0xa0,0xab,0x12, + 0xf0,0xa7,0x53,0xc6,0x7c,0x49,0x5d,0x1e,0x10,0x3f,0x84,0xe9,0x65,0xbb,0x0a,0xb8,0x6f,0x69,0x90,0x0f, + 0x85,0x68,0x62,0x1a,0x56,0x2a,0xdf,0x2a,0x62,0xbe,0xa4,0x2e,0x4f,0xdc,0x1e,0x9a,0x39,0x23,0xdb,0x73, + 0x53,0x46,0xed,0x19,0x01,0x52,0xde,0x57,0xf2,0x6b,0xae,0xf6,0xb3,0x73,0xe3,0x7a,0x57,0xee,0xea,0xde, + 0xae,0xca,0x9f,0x70,0x9d,0x9f,0xad,0xdc,0x4d,0xef,0x76,0xe5,0xe6,0xd3,0xae,0xca,0xdf,0x98,0x19,0xfc, + 0x6c,0xf5,0xc1,0x72,0x6c,0x37,0xe0,0x3e,0x72,0x13,0x7d,0xa1,0x1a,0x73,0x5d,0x47,0x41,0xd3,0xd0,0xf5, + 0x12,0x3e,0xc6,0x56,0x9b,0x95,0xbe,0x04,0x49,0x57,0x45,0xa7,0x67,0x8a,0x8d,0xf1,0x02,0xc1,0xcd,0x2a, + 0x50,0x9d,0xb0,0xbb,0x51,0x2c,0xd4,0x8d,0xbe,0x4f,0xdc,0x11,0xae,0xd8,0x64,0xc6,0xb6,0xfd,0xb9,0x89, + 0xda,0xc2,0xf6,0x07,0x87,0xe3,0x55,0xe4,0x3c,0x4f,0x54,0x40,0x15,0x82,0x9c,0xbe,0x76,0x56,0xe1,0xdc, + 0x4c,0xdb,0x07,0xb1,0x5f,0xf4,0x51,0xe9,0xd9,0x6a,0xba,0x43,0xef,0xe2,0x41,0xe3,0xab,0x07,0x04,0x37, + 0x3c,0x8a,0xb2,0xe4,0x80,0x3d,0xed,0xda,0xfb,0xe9,0x91,0x80,0x67,0x85,0x62,0xe3,0xcf,0x35,0xeb,0x41, + 0x7d,0xb3,0x1f,0xb1,0x19,0x8b,0x6b,0x1c,0xc2,0x53,0x7f,0x44,0x27,0xc5,0xfe,0xf0,0xd1,0x10,0x91,0x8a, + 0xa9,0x4b,0xf8,0xdb,0xea,0x4b,0xcf,0xd1,0x5f,0xf1,0x12,0xd9,0x4e,0xa8,0x6e,0xef,0xed,0x42,0x6e,0x91, + 0x89,0x5e,0xc8,0x32,0x76,0x57,0xb7,0x88,0x65,0xe0,0xfa,0x4d,0xee,0x50,0xa0,0x51,0x99,0xa8,0x39,0x1e, + 0x06,0x71,0xc2,0x27,0xae,0xb9,0x34,0x97,0xf0,0xa6,0x34,0x98,0xb6,0xf7,0x8e,0xd8,0xc1,0x64,0xba,0xd9, + 0x1a,0xa7,0x78,0x7c,0xa6,0xa0,0x73,0x61,0x57,0x52,0x1c,0xea,0x5b,0x13,0xdb,0xd0,0x8f,0x48,0x49,0xd3, + 0xe5,0xf7,0xa0,0xdb,0x14,0x44,0x6d,0x18,0x35,0xa7,0xce,0xb4,0x14,0x3d,0xc3,0x6c,0x2d,0xd0,0x76,0x07, + 0xc1,0x16,0x6e,0xf5,0xac,0x6a,0x2f,0x8a,0x38,0x40,0x30,0x17,0x28,0xa4,0x13,0x6d,0x6a,0xbd,0xdd,0x01, + 0x90,0xb4,0xd2,0x01,0x3d,0xfb,0x3f,0xef,0x82,0x47,0x4e,0xec,0xfd,0x80,0x86,0x78,0x2d,0x16,0x63,0x11, + 0x61,0xf4,0xd7,0xed,0x57,0x90,0x55,0x4b,0xc1,0x2d,0x54,0x83,0x05,0xa1,0x0a,0x3b,0xd1,0xbe,0xbd,0x3d, + 0x43,0x30,0xfe,0x08,0x31,0xfe,0x45,0xe4,0xdf,0xbc,0xaa,0xd3,0x52,0x82,0x16,0xfb,0xca,0x0d,0x42,0x7b, + 0x16,0x1b,0x79,0x1c,0x10,0x03,0xe0,0x9c,0x3e,0x07,0x02,0x07,0x95,0x29,0x6c,0x77,0x0d,0xb8,0x2e,0xaf, + 0x89,0x08,0x68,0x8c,0x44,0x44,0xd2,0xec,0x3d,0xb3,0x1b,0x05,0x91,0x1c,0xef,0x57,0x17,0x08,0x6b,0x77, + 0x81,0xfb,0xc2,0x6e,0xf1,0x73,0x7f,0xe7,0xec,0x2e,0x2e,0x4e,0xb3,0x67,0x5f,0x9b,0xbb,0x66,0x77,0x46, + 0xb3,0xf3,0x78,0x9b,0x23,0xe4,0x62,0x3b,0xd9,0x1d,0xfa,0x37,0xd9,0xf2,0x33,0x95,0xd4,0x7d,0xdd,0xe4, + 0xf0,0xec,0xba,0xfa,0xf1,0x0d,0xd7,0xbd,0xb0,0x15,0x67,0x1f,0xf5,0x6b,0x60,0xfa,0xa6,0x6b,0xc7,0xbb, + 0x62,0xd4,0x5b,0x59,0x03,0x3b,0x1e,0x97,0xdd,0x63,0xf5,0x61,0x6c,0xe8,0x73,0x99,0xd9,0x71,0xeb,0x5b, + 0x3f,0x61,0x9d,0x09,0xa9,0xc5,0x26,0x78,0xb4,0x6d,0x83,0xd2,0x3b,0x58,0x47,0x0f,0xea,0xa0,0x04,0x53, + 0xc4,0x06,0xf3,0xc3,0x5a,0xa7,0xa5,0xf1,0xd1,0xdc,0x9a,0x2b,0x06,0x06,0x06,0x4d,0xbc,0x11,0xaa,0x6e, + 0xa5,0xfc,0xa2,0x05,0x99,0x62,0xd8,0xcf,0xf2,0x77,0x10,0x43,0xbd,0x4c,0x37,0xcf,0x1d,0x66,0xc4,0x3a, + 0xf2,0xa4,0x89,0xa3,0x31,0x27,0xfe,0x31,0x59,0x58,0x46,0x8f,0x4d,0x69,0x59,0x80,0xc7,0xf7,0x85,0x90, + 0xd8,0xe6,0xeb,0xcb,0xb2,0xfc,0x88,0xb8,0xcc,0x86,0x3a,0xbd,0x59,0xe9,0x4f,0x89,0x90,0xa8,0xcc,0xb7, + 0x04,0xb9,0xc8,0x69,0x4d,0x95,0xdd,0xe8,0xc5,0x41,0x53,0x1e,0xf0,0xa8,0x42,0xb9,0x99,0x09,0xa4,0xc6, + 0xde,0x89,0x60,0x57,0x65,0x9c,0x25,0x22,0xe6,0x84,0xdd,0x0b,0xdd,0x2b,0xa7,0xd5,0x9c,0xdd,0xc3,0x43, + 0x59,0x91,0x18,0x32,0x7e,0x0d,0xa6,0x21,0x10,0xe3,0x56,0x35,0x82,0x70,0x7c,0xb6,0x32,0x39,0x2b,0xfd, + 0x55,0xc5,0xc2,0x37,0x40,0xe8,0xb6,0x94,0xe3,0xac,0xea,0x3e,0x44,0x7c,0xdb,0x54,0xd9,0x5b,0x1e,0xb8, + 0x28,0xe5,0xe2,0x79,0x8d,0xed,0x5f,0xa5,0x81,0x89,0xf6,0xb1,0xc8,0xa1,0x7e,0x68,0xcd,0x62,0x55,0x80, + 0xc6,0x5b,0x2f,0xb0,0xbe,0x9a,0x71,0xf1,0xd5,0xc1,0x11,0x80,0x29,0xfc,0x70,0x4d,0xa1,0xe4,0xda,0x52, + 0x91,0xbb,0x72,0xde,0xdb,0x3e,0x0b,0x24,0xfe,0x12,0x0c,0xfc,0x3d,0x18,0xf0,0xb7,0x4f,0x7a,0x87,0x0e, + 0xba,0x61,0x69,0x16,0x76,0x77,0x7b,0x6b,0x33,0x8b,0xe7,0x9a,0x3f,0xea,0xb6,0xf9,0x73,0xeb,0xc6,0x1d, + 0x9d,0xdf,0x5c,0x8f,0x1d,0x02,0x0c,0xc5,0x94,0xe6,0xff,0x00,0x34,0x74,0x87,0x28,0xf1,0xb8,0x4a,0x3a, + 0xb4,0x1d,0x7f,0x5c,0xec,0x22,0xfc,0xf3,0x1c,0xb7,0xf6,0x91,0xdb,0x88,0xab,0xca,0xfe,0x50,0xdf,0xae, + 0xdf,0x34,0xc8,0x5d,0xa1,0xc4,0x31,0x40,0x6a,0x94,0x68,0xf5,0x62,0x75,0xad,0xdd,0x4e,0x73,0x5a,0xd2, + 0x75,0xea,0x8e,0x6c,0x9d,0x2f,0xa0,0xb4,0xd1,0x79,0x07,0x13,0x8c,0x6b,0x11,0xe8,0x19,0xdd,0x43,0x64, + 0x92,0xdc,0x3f,0x7c,0x28,0x7b,0x58,0x8b,0x56,0x2f,0x78,0xd0,0x49,0x46,0x7b,0xbe,0x5b,0x1a,0xf1,0xba, + 0x04,0x58,0xb5,0x01,0x01,0x57,0x39,0x7a,0xc8,0xb0,0xb9,0xc5,0xbb,0x6a,0xd1,0x6c,0x2c,0x9e,0x31,0x4d, + 0x51,0xe5,0x61,0x3e,0x9c,0x4e,0xa2,0x0d,0xf5,0x12,0x9a,0x2f,0x30,0xc9,0x91,0x61,0xe1,0xe6,0xa8,0xe4, + 0x78,0x60,0x59,0xf2,0xe6,0xea,0x98,0xc1,0x6b,0xbb,0x8d,0x76,0xcd,0xd6,0xad,0x0c,0x75,0x1e,0xb6,0x08, + 0x1f,0xf2,0xe9,0xc7,0xbe,0x2e,0x55,0xa3,0x87,0xc6,0x96,0x20,0xea,0xf8,0x50,0xbb,0x09,0x35,0xd4,0x64, + 0x4f,0x0c,0xac,0xa9,0x21,0x87,0x35,0x71,0x5b,0x33,0xc4,0x5f,0xa3,0xc2,0x38,0x4c,0xf7,0x08,0xa7,0x40, + 0xc7,0x9e,0x93,0x70,0x9a,0x9d,0xed,0x38,0x23,0xf4,0x25,0x25,0x8c,0x7c,0x90,0xef,0xed,0x0d,0x9c,0x2f, + 0x10,0x36,0x87,0x69,0xa3,0x37,0xd3,0xb4,0x38,0x2d,0x02,0xf4,0x66,0xf7,0xec,0x2c,0xc0,0xf9,0x83,0x2f, + 0x3e,0x25,0xfe,0x9c,0x19,0xa0,0x4a,0xac,0x38,0x8e,0x7a,0xcd,0x4a,0xd8,0x3b,0x50,0x58,0xf6,0x04,0x06, + 0xfd,0xcb,0x7b,0x7b,0x0f,0x26,0x50,0xf6,0x73,0x2f,0xa1,0x48,0xdb,0x4f,0xd6,0x9d,0x79,0xa5,0xb9,0x82, + 0x7f,0xe4,0xbb,0x45,0x99,0xcd,0xe8,0x6e,0xcd,0x9d,0xea,0xf6,0x94,0x9e,0xc3,0xc0,0x7b,0x35,0x1c,0x98, + 0xe0,0x98,0x43,0x28,0x9b,0xea,0xfd,0x69,0xa8,0xa5,0x1a,0x4d,0x11,0x43,0x4c,0xc9,0xb5,0xca,0xcd,0x9b, + 0xc7,0xff,0xaf,0x8d,0xf7,0xb6,0x2a,0x75,0xa3,0x4d,0x05,0x0b,0x23,0xdb,0xc3,0x5d,0x14,0x5f,0xc9,0x27, + 0x15,0x87,0x36,0xe1,0x23,0x5b,0x4d,0xfa,0x0e,0xad,0xc9,0xb2,0xe9,0x39,0xd1,0xdb,0xd2,0xb9,0x5d,0x10, + 0x0b,0x6a,0xec,0x06,0xec,0x73,0xa4,0x11,0x67,0xd3,0xd2,0x0e,0x2d,0x66,0x89,0xff,0x9e,0xfb,0xbf,0x14, + 0x5b,0x31,0xb7,0x91,0x2a,0x78,0xc7,0xd0,0x76,0xe2,0x6c,0x3a,0x22,0x42,0xf4,0xc2,0xa7,0x42,0xe5,0xbb, + 0xe1,0x92,0x69,0xf6,0xb4,0xec,0x81,0x4d,0x72,0x81,0xef,0x1c,0x55,0x5a,0x6c,0x3c,0x78,0xdb,0x95,0xc9, + 0x04,0x91,0xdb,0x28,0x73,0xd7,0xf6,0xf7,0xe3,0xd2,0x78,0xe0,0x97,0x20,0x46,0x04,0x52,0x4a,0x94,0xcb, + 0xd8,0x01,0x77,0x97,0x19,0xd0,0x75,0xae,0xd8,0xf5,0xc4,0x53,0x71,0x10,0x44,0x7f,0x1d,0x72,0xe8,0x95, + 0x6e,0x0a,0x30,0xf6,0x58,0x2e,0xe8,0x16,0x12,0x53,0x58,0xd5,0x0c,0x73,0xe6,0x84,0x91,0xc9,0x9d,0xd9, + 0x47,0xe8,0xa9,0x15,0x63,0x35,0x55,0x9b,0xfb,0xd1,0xed,0x91,0x55,0x10,0xc6,0x1e,0x9d,0x14,0x09,0x4a, + 0x42,0x9f,0xe6,0x2a,0x2b,0x66,0x0b,0x0e,0x5c,0x33,0xde,0xd1,0x67,0x73,0xc3,0xbb,0x1e,0xfb,0xf7,0x5d, + 0xfd,0x15,0x7b,0x4b,0xf8,0xe2,0x37,0xfd,0x0e,0x0e,0xbc,0xc7,0x8f,0xed,0x19,0x34,0xa7,0x44,0xd9,0xad, + 0x5f,0xb9,0x9b,0x4b,0x56,0xc7,0x0e,0x1a,0x1d,0x37,0xeb,0x98,0xf8,0xdb,0x0d,0xa9,0x8c,0xdb,0x25,0x66, + 0xb1,0x36,0xca,0x45,0x54,0x20,0x0a,0x27,0x8f,0x7b,0xbd,0x08,0x96,0xa3,0xe6,0x4a,0x17,0x50,0xba,0x4b, + 0x69,0x47,0x5e,0xe7,0xb5,0xb6,0x46,0xfc,0x50,0xed,0x52,0x6d,0x2c,0x74,0x92,0x8f,0xa6,0x9d,0xab,0x88, + 0x79,0x96,0x55,0x79,0xfb,0xa0,0x9d,0x33,0xc4,0xf7,0x38,0x32,0xe7,0x10,0x82,0x68,0x04,0x81,0x00,0xbf, + 0x9a,0x57,0x0c,0xce,0x37,0x3a,0xeb,0x25,0x83,0xfa,0x1b,0x3b,0x88,0xb5,0x12,0x3a,0xe8,0x04,0x0e,0x72, + 0x9b,0x37,0xd3,0x97,0xa5,0x8f,0xeb,0x52,0x44,0x6e,0x66,0x3d,0x3f,0xcd,0xa4,0x04,0x6c,0xbf,0x9d,0xdb, + 0x4c,0xe8,0x5e,0xdf,0xeb,0x0a,0x4e,0x45,0x6e,0xbc,0x39,0x0e,0xf8,0x00,0x79,0x2c,0x21,0x04,0xe3,0x8e, + 0x43,0x98,0x50,0x6c,0xf0,0x79,0xde,0x0f,0x4e,0x6b,0xdc,0xf2,0x94,0x75,0xd7,0xc1,0x7e,0xc5,0xa8,0x4d, + 0x8c,0x9f,0x98,0x2d,0xf2,0xff,0xb2,0xf7,0x26,0xda,0x89,0x2b,0x49,0xc3,0xe0,0xab,0x50,0xea,0x6a,0x37, + 0x5c,0x64,0xcc,0xe6,0x0d,0x9a,0xeb,0x66,0xb3,0x8d,0xf7,0x7d,0x2d,0x77,0xfd,0x42,0x08,0x90,0x01,0x09, + 0x4b,0x02,0x8c,0x6d,0xce,0x99,0x87,0x98,0x27,0x9c,0x27,0x99,0x88,0x5c,0xa4,0x4c,0x49,0xb8,0x5c,0xb7, + 0xfb,0xff,0x66,0xe6,0x9c,0xe9,0xfb,0x7d,0x65,0x94,0x4b,0x64,0x66,0x64,0x64,0x64,0x44,0x64,0x64,0x86, + 0x81,0x7e,0x27,0x2a,0x39,0x0c,0xc6,0xfb,0x50,0xec,0x75,0x56,0x0c,0xcc,0x4e,0xf8,0x77,0xc9,0x60,0x61, + 0xd0,0xdd,0x92,0xb5,0x90,0x5e,0x47,0x81,0xed,0x0d,0x00,0x01,0x1b,0x1b,0x8a,0x11,0x50,0x08,0xde,0xfd, + 0x87,0x4f,0xa7,0x80,0x14,0x48,0xe6,0xef,0xd3,0x66,0x14,0x72,0xba,0xf1,0x67,0x25,0x9f,0xf2,0x32,0x23, + 0xf3,0xd5,0xb4,0x92,0xec,0x20,0xb2,0x4e,0xef,0xcd,0x59,0x0b,0xe1,0x8e,0x27,0x3a,0x5c,0x09,0x47,0xb0, + 0xa8,0xce,0x94,0x23,0x29,0xb2,0xe9,0x20,0x6a,0x2f,0xf0,0xc8,0x3d,0x8c,0x0a,0xfd,0xb3,0x83,0x81,0x7b, + 0xfd,0xd0,0x4c,0xe4,0x2a,0x71,0xc9,0xf2,0x7d,0xb9,0xc8,0x59,0xa4,0x28,0xb7,0x87,0x9c,0x75,0x7c,0x27, + 0x6b,0x9c,0x77,0xe8,0xf3,0x0e,0x73,0xbb,0xc2,0xdf,0x95,0x98,0x65,0xe3,0x17,0xa3,0x7f,0x93,0xd4,0x7b, + 0x1f,0x4f,0x5d,0xb9,0x5b,0x2f,0x4e,0x04,0xbb,0x0d,0x4e,0xc1,0x70,0xdb,0x32,0x03,0x1a,0xca,0x45,0xf2, + 0x1a,0x56,0xa0,0x8b,0x63,0x4a,0x78,0xf1,0xe7,0x0b,0x4c,0xe0,0x03,0x99,0x50,0x16,0xfa,0x54,0x5e,0xcb, + 0x0d,0xd9,0x15,0xb3,0x0b,0xb5,0x2b,0xa0,0x75,0x89,0x12,0x1d,0x18,0xd6,0x80,0x13,0x72,0xaa,0x52,0x71, + 0xef,0x22,0x36,0x57,0x0d,0x7e,0x04,0x5b,0x3e,0xc6,0x81,0x65,0x7b,0x3e,0xa5,0x27,0xd3,0xa7,0x27,0x14, + 0x6d,0xf5,0x4a,0xc8,0xec,0x81,0x2e,0xe6,0xba,0x6f,0x58,0x5f,0x22,0x4d,0xe9,0xf1,0x7a,0xb5,0x97,0xd4, + 0xc8,0x92,0x49,0xc5,0x98,0x2e,0xd8,0xbe,0xba,0x24,0x66,0x8d,0xaf,0x1e,0xb8,0xa2,0x7c,0x96,0x92,0xd1, + 0xb1,0xc4,0x0a,0xc1,0x74,0x27,0x44,0x87,0x43,0xd1,0x11,0x7a,0x45,0x9b,0x23,0x03,0x14,0x18,0x82,0x01, + 0xdb,0xc7,0x80,0xb9,0xe0,0xd6,0x0e,0x7f,0x77,0xa0,0x0f,0xb6,0xb8,0x30,0x18,0x67,0xfe,0xbe,0xc4,0x5a, + 0x14,0x8c,0x85,0x9e,0x14,0xc6,0x0e,0x85,0xbd,0x86,0x89,0x6e,0x75,0x9f,0x0e,0x99,0x95,0x4b,0x6a,0xaa, + 0x25,0x48,0xa6,0xfe,0x09,0x72,0x76,0x41,0x0d,0xe8,0xfc,0x6e,0xda,0x9f,0xb9,0x1d,0xce,0xf9,0x71,0xa9, + 0xb8,0xa1,0x17,0x92,0x45,0x5c,0x9a,0x04,0x87,0x25,0x0c,0x95,0x05,0xbf,0xb9,0x10,0x87,0x1a,0x0f,0x83, + 0x10,0xe6,0x5d,0x3a,0xd9,0x5d,0x42,0xdb,0x05,0x9e,0x78,0xc7,0xe1,0xe0,0xd3,0xb1,0x13,0xef,0xe1,0x5f, + 0x0f,0x9d,0x14,0x5b,0x3e,0x72,0x6a,0xa0,0x91,0x1d,0x8a,0xff,0x5a,0x7f,0xc8,0xa6,0x16,0xdf,0x1f,0xe9, + 0xc2,0x1c,0x16,0x0b,0xfa,0xc3,0xae,0xc8,0x09,0x3d,0x32,0xd8,0xd3,0xf3,0xe8,0xd2,0x2c,0xd1,0xa6,0x4f, + 0xe9,0xf1,0x9a,0x30,0x5a,0x3e,0x22,0x4b,0x82,0x58,0xcb,0x62,0x81,0x44,0xce,0x81,0x24,0x50,0x71,0x0c, + 0x6e,0x87,0xbb,0x91,0x78,0x8b,0x92,0xb7,0xcc,0xca,0x19,0x69,0x70,0x16,0x59,0x4e,0x21,0xc3,0xbd,0xc4, + 0xc7,0x7c,0x9b,0xe3,0x67,0x2a,0x6e,0x74,0x73,0xc6,0x29,0xa4,0x56,0xbe,0xae,0x74,0x6c,0x10,0x98,0xb7, + 0x96,0x19,0x9d,0x3f,0xe5,0x41,0x46,0x94,0xb1,0x52,0x5f,0xf3,0x50,0x33,0xd4,0x6a,0xce,0x4e,0x9c,0x23, + 0x43,0x95,0x0f,0x26,0x70,0x9b,0x8a,0x7a,0xbb,0x90,0x1d,0x0c,0x3d,0xb1,0xc2,0xd6,0x46,0xff,0xf8,0x00, + 0x59,0x0e,0xb3,0x4a,0x06,0x67,0xd8,0xaa,0x17,0x2a,0x4f,0xec,0xf3,0x68,0x03,0x1c,0x3b,0xd4,0x3d,0x8d, + 0x0c,0xde,0xb7,0x57,0x06,0x35,0x43,0x63,0x08,0x0e,0x1f,0x22,0xa3,0x90,0xd0,0xf5,0xf5,0x9e,0x07,0x10, + 0x03,0xa3,0xf4,0x12,0x34,0x53,0xee,0x0a,0xba,0xb7,0x2f,0x61,0x89,0x1a,0x78,0x79,0x98,0xa1,0x47,0xd9, + 0xe8,0xc5,0x28,0x9e,0x34,0x90,0x4d,0xa0,0xcf,0xad,0x83,0x5d,0xf9,0x64,0x3a,0x66,0x18,0xcb,0xa2,0x96, + 0x2c,0x1b,0x81,0x78,0x1e,0x42,0x2e,0x1e,0x49,0x4d,0xd8,0xec,0x32,0x76,0xcc,0x51,0xa7,0x8f,0x02,0xe6, + 0x9a,0xc5,0x7b,0x89,0xb6,0x35,0x19,0x8a,0x80,0x91,0x65,0x27,0x2e,0xc2,0xf1,0x43,0x39,0x7a,0x1e,0x91, + 0x55,0xd1,0x99,0x39,0x92,0x6e,0x2c,0x3f,0x3a,0x15,0x9a,0xc7,0x37,0x36,0xb0,0xa5,0x6a,0x65,0x10,0x66, + 0xd3,0x5c,0xfd,0xe5,0xab,0xb3,0x06,0x3c,0x2c,0x9e,0xb1,0x71,0xdd,0x09,0xb4,0x62,0xa2,0x34,0x4d,0xb5, + 0x61,0x19,0x9f,0xcb,0xab,0x84,0x26,0xd8,0xa8,0x08,0xb2,0x0e,0xd7,0x1d,0xa5,0x34,0xb6,0x96,0xcb,0x62, + 0x70,0xb9,0x57,0x51,0x42,0x52,0x15,0xd8,0x88,0x2e,0xa9,0x25,0x9b,0xbe,0x84,0xf7,0x8d,0x3b,0xd8,0x96, + 0x8d,0xc0,0xc4,0xe2,0x03,0x0f,0x52,0xb8,0x5d,0x80,0x91,0x40,0x8c,0xd2,0xb3,0x63,0x0b,0x72,0x21,0x7d, + 0xa2,0x8c,0xa8,0xd8,0x38,0x94,0x0c,0x2a,0x2d,0x15,0x62,0x8c,0x56,0x2d,0xfc,0xa7,0xfe,0xbf,0x1b,0x61, + 0xc1,0x6d,0x02,0xf2,0x04,0xaf,0x1f,0xb7,0xd5,0x0f,0x6b,0xb6,0xba,0x5a,0x4e,0xe1,0x5b,0x73,0x41,0x16, + 0x7c,0x88,0x77,0xce,0x18,0x4e,0xd9,0x09,0x4b,0x80,0x52,0x33,0x06,0xa5,0x5c,0x51,0x77,0x7d,0xb4,0xf2, + 0xab,0x63,0x65,0xa7,0x62,0xfa,0x48,0xa4,0xb0,0x3e,0xc7,0xa1,0x10,0x6c,0x16,0x11,0xc7,0xa4,0x6f,0x8c, + 0x0c,0xed,0x08,0x79,0xbc,0x71,0xc0,0xb0,0x50,0x64,0xe1,0xe3,0xf7,0xe7,0x7f,0x1b,0xbf,0x76,0xc5,0x4b, + 0xdb,0x6a,0x18,0xcb,0xc4,0x08,0xf4,0xf1,0x11,0x45,0x08,0x53,0x0e,0x11,0x1d,0x92,0x9b,0xb6,0x4c,0xa8, + 0xcb,0xe9,0x63,0xf6,0xff,0x19,0xfa,0xe0,0xf2,0xee,0x2f,0x28,0x84,0x0a,0x0b,0xbf,0xa0,0x0f,0x0e,0xeb, + 0x7f,0x80,0x42,0x82,0xf3,0x9e,0x9a,0x20,0x83,0xc5,0x88,0x65,0x61,0x07,0x3a,0xf2,0x1e,0x25,0xb1,0x76, + 0xef,0x44,0x7c,0xeb,0xbc,0x65,0x72,0xee,0x3b,0x5e,0x4c,0xf4,0xd4,0x29,0x7a,0xd8,0x61,0x17,0x4a,0x21, + 0xa7,0xb8,0x50,0x00,0x11,0xa9,0x9a,0x41,0xab,0xa1,0xaa,0x8e,0x35,0x1f,0x9f,0xa4,0x97,0xc3,0xa2,0x5d, + 0x17,0xbd,0xdf,0xd9,0x4e,0xe5,0x9f,0x7a,0x1b,0x3b,0x4c,0x83,0xc7,0xa7,0xcd,0x94,0x35,0xe2,0x02,0xcf, + 0x83,0x22,0x06,0x8f,0xf7,0x91,0x17,0x1c,0xd3,0x15,0xc8,0x87,0x8d,0x81,0x45,0x19,0xf7,0xdb,0x7c,0x0d, + 0x19,0x08,0x96,0xd8,0xc6,0x2d,0xa1,0x9b,0x97,0x21,0x3f,0x51,0xc0,0x53,0x0f,0xaf,0x6b,0xd5,0xed,0xe1, + 0x50,0x1b,0xbb,0x46,0xa7,0xc4,0x12,0x88,0xe7,0xaa,0xc3,0xed,0x5a,0x06,0x17,0x6a,0x2d,0x3c,0xb4,0x18, + 0xda,0x3d,0x72,0x2c,0xe3,0x43,0xfd,0xce,0x05,0x6d,0x56,0xb9,0x69,0x75,0x7c,0xa7,0x56,0x83,0xd7,0x50, + 0xfe,0xaf,0xff,0xe3,0xff,0x84,0xff,0x4b,0xc0,0xef,0x84,0x61,0x75,0x12,0xf4,0x53,0x0a,0x73,0x76,0xe5, + 0x6b,0xed,0xa8,0x74,0x34,0xf0,0x68,0x8b,0x61,0x2f,0xf1,0xaf,0x84,0x92,0x6e,0x52,0x43,0xed,0xbe,0x3d, + 0x71,0x5c,0xd8,0x28,0xf3,0xa9,0xb4,0x52,0xf2,0x53,0x8f,0x4d,0x6b,0xe2,0x19,0xd1,0xf4,0x4b,0x03,0x48, + 0xae,0xc3,0xd3,0x33,0x42,0xf9,0xe1,0x10,0x54,0x1a,0x9e,0x59,0x10,0x0c,0x2f,0x4d,0x49,0x7e,0xc6,0x5b, + 0x70,0x18,0xfd,0xcd,0x58,0xf5,0x04,0xf7,0x74,0x7e,0xb0,0x81,0x1d,0x65,0x4f,0x85,0xa4,0x73,0xa9,0xcc, + 0xb3,0x6d,0xa2,0x17,0x65,0x9a,0x3b,0x91,0x3a,0x44,0x1b,0x3b,0xad,0xbc,0x5f,0x12,0xeb,0x41,0x57,0x35, + 0xf1,0x4e,0xe8,0x70,0x58,0x6a,0xab,0xcc,0xc0,0x52,0x52,0x0a,0x99,0xf5,0x4c,0x4e,0x51,0xf9,0x76,0x58, + 0xaa,0xaa,0x22,0x1b,0x2f,0xd5,0xd5,0x80,0x89,0x95,0x7e,0xaa,0xc1,0x02,0x2e,0xcd,0x54,0x7a,0x0e,0xe7, + 0xcf,0x76,0x67,0xdf,0x18,0x8e,0xb1,0x58,0x0c,0xd9,0x07,0xe0,0x69,0x78,0x2d,0x72,0x0f,0x06,0x0f,0xbf, + 0x05,0xe0,0x91,0x1c,0xa1,0x17,0x91,0x3c,0xbf,0x17,0x52,0x0e,0xa8,0x39,0xb4,0x53,0x47,0x76,0xaf,0x17, + 0xbe,0x87,0x1d,0xb1,0xf1,0xf8,0xcf,0xec,0xeb,0x9c,0xfe,0xca,0x21,0xaf,0x5d,0xee,0xfa,0x63,0x91,0x07, + 0xd8,0x50,0x63,0x0b,0x3b,0x07,0xc5,0xbb,0x0c,0x20,0x03,0xf7,0x9d,0x42,0xfc,0xcb,0x43,0x62,0x6d,0xea, + 0x19,0x12,0xa7,0xfd,0x2d,0x82,0x33,0x4d,0x6e,0xe6,0xb8,0x8a,0x83,0x80,0x8f,0xb7,0x98,0x9f,0x41,0xd0, + 0x7c,0xd7,0xc5,0xdd,0x50,0xd7,0x31,0xe4,0x65,0xd8,0x3f,0x36,0xd4,0xf1,0xc0,0xef,0x31,0xb6,0x71,0x97, + 0xbc,0x40,0xf9,0x49,0xe3,0xf8,0x4c,0x0d,0xac,0x35,0x7f,0x0a,0x83,0xaa,0x3a,0x89,0xf0,0xcd,0x31,0x3b, + 0xa1,0xe5,0xd8,0x74,0x06,0xa5,0x26,0x50,0x6a,0xe2,0x97,0x1a,0xd2,0x52,0x30,0xa5,0x7c,0xd3,0xf3,0x0b, + 0x0e,0xa1,0xe0,0xb0,0x82,0x97,0x3f,0xec,0xa1,0x91,0x92,0x82,0xb6,0x53,0x17,0x21,0x87,0x9f,0x2f,0xa4, + 0xca,0xbe,0xe7,0x04,0x56,0xd2,0x49,0xe8,0xc9,0x58,0x0f,0x05,0xfe,0xaa,0x29,0xd4,0xd5,0xc8,0x2e,0x85, + 0x89,0x5d,0x35,0x78,0xd2,0x1f,0x58,0x85,0x3a,0xc1,0x97,0xe4,0x52,0xea,0xb8,0xa2,0xf0,0x69,0x02,0x26, + 0x41,0x8d,0xa1,0x69,0xbd,0x7c,0x99,0x1c,0xaa,0x63,0x54,0xb4,0x86,0x94,0xfd,0xfc,0x5d,0x4f,0xe0,0x9d, + 0xbd,0x04,0xf3,0x9e,0x50,0x80,0xe4,0x6c,0xa7,0x94,0xf8,0xdb,0x76,0x13,0xff,0x2b,0x27,0xba,0xb0,0xf3, + 0xad,0xce,0xc8,0x6d,0xb9,0x52,0xa2,0x6d,0x0f,0x3b,0x8a,0x6a,0x27,0xbb,0x29,0xb1,0x7e,0xe0,0x27,0xe1, + 0xd7,0xce,0x16,0xaa,0xdb,0xbb,0xc5,0xd8,0xda,0x13,0xb1,0x2a,0x9e,0xa9,0x46,0x9a,0x2e,0xd6,0xab,0xbb, + 0xeb,0xd9,0x25,0x4d,0xc3,0x58,0xd5,0xef,0xc9,0x21,0xf0,0xa5,0x8a,0x8b,0x5b,0xe5,0x44,0xc2,0x56,0x8c, + 0x23,0x06,0x7f,0xb6,0x12,0x7f,0x71,0x06,0x8f,0x68,0xb2,0x2b,0xb8,0xb1,0xa9,0x66,0x45,0xa1,0xe4,0x14, + 0x20,0xc9,0x21,0x48,0x32,0x65,0x24,0x71,0xff,0x8d,0xaf,0x0c,0xd1,0x66,0x5d,0x24,0xb6,0xb7,0x05,0x86, + 0xab,0xd5,0x2a,0xa7,0x91,0xab,0x14,0xbf,0xba,0x1f,0x10,0xdc,0x3b,0xf8,0x95,0x57,0x40,0xf0,0x36,0x79, + 0xc0,0x77,0xc3,0xf2,0x12,0xde,0xaa,0xc1,0xc7,0x37,0xfd,0x57,0xb3,0x9d,0x74,0x3a,0x45,0x64,0xae,0x40, + 0x7c,0x72,0x9e,0x02,0xdf,0x48,0xfe,0x28,0x3f,0x39,0xfb,0xfa,0xbc,0xa3,0xfc,0x72,0x45,0x56,0x90,0x59, + 0xc4,0xc8,0x61,0x86,0xa5,0xdb,0x1d,0xe3,0xfa,0xa2,0x55,0xe7,0x17,0x92,0x50,0xa2,0xe0,0x61,0xc3,0xd6, + 0xfe,0x5e,0xa8,0xae,0xf5,0x4c,0x15,0x36,0x27,0x31,0x31,0x5f,0x5c,0xeb,0xa9,0xca,0x77,0x39,0xad,0x4e, + 0x0a,0xaa,0x72,0x62,0x16,0x0b,0xa6,0xa5,0xb4,0xf5,0x1a,0x29,0xf8,0x28,0x27,0x36,0x48,0xe2,0x93,0x22, + 0xde,0x15,0x09,0x0f,0x8c,0x78,0xbe,0xca,0x77,0x1e,0x4c,0xb2,0xd0,0x52,0x66,0xc5,0xe2,0xe1,0x65,0x49, + 0x78,0x77,0xbc,0xaf,0x76,0x71,0x74,0x69,0x68,0x8e,0xde,0x3f,0xd3,0x1c,0x6d,0xe4,0xa2,0xf8,0x66,0x56, + 0xc4,0xdb,0x5a,0x81,0xe9,0x5f,0xc3,0x07,0x20,0x03,0x3f,0x2a,0x43,0x0d,0xc9,0xce,0xec,0xa6,0x1a,0x3a, + 0xee,0x89,0xf2,0x1a,0x0a,0x39,0x8f,0x4f,0x4a,0x89,0x28,0xef,0x82,0x1f,0x96,0x27,0x5b,0xf3,0xb0,0x4e, + 0x83,0xea,0xe1,0x3b,0xf4,0x16,0x5c,0xeb,0xf2,0x94,0x77,0xa2,0x84,0xb9,0x54,0x9c,0xa3,0xa1,0x0d,0xbc, + 0xca,0xc1,0xe5,0xe9,0x49,0x86,0x8a,0x5e,0x66,0x97,0x84,0x46,0x40,0x4f,0x67,0x3c,0xc8,0x23,0xd1,0xe0, + 0x94,0x8a,0x92,0x26,0x2f,0x55,0x2e,0x68,0x80,0x19,0x58,0x24,0x1a,0xdd,0xc3,0x95,0x15,0xc0,0x1e,0xbe, + 0x39,0x11,0x44,0x16,0xf1,0x6f,0xc8,0xfd,0x4d,0x49,0x95,0x57,0x73,0xfc,0xe9,0xad,0x4a,0x60,0xe1,0xc0, + 0x25,0xeb,0xa5,0x2b,0xc9,0x55,0xfa,0x42,0xa5,0x5f,0x61,0x47,0x49,0xed,0xc0,0x3f,0x25,0x04,0x9a,0x36, + 0x83,0xbb,0x4c,0x7f,0x61,0x5d,0xf8,0xdb,0x04,0xd1,0x76,0xf0,0xd8,0xfb,0x67,0xbd,0x7a,0x52,0x6f,0x1e, + 0xfd,0xfc,0x99,0xfa,0x15,0xbc,0x18,0xcd,0x04,0x69,0x19,0x18,0x84,0x95,0xcc,0x63,0x74,0x93,0xca,0xbb, + 0xc2,0x9e,0xd2,0x5d,0xc5,0x97,0x35,0xa1,0xc3,0xb8,0x38,0x4c,0x9d,0x30,0xbd,0xb5,0xd7,0xd5,0xd9,0x6c, + 0xb6,0x8a,0xfb,0xd0,0xea,0xc4,0x19,0x52,0x5a,0xef,0x28,0x82,0xbb,0x96,0xc6,0x5e,0x47,0x24,0x14,0xc3, + 0xfd,0x3c,0xc9,0x4c,0x84,0x52,0x1e,0xe5,0x66,0x9e,0xc8,0x5c,0x85,0x13,0x2b,0xec,0xf1,0x2b,0xf4,0x3d, + 0x78,0xd7,0x3a,0xda,0x18,0x43,0x9d,0x25,0x63,0x2f,0x0e,0xdd,0x1d,0x1f,0xed,0x7b,0xde,0xf8,0x82,0x06, + 0x13,0xfd,0xf8,0xf0,0x77,0x19,0x90,0x21,0x94,0x47,0x7a,0x3b,0x05,0x98,0xbf,0xad,0x1b,0xae,0xfb,0x84, + 0xce,0x19,0x4c,0xe6,0x0f,0x6c,0x37,0x9c,0x92,0x29,0xe7,0xa2,0x6f,0x0b,0xba,0x80,0x96,0x1c,0x7a,0x8d, + 0xe0,0x15,0x02,0xbe,0x05,0xb3,0x36,0x4a,0x8f,0xb1,0xac,0x0a,0xdf,0xb6,0x55,0xaa,0xba,0x6e,0x8c,0xf1, + 0x76,0x1f,0xf9,0x92,0x06,0x85,0xa7,0x8a,0xa6,0xbb,0x0b,0x70,0xf0,0x99,0x1c,0xa2,0xc2,0xf8,0xab,0xa0, + 0x36,0xe9,0x76,0x0d,0xc7,0x4f,0x0b,0x7d,0x42,0xf7,0x0c,0x6d,0xe4,0x7f,0x82,0x3c,0x61,0x04,0x45,0x87, + 0x76,0x9b,0x2c,0x88,0x52,0x08,0xd8,0x8d,0x69,0xcc,0xa8,0x32,0xd4,0x26,0xdf,0xa5,0xb8,0xb5,0x8c,0xb1, + 0x43,0xd0,0xa5,0xfa,0xd7,0x73,0x5d,0x46,0xf5,0x04,0x8f,0xa0,0x26,0x5e,0x77,0x75,0x0b,0x35,0x12,0xf1, + 0xbe,0xa6,0xbc,0xfa,0x62,0x60,0x3e,0xbb,0xb6,0x15,0x01,0x11,0x5d,0xa0,0xa0,0x96,0x3d,0x89,0xf8,0x76, + 0x81,0x93,0xba,0x86,0x88,0xf0,0x65,0x97,0x0c,0x89,0x06,0x42,0x97,0xfc,0x18,0x5b,0x41,0xe5,0xd0,0xb7, + 0xc5,0x07,0xab,0xee,0xc9,0x0f,0x5f,0x99,0x55,0x5f,0x5d,0xa7,0x5b,0xb7,0xed,0x81,0x49,0x84,0xe8,0x92, + 0x72,0x77,0x79,0xb1,0xbb,0x7a,0x75,0x7a,0xd8,0x3c,0x51,0x48,0xde,0xbe,0xa1,0x75,0x0c,0x87,0xe5,0xad, + 0x8a,0xb9,0x23,0xed,0x95,0x4d,0xed,0x11,0x8d,0x8e,0x89,0x2f,0xad,0x6b,0xaf,0x35,0xbb,0x33,0x0f,0x12, + 0x40,0x5d,0x34,0xd1,0x6c,0x88,0x92,0xf7,0x24,0x4e,0x2c,0x4f,0x78,0x7f,0x56,0xf2,0x59,0x8c,0xc1,0xfd, + 0xcf,0x42,0x16,0x7d,0x1f,0xf5,0x4c,0x9f,0x34,0xe9,0x56,0xde,0xd1,0x44,0x03,0xfa,0xc1,0x3b,0xa5,0xa7, + 0x52,0x04,0x97,0x6a,0x02,0x35,0xf5,0x35,0xe0,0xfa,0x26,0xfc,0xfe,0x63,0xed,0x0f,0x05,0x5f,0xb3,0xf0, + 0x39,0xe7,0xa3,0x42,0x2d,0xad,0xb0,0x8b,0x80,0xba,0x03,0xff,0x22,0x60,0xe5,0x49,0xe6,0xa7,0x7e,0x73, + 0x78,0x17,0xe9,0x7d,0x21,0x9d,0x7b,0x03,0x04,0x7c,0xef,0x13,0x6a,0xe2,0x45,0x6b,0xf8,0x97,0x3c,0xfc, + 0xf9,0x19,0x00,0x87,0xbe,0xfa,0x4a,0x0f,0x92,0xd4,0x80,0x7d,0xe9,0x21,0x91,0x20,0x97,0x0d,0xcb,0x04, + 0x7e,0xd8,0x56,0xf2,0x26,0x23,0xaf,0xf7,0x2e,0x30,0x17,0x33,0xc9,0x5d,0x11,0x70,0xeb,0x6f,0x92,0x83, + 0x17,0x25,0xb8,0xfa,0x99,0xe8,0x6b,0x6e,0xc2,0xb2,0xbd,0x44,0xdb,0x30,0xac,0x04,0xe7,0x10,0x62,0xfc, + 0xdc,0xb8,0xfa,0xfa,0x10,0xdf,0x0b,0xfb,0x22,0x04,0x97,0x51,0x1e,0x46,0x36,0x0d,0x1a,0xe6,0x5b,0xa8, + 0x70,0x0b,0xd5,0x53,0xb3,0x44,0x66,0x25,0x25,0x4d,0xe0,0xd2,0x96,0xf4,0x64,0xa5,0x1f,0x89,0x57,0x80, + 0xa2,0x86,0xab,0x13,0xf5,0x9b,0xfb,0x2f,0x60,0x8a,0xa0,0x4e,0x0b,0x59,0x14,0xad,0x54,0xf7,0x92,0x0a, + 0xc9,0x05,0xe8,0x79,0x01,0x16,0x58,0x2c,0xbe,0x09,0xf2,0x14,0xbd,0x9e,0x1a,0x63,0xdc,0x09,0xba,0x23, + 0x84,0x64,0x2b,0x99,0xc1,0x72,0xb2,0x2a,0xe6,0x82,0x74,0x24,0xae,0xb6,0x88,0xd6,0x1d,0xf1,0xa3,0xa4, + 0x05,0x10,0x9c,0x8a,0xb6,0x58,0xb0,0x60,0xc4,0xba,0xca,0x1e,0x0a,0xf9,0x96,0x53,0xbb,0x95,0xd5,0x5c, + 0x30,0xed,0xe3,0x24,0x71,0x56,0xd0,0x89,0x8e,0x01,0xb9,0x3c,0x78,0xd9,0xce,0xa4,0xa2,0x73,0x63,0xd2, + 0x04,0x83,0xdb,0xc2,0x6a,0x9b,0xf8,0x4f,0x6b,0x74,0x92,0x72,0xc4,0x23,0x2a,0xee,0x0c,0xb9,0x75,0xc1, + 0x4d,0x8e,0x53,0x65,0x7c,0x90,0xb5,0x1c,0xd8,0xde,0xfc,0xc7,0xbc,0x0d,0xf6,0xa6,0xb2,0x5e,0x99,0x90, + 0x5e,0x95,0xd3,0xe9,0xee,0x3f,0x21,0x11,0x1f,0x4c,0x7f,0xec,0x3e,0xe1,0x05,0x0c,0xe8,0x35,0x69,0x30, + 0xa8,0xb5,0xd0,0xe9,0xc3,0x12,0x74,0x04,0x32,0xa7,0xc2,0xcb,0xf0,0x22,0x12,0xf8,0xfc,0x8b,0x69,0x49, + 0x6a,0x8b,0x23,0x65,0x35,0xa0,0x18,0x0c,0xd3,0x12,0x57,0xc7,0x91,0x20,0xa9,0x61,0x10,0x64,0x46,0x02, + 0xb6,0x27,0x13,0x8b,0x23,0x12,0x4b,0x94,0x54,0x9c,0x90,0x2f,0x05,0xda,0xd5,0x62,0x3c,0xa1,0xd1,0x9e, + 0x07,0x89,0x15,0x76,0x58,0xa5,0xe1,0x6e,0x53,0x31,0x44,0xe7,0x62,0xe0,0xb5,0xb6,0xef,0x43,0x1a,0x73, + 0x12,0xb2,0x5c,0x74,0x5f,0xcd,0x11,0x2c,0x84,0x93,0xff,0xcc,0xa5,0x02,0xc1,0x3f,0x57,0xb6,0xfe,0x19, + 0x35,0x91,0x82,0x88,0x6f,0x3c,0x5a,0xab,0xb9,0x90,0x8d,0x94,0xbd,0x07,0x83,0x2d,0xd2,0xfe,0xa7,0x54, + 0x94,0xdb,0xf8,0xac,0x7d,0x7c,0x0c,0x3f,0x3e,0xdc,0x64,0x07,0x98,0x51,0x5f,0x3c,0x03,0x9c,0x48,0x57, + 0xba,0xf9,0x90,0xc5,0x40,0xc3,0xc1,0xd8,0xa1,0xae,0x9d,0xf1,0x4c,0x6f,0x68,0x54,0x94,0x36,0xb0,0x17, + 0x17,0x1f,0xc0,0xb2,0x33,0xec,0x27,0x1e,0xea,0xd8,0x19,0xc3,0x9a,0xa2,0xf7,0xa1,0x0d,0x35,0x7a,0x53, + 0x24,0x74,0x9b,0xbb,0xd7,0xe0,0xf3,0x28,0xfe,0x87,0x4b,0x0b,0x41,0xea,0x08,0xcb,0x76,0x3a,0xfc,0x11, + 0x13,0xf2,0x6d,0x63,0xb0,0x13,0xf2,0xa3,0xdb,0x25,0x7f,0xe9,0xf5,0x1f,0xa9,0x0c,0x7b,0xf3,0x7c,0x38, + 0xf4,0x9f,0x06,0x24,0xc9,0xe8,0xad,0x45,0x7e,0x30,0x57,0x79,0xa9,0x0e,0x4b,0xc3,0x08,0x2b,0x52,0x7a, + 0x10,0x71,0x27,0xba,0x6d,0x3d,0x3e,0x61,0x47,0xd1,0xee,0x83,0x07,0x54,0xf2,0xa1,0x59,0x88,0xc5,0x32, + 0xb1,0x8b,0x17,0x4e,0x98,0x94,0xc9,0xba,0x93,0x31,0xf2,0x78,0xc2,0x61,0x01,0x94,0x3e,0xeb,0x44,0xdd, + 0x61,0x94,0x35,0x85,0xe4,0xf5,0x3b,0x66,0xf8,0x02,0xe5,0x92,0x46,0x48,0xd1,0x25,0x4d,0x4c,0x46,0x9a, + 0x3b,0x88,0xf1,0xb9,0xc9,0x7e,0x5d,0xeb,0xa3,0x92,0x72,0x1e,0x25,0x65,0xf8,0x5b,0x44,0x6f,0x59,0x2b, + 0xb9,0x89,0xcf,0x31,0xc1,0xe7,0x3a,0x71,0x2f,0x4e,0xe6,0xb7,0xd0,0x30,0x01,0x7f,0xb7,0x31,0x8a,0x37, + 0xec,0x75,0xf9,0xd4,0xa7,0x82,0xfc,0x12,0xff,0x0a,0xdf,0x48,0xeb,0x87,0xd5,0x1b,0xc3,0x0f,0xb6,0xd7, + 0x96,0x25,0x29,0x12,0x43,0xe1,0xb1,0xfb,0xc1,0xe3,0xb0,0x10,0xad,0x26,0x7d,0x01,0xb1,0x2b,0x8a,0x8e, + 0x5d,0x94,0x70,0xbb,0xcc,0x95,0x6c,0x59,0x65,0x32,0xf2,0x0e,0x59,0xaf,0xb2,0x84,0x4d,0x0e,0x18,0x32, + 0xda,0x04,0x1f,0x47,0xc4,0x32,0xf8,0xe6,0x3d,0x7e,0x65,0x00,0x6d,0x0e,0x7b,0xf3,0x08,0x24,0xa4,0xca, + 0xc4,0x32,0x5c,0x5d,0x1b,0x1b,0xc9,0x38,0xc5,0x98,0xd6,0x18,0x6b,0xae,0x3b,0xb3,0x9d,0x4e,0x2a,0x85, + 0x75,0xca,0xe3,0x4c,0x15,0x52,0x6d,0xc7,0x7c,0x63,0xaf,0x07,0xd5,0x34,0xd7,0xd4,0x13,0x4a,0xba,0xed, + 0xd9,0x5a,0xb2,0x4f,0x0c,0xbb,0x23,0xaa,0x17,0x4c,0xd1,0xac,0x91,0x69,0x6b,0x2e,0xc0,0x3d,0x02,0x61, + 0x03,0xe4,0x54,0xc2,0x3d,0x3a,0x19,0x7b,0x8c,0x0f,0x84,0x65,0xe8,0x9b,0x3e,0x20,0xa2,0x5e,0x8f,0xc7, + 0xfe,0x43,0x29,0x1a,0x86,0x13,0x44,0xf1,0x10,0x44,0x5f,0xff,0xc7,0xa5,0xe1,0x98,0x20,0xa9,0xbd,0x19, + 0xe8,0x43,0x0e,0xd3,0x0c,0x95,0x28,0x4f,0x45,0x0d,0x93,0xb1,0x5a,0x00,0x6b,0x81,0x08,0xde,0x99,0x13, + 0x23,0x0e,0x7d,0xb1,0x3a,0x74,0xfe,0xd4,0x59,0x59,0x29,0x02,0xff,0xee,0x64,0x48,0x39,0x62,0x6d,0x85, + 0x6d,0x0b,0xf5,0x90,0x0e,0xb1,0x7f,0x4d,0xdc,0x8f,0x0f,0xcc,0xa4,0x12,0x2d,0xf4,0x7a,0x65,0x25,0xcb, + 0xca,0xfb,0x49,0x81,0xd2,0xd8,0x85,0x79,0x2a,0x29,0x29,0xdf,0x94,0x83,0x52,0x1c,0xac,0x6c,0x2e,0x10, + 0x53,0xc9,0xd4,0xc5,0x27,0x97,0x3b,0x3b,0x7a,0x92,0xdc,0x58,0x8f,0x66,0xa3,0x5c,0x4e,0x5f,0x3c,0xaa, + 0xd0,0x3b,0x0b,0x9e,0xdf,0x18,0x8d,0x9d,0x40,0x9e,0x58,0x57,0xc8,0x55,0x26,0x31,0x63,0x27,0xe8,0x54, + 0x29,0xf8,0x89,0xb1,0x56,0x54,0x3a,0x92,0x12,0x1f,0x12,0xfb,0xc6,0x2c,0x3f,0x8d,0x94,0x63,0xb4,0x5a, + 0x72,0x54,0x7a,0x19,0xa2,0xe4,0xa9,0x0e,0x53,0x9e,0x3a,0x78,0x2f,0x04,0x7d,0x3d,0x4d,0xc0,0x35,0xbd, + 0x78,0xb0,0x20,0x08,0xd6,0xda,0xb0,0x4a,0x44,0xac,0xe2,0x65,0x00,0x2b,0x39,0x4c,0x2a,0x8c,0xf2,0x12, + 0xa4,0x04,0x3e,0x25,0xe8,0xa9,0x4a,0xb3,0x7e,0x7a,0x72,0x52,0xad,0x9d,0x5e,0x5c,0x35,0x1b,0xf8,0xb6, + 0x20,0x07,0x96,0xa2,0xc0,0x88,0x73,0x8e,0x08,0x8c,0x00,0x3a,0x31,0x3c,0xa0,0xb7,0x01,0xe5,0x1c,0x08, + 0x86,0xa0,0x27,0xa8,0x4c,0xeb,0xf2,0xf9,0x8f,0x9c,0x7b,0x2b,0x2c,0x27,0x01,0x62,0x0e,0xb1,0xa3,0xd1, + 0xcf,0xb4,0x32,0x72,0x13,0xc6,0xab,0x6e,0x18,0xa8,0x13,0x97,0xfd,0x74,0xd2,0xca,0x31,0xb0,0x26,0xad, + 0x47,0xed,0xd9,0xb1,0x39,0xf8,0xd8,0xc8,0x10,0x2f,0xb9,0x2c,0x1f,0xd3,0x42,0xa5,0x5a,0xa0,0x66,0x75, + 0x34,0xa7,0x53,0xa3,0xbb,0x4b,0xd3,0x9a,0x26,0x19,0x7d,0xf4,0x2a,0x40,0xf1,0xc4,0x01,0xc1,0x81,0x2e, + 0x40,0xff,0xb5,0x21,0x50,0xdb,0x04,0x83,0x83,0xa0,0xdd,0x50,0xd6,0x73,0x76,0x4c,0x42,0xa2,0xc9,0x70, + 0x3a,0x7f,0x59,0xa5,0x8c,0x8f,0x6d,0x8f,0x1f,0x69,0x76,0xa0,0x02,0x3d,0x55,0x7a,0xc4,0x26,0x82,0x62, + 0x37,0x9b,0x0f,0x9a,0x49,0x88,0x10,0xb5,0x7c,0xae,0x39,0x8c,0xc3,0x56,0x1f,0xdf,0x58,0xdc,0x05,0x92, + 0xd3,0x19,0x97,0x41,0xee,0x43,0xae,0x4a,0xc8,0x8f,0x19,0xed,0xf8,0xfc,0xc8,0x78,0x42,0x92,0x0a,0x35, + 0xc6,0x5f,0x22,0x57,0x43,0x46,0x85,0xf0,0xe8,0xf1,0x49,0xb0,0x4e,0x38,0xb1,0xf2,0xed,0x5b,0xb4,0xa0, + 0x2a,0xd3,0x3e,0xd1,0x23,0x3b,0x52,0x52,0x68,0x75,0x04,0xb2,0x13,0x62,0x03,0x75,0xb1,0xe8,0x0a,0x4a, + 0xd1,0x4d,0xca,0x58,0xc4,0xba,0x97,0xda,0x56,0xc3,0x9e,0x59,0xe8,0x53,0x08,0xac,0xbf,0x07,0xf5,0x5c, + 0x60,0xc3,0x31,0xc1,0x04,0xc6,0x2c,0x17,0x08,0x35,0xa6,0x4e,0x4a,0x5d,0x02,0xfc,0x7a,0x1c,0x06,0x3d, + 0x21,0x29,0xc1,0xaf,0x5f,0xb6,0x25,0x83,0x20,0x97,0x3c,0xc8,0x3b,0x9e,0x57,0xf6,0xc0,0x20,0xf7,0x8a, + 0x84,0x4f,0x94,0x9d,0x88,0x87,0x61,0xc8,0x1d,0xd0,0xa3,0x0b,0x18,0x1a,0xc3,0x55,0x8b,0x8f,0x19,0xa1, + 0x21,0x9a,0x2f,0x52,0xbc,0x9a,0x07,0x73,0xd4,0x65,0x31,0x4e,0x71,0xa6,0xad,0x0e,0xec,0x4c,0xcc,0x59, + 0xee,0x2b,0x5b,0x72,0xbe,0x10,0xbf,0xb9,0xb2,0x08,0xc3,0x26,0x8f,0xab,0x17,0x88,0x0a,0xc1,0x93,0x57, + 0xe8,0xb7,0xc7,0x8b,0xfd,0x86,0xe1,0x77,0x99,0xb1,0xda,0xc0,0x17,0xcc,0xde,0x17,0x65,0xff,0xae,0x89, + 0x5d,0x79,0x54,0x60,0x4f,0x02,0xc5,0x99,0x6e,0x44,0xf0,0x03,0x39,0xb0,0x82,0x6f,0x3b,0x3e,0x2a,0x8c, + 0x3b,0x42,0x22,0x6e,0x83,0xa8,0x5d,0x3b,0xf6,0xeb,0x9c,0x68,0xd9,0xb8,0x23,0x29,0xf8,0xdc,0xe3,0xa3, + 0xc2,0x76,0x37,0x48,0x0e,0x1b,0xa0,0xe4,0x24,0x4a,0x76,0x7e,0xed,0x60,0x3f,0xc3,0x62,0x94,0xdf,0x04, + 0xbf,0x18,0xd3,0x81,0x84,0xd0,0x42,0xc0,0xce,0x50,0x3b,0x1b,0xfc,0x12,0x69,0x19,0x3e,0x65,0x46,0xc1, + 0x12,0x02,0xd6,0x00,0x09,0x61,0x92,0x21,0x49,0x61,0x8a,0x45,0x24,0x18,0x78,0x57,0x8e,0x7d,0x84,0xad, + 0x28,0x34,0x29,0x30,0xa2,0xd0,0xef,0x0b,0x83,0xbe,0xfe,0xe5,0xf2,0x51,0xe3,0x04,0xa0,0x45,0x03,0x44, + 0x92,0x6a,0x0f,0x9f,0x29,0xa6,0xbf,0x5d,0xfe,0x21,0xd0,0x26,0x7c,0xb9,0xb6,0x3e,0x30,0xbc,0x33,0x8d, + 0x80,0xe3,0xe3,0x6a,0xa2,0x48,0x82,0x06,0xa4,0x27,0x10,0xdf,0x1e,0x15,0xd9,0x52,0x03,0xb2,0x8f,0xaf, + 0xd0,0xe8,0x92,0x85,0x0f,0x99,0xce,0x19,0x5a,0x5c,0x04,0x3b,0x73,0x38,0xcd,0x48,0xed,0x70,0x4b,0x08, + 0x89,0x0a,0xf3,0x49,0xfe,0xfb,0x82,0x17,0x08,0xa2,0x89,0x73,0x6f,0xe1,0x92,0xa0,0x55,0x4d,0x92,0x36, + 0x35,0x7e,0x07,0x0c,0x0f,0x5d,0x9a,0x10,0x90,0x6c,0x59,0x85,0x34,0x7c,0x0a,0x11,0xfe,0x56,0x74,0x76, + 0x4f,0x59,0x25,0xa9,0x20,0x07,0xd0,0x44,0xfc,0x52,0x49,0xe5,0x45,0xc0,0xb0,0xed,0xa8,0x99,0x5d,0x6c, + 0xc9,0x63,0x50,0x3d,0x01,0x2a,0x49,0x95,0x6f,0x4a,0x24,0x4d,0xf9,0x12,0xb5,0x26,0x40,0xfd,0xaf,0xf5, + 0xdf,0x6f,0xde,0x7e,0x0a,0xb5,0x2e,0xbe,0xd8,0x80,0x0f,0x49,0xe2,0x5b,0x1f,0xc6,0x0e,0x39,0xfa,0xc1, + 0x61,0x3b,0x38,0x6c,0xe7,0x09,0xd0,0x4d,0xde,0xb3,0x41,0xc9,0x82,0x66,0xf9,0xcd,0x38,0x74,0x40,0xec, + 0xc0,0xd3,0x0e,0x2e,0x77,0xf0,0x5f,0x9a,0xff,0x0b,0x38,0x62,0xb7,0x12,0x72,0x1d,0x61,0x59,0x62,0xaa, + 0x91,0xfa,0xcc,0xe9,0x9b,0x9c,0x13,0x0c,0x85,0xdb,0xc8,0xd8,0xb8,0x4f,0x68,0x7c,0x58,0x5d,0x44,0xaa, + 0xf5,0x2b,0x16,0xe5,0x93,0x8a,0xe3,0xfb,0x2e,0x8e,0xe8,0x42,0xaf,0x78,0x0b,0x27,0xc6,0xd4,0x1d,0xa3, + 0x6f,0xd1,0x97,0x9a,0x95,0x74,0x52,0xac,0xbe,0xa3,0x94,0x12,0xec,0xf9,0x70,0x96,0x42,0xde,0x02,0x51, + 0x45,0x98,0xc1,0x21,0x04,0xbd,0x29,0xeb,0xbf,0x23,0x16,0xed,0xb4,0xf0,0x7a,0x59,0xb2,0xb0,0xf9,0xab, + 0xa3,0xc1,0x90,0xee,0xb5,0x41,0x55,0xaf,0xdc,0x26,0x55,0xbd,0x72,0x05,0xe1,0x20,0xce,0x95,0x2d,0x0c, + 0xe4,0x68,0xd8,0xaa,0xd8,0x49,0x53,0xf2,0xee,0x25,0xcc,0x33,0xb8,0x39,0x05,0x68,0x06,0x59,0x15,0xf7, + 0x1d,0x10,0x46,0x05,0x67,0x4a,0xf2,0xd6,0xa9,0x9f,0x83,0x02,0x1a,0x77,0xab,0x07,0x71,0x74,0x1b,0x66, + 0x49,0xcf,0x54,0x5f,0x4d,0xdb,0xad,0x98,0xaa,0xce,0x6e,0x43,0xc7,0xe9,0x76,0x6e,0x52,0xc3,0xf7,0x72, + 0xe9,0xd3,0x69,0x68,0x56,0x21,0xaf,0x74,0x50,0x34,0x63,0xff,0x41,0x85,0xe4,0x9f,0x84,0x59,0x21,0x4e, + 0xb2,0x98,0x66,0xba,0x7e,0xa1,0x2d,0xfc,0xd6,0x86,0xc3,0x38,0xf8,0xa2,0x67,0x3f,0x7d,0x67,0xc5,0x1d, + 0xa3,0x64,0x87,0x70,0x72,0x92,0x05,0x36,0xf8,0xcd,0xbb,0x53,0xd1,0x7f,0x0f,0xf7,0x9b,0x0c,0xf7,0x5b, + 0x0c,0xf7,0xdb,0x54,0xef,0x95,0xe6,0x40,0xf7,0x69,0x8f,0x8f,0x99,0xdb,0x89,0x4c,0x7c,0x57,0x1b,0xed, + 0xd8,0x36,0x9a,0xb6,0xb9,0x22,0x40,0x26,0x4a,0xf5,0x35,0x0d,0xf2,0x29,0xbf,0xa4,0xc3,0x4a,0x4a,0x83, + 0x8f,0x9a,0xfe,0x77,0x92,0x9e,0x60,0xf8,0xc9,0x3d,0xe1,0x4e,0x9c,0x42,0x8d,0x50,0x48,0xcd,0x3e,0x95, + 0x3c,0x7c,0xf9,0x0d,0x58,0x6e,0x12,0x4d,0x80,0x52,0x37,0x71,0x6a,0x98,0xc2,0xb8,0xc3,0x35,0xc7,0x8a, + 0xa0,0x42,0x0a,0xe2,0x69,0x49,0xaa,0x18,0xad,0x14,0x93,0x1b,0x06,0xc0,0xcb,0x12,0xc3,0x3c,0xf3,0x81, + 0x79,0xd4,0x58,0x20,0x39,0xf4,0x01,0x0c,0xdf,0xd5,0x03,0xa9,0x05,0x2d,0x60,0x11,0x4c,0x72,0xf4,0xc4, + 0x5f,0x9b,0x10,0x1e,0x44,0xc8,0x74,0x27,0x43,0xe0,0x43,0x43,0xf2,0xe2,0x96,0x63,0x3c,0x93,0x67,0x56, + 0x83,0x8b,0x37,0x21,0x98,0x74,0x3a,0x96,0x01,0xa5,0x0f,0x2b,0x2c,0x85,0x58,0xf6,0xaf,0xd8,0xa6,0x30, + 0xa0,0x02,0x11,0x09,0x61,0x4f,0x23,0xfd,0xc0,0x27,0x94,0xd8,0xaf,0xe0,0x7e,0x49,0xe4,0x71,0xa3,0x6b, + 0x27,0xde,0xab,0x26,0x66,0xd2,0x54,0x0c,0x9e,0x03,0xf3,0xfc,0xa9,0x4e,0x1f,0x1c,0x8d,0xff,0xfb,0xc7, + 0xce,0x9a,0xca,0xb8,0xd7,0xe7,0xe7,0x24,0x2a,0x7b,0x7c,0xd6,0x8d,0x1e,0x78,0xf8,0x7d,0xc5,0xed,0x30, + 0xce,0xd7,0x2f,0xc1,0x1e,0xac,0x22,0x53,0x93,0x04,0x8e,0x41,0x88,0xee,0x9d,0x4e,0x3a,0xa8,0xc1,0xd0, + 0xdf,0x92,0xb1,0x60,0x1e,0x90,0xbf,0x7b,0xdc,0xb2,0xb4,0x75,0xbc,0x38,0x19,0xdf,0xbe,0x13,0xd7,0xbe, + 0x4a,0xcc,0x01,0x16,0xef,0x86,0x78,0x58,0xf3,0x57,0x9c,0x20,0xd8,0xb2,0x67,0xb7,0x6c,0xf1,0xe1,0x99, + 0x85,0x2d,0x5e,0x49,0x70,0x97,0x5c,0x74,0x91,0x6a,0xb1,0x27,0x10,0x7d,0xca,0x22,0x26,0x03,0x4a,0x59, + 0x88,0x30,0x55,0x2e,0xcc,0x6d,0xc6,0x0b,0x55,0x6c,0x89,0x94,0x8f,0xfa,0xf1,0xf3,0x5a,0x80,0x35,0x7e, + 0x59,0x4d,0x48,0xe2,0x66,0x03,0x11,0x10,0x9b,0x16,0x99,0x12,0x03,0xbf,0x04,0x11,0x82,0xfc,0x14,0x0b, + 0x7b,0x18,0x11,0x03,0x53,0xd2,0x77,0x58,0x16,0x02,0x76,0xed,0xdf,0x34,0x36,0x66,0x29,0xd7,0x65,0x4c, + 0x77,0x3b,0xbc,0xdf,0x7d,0xaa,0x95,0x11,0x0d,0xb4,0xd5,0x65,0x1a,0x83,0x81,0x3e,0x99,0x9f,0x5a,0x22, + 0x89,0x9b,0x90,0x6f,0x64,0x0c,0xcc,0x8d,0x84,0x7c,0x58,0x78,0x50,0x9b,0xbd,0x17,0x1e,0x94,0x53,0x05, + 0xff,0x3a,0xd6,0x94,0x08,0xc5,0x97,0x84,0x79,0x4a,0x86,0x9e,0x6b,0x32,0xa0,0xfe,0xe9,0x21,0xe3,0x89, + 0x4f,0x72,0x7a,0xea,0x0b,0x0b,0x35,0x66,0xd5,0xa8,0x0a,0x6d,0x44,0x5a,0x3e,0x46,0xf0,0x8c,0xa2,0xdf, + 0x2c,0x5e,0xba,0x4d,0xa9,0x24,0x32,0x20,0x51,0x7c,0x3e,0x3e,0x34,0xfe,0x33,0x85,0x22,0x5d,0xf4,0x7e, + 0x9b,0x88,0x2b,0x83,0xe3,0x84,0x05,0xda,0x35,0xe2,0x71,0x42,0xd9,0x29,0xb9,0x1f,0xad,0xc6,0xc1,0x32, + 0x93,0xe4,0xfd,0x72,0x0a,0x92,0x3e,0xec,0x45,0xab,0xa0,0xc5,0x28,0x60,0xc7,0x7e,0x5b,0x52,0x8a,0x2a, + 0x7c,0x7f,0xd6,0x3a,0x0c,0x33,0xd8,0x55,0x98,0x1a,0xf2,0x1b,0x9a,0xf6,0x52,0xcd,0x57,0x60,0x7b,0xc1, + 0x54,0x89,0x41,0xb1,0x50,0xe6,0xab,0xd0,0x45,0x4f,0x18,0xcd,0x7f,0x41,0xd7,0x8e,0x77,0x0f,0xa2,0x1c, + 0x90,0xae,0x3c,0x47,0x36,0xfb,0x32,0x23,0x93,0x90,0x42,0x3c,0x4e,0xf0,0x15,0x05,0x95,0xd3,0x04,0x79, + 0xc5,0xef,0xeb,0x08,0x59,0x66,0xd7,0x0f,0xdc,0xab,0x31,0x52,0x13,0x7b,0x07,0x46,0xd6,0x2e,0xcb,0x16, + 0xb3,0x93,0xae,0xac,0xd8,0xf8,0x60,0x49,0x92,0x7f,0x83,0xf2,0x97,0x74,0x02,0x5b,0x67,0x57,0x33,0x81, + 0x09,0x26,0x50,0x4b,0x4f,0xd0,0x02,0x09,0x34,0xa3,0x83,0x34,0xce,0x2b,0xa8,0xbc,0x05,0x16,0x2e,0xd7, + 0x17,0x70,0x49,0xdc,0x29,0x7c,0xab,0xed,0x2f,0xb9,0xde,0xf1,0x57,0x5c,0x7c,0x1f,0x39,0xda,0x48,0x05, + 0x32,0xc8,0xe3,0x2c,0xd8,0x8b,0x8a,0x45,0xed,0x66,0x54,0x3c,0x73,0x04,0x1b,0x5a,0xc5,0xc6,0xab,0xdb, + 0x2e,0x91,0x8f,0x89,0xd1,0x85,0xea,0x04,0x9e,0x8d,0x9e,0x19,0x51,0xad,0xe3,0x9d,0x6b,0x15,0xa2,0x8a, + 0xa1,0x92,0x68,0x4f,0x24,0x05,0x7f,0xc1,0x24,0xa1,0xdb,0x23,0xd9,0x91,0xb9,0xfc,0xe5,0x27,0xc0,0xd8, + 0xf1,0xce,0x3a,0x2b,0x4d,0x63,0x7c,0xa1,0xf1,0xfc,0xc4,0x07,0xc1,0xbf,0xd4,0x21,0x68,0x99,0x27,0x42, + 0xe9,0xe0,0x5b,0xd5,0xed,0xe1,0x64,0x64,0x89,0x99,0x62,0x0a,0x5a,0xb9,0xf5,0x41,0x89,0x5f,0xb9,0xd3, + 0x07,0xbe,0x51,0x9b,0x96,0x24,0x73,0x80,0x68,0xe1,0x09,0x1d,0x03,0x50,0xff,0xd7,0x68,0x7d,0x99,0xa1, + 0x77,0xe7,0x7d,0xe6,0x98,0x91,0x88,0x78,0x68,0xbf,0x0a,0xdc,0x65,0x1f,0x9f,0xca,0x6c,0x17,0xf5,0x88, + 0x73,0x5b,0xcc,0xc1,0x8b,0xc1,0x4c,0xa7,0xec,0xa6,0x3f,0xf1,0x4d,0xa0,0x55,0x14,0xe8,0x81,0x09,0xb3, + 0x08,0xf5,0xb8,0xff,0x3d,0x64,0xc3,0xc4,0xed,0x1d,0x5f,0xf9,0x6e,0x3e,0xcc,0x0e,0x4d,0xbe,0x6c,0xa1, + 0x2e,0x30,0xde,0x3e,0x7a,0xd3,0x49,0x05,0x4c,0xa1,0x40,0xc7,0x1e,0x69,0xa6,0x05,0x45,0x4c,0x3c,0x64, + 0xa1,0x3e,0xd0,0x3c,0xcf,0x35,0xf4,0x89,0x83,0xee,0x51,0xc1,0x23,0xe0,0xc4,0xd6,0x54,0x71,0x99,0x37, + 0x5e,0x39,0x41,0x84,0x36,0xe0,0x6f,0x31,0x91,0xbd,0x42,0x95,0x32,0x23,0x7a,0x55,0x01,0x86,0x70,0x61, + 0xf4,0x9a,0xaf,0xe3,0xa4,0x92,0xfc,0xf7,0x47,0xf9,0xc7,0x0f,0xf7,0x8f,0x54,0x12,0x34,0xd9,0xb4,0x92, + 0xaa,0x24,0x1f,0xff,0x5d,0x7e,0xfa,0x23,0xa5,0x04,0x62,0xa8,0xb1,0x83,0x86,0xa9,0x30,0xae,0x1e,0x0b, + 0x4f,0xf4,0x00,0x65,0x11,0x8d,0x04,0xcc,0x24,0x0b,0x32,0x29,0xf8,0x3e,0xba,0xa2,0x22,0xc6,0x32,0x96, + 0x3d,0x4b,0xa6,0x56,0xb7,0x36,0x8a,0xc6,0x3a,0x09,0x06,0x1c,0x9a,0xb4,0xd4,0x7b,0x78,0x1c,0xd2,0x8b, + 0xca,0xd1,0x76,0xa0,0xc2,0x97,0xcd,0xa1,0x1b,0x4c,0x6a,0xd8,0xfc,0x84,0x77,0xb2,0x35,0x8d,0x31,0x7e, + 0xd1,0xdc,0xc4,0x23,0x17,0xff,0x27,0xce,0x88,0x6b,0xff,0x4e,0x3e,0x6a,0xab,0x6f,0x4f,0xf8,0xcf,0x8f, + 0xce,0x8f,0xf4,0x8f,0xd5,0x1f,0x99,0xa7,0x3f,0x4a,0xa9,0x9d,0x1f,0x6b,0x3f,0xd6,0xd6,0x4c,0xfa,0xb8, + 0xbf,0xf7,0x17,0x99,0x51,0xe0,0x5d,0xbb,0xe3,0x05,0x92,0xfc,0x8f,0xb5,0xf4,0x77,0x22,0xca,0xe3,0xe3, + 0xa4,0x69,0x43,0x14,0xf1,0xd7,0xd2,0x24,0xa3,0xf4,0x1b,0xab,0x8f,0x18,0x6b,0xa9,0x4d,0x54,0x13,0xcf, + 0x1f,0x89,0x20,0x41,0x0f,0x2b,0x86,0xdc,0x1e,0x29,0x9d,0x5e,0xa8,0x8a,0xe1,0x69,0x3d,0xfc,0x43,0x97, + 0x0e,0xfc,0xea,0xc2,0x2e,0x8b,0xc2,0x09,0x95,0x4a,0xcc,0xee,0x2a,0x8b,0x43,0xdc,0x59,0x75,0x4d,0x90, + 0xcd,0x68,0xda,0xc4,0x8a,0xa4,0x0e,0x35,0xd7,0xf3,0xcb,0xe2,0xb7,0xad,0xf3,0x3e,0x8c,0xb4,0x57,0xf4, + 0xc5,0x9b,0x01,0x43,0x70,0xb9,0xa9,0x78,0x35,0xdc,0x51,0xc7,0xe8,0x1a,0x0e,0x33,0xdd,0x7a,0x0e,0xe4, + 0x77,0xa9,0x21,0x17,0xcf,0x64,0x57,0x35,0x62,0x18,0x7d,0x5a,0x32,0x8b,0x64,0x19,0xe1,0x71,0x1c,0x7d, + 0xb3,0x8d,0x93,0x08,0x46,0x83,0xf6,0x37,0x5a,0xfe,0x10,0xc8,0x0f,0x4b,0x09,0xdd,0xb0,0x47,0x2f,0x59, + 0xd1,0xdb,0xb5,0x04,0x05,0x0c,0x12,0x0c,0xc6,0x1c,0x25,0xa9,0xcb,0xba,0xe7,0x24,0xb3,0xaa,0x99,0x0a, + 0xc7,0x4f,0xb7,0x22,0xa5,0xcc,0x34,0x3a,0x5c,0xd2,0x83,0x15,0x0d,0xf6,0x67,0xd8,0x21,0x7d,0xc0,0x46, + 0xea,0xcf,0x4a,0x96,0xdf,0x55,0xc3,0xcc,0x0a,0x1e,0x44,0xad,0xd2,0x45,0x4f,0xce,0x91,0x76,0x48,0x9d, + 0x1d,0xfc,0xa7,0xf4,0xf8,0xe4,0x1b,0xe4,0x1e,0x2d,0x58,0xc4,0x7e,0x4e,0x5a,0x51,0x71,0x07,0xc5,0x37, + 0x51,0xd0,0x1b,0x18,0x72,0xfe,0xbb,0x5c,0x3a,0x74,0x64,0x08,0x00,0x2b,0x6b,0xc9,0x91,0x6b,0x1a,0x1f, + 0x00,0x0e,0x4d,0xed,0x29,0xbe,0x22,0x2c,0x6d,0x6a,0xf6,0x34,0x0c,0x23,0x89,0x73,0x44,0x6c,0xd7,0x88, + 0x93,0x65,0x81,0x10,0x34,0x25,0xec,0x76,0xce,0xae,0x00,0x0a,0x61,0x29,0x51,0x94,0x30,0xbc,0x20,0xe8, + 0xbd,0xd2,0x07,0xb2,0x50,0x40,0x30,0x22,0xc1,0x7c,0xf0,0x83,0xc4,0x8b,0x89,0x2f,0xf2,0x8e,0xbf,0x4a, + 0xb4,0x98,0x4a,0x14,0x21,0xd8,0x02,0x4b,0x2c,0x5c,0x06,0xfc,0xdc,0x09,0x7e,0x06,0xeb,0xad,0x44,0x97, + 0x61,0x09,0xd8,0x1f,0x92,0x3c,0x56,0x87,0x3f,0xaa,0x4b,0x5c,0x4c,0x4b,0xd8,0x16,0xfe,0xd8,0xe1,0x3f, + 0xa2,0xba,0x38,0xa9,0xa9,0xb9,0x58,0x16,0xff,0xec,0xd0,0x3f,0x42,0xb9,0xbf,0x49,0x0d,0x10,0xc1,0x80, + 0x36,0x42,0x24,0x03,0x9c,0x0d,0xec,0x23,0xfc,0x51,0x71,0x0f,0xa2,0x61,0x22,0xd7,0x68,0xe8,0x6c,0x9e, + 0xc0,0x2f,0xd6,0x65,0x53,0x3b,0x41,0x22,0x96,0x4a,0x07,0x9f,0x7e,0xcc,0x39,0x0f,0x84,0x6c,0xf6,0xfa, + 0x2c,0x5f,0x83,0x0c,0x73,0x61,0xff,0x69,0xab,0x22,0xec,0x75,0x84,0x97,0x22,0x27,0xf5,0x0d,0x1b,0x3e, + 0xb6,0x88,0x37,0x38,0xff,0xc0,0x27,0x2b,0xb1,0xf7,0x24,0x11,0x7f,0xa0,0x17,0x5c,0x74,0x37,0xf8,0xf6, + 0x65,0xbf,0x94,0x5c,0x31,0x4c,0x17,0x78,0x2a,0xe9,0x1f,0x0c,0x0a,0x11,0x0e,0x02,0xbf,0x19,0x3c,0xd5, + 0x61,0xbe,0x33,0xc6,0x2b,0x6c,0xbe,0x40,0x84,0x09,0x0c,0xe1,0x93,0x68,0x1b,0x09,0xcd,0xbf,0x71,0x91, + 0x51,0xd8,0x0d,0x2d,0x7a,0x59,0x9d,0x9d,0xf2,0x55,0x96,0xbc,0x08,0x82,0x67,0x60,0x1e,0x37,0x9f,0x5b, + 0xec,0x45,0x06,0xb9,0x00,0x0a,0xa8,0x9a,0x8b,0xca,0x5f,0x92,0xff,0x24,0xd0,0xc8,0xb3,0x02,0x86,0x9f, + 0x46,0x1f,0xcc,0x10,0x95,0xf1,0xb0,0x2a,0x1b,0xf2,0xbc,0x60,0x06,0x0f,0x52,0x97,0xbd,0x57,0x15,0xa4, + 0xa0,0x5a,0xef,0xda,0x13,0x47,0x37,0xc2,0xc7,0xf9,0x7c,0xe5,0xbc,0x7b,0xa8,0x2f,0x13,0xf3,0xa3,0x1d, + 0x7a,0xcd,0xa4,0x82,0x86,0x1a,0x95,0x6a,0xd5,0x64,0x47,0xf9,0xba,0x2a,0xff,0xa9,0xae,0x1d,0xa3,0x06, + 0x7a,0xa2,0x83,0x99,0xf1,0xf5,0xdb,0x28,0x45,0x0c,0x59,0x8d,0x27,0x1e,0x19,0xed,0x93,0x78,0x20,0xc5, + 0x54,0x12,0xef,0x72,0x39,0x54,0xe2,0x22,0x21,0x40,0x94,0xbe,0x37,0x1a,0xbe,0xdb,0xe8,0x7d,0xa6,0x3b, + 0xf6,0x70,0xb8,0xda,0x36,0xfa,0xc0,0x92,0x6c,0x67,0xf5,0xb5,0x84,0xbb,0x1c,0x88,0x6b,0xe5,0xb6,0xfd, + 0x0a,0x3b,0xd4,0x1b,0x10,0x78,0xa9,0x6d,0x3b,0xa0,0x5d,0xae,0x42,0x4a,0x99,0x5c,0x05,0x82,0x64,0xa3, + 0xb4,0x91,0xcf,0xac,0xff,0x7d,0xf1,0x87,0xfa,0x47,0x89,0xbe,0x27,0x02,0x3f,0xc8,0xc6,0xf3,0x2e,0x54, + 0x34,0xad,0xbe,0x01,0x42,0xd0,0x02,0xa3,0x92,0xfd,0xaa,0x39,0x10,0xad,0xf1,0x0a,0xa9,0xd5,0x59,0xa5, + 0xd7,0x8f,0xfe,0x96,0x2b,0xe2,0x7f,0x65,0xfa,0x35,0xeb,0x83,0x2c,0x45,0x5b,0xef,0x6a,0x23,0x73,0x38, + 0x2f,0xfd,0xe3,0xc6,0x70,0x3a,0x9a,0xa5,0xfd,0x43,0x4d,0xfc,0xa3,0x8a,0x16,0x3f,0xf8,0xe1,0x82,0xee, + 0xbb,0x0a,0x1c,0xd5,0xec,0x0a,0x1d,0xcd,0x65,0x0a,0xc6,0xa8,0x2c,0xde,0x61,0x2a,0x64,0xb3,0xe5,0x21, + 0xb9,0xfa,0xb8,0x8a,0xb7,0x27,0xb1,0xa7,0x99,0x6c,0x0e,0x0a,0xa1,0x56,0xb0,0xda,0xa7,0x85,0xa0,0x5a, + 0x79,0xac,0x75,0xf0,0xa4,0x10,0x46,0xee,0x79,0xf6,0xa8,0x54,0x00,0x09,0x6d,0xf1,0x2f,0x12,0x13,0x26, + 0x01,0x23,0x41,0x6f,0x61,0xd8,0x06,0x12,0xc9,0x91,0x69,0xad,0xce,0xcc,0x8e,0xd7,0x2f,0x25,0x36,0x37, + 0xb6,0xc6,0xaf,0xa9,0x77,0x32,0x60,0x5e,0xdb,0xb3,0xc7,0xb4,0xea,0x42,0x7b,0x47,0xa7,0x9b,0x55,0x94, + 0x37,0x59,0x68,0x62,0x8c,0xd8,0xb5,0xf8,0x1b,0x43,0x02,0x22,0xcf,0x47,0x43,0xe9,0x6f,0xf9,0x2c,0xfe, + 0x57,0x1e,0x69,0x4e,0x0f,0x1a,0x40,0x28,0x79,0x80,0xc2,0x3b,0x55,0xca,0xe1,0x07,0x41,0x76,0x5f,0xc3, + 0xb0,0x29,0xd9,0x44,0x36,0xb1,0x9e,0x1d,0xbf,0x26,0xfe,0xd6,0xd5,0xbb,0x1b,0x7a,0xb7,0x4c,0xa7,0xad, + 0xe4,0xda,0xa0,0x82,0x26,0x72,0x90,0xd1,0x06,0xbe,0x3a,0xf8,0xda,0x00,0x84,0x2e,0xd1,0x0c,0x92,0xce, + 0xfb,0x82,0xb1,0x2a,0x4b,0x20,0x86,0xd8,0x3c,0xc1,0x21,0x28,0xc3,0x94,0xc5,0x82,0x19,0x23,0xde,0x31, + 0x4e,0x3b,0x19,0xa3,0x63,0x0c,0x35,0x8c,0xdf,0xc4,0x73,0x12,0xe6,0xa8,0xf7,0xde,0x1d,0xda,0x9a,0x57, + 0x42,0x40,0x32,0x8c,0xdc,0x32,0x1c,0x83,0x24,0xe4,0x77,0x71,0x13,0xbb,0xc8,0xa1,0x65,0x66,0x20,0x38, + 0x51,0xad,0xf8,0x9d,0xb8,0xc5,0x02,0xbd,0x7a,0x7d,0x11,0x6d,0x14,0xf9,0x5f,0x1a,0x77,0x1c,0x50,0x7f, + 0x20,0x5a,0x1b,0x70,0x39,0xc1,0xbb,0xc9,0xa4,0xab,0xd9,0x32,0x02,0xcf,0xfa,0x23,0x16,0x2b,0x25,0x50, + 0x78,0x41,0x9f,0x7d,0xdb,0x79,0x67,0xe1,0xd9,0x60,0x35,0x10,0xfa,0x6a,0xc3,0xde,0x32,0x28,0xd3,0x66, + 0xc9,0x1c,0x72,0x82,0xa3,0xf3,0x49,0x96,0x9a,0xa3,0x75,0xcc,0x89,0x5b,0x5a,0xcf,0xfe,0x5d,0xc6,0x4e, + 0x36,0xb3,0x8e,0x63,0xf9,0xbc,0xc1,0x47,0xb4,0x0e,0xad,0xd2,0x64,0xbc,0x9d,0x69,0x11,0x3b,0xea,0xd3, + 0x7b,0x74,0x89,0x15,0x0a,0xdb,0xdb,0x1b,0x1b,0xbf,0x03,0x0e,0xc6,0x22,0x42,0x0c,0x53,0xd8,0xdf,0xb6, + 0xb2,0xf8,0xdf,0x5f,0xe8,0x20,0x50,0x74,0x5c,0x0f,0xbb,0xdd,0xed,0xed,0x42,0xe1,0x77,0xe0,0x11,0xe7, + 0xaf,0x38,0x50,0xba,0x9e,0x85,0xff,0x2d,0x68,0xe0,0x39,0x35,0xc3,0xfe,0x92,0x60,0x72,0x8f,0xb8,0xd5, + 0x54,0x40,0x12,0x1d,0x99,0xde,0x93,0x0a,0x8a,0x9c,0x07,0xcd,0x50,0x01,0x40,0xcd,0x90,0xe8,0x73,0x09, + 0xf2,0x3e,0x02,0x30,0x2f,0x35,0x83,0x73,0x63,0x07,0xdf,0x34,0x74,0x9d,0xda,0x2f,0xa8,0x19,0x10,0xd3, + 0x2d,0x8c,0x52,0x0b,0x92,0x85,0x65,0x0c,0x13,0xf4,0xcf,0x2a,0xed,0x7a,0x28,0x91,0x30,0x08,0x86,0x3e, + 0x44,0x1c,0x45,0xe1,0xdf,0x72,0xe4,0x7f,0x21,0x2a,0x28,0xc0,0xc2,0x13,0xd6,0xb9,0x69,0x81,0x14,0x07, + 0x6b,0x1d,0xab,0x39,0xbd,0xb6,0x96,0xcc,0xaf,0xaf,0xab,0xfc,0xff,0xb3,0x19,0xbc,0xce,0xc5,0x4a,0xac, + 0x62,0x91,0x02,0x2f,0x96,0x55,0xc9,0x7f,0x99,0x42,0x50,0x20,0xbb,0x1c,0x4c,0x76,0x2b,0xa5,0xd2,0xcc, + 0x7c,0x18,0x40,0x0e,0xd4,0x5b,0x8a,0x3d,0xf2,0xe4,0xf7,0xd4,0x50,0xe9,0x57,0x86,0x7d,0x65,0xe4,0xcc, + 0x8c,0x9c,0x1b,0x45,0x78,0x49,0xcc,0x61,0xc5,0xe4,0x19,0x11,0xea,0x20,0x03,0x95,0x12,0xa8,0xdd,0x47, + 0x4a,0xe2,0xae,0xa5,0x4f,0x2a,0x96,0xd6,0x40,0x18,0xf8,0x25,0xaa,0x29,0x8d,0x10,0x06,0xc9,0xb3,0x84, + 0x22,0xb1,0xb8,0x8f,0xe0,0x05,0x1d,0x81,0x3f,0xc3,0xe7,0x42,0x24,0xb9,0xf7,0xaf,0xef,0x65,0x0b,0x5a, + 0x01,0x76,0x2f,0x8c,0xba,0xb9,0x4a,0x63,0xdd,0xa3,0x5c,0x42,0x76,0x8f,0x32,0xa8,0x8e,0x6f,0x91,0xc4, + 0xd0,0xf7,0xaf,0xa9,0x3e,0x9e,0x4b,0xf1,0xbd,0x06,0x86,0x05,0xc3,0x65,0x7b,0xf1,0xdf,0x3a,0x9d,0x4e, + 0x59,0xdc,0xa8,0x8a,0x59,0xfc,0xaf,0xac,0x4f,0x1c,0x17,0xb2,0xc7,0x36,0x39,0x54,0x94,0x36,0x53,0xc2, + 0x81,0x19,0x59,0xf4,0x51,0x10,0x60,0x24,0x53,0xea,0x82,0xca,0xe3,0x72,0xfa,0xa1,0x1f,0x19,0xa9,0x5c, + 0x46,0x2a,0x98,0x91,0x4a,0xc6,0x90,0x12,0xad,0x14,0x93,0xb1,0xac,0x06,0x05,0xf5,0xbe,0x64,0x64,0xeb, + 0x59,0xfc,0xaf,0x6c,0x4f,0x3c,0x1c,0x8d,0x88,0xca,0xff,0x0d,0xa4,0x2f,0xf7,0x8b,0xe6,0xbc,0xfb,0xcc, + 0x4b,0x97,0x3a,0x96,0xdf,0xc2,0xff,0x16,0x71,0xdc,0x8b,0xb6,0xb9,0x3a,0x06,0xf5,0x5a,0x73,0xe6,0xb2, + 0x44,0x91,0xdf,0x58,0xd7,0x72,0x31,0xb5,0xfe,0x2a,0xde,0xc2,0xad,0xc9,0x93,0xe6,0xa7,0xc6,0x96,0x65, + 0x98,0x97,0xfa,0xb7,0xb1,0x99,0x6f,0x6f,0x2c,0x34,0x56,0x32,0x5e,0x5a,0xca,0x30,0xed,0x19,0x12,0x3e, + 0xdb,0xef,0x33,0x1e,0x6c,0xd7,0x7f,0x72,0x48,0xa2,0xe0,0x82,0x6c,0x31,0xc4,0x62,0xb3,0x72,0xf1,0x52, + 0xd7,0x74,0x5c,0x6f,0x95,0x44,0x78,0x92,0xaa,0x66,0xa3,0xac,0x99,0x30,0x51,0xf8,0x1b,0x82,0x40,0x8c, + 0x3a,0x14,0x40,0xa8,0x29,0xc2,0x91,0x49,0xc5,0x70,0xa3,0x04,0x1f,0x11,0xb1,0xa9,0xfc,0xb6,0x4a,0x0c, + 0x21,0xa5,0xdc,0x82,0xdf,0x17,0x61,0x54,0xd1,0x73,0xb4,0xb9,0x20,0xe8,0x6e,0x8d,0xbd,0x32,0xc1,0x98, + 0x36,0x34,0x7b,0x56,0x49,0x27,0x11,0xcd,0xc3,0xe2,0xe3,0x42,0xda,0xdd,0xea,0xbe,0x94,0xe7,0x37,0xdb, + 0x35,0x5f,0x8d,0x4e,0xd9,0x97,0x36,0x79,0xe3,0x1b,0x20,0x27,0x7c,0x4d,0x82,0x8a,0x87,0x4f,0x0b,0xad, + 0x13,0x36,0x42,0x50,0x09,0xb2,0xcd,0x42,0xee,0x8c,0x4c,0x0a,0xdb,0x9b,0x5a,0x7b,0x2b,0x2c,0xdf,0xe6, + 0xb2,0x5c,0x8c,0x95,0xf4,0x82,0x10,0xe7,0xe1,0x5c,0x2b,0xb3,0x0e,0x03,0x60,0xe3,0x67,0x22,0x3c,0x95, + 0xa0,0x23,0x92,0xe9,0xef,0x8f,0xec,0x9d,0x92,0x52,0x74,0x14,0x09,0x7e,0x92,0xf1,0x4e,0xfa,0x46,0x34, + 0x0c,0xa3,0x34,0x76,0x0c,0xb9,0x18,0x7d,0x41,0x52,0x1a,0xf2,0xf6,0x66,0x41,0x2b,0x6c,0x2d,0xa8,0xc0, + 0xc1,0xe4,0x8c,0x78,0xb6,0x1c,0x1a,0x2f,0x31,0xf4,0x51,0x39,0x84,0x72,0x7f,0xb1,0x65,0xcb,0xc6,0xb7, + 0x92,0x45,0x32,0x88,0x41,0x0b,0x26,0x2d,0x7e,0x21,0xe9,0xbc,0xc7,0xb0,0xfc,0xcf,0x44,0xdb,0x0d,0x98, + 0x69,0x2e,0xda,0xe2,0xef,0x18,0x7d,0x80,0x35,0x38,0xd4,0xda,0x46,0xd0,0x1c,0xf9,0x8a,0x1f,0xb7,0xb8, + 0x14,0xc9,0x28,0xa6,0xf8,0x1c,0x9e,0xae,0x0d,0x19,0xc9,0xc3,0xe8,0x18,0xd0,0x0c,0x8b,0x19,0x1c,0x1e, + 0x4d,0x24,0x5d,0x1a,0xd5,0x46,0x16,0xff,0xe3,0x20,0xa0,0x0b,0xf8,0x28,0x7b,0x87,0x57,0xe5,0xdf,0xef, + 0x0c,0xfd,0x30,0x9d,0xd0,0xee,0xd0,0x9e,0x19,0x9d,0x70,0x15,0x79,0x4c,0xe1,0x64,0x61,0xf9,0x2e,0xc2, + 0xe2,0x64,0xe8,0x1b,0xa5,0x5c,0xa2,0x17,0x86,0xf5,0x82,0x70,0x45,0x5e,0x50,0x10,0x64,0xca,0x51,0xc5, + 0x05,0xa7,0xbf,0xc8,0x57,0x20,0xfe,0xa0,0x73,0x25,0x4c,0xd5,0x06,0x72,0xb2,0x78,0x54,0xf9,0x7d,0x11, + 0x30,0xa6,0x93,0xff,0xc9,0xcb,0x34,0x17,0x16,0x8c,0x40,0x5e,0x0c,0xd1,0x16,0x07,0x15,0xdf,0xc3,0xf5, + 0x4f,0x7b,0x48,0x78,0x6d,0xfc,0x24,0xcb,0xd8,0x62,0x7a,0x49,0x8c,0x30,0xb6,0x95,0xe2,0x7c,0x9c,0x42, + 0x47,0xd6,0x92,0xa7,0x22,0x5d,0xd9,0x3f,0x40,0x2f,0x39,0x36,0x89,0xa8,0xb3,0x5a,0x5c,0xef,0x18,0xbd, + 0x94,0x38,0x46,0x22,0x58,0x67,0x43,0xd2,0x9f,0x24,0xfc,0x89,0x43,0x27,0x97,0xe9,0x39,0xb9,0x09,0xeb, + 0x30,0x07,0x6b,0xee,0xbf,0x20,0xd9,0xc6,0x08,0x62,0x5c,0x77,0xea,0xca,0xac,0x90,0x2d,0xcc,0x2c,0x50, + 0x0f,0xe5,0x16,0xbf,0xa8,0xfc,0x1b,0xe6,0x16,0xb1,0x1d,0x71,0x50,0x0e,0xde,0x96,0x7a,0x92,0x46,0xed, + 0x44,0xb8,0x0f,0xd1,0xf9,0xfb,0xb9,0xf7,0x60,0x2b,0xcb,0x07,0x85,0x60,0x6f,0xee,0xe7,0x7d,0x31,0x28, + 0x8b,0xff,0x49,0xc6,0x9d,0x50,0xd1,0x82,0xb8,0x37,0x46,0x25,0xa6,0x68,0xd5,0xa0,0xe7,0xa4,0x17,0xc5, + 0x77,0xb1,0x44,0xd1,0xf1,0x87,0xc3,0xd7,0xf0,0x53,0xcc,0xf2,0x2f,0x2f,0x6b,0x73,0x03,0xff,0x5b,0xc8, + 0x1c,0x4d,0x62,0x65,0x9f,0xf2,0x63,0x52,0x6f,0x95,0x72,0xc0,0x77,0xc9,0x0e,0x90,0xff,0xb2,0x25,0x2a, + 0x43,0x8e,0x8a,0x70,0x1b,0x1e,0x0a,0xd2,0xd2,0x42,0x48,0x4e,0x2c,0x67,0xb8,0x52,0xb1,0x08,0xa9,0x2e, + 0xc9,0xe4,0x64,0xbb,0x24,0x3b,0x20,0x61,0xb1,0x80,0x4f,0xce,0xb1,0x7c,0x9f,0x1a,0x8b,0xc8,0xd0,0x19, + 0x11,0x13,0x0e,0x18,0xd4,0x67,0xa6,0x47,0x61,0x80,0x90,0x0b,0x9b,0x63,0x08,0xe9,0xb2,0xac,0xc4,0x68, + 0x8a,0x9a,0x2c,0xc2,0x24,0xc9,0x0c,0x2d,0x78,0x85,0x01,0xa8,0xe3,0x3d,0x24,0x5d,0x46,0xe5,0xac,0x05, + 0x1e,0x64,0x31,0xcf,0x41,0x49,0x64,0xa4,0x70,0xa8,0x88,0x27,0x19,0xa8,0x3e,0x15,0xd5,0xc8,0x92,0xc0, + 0xfb,0x00,0xe8,0xd6,0xf3,0x1e,0x91,0xe1,0x68,0x46,0x60,0xa3,0x5b,0x52,0x73,0xa9,0xce,0x18,0x70,0x02, + 0xce,0x55,0xc9,0x78,0x43,0xd2,0x2d,0x68,0xb4,0x24,0x31,0xca,0x24,0x24,0x85,0x88,0x35,0x56,0x2a,0xf1, + 0xd6,0xe8,0xf7,0xaa,0xd7,0x07,0x4a,0x58,0xda,0x85,0xf8,0x2e,0xe5,0x05,0x83,0x58,0x3e,0xde,0x20,0x26, + 0x76,0x87,0x59,0x3a,0x65,0x79,0x48,0xe8,0x10,0xaa,0xc6,0x84,0x05,0xb1,0xce,0xfc,0xf7,0x1b,0xc1,0xe0, + 0x0e,0x4b,0x46,0x2e,0xed,0x93,0x46,0x61,0xa3,0xb0,0x11,0xaa,0x14,0xee,0xdd,0x27,0x15,0x7a,0xb8,0xc6, + 0xbf,0xd0,0x4e,0x21,0xdf,0xde,0x2c,0xe4,0x23,0xd5,0x3e,0x6b,0x29,0x54,0xa5,0x3d,0x9c,0x18,0x5f,0x68, + 0xa8,0xb8,0x51,0xdc,0xd0,0xf5,0x70,0xad,0xcf,0xda,0xe1,0x35,0x98,0x95,0x2c,0x46,0xf4,0xfd,0xa5,0xe0, + 0x1e,0x21,0x73,0xcb,0x46,0xd3,0xdf,0xbb,0xbc,0x92,0x63,0xd6,0x26,0x59,0x76,0x12,0xff,0x23,0x66,0xb8, + 0xf7,0x38,0xe5,0x80,0x9b,0x3c,0x16,0x71,0x66,0xbc,0xf7,0xa8,0xfe,0xc7,0x74,0xc0,0xb2,0x7f,0x4a,0x82, + 0xb0,0xb8,0x60,0x21,0x0f,0xe9,0xd3,0xed,0x36,0xb6,0x3d,0xc6,0x9c,0x85,0x3d,0x09,0x87,0x1d,0x57,0x90, + 0x07,0xf5,0x7d,0x17,0x98,0x65,0x7c,0x49,0x2d,0xd6,0x40,0x29,0xcb,0xa6,0x31,0x1d,0x12,0x4c,0x96,0x81, + 0x2e,0xeb,0x6b,0xb3,0xd2,0xd8,0x0a,0x59,0xfc,0xcf,0x1f,0x3b,0xe5,0x59,0x04,0x0a,0x33,0x6b,0x84,0x91, + 0x2a,0xd6,0x6d,0x17,0xb5,0xf5,0x2d,0x09,0x2f,0x6c,0x07,0xfc,0x44,0xd9,0x20,0x27,0x0f,0x99,0x2e,0x00, + 0x5b,0x25,0x33,0xbe,0xca,0x0d,0x30,0x24,0x09,0xa6,0x7d,0x6a,0xb0,0xa4,0x77,0x22,0xdf,0x51,0xa1,0xd3, + 0xc6,0xc3,0x1f,0x6f,0x9e,0xc8,0xac,0xbb,0x62,0x65,0xa9,0x96,0x67,0xbf,0xb3,0x62,0x48,0x11,0x84,0xb6, + 0x25,0x3a,0x22,0x29,0x09,0x74,0x0d,0x73,0xbc,0x18,0xdd,0xfd,0x93,0x3e,0x17,0xb7,0xff,0x2e,0x57,0x4f, + 0x2c,0x63,0xeb,0x74,0xcf,0x2f,0x22,0x12,0xe5,0xf2,0x53,0x0d,0x96,0xdd,0x2f,0xce,0x27,0xe8,0x4e,0x56, + 0x96,0x55,0x0e,0x02,0xc4,0xb0,0x3a,0x5f,0xed,0xf1,0x92,0x0d,0x38,0x00,0xb4,0xb4,0xef,0x54,0x8e,0x17, + 0xba,0x4e,0x0a,0x2f,0xeb,0x38,0x33,0xb2,0x7c,0xd6,0xef,0xe8,0x56,0x8f,0xfe,0x87,0x78,0x55,0x18,0x8f, + 0x7c,0xa5,0x66,0xf3,0xd0,0xec,0x0f,0xf4,0x90,0x51,0xd4,0x77,0xfe,0xe8,0x6a,0x41,0xa5,0x27,0xc2,0x6e, + 0xe9,0x51,0x01,0x1e,0x37,0x46,0xe7,0xbe,0xb5,0x35,0xf8,0xb5,0xe6,0x3a,0xfa,0x5a,0x75,0x3c,0xc6,0x67, + 0xa0,0xf1,0x86,0x64,0x24,0x6f,0xaa,0x81,0xd8,0xdb,0xc6,0x17,0xe1,0x5d,0xdd,0xc5,0xdb,0x01,0x24,0x70, + 0x5d,0xe9,0xf1,0x09,0xdf,0x44,0x1d,0x03,0x9d,0xbb,0x25,0xa5,0x5a,0x9d,0x5c,0x54,0xd5,0xc3,0x6a,0xb3, + 0xa9,0x6e,0xd4,0xaa,0xd5,0xad,0x9a,0x5a,0xaf,0xd6,0xb7,0x6b,0xea,0x0b,0x7c,0xb8,0xe4,0xc3,0xab,0xa9, + 0x46,0xb5,0xda,0x23,0xbf,0x9f,0x6b,0xea,0xa8,0x56,0x6d,0xd5,0xd5,0x01,0x64,0x8f,0x48,0xd2,0xb8,0x06, + 0xb5,0x21,0x45,0xaa,0x3d,0x83,0x0f,0xb3,0x4e,0x6a,0xd4,0xd5,0xdb,0x6a,0xf5,0x1e,0x7f,0x3e,0xa8,0xd9, + 0x7a,0xb5,0x9a,0x27,0xc9,0x85,0x7a,0x00,0xb4,0x5f,0x93,0x7e,0xdb,0x50,0xf7,0x85,0x7c,0x38,0x41,0x46, + 0xb3,0x4f,0x5a,0xae,0xda,0xe4,0x03,0xda,0x7c,0xa9,0x57,0xdb,0xbb,0xd0,0xb2,0xd1,0x52,0x7b,0xd8,0x18, + 0x4f,0x87,0x7f,0x1b,0x6a,0x13,0x87,0x13,0xc0,0x81,0x11,0xdc,0x56,0x0f,0xb1,0xd3,0x75,0xe7,0x2a,0x0f, + 0x49,0x0d,0xf7,0xaa,0x20,0x37,0x7a,0x5f,0xad,0x6a,0x58,0xb7,0xad,0xe6,0x6b,0xf5,0xd7,0xab,0x22,0x16, + 0x9a,0x5f,0xad,0xd7,0x54,0x17,0xa0,0x4c,0x08,0xd8,0x29,0x69,0xf4,0x6a,0x17,0x60,0xdd,0xb6,0x84,0x41, + 0xf9,0xcd,0x23,0x76,0x4c,0xf8,0x18,0x90,0xe2,0x0e,0xfe,0xbb,0xd7,0x50,0xcf,0xb1,0x2f,0x7e,0xf2,0xee, + 0x18,0xdb,0x3a,0x6e,0xa9,0xd7,0xd5,0xea,0x2d,0xd6,0xb9,0x0b,0xf2,0xea,0x16,0x69,0xe1,0x62,0x1f,0xbb, + 0xae,0x1f,0x0b,0x45,0x78,0x4f,0x27,0x35,0x0b,0xff,0x8c,0x6b,0x75,0x2c,0x38,0xac,0x1d,0x60,0x49,0xbb, + 0x76,0x2c,0xc0,0x18,0xd6,0xd4,0xd3,0x6a,0xf5,0x1c,0x7f,0x5e,0x00,0x7a,0xaa,0xc7,0xf0,0xab,0x57,0xbb, + 0x82,0x7f,0xbd,0xfa,0xbe,0x9a,0xae,0x55,0xf3,0x50,0x5c,0x42,0x71,0xd0,0x4c,0x30,0x26,0x09,0x9e,0x8f, + 0xf7,0xb5,0x5a,0x0e,0x10,0xd2,0x80,0x99,0x85,0xb9,0xc5,0x29,0x9e,0x63,0xea,0x73,0x3d,0xd7,0x50,0xe7, + 0x8d,0xea,0xa0,0x6e,0x0b,0xa9,0xc3,0xfa,0x66,0x43,0x9d,0x34,0xaa,0xa3,0xfa,0x40,0x48,0xb5,0xea,0x85, + 0x86,0x3a,0x68,0x54,0xed,0xfa,0x46,0x2d,0x48,0xad,0xb6,0xd4,0x7c,0xab,0x7a,0xfe,0xda,0x08,0x92,0xea, + 0x6f,0x35,0xb9,0x13,0xe9,0x16,0x10,0xdc,0x01,0x21,0xb8,0x03,0xb5,0x77,0x84,0xd3,0x29,0x15,0x1e,0x00, + 0x98,0x11,0x21,0x2d,0x0b,0x72,0x9a,0x90,0xd3,0xc4,0x8f,0x5c,0x53,0xd5,0xb0,0x6c,0x40,0x79,0xeb,0x75, + 0xf5,0x18,0x53,0x26,0x50,0x7b,0x46,0x6a,0xbf,0x2e,0xa1,0xb9,0xe3,0x67,0x02,0xf6,0xb8,0x2e,0x67,0xeb, + 0xd5,0xaa,0x81,0x3f,0xbb,0xea,0x75,0xdd,0x7a,0x40,0xda,0x68,0xd8,0x0f,0x40,0x1c,0x40,0x5d,0xdb,0xf4, + 0x33,0x8d,0x9f,0x41,0x31,0x9f,0x40,0xae,0x60,0xf6,0x8a,0x07,0x55,0x0d,0x66,0xbf,0xfe,0xfa,0x90,0x25, + 0x34,0xf6,0x90,0x23,0x35,0x73,0x0f,0x84,0x2e,0xf3,0x0f,0x05,0xa4,0x8f,0xfa,0x2e,0x94,0xee,0xd7,0x76, + 0xd5,0xad,0x3d,0x58,0x84,0x58,0x7c,0x8d,0xe6,0xf7,0xb4,0x02,0x29,0xfe,0xac,0x11,0x0a,0x1d,0x68,0x9b, + 0x30,0x3d,0xf5,0xea,0x61,0x03,0x13,0xc7,0x5a,0x9a,0x26,0xc2,0x9a,0xdb,0x68,0x21,0x91,0x41,0xe2,0x54, + 0x03,0xfc,0xd7,0x1b,0x33,0x0d,0xd0,0x72,0x89,0x05,0x61,0x2c,0x04,0x7c,0xb5,0x0e,0x0d,0x01,0x1e,0xa2, + 0x54,0x86,0x74,0xac,0x57,0x8f,0xf7,0x64,0xca,0xe6,0xb9,0x47,0x40,0xc1,0xd9,0x5a,0xf5,0xf2,0x18,0x10, + 0x5b,0xd5,0x31,0xb3,0xa3,0xce,0x19,0xcc,0xbb,0x03,0xfc,0x69,0x1c,0xfb,0x09,0xfd,0x25,0x24,0x7a,0xe9, + 0xf7,0xe1,0xb2,0x7a,0xba,0x0f,0xe3,0x1b,0xea,0x38,0x17,0x8d,0x91,0x0e,0x93,0x11,0xc0,0x95,0xea,0x88, + 0xdd,0x83,0xc9,0x83,0xae,0x07,0x28,0x3e,0xaf,0x56,0x2f,0xf1,0xd7,0x15,0xa7,0xe1,0xe6,0x03,0xae,0x90, + 0x93,0x5d,0x2c,0x79,0x2e,0xae,0x56,0x56,0x12,0xf2,0xc9,0xea,0xd4,0xab,0xad,0x26,0x99,0xb9,0xce,0x16, + 0xc1,0xaf,0x01,0xcc,0x0b,0x3a,0x5f,0xcd,0x92,0x96,0x72,0x35,0xa1,0x66,0xd0,0x1a,0x63,0x16,0xf5,0x76, + 0xc0,0x06,0x9b,0x96,0xb8,0xf6,0x87,0x64,0x21,0x77,0x76,0xa1,0x4e,0x0f,0xa6,0xef,0xb2,0x5a,0xbd,0x86, + 0x64,0xad,0x0d,0xff,0x6c,0xd6,0x1a,0xd8,0xa7,0x17,0x48,0xe6,0x03,0x72,0x6a,0x63,0x42,0x81,0xf9,0x1a, + 0x99,0xb1,0x71,0x17,0x39,0x67,0xe3,0xa5,0x3b,0xc4,0x11,0x1e,0x37,0x96,0x51,0x9f,0x34,0x3b,0x01,0x3f, + 0xb6,0x64,0xc6,0xe6,0x67,0x9c,0x41,0xe5,0x5e,0xbd,0x7a,0x4f,0xda,0xf0,0xcc,0x1a,0x42,0x6c,0x4c,0xcc, + 0x9a,0x53,0xfb,0x0d,0x76,0xd0,0xaf,0x01,0x2f,0x2d,0xd2,0xee,0x4b,0xb5,0xe2,0x3b,0x33,0xad,0xc1,0x42, + 0xe8,0x35,0x60,0x5f,0x38,0x26,0x23,0x33,0x6b,0x3d,0x1c,0x9a,0xdb,0xab,0x79,0x75,0xec,0xcc,0xac,0xde, + 0x0a,0x0a,0xbf,0xd6,0xa1,0xf0,0x56,0xbd,0x5a,0xac,0x1f,0xe3,0xca,0x1a,0xd4,0xc8,0x02,0xb1,0x07,0x35, + 0x20,0xf9,0x49,0xbd,0x7a,0xd9,0x08,0xba,0x71,0xe0,0x11,0x12,0xb8,0x6c,0x2d,0x63,0x59,0x01,0x0b,0x0c, + 0x28,0x83,0xcd,0x42,0xfd,0x86,0x0f,0xb1,0xd3,0x45,0x7e,0x38,0xaa,0xb5,0x64,0xec,0x41,0xbf,0xd8,0xde, + 0x35,0x24,0x5c,0xe2,0xbc,0xfe,0x17,0x60,0x5f,0x10,0xd8,0xb0,0xd2,0x65,0xbe,0x24,0x72,0x2c,0xe9,0x03, + 0x38,0x65,0x75,0xde,0x20,0x34,0xd7,0xa0,0xb3,0xce,0x27,0x1a,0xe7,0xb0,0x89,0x4c,0x08,0x10,0x68,0xd9, + 0x35,0xca,0x6f,0x6c,0x44,0xec,0x35,0x7e,0xdb,0xec,0x7b,0x5c,0x13,0xc8,0x92,0xcf,0xe1,0x03,0x74,0x96, + 0xee,0x7b,0xeb,0xac,0xe6,0x06,0xab,0xb9,0xce,0x6a,0x6e,0x90,0x9a,0xd2,0xbe,0xcc,0xc1,0x74,0x10,0x2d, + 0xad,0x7a,0x3c,0x35,0xe1,0xb6,0xbf,0x87,0xb9,0xd1,0x35,0x78,0x43,0x33,0x82,0x55,0x2c,0xd1,0x86,0x58, + 0x0a,0xb9,0x4f,0x7d,0x68,0xd7,0xc8,0xd2,0x1b,0xd9,0xb5,0x6d,0xc2,0xdb,0xc6,0x76,0x8d,0xf0,0xb1,0x17, + 0xbb,0xb6,0x16,0x22,0x2c,0x0e,0xb3,0x4b,0x9b,0x08,0xf2,0x86,0xa4,0xe0,0x61,0x5d,0x9e,0xc9,0xeb,0xfa, + 0xd8,0xa1,0xc0,0x5f,0x1c,0x06,0xdc,0x73,0x28,0xf0,0x89,0x53,0xeb,0xe3,0x46,0x20,0x75,0x74,0xe9,0x48, + 0x75,0xc4,0x7f,0x78,0x9f,0x3e,0x46,0x54,0xc1,0xde,0xce,0x90,0xbd,0x4b,0xb8,0xc1,0xb1,0xb0,0x2e,0x4e, + 0x70,0x5b,0xda,0x47,0x61,0x41,0x5a,0x2a,0x01,0xc9,0x32,0xaa,0x69,0x13,0x4c,0x0f,0x6a,0x2d,0x61,0xde, + 0xea,0xd5,0xd6,0x11,0x74,0xaf,0xd9,0x14,0xba,0x17,0xf7,0x4b,0x12,0x72,0x2e,0x11,0x03,0xe2,0x20,0xa4, + 0x2e,0x13,0x6e,0x2f,0xa1,0xec,0x52,0xe6,0xff,0x4b,0xb9,0xad,0x0c,0x97,0x4a,0x39,0xa1,0x94,0xf3,0xea, + 0x7d,0x68,0x4b,0x0d,0xe0,0xde,0xd7,0xfb,0xd3,0x1a,0xe2,0xb2,0x61,0x4e,0x51,0x80,0xb1,0x45,0xe1,0x10, + 0xa9,0x7a,0x5a,0x73,0x09,0x15,0x4f,0x91,0xbb,0x30,0xf2,0x3b,0xeb,0xaa,0x5b,0x35,0xc4,0x9d,0x04,0x54, + 0x1c,0xdc,0x75,0x7d,0x3a,0xad,0x61,0x7f,0x1b,0xb3,0x69,0x0d,0x7a,0x7c,0x5b,0x7f,0x65,0xdf,0x73,0xf2, + 0x2d,0x0d,0x07,0x9a,0x29,0xb0,0x66,0x8a,0xa4,0x19,0x46,0xb7,0xcf,0xd8,0x21,0xd8,0xce,0xe8,0x2e,0xdb, + 0x9f,0x51,0x00,0xe6,0x8c,0x02,0x7c,0x66,0xdf,0x83,0x59,0x1c,0xc0,0xf1,0x8c,0x02,0x7c,0x99,0x09,0x00, + 0x73,0x08,0x10,0x16,0x7d,0xaf,0xbe,0x45,0x88,0xc8,0xab,0xe3,0xaa,0x3e,0x86,0x7d,0x1a,0x86,0x63,0xd6, + 0xb3,0x24,0x71,0x5a,0xdf,0x63,0x89,0x76,0xbd,0xea,0xb2,0x92,0x85,0x3a,0xe2,0xe4,0x70,0x8d,0x70,0xa0, + 0x09,0x2b,0xb9,0x5e,0x3f,0x64,0x89,0x23,0xe4,0x8c,0xb4,0x64,0xbf,0x51,0x45,0x02,0x01,0x8a,0x06,0x1e, + 0xb3,0xc1,0x4a,0x3e,0x37,0x5a,0x90,0x68,0x36,0x4c,0xdc,0x53,0xcf,0x37,0x1b,0xf2,0x52,0x88,0xd9,0xb2, + 0xa4,0x9d,0x82,0x4c,0xe1,0x61,0x3d,0x76,0xef,0xb5,0x6a,0x94,0x8d,0x44,0xb8,0x8a,0x00,0x88,0x91,0xf2, + 0xfe,0x03,0x2a,0x0e,0xb0,0xe1,0x4a,0x7b,0xa8,0xa4,0x4b,0xb0,0x9e,0x1c,0xb7,0xc9,0x72,0xcc,0xd5,0x88, + 0x5c,0x33,0xc9,0x21,0x97,0xbf,0xc6,0x6f,0x22,0x07,0xbc,0x64,0x6b,0x20,0x7b,0xe7,0x81,0x83,0xfa,0x62, + 0x46,0x7b,0x4c,0x50,0xf8,0x02,0x5b,0x09,0x5b,0x41,0x0e,0x4e,0xca,0xa8,0x01,0xed,0xe0,0x86,0xb1,0x9e, + 0xa3,0xb3,0x31,0x20,0x55,0x47,0x88,0x6c,0xa1,0x1b,0x4d,0x26,0x66,0xe5,0x6b,0x73,0x22,0x67,0xe5,0x6b, + 0x6f,0x7e,0x57,0xc6,0x38,0x7a,0xd8,0xd4,0x70,0xe3,0x81,0x32,0xfd,0x02,0x65,0x11,0x66,0x01,0xf9,0x0f, + 0x30,0xa8,0x02,0x05,0x3c,0x2a,0x20,0xeb,0x3c,0x47,0x79,0x25,0x76,0xc3,0x7c,0x50,0xdd,0x3a,0xf2,0x13, + 0x5f,0x63,0x40,0x82,0xcd,0x13,0x16,0xca,0xb7,0x87,0x3b,0x09,0x91,0xc0,0x31,0x74,0x64,0x18,0x12,0x5d, + 0x49,0xa0,0x59,0xbd,0x8b,0x0e,0x4e,0xf4,0xfd,0x71,0xb0,0x7a,0x51,0xc0,0x04,0xac,0x9a,0xcb,0x45,0xff, + 0x60,0xf9,0x5d,0xd7,0x73,0x45,0xca,0xec,0xdd,0x02,0x0a,0xf0,0xf7,0x80,0x91,0xcf,0x1a,0x8d,0xf0,0xa7, + 0xcd,0x5a,0x07,0xb5,0x3b,0x13,0xd0,0xc3,0xe9,0xe5,0x19,0x67,0x12,0x70,0xec,0xd6,0x43,0x1d,0x38,0xae, + 0x56,0x4f,0xf1,0xe7,0x99,0xd4,0x81,0xb5,0x75,0xb1,0x03,0x5a,0x35,0x5d,0x17,0x79,0x9d,0x86,0xdb,0x1d, + 0x81,0xac,0x70,0x55,0x97,0x3d,0xb4,0x03,0x1a,0xef,0x0f,0xeb,0xff,0xff,0xef,0xff,0xff,0xef,0xd7,0xff, + 0xfd,0xcb,0x1c,0xa1,0x03,0x7b,0xe2,0x87,0x22,0x5b,0x3d,0x7e,0x28,0x65,0x5a,0x00,0x1d,0xc8,0x7f,0x58, + 0xef,0x3f,0xac,0x44,0x22,0xde,0xaf,0x3b,0xc1,0x1d,0xbb,0xb1,0x88,0xe0,0x12,0x9e,0x10,0x9c,0xc9,0x31, + 0x2b,0xb0,0x6c,0x26,0x88,0x47,0x39,0x24,0x2e,0xb0,0x81,0x3f,0xd4,0x84,0xef,0x59,0x9e,0x60,0xae,0xe5, + 0xac,0x41,0x11,0x1a,0xf3,0x30,0xe7,0xb5,0xd0,0x46,0xf9,0x1b,0xdd,0x0a,0xfb,0x88,0xe2,0xd9,0x6d,0x32, + 0x9f,0x55,0x13,0xf4,0xff,0x53,0xa4,0x14,0xcb,0xa2,0x9e,0x26,0x7e,0x97,0xd9,0xb1,0x68,0xe2,0x17,0xe7, + 0xa2,0xa1,0x21,0x52,0x5f,0x74,0x3f,0x91,0xc7,0xd4,0x40,0x87,0x74,0x4c,0x0c,0x39,0xa5,0x27,0xa8,0x57, + 0x3a,0xc9,0x11,0x9c,0xe9,0x10,0x0a,0x99,0x86,0x44,0x22,0xe4,0xa0,0x9e,0x20,0x67,0x53,0x34,0x8b,0x9d, + 0x0e,0xfe,0xed,0xfd,0x3b,0xfe,0x98,0x8c,0x2e,0xc9,0x31,0xe1,0x02,0xb3,0x08,0x7e,0x82,0xca,0x68,0x6d, + 0xe3,0x35,0x13,0x89,0x05,0x43,0xa5,0xc6,0xf0,0x18,0xf6,0xc1,0x4a,0x90,0xd3,0x1a,0x56,0xe8,0x87,0x15, + 0x38,0x8a,0xf3,0xd9,0x09,0x6c,0xb9,0x89,0xef,0x7e,0x66,0xcd,0x4f,0x25,0x8d,0x08,0x86,0xfc,0x44,0x9e, + 0xb7,0xcc,0xcd,0xc5,0x89,0x5c,0x30,0x0a,0xe1,0xd0,0x3d,0xe1,0x3b,0xb8,0x07,0x60,0x2f,0x49,0x56,0x1d, + 0x67,0x88,0x11,0x1a,0x39,0xf8,0x4f,0x84,0x7c,0xde,0xbf,0x8c,0x12,0xf1,0xec,0xb4,0x4c,0x93,0x44,0x83, + 0x62,0x82,0xf8,0xbc,0x4b,0xe9,0xd4,0xd4,0x1a,0x64,0x2c,0x7c,0xcc,0x30,0x9f,0x65,0x86,0x16,0xdf,0xd6, + 0x99,0xf0,0x2d,0xad,0xb4,0x53,0xe6,0xa8,0x27,0x74,0x80,0x1a,0x5a,0x13,0xc4,0x2f,0x3e,0xae,0x9d,0x9c, + 0x30,0x4d,0xf8,0x47,0x70,0x88,0x16,0xa0,0x04,0x03,0x75,0x47,0xda,0x70,0x28,0x8c,0xd3,0x2f,0x92,0xa0, + 0xaf,0x50,0xe3,0x7a,0xf4,0xfa,0x65,0x9e,0x26,0xce,0x8b,0x4f,0x11,0x7e,0x63,0x9f,0x62,0x50,0x80,0x1c, + 0x8c,0xd5,0x37,0xec,0xf2,0x2c,0x36,0x8c,0xac,0x9f,0x40,0x9a,0xca,0x86,0xdb,0x09,0x7c,0xbb,0x43,0xa0, + 0xb9,0x75,0x3a,0x21,0x99,0xa7,0x79,0x2e,0x9b,0xbe,0x5c,0xd0,0xf3,0x44,0xc2,0x5f,0x34,0x62,0xa2,0x7c, + 0x8c,0x91,0xc0,0x13,0xbf,0x10,0x0a,0x78,0x47,0xa9,0x15,0x9a,0xf7,0x2b,0x91,0x58,0x59,0xe2,0x5d,0x9f, + 0x78,0x8f,0x61,0x27,0xcc,0xc1,0xbe,0x9c,0x58,0xc4,0x57,0x97,0xbc,0xe9,0x11,0x42,0x84,0x7c,0xf9,0x99, + 0xd6,0x32,0x08,0x82,0xf7,0x7c,0x7c,0x0f,0xa8,0x03,0xfd,0xd2,0xfa,0xd4,0x5b,0x3e,0xbe,0x2a,0x75,0x98, + 0xf7,0xab,0x2e,0x64,0xf2,0xfe,0xbb,0x3d,0xf1,0x5c,0xc3,0xf3,0x79,0x32,0xed,0x79,0xd4,0xc1,0x3a,0xc8, + 0xf5,0xd1,0x5d,0x60,0x8b,0x4b,0x5c,0xdc,0xbf,0xf6,0x6a,0x4f,0xfc,0xd2,0xad,0x3d,0xf1,0x45,0xbf,0xf6, + 0x65,0x0e,0xdc,0xb9,0xf5,0x54,0xc0,0xd8,0xfe,0x4e,0x80,0xfd,0xce,0xf0,0x18,0xde,0xe2,0x9d,0xc8,0x3f, + 0x1b,0xef,0x6f,0x7b,0x92,0x07,0xbd,0x64,0xfe,0xdc,0xd4,0xc1,0x82,0x75,0xf6,0xf7,0xf6,0x27,0x06,0xe8, + 0x5f,0x23,0xf3,0xd5,0xb4,0x12,0xf4,0x0e,0xfa,0xa5,0xd6,0x85,0x6d,0xff,0xd2,0x9b,0xc3,0x1a,0xeb,0x31, + 0xa8,0x31,0xe7,0xf8,0x7c,0x2b,0x80,0xcc,0x90,0x0f,0x7a,0x90,0x13,0x93,0x48,0x5a,0x14,0x3b,0xfc,0x2f, + 0xd3,0xd2,0x87,0x93,0x8e,0x11,0xd7,0xba,0xbf,0xb3,0xb3,0x81,0x66,0xa4,0x11,0x4b,0x2e,0xc9,0x1c,0x1a, + 0x7d,0xbd,0x2d,0xc1,0x08,0x94,0xad,0xdd,0xe5,0x8c,0xc3,0xdf,0x76,0x98,0x93,0xbb,0xb0,0xe7,0x7f,0xa7, + 0x8d,0xe1,0xab,0xc6,0xc2,0x1e,0x23,0x6e,0x70,0xb4,0x40,0x68,0x77,0x63,0x9e,0x02,0x09,0xee,0x9f,0x19, + 0xd9,0xc0,0x85,0x6d,0x7a,0x85,0xb9,0x4c,0xc3,0x0f,0xea,0x25,0x9d,0x58,0xa1,0x8e,0xd1,0x02,0x3b,0x97, + 0x7b,0xb3,0x8f,0xe5,0xe5,0x2e,0xc5,0x76,0x8a,0x94,0x0b,0xf5,0x0c,0xc4,0x22,0xe6,0xb9,0x41,0x26,0x43, + 0xd8,0x48,0x56,0xb8,0x2b,0x3a,0xb4,0x4f,0x7f,0x89,0xfb,0x09,0x47,0x29,0xa1,0x5a,0x9f,0x1b,0xca,0xfd, + 0xaa,0x92,0x5a,0x5f,0xe8,0x18,0x2d,0x18,0xea,0xd9,0x42,0xa4,0x0b,0xd9,0xa3,0x3d,0x11,0x72,0x1c,0x8f, + 0x13,0x34,0x68,0x89,0x33,0x5a,0x40,0x02,0xfd,0x55,0x24,0x2f,0x07,0x17,0x87,0x48,0x5f,0x4a,0x62,0x7d, + 0xfb,0x4c,0x58,0x0a,0x24,0x82,0xc0,0x73,0x9d,0x95,0x0f,0xef,0xc1,0x31,0xfb,0x2f,0xa9,0x4b,0x1c,0xc5, + 0x59,0x9d,0x95,0x3f,0xfd,0x36,0xfd,0xce,0x4b,0x42,0x0a,0xf1,0x6f,0x67,0x83,0x92,0x19,0x6f,0xd6,0x9f, + 0xba,0x15,0xd1,0xc5,0x3d,0xb4,0xc7,0x4a,0xc0,0xb2,0xcb,0xf6,0x4c,0xc1,0xf5,0x3d,0xb4,0x79,0xaf,0x08, + 0xce,0xef,0x21,0xd0,0xe1,0xfe,0x04,0xbe,0xf0,0x11,0x18,0xfe,0xfc,0xc4,0x0a,0x16,0x82,0x10,0x45,0xb3, + 0xb8,0x9f,0x7a,0x22,0x17,0xbb,0x5b,0x71,0xcf,0x79,0x8e,0x77,0x46,0xb9,0x2c,0x55,0x26,0x5a,0x41,0x5e, + 0x47,0x37,0x31,0x7f,0x5e,0xa9,0x4b,0x49,0x82,0x39,0x6b,0x2d,0x11,0x63,0xfd,0xa9,0x8e,0xf3,0x82,0x8f, + 0xc8,0x82,0xd4,0xd9,0x9e,0xb4,0x20,0x89,0xc2,0xfe,0x68,0x36,0x40,0x7a,0xf8,0x4d,0xe1,0x75,0xdd,0xe7, + 0x62,0x89,0x04,0x9d,0x43,0x2e,0xde,0x2c,0xe2,0xbb,0xf7,0x29,0xdf,0x94,0x96,0x85,0x58,0x4b,0x5a,0x10, + 0x6b,0x7f,0xc4,0xc9,0xde,0x72,0x79,0x92,0x4d,0xb1,0xfc,0xc7,0x5a,0x9c,0x6c,0x2f,0x38,0xf7,0xc7,0xea, + 0x5d,0x71,0x6c,0xd5,0x67,0xde,0xc4,0xbf,0x46,0x98,0x13,0xae,0x11,0xe5,0x03,0x56,0xbb,0x54,0x04,0xff, + 0x35,0x6a,0xd9,0xc2,0x12,0x10,0x49,0x84,0x6f,0xe6,0xe9,0x2f,0xce,0x81,0xe0,0x79,0x8f,0x51,0x27,0x83, + 0xe2,0x64,0xe9,0x52,0xaf,0xff,0x65,0x5c,0x47,0x44,0x17,0xb9,0xa3,0xbf,0x84,0xe9,0xc0,0xfc,0xd1,0x3b, + 0x02,0x09,0xea,0xa9,0xcd,0x26,0x70,0xf9,0x16,0x17,0x87,0x39,0xf1,0xd2,0x40,0xb0,0x5d,0x4b,0xfd,0x67, + 0x57,0x07,0xc2,0x94,0xbe,0x0c,0xd5,0x2c,0x9d,0x60,0x86,0xb9,0x3b,0xc7,0xed,0x21,0x3e,0x79,0x45,0xc6, + 0x4f,0x06,0x75,0x81,0x23,0x8a,0x6c,0x5b,0x9f,0xc9,0xfd,0x5c,0xea,0xdf,0xf0,0xc9,0xde,0x97,0xf9,0x83, + 0xa4,0x25,0xac,0x83,0xcf,0x24,0xf1,0x7d,0x12,0x7a,0xfb,0x59,0x7b,0x12,0x7f,0xf4,0x91,0x91,0x48,0x84, + 0x2e,0x23,0xe0,0x92,0x16,0xdb,0x58,0xe1,0xee,0xea,0x42,0x33,0x22,0x9e,0x44,0x36,0x19,0x8f,0x95,0x4b, + 0x32,0x5b,0x46,0x27,0xb2,0xbf,0x11,0x50,0xc4,0xf5,0x9d,0x7f,0xf9,0xa0,0x42,0xc2,0x3b,0xed,0x08,0xf7, + 0x65,0x16,0x65,0x0c,0x46,0x22,0xa2,0x57,0xb3,0xaf,0x8d,0xf9,0xd8,0x11,0xd5,0x47,0xc6,0x42,0xc9,0x86, + 0xdd,0x60,0x00,0xc3,0xbb,0x7f,0x98,0x0b,0x8b,0xe4,0xea,0x5f,0x79,0x08,0xbb,0xef,0x8b,0xcb,0x23,0x5e, + 0x4f,0x5b,0xc8,0x54,0x16,0xad,0x27,0x8a,0xe2,0x11,0x02,0x08,0x29,0xa5,0x84,0xa6,0x8b,0x21,0x96,0x19, + 0x7c,0x33,0xea,0x8a,0x12,0x17,0x4f,0x09,0x4f,0xef,0x67,0xc3,0x11,0xe6,0x95,0x5f,0x9d,0xe0,0x03,0x15, + 0x79,0x61,0xcc,0x35,0x82,0x58,0x06,0x10,0xc2,0x64,0xb4,0xc1,0xcf,0x07,0xbd,0xfe,0xfb,0x83,0x2e,0xfc, + 0x85,0x41,0x4b,0xfb,0x42,0xfc,0x6d,0x0c,0x69,0xb6,0x59,0xe3,0xe2,0xa5,0x0c,0xd6,0x69,0xff,0x6a,0x46, + 0x22,0x74,0x37,0x23,0x8a,0xc4,0x25,0x57,0x34,0xe2,0x91,0x1b,0xc2,0xad,0x78,0x61,0x83,0xa1,0x58,0xe4, + 0x7f,0x39,0x71,0xa3,0x8f,0x78,0xc5,0xc7,0xb9,0xc2,0xc7,0xfb,0xbf,0xfb,0x4e,0xef,0xe1,0x0d,0x98,0x4b, + 0xd9,0x21,0x46,0x40,0x80,0x84,0x55,0x0d,0x71,0x15,0xca,0xab,0x2f,0xba,0x35,0x72,0x46,0x99,0xcd,0xfa, + 0x66,0x56,0xba,0x01,0x2c,0x95,0x00,0x42,0x3d,0xa0,0xa5,0xbf,0xde,0x85,0xdf,0xb5,0x94,0x86,0xbb,0x1c, + 0xd6,0x08,0xe8,0x6d,0x92,0xb8,0x29,0x71,0xe2,0xb7,0xa4,0x9c,0x20,0x94,0xf5,0x73,0xa2,0x7e,0x4c,0xe5, + 0xbb,0xbc,0x5c,0x8f,0x8a,0xbb,0xb4,0x74,0x5e,0x16,0x15,0xf9,0xd5,0x93,0x10,0x00,0x76,0x89,0x24,0x1e, + 0x44,0xe1,0x13,0xbc,0x72,0xac,0xb9,0x06,0x71,0xdb,0xa5,0x01,0x15,0x3e,0x51,0x34,0xa5,0x72,0xa1,0x19, + 0x88,0xef,0x8f,0x80,0x4c,0x11,0x0b,0xc5,0x28,0x16,0xe8,0x3d,0x97,0x30,0x4d,0xfb,0x17,0x5e,0x38,0x22, + 0x62,0x77,0x88,0x2f,0x6d,0x04,0x51,0x32,0xe6,0xe5,0xa4,0x91,0x90,0xe6,0xd9,0x5e,0x23,0x4b,0x34,0xc1, + 0xf6,0xfb,0x1b,0x82,0xc8,0x82,0x9f,0x66,0x48,0x17,0x69,0x64,0xea,0x61,0x66,0x3e,0x59,0x78,0x47,0x6b, + 0xc8,0x12,0x89,0x90,0xf2,0xdb,0xe0,0xe2,0x89,0xb8,0xe7,0x48,0xba,0x1c,0xe3,0xab,0x31,0x1b,0xe7,0x67, + 0xa2,0x85,0xaf,0xff,0xfc,0x77,0xd8,0xca,0x97,0xdb,0xf5,0x0d,0xcf,0xd4,0xc5,0x97,0x27,0x72,0x8d,0xc2, + 0x37,0x8f,0x0a,0xfa,0x19,0x3b,0x91,0x91,0x65,0x82,0x88,0x49,0x59,0x12,0x00,0xc8,0x95,0x9c,0xe5,0x53, + 0x1b,0xa3,0x77,0xf1,0xc5,0xc7,0xac,0xa0,0x71,0x2b,0x5c,0xa2,0x6e,0x9c,0x6b,0x7a,0x63,0x27,0x86,0x49, + 0xf8,0x06,0xed,0x58,0x6d,0x8e,0xd7,0x0f,0xae,0xf1,0xc8,0x20,0x98,0x2a,0x25,0x37,0xc6,0xae,0xf5,0x2c, + 0xd1,0xe6,0xbf,0xa0,0x35,0xe6,0x64,0x78,0xec,0xc2,0x4f,0x4c,0xe7,0xf3,0x71,0x05,0xc3,0x67,0x2f,0xcb, + 0x21,0xff,0xb0,0xbe,0xd3,0x2a,0x17,0xb0,0x36,0xf1,0x6a,0x46,0x9d,0xb3,0x35,0x72,0xcf,0xa4,0xec,0xe7, + 0xef,0x21,0xa1,0x4b,0x25,0xe8,0xfd,0x90,0xa0,0x44,0x6d,0x38,0x31,0xa4,0x02,0xf4,0x62,0x47,0x50,0xe0, + 0x16,0x75,0x08,0xa9,0x04,0xbb,0x41,0x23,0xf5,0xfd,0x2b,0x66,0x45,0x79,0xc3,0x0a,0xa4,0x10,0xde,0x13, + 0xcd,0xb9,0x04,0x72,0xa1,0x2c,0x46,0x96,0x14,0xe5,0x12,0x89,0xb5,0x44,0x3e,0x86,0xa5,0xf2,0x22,0x01, + 0xa3,0x92,0xac,0x63,0xbe,0xf1,0x28,0xf6,0x36,0x8c,0xb0,0xf2,0x3f,0x1d,0x43,0xac,0x09,0x54,0x58,0x5c, + 0xac,0x1b,0x04,0x5f,0xfe,0x68,0x22,0x43,0x0d,0x67,0x2f,0x3d,0xc0,0x88,0x19,0x61,0x30,0x15,0x65,0x59, + 0xd6,0x17,0xd5,0xc1,0x45,0x30,0xd8,0xd0,0x25,0x1e,0x61,0xa0,0xff,0x2f,0xec,0x32,0x95,0x42,0x1d,0x49, + 0x97,0x59,0x32,0x63,0xd2,0x29,0x87,0xdf,0x94,0xb4,0x20,0xfc,0xc3,0x8e,0x18,0x3c,0x7c,0xbd,0xba,0x2f, + 0x1c,0x93,0xeb,0x57,0x7f,0xb5,0x63,0xa1,0x95,0xf8,0xfb,0x5d,0x8b,0x07,0xe0,0x77,0x0e,0xaf,0x6c,0xfd, + 0xd5,0xbe,0xc9,0x3c,0xe0,0xf7,0xbb,0x16,0x5b,0x5f,0x90,0xc0,0xd9,0x1d,0xb1,0x2f,0xca,0xa5,0xfc,0xfa, + 0x58,0xbc,0xd4,0x1b,0x6f,0x10,0xfa,0x94,0x0d,0xd3,0x6b,0x65,0x21,0x01,0x50,0xd8,0x83,0x3e,0xdd,0x40, + 0xc8,0x2e,0x10,0xbb,0x23,0xf0,0x12,0xe4,0xee,0x93,0xcc,0xb2,0x23,0xbd,0x0b,0x4e,0x25,0xb8,0x49,0x45, + 0xbc,0x31,0x25,0xcc,0xdb,0x12,0xbb,0x4a,0xd4,0x58,0xcb,0xef,0xa9,0x49,0x05,0xa4,0xdb,0x6a,0x7e,0x66, + 0x18,0x89,0x82,0x30,0x13,0x6c,0xf6,0xa2,0x00,0x19,0x3d,0x29,0x96,0x26,0x9d,0x74,0x3d,0x56,0x74,0x0d, + 0xc4,0x47,0xa1,0x8c,0x28,0x3c,0xd2,0x42,0xfc,0x72,0x5b,0x48,0xde,0x88,0x11,0x5a,0xfc,0x0e,0x68,0xea, + 0xe7,0x76,0x0b,0xa1,0xbd,0x23,0xd3,0x1a,0xc4,0x59,0x2d,0x04,0xb4,0x53,0xc7,0x92,0xdf,0x43,0xba,0x78, + 0x3b,0x6e,0x39,0x5a,0x30,0xe4,0x59,0x04,0x29,0xfe,0x04,0xe4,0xa5,0xf3,0x7e,0xba,0x70,0x23,0xc7,0x33, + 0x11,0xd2,0x58,0x66,0x4a,0x22,0xe5,0xe8,0xf1,0xcb,0x92,0xd9,0x08,0xe1,0x47,0x2c,0xfb,0x2b,0xdb,0x8e, + 0x24,0x5e,0x2f,0x17,0x36,0x19,0xa9,0x31,0x87,0x09,0x2a,0x17,0x46,0x2f,0xee,0x25,0xa2,0x37,0xf7,0xf8, + 0x11,0x4b,0x70,0x7f,0x2f,0x21,0x5c,0xe0,0x8b,0x81,0x25,0x03,0xf1,0xb8,0xdd,0x89,0x5f,0xe7,0x0b,0x14, + 0x35,0x62,0x98,0xb2,0x7a,0x46,0xec,0xa2,0x25,0x44,0x40,0xee,0xdb,0x09,0x18,0x5f,0x7a,0x10,0xf1,0x05, + 0x3b,0x65,0x71,0xfb,0xef,0x01,0x5d,0x47,0xe4,0x38,0x69,0xf2,0x64,0x25,0xa5,0x18,0x5d,0x65,0xf4,0x22, + 0x5d,0xa8,0xd6,0x6f,0xbb,0x5f,0xf8,0x32,0xb4,0x4c,0x01,0xb4,0x6f,0x37,0xd8,0xc2,0xd2,0xd5,0x01,0x8b, + 0xe0,0x3f,0x45,0x4b,0xcc,0x22,0x96,0xf4,0x8e,0xdf,0xc1,0x14,0xb3,0x63,0xfd,0xe7,0x88,0x0a,0x1f,0x7e, + 0xfd,0x87,0x78,0x12,0xd4,0xa5,0x58,0x6d,0x51,0x36,0x92,0x06,0xd7,0x19,0xe3,0x54,0x90,0x3c,0xdf,0xaa, + 0x14,0xf5,0x1f,0xa2,0x7f,0x4f,0x29,0xa1,0x7c,0xfa,0x60,0xa6,0x52,0xfe,0x01,0x1d,0x90,0x14,0xda,0x70, + 0x95,0xf0,0xeb,0x11,0xb4,0x0a,0xa9,0x16,0x32,0x3e,0xa1,0xd8,0x4f,0x2f,0x30,0x07,0xb9,0x3e,0x83,0xf0, + 0x0f,0x6d,0xfc,0xac,0xa8,0xba,0x0f,0x00,0xe8,0xeb,0x18,0x31,0xa5,0x04,0x40,0xfe,0xae,0xcb,0xfa,0x41, + 0x0a,0xc7,0x78,0x95,0x21,0x38,0xfa,0x5c,0xaa,0x5c,0x42,0x70,0x10,0x13,0xf4,0x10,0x0e,0x28,0x7c,0x7a, + 0x1f,0x67,0x64,0x0b,0xca,0x89,0xdd,0xea,0x90,0xff,0x89,0xb9,0xa1,0x53,0x62,0x28,0xc3,0x1e,0x8f,0x0b, + 0x97,0xf9,0x1c,0x4c,0xf8,0x70,0x1c,0x07,0x46,0x5f,0x2e,0x89,0x14,0x12,0x01,0x71,0x63,0xb2,0x3c,0xb2, + 0xc8,0x79,0x38,0x42,0x23,0x6f,0xc0,0x95,0xa3,0xa5,0xa2,0x03,0xa0,0xcf,0xb1,0x05,0x40,0xe3,0xce,0x67, + 0x96,0xa1,0xec,0xb3,0x53,0x0b,0x00,0x4d,0x5f,0x5a,0x0a,0x40,0xb3,0xad,0xd0,0x3f,0x22,0x0c,0xd1,0x57, + 0xcc,0x4e,0x89,0x9a,0x29,0xbd,0x66,0x1e,0x94,0x08,0x6f,0x6a,0x71,0x50,0x42,0x9b,0x99,0x44,0xab,0x9f, + 0xec,0x8f,0xd8,0x1c,0xbd,0x99,0x1e,0x5f,0x52,0x00,0xb8,0x44,0x94,0x09,0xf5,0xc0,0x17,0x3a,0xc4,0x1e, + 0x90,0x42,0x61,0x2b,0xeb,0x12,0x14,0x93,0xb2,0xf1,0x27,0xb2,0x38,0x77,0xf4,0xfd,0xb4,0x48,0xa1,0xd0, + 0xb9,0xa2,0x20,0x3c,0x73,0x90,0xe1,0x33,0xf1,0xe8,0x22,0x5c,0x66,0x8c,0x0c,0xd1,0x6a,0xbc,0x69,0x33, + 0x0e,0x9c,0xa4,0x88,0x87,0x26,0x4d,0x52,0xe4,0x7d,0x63,0x66,0x90,0x13,0x6b,0x68,0x08,0x65,0x5f,0x0a, + 0xc6,0xde,0x20,0x2b,0xe0,0xd8,0x41,0x9f,0xfe,0xf1,0xc4,0x9c,0xe6,0x2f,0x6c,0xdb,0x2b,0x29,0xca,0xe2, + 0x29,0xf5,0x79,0x54,0xcb,0x2f,0x3c,0xfc,0xcd,0xc2,0xfc,0x3d,0xf9,0xaf,0xf5,0x7f,0x12,0x89,0x93,0x3e, + 0x5f,0x3e,0xd2,0xc6,0xf2,0x6b,0xe4,0xf4,0x61,0xf5,0x50,0x64,0x6d,0xfa,0xd8,0x3a,0x09,0x7a,0xa8,0x28, + 0xaa,0x03,0x3f,0x0b,0x4f,0x65,0xb3,0x9b,0xfc,0xe6,0xa4,0xf8,0x43,0xf4,0xf8,0x89,0xb1,0xde,0xa3,0xc1, + 0xa2,0xdb,0x9e,0xad,0xf1,0x68,0x45,0x49,0xad,0xe2,0xa8,0x6e,0x05,0x93,0x92,0x13,0xcb,0x70,0x75,0x6d, + 0x6c,0x24,0x63,0x02,0xc8,0x60,0x18,0x9f,0x0c,0x0d,0xc1,0x68,0x76,0xe7,0x49,0x2d,0x85,0xb1,0xa5,0xf4, + 0x8a,0x42,0x31,0x76,0x4c,0x6f,0xc1,0x5f,0x5f,0x1c,0x55,0x48,0x84,0x39,0x7c,0xd3,0x9c,0x11,0xdd,0x1a, + 0x46,0xca,0x2e,0xe3,0x53,0xfc,0xb0,0xb3,0x55,0x26,0x5e,0x77,0x75,0xab,0x8c,0x11,0x8e,0x37,0x8a,0xaa, + 0x22,0xc4,0x55,0x55,0xd6,0xfe,0xf8,0x5b,0xc2,0x4f,0xd0,0x55,0x25,0xf1,0xc7,0x9a,0x92,0xc2,0x38,0x68, + 0x0e,0x7b,0xc7,0x3d,0x8c,0x1a,0xff,0x59,0x75,0x52,0x95,0x96,0xc1,0x0e,0xf8,0x40,0x78,0x45,0x9c,0x4e, + 0x44,0x93,0x1f,0x1a,0xc2,0x63,0xd0,0x83,0xc0,0xab,0x8f,0xd6,0x53,0x34,0xee,0x2b,0xc6,0x9a,0x65,0x91, + 0x68,0x30,0xfe,0x05,0x89,0x05,0xaa,0xa9,0xae,0xaa,0x0b,0x95,0x84,0x6c,0x12,0xa2,0xdc,0x9f,0xe7,0xc7, + 0xfc,0xd3,0x8e,0xc2,0x4c,0xc9,0x7e,0x8f,0x30,0x15,0xda,0x7e,0x0f,0xba,0x62,0xa9,0xca,0x42,0x49,0x91, + 0x88,0x7c,0x0c,0x16,0x86,0xbc,0x31,0x32,0x62,0x2c,0x44,0x1a,0xe5,0x2f,0x1a,0xff,0x12,0xa3,0x32,0x55, + 0x1e,0x1f,0xc9,0xcb,0xf1,0x18,0x89,0xe6,0xe9,0x89,0xbe,0xc2,0x6f,0x63,0x38,0x0f,0x98,0x7c,0x27,0x85, + 0xe1,0x23,0x31,0xc5,0xac,0x64,0xcb,0xe6,0x3f,0x69,0xf0,0x23,0x1a,0xa5,0xd1,0x4c,0xa7,0x79,0x98,0x6c, + 0x4c,0x7e,0x34,0x9f,0x1e,0xb3,0x4f,0x65,0x1a,0xc4,0x4e,0x03,0xc0,0xf6,0xa3,0xf6,0x54,0xf9,0x96,0x4d, + 0x2d,0x38,0x08,0x17,0x40,0xb8,0xff,0xf4,0x78,0x7d,0x97,0xd7,0xd7,0x81,0xb8,0x7d,0xbc,0x3e,0xba,0xd0, + 0x05,0x67,0x65,0xc5,0x7e,0xd4,0x01,0xdc,0x13,0x3e,0xf8,0x0f,0xb0,0x74,0xc4,0x05,0xfe,0x53,0x51,0x14, + 0x61,0xdc,0x44,0xee,0x08,0x30,0x81,0x05,0x52,0x25,0x52,0xcc,0xc2,0x20,0x6b,0xe4,0xc5,0x7a,0x9d,0x84, + 0xe6,0x8a,0x0b,0x53,0x93,0x0c,0xaf,0x32,0xa7,0x42,0x23,0x69,0x62,0x4c,0xf6,0x95,0x15,0x9c,0xf0,0x09, + 0x8f,0x30,0x1c,0x44,0x43,0x00,0xf6,0xda,0x5d,0x59,0xc1,0x7f,0x3f,0x3e,0x68,0xb4,0x07,0xd5,0xae,0xec, + 0xf2,0xc0,0x07,0x41,0xe4,0x01,0xf2,0x26,0x7f,0x10,0x5f,0xc1,0xa4,0xab,0x8e,0x20,0xf0,0xa7,0xd9,0xe1, + 0xe1,0x4d,0x7f,0x12,0x41,0x6e,0xd7,0xaa,0x18,0x0b,0x03,0xc3,0x6b,0x5c,0xd1,0x50,0xdb,0x31,0x2b,0x9b, + 0xc6,0xa6,0xb5,0x33,0x3a,0xc6,0x6c,0x0d,0x4a,0xaa,0x8e,0xea,0x87,0x2a,0x85,0xd5,0x84,0xd0,0x58,0x0e, + 0x21,0x02,0x28,0xd8,0x42,0x65,0x06,0xe4,0xd7,0x2f,0xc0,0xe4,0x45,0x63,0x80,0xf2,0x2c,0x02,0x55,0x6c, + 0xa6,0xc2,0x3e,0xa3,0xcd,0x60,0xa0,0x23,0x12,0x5a,0x70,0x68,0x63,0xd4,0x96,0x85,0x18,0x28,0x37,0x33, + 0xb1,0x1c,0xa3,0x5b,0x91,0x63,0xec,0x76,0xc5,0x2e,0xca,0xc5,0x09,0x0c,0x31,0x5b,0xc2,0x1e,0x1d,0x80, + 0xa3,0x72,0xec,0x92,0x4e,0x1a,0x16,0xde,0xde,0x08,0x71,0x3d,0xb1,0xe7,0x49,0x0f,0xcb,0x0e,0x0d,0xf6, + 0xd9,0xea,0x20,0xaf,0x16,0x53,0x60,0x52,0x54,0xec,0x69,0x04,0xd2,0xef,0xc2,0xc1,0x58,0x93,0x46,0xe6, + 0x27,0x19,0x33,0xdd,0xf5,0x01,0x6b,0x54,0x2d,0xfd,0x0d,0xa8,0x2c,0xe0,0xab,0x9c,0x5e,0x36,0xfe,0xac, + 0x64,0x49,0x70,0x35,0xb9,0x74,0x25,0x20,0x11,0x81,0xe1,0x61,0xe0,0xc7,0x9f,0xb0,0x39,0xd3,0x0c,0x9c, + 0x9c,0xe0,0x0b,0x66,0x08,0x23,0xe8,0x00,0xee,0xac,0x64,0x61,0x23,0xc5,0x88,0x67,0x44,0xf8,0x8f,0x67, + 0x54,0x3e,0x5f,0x0b,0x52,0xd9,0x8f,0x0f,0x69,0x1d,0x85,0xf2,0x70,0x92,0x20,0x95,0x44,0x44,0x13,0x32, + 0x38,0x59,0x7d,0xb9,0x45,0xb9,0x74,0xb8,0xcd,0x70,0xae,0xd0,0xaa,0x9c,0xb5,0x48,0x51,0xea,0xc1,0x2c, + 0x1c,0x79,0x2a,0x26,0xb4,0x74,0x52,0x26,0xa2,0x6f,0x22,0x63,0x0d,0xed,0xe1,0xb8,0x81,0xca,0x23,0x66, + 0xbc,0x85,0xc6,0x5b,0x43,0xde,0x5f,0xc9,0xa9,0x13,0xe0,0xaf,0xea,0xb0,0xf2,0x2d,0xa7,0x76,0x61,0x3e, + 0x79,0xe0,0x1e,0x75,0xcc,0x23,0x83,0xf7,0x0c,0xef,0x8c,0xd3,0xfe,0x29,0x0c,0x38,0x36,0x19,0xa3,0xfb, + 0x8e,0x2b,0xe3,0x95,0x95,0xb1,0xc0,0x39,0x76,0xc6,0x25,0x60,0xe4,0x8f,0x36,0xa9,0x90,0x80,0x05,0x04, + 0xbb,0x9e,0xfb,0x84,0x51,0x6d,0xde,0x17,0xbe,0xe0,0xc0,0x46,0x9c,0x61,0xd9,0xa9,0x1d,0x47,0x22,0x43, + 0x23,0x63,0x81,0xb8,0x75,0x65,0xea,0x03,0x89,0x74,0xfa,0x34,0xd0,0xf8,0xa2,0xf4,0x4d,0x48,0xc4,0x20, + 0x2a,0x19,0x8c,0xa4,0x79,0x4c,0x9d,0xd9,0x56,0x56,0x60,0xf8,0xf4,0xfa,0xd7,0x25,0x09,0xb4,0xe7,0x72, + 0x09,0xe6,0x5b,0x56,0x05,0x79,0x23,0x63,0x5b,0xcc,0xed,0xcd,0x0f,0x17,0x15,0x24,0x89,0x0b,0x1c,0x2a, + 0xe4,0x30,0x6a,0x8a,0x00,0x1b,0x76,0x36,0x55,0xf9,0x43,0xc1,0xe5,0x15,0x54,0xb1,0x90,0xb7,0x27,0x53, + 0x3b,0x5e,0x86,0x95,0xaa,0xf7,0x35,0x0b,0xc4,0xe4,0x9d,0x64,0xd2,0x24,0x31,0x62,0xe4,0xe4,0x14,0x89, + 0xf8,0x93,0x8b,0x6b,0xd3,0x23,0x43,0x24,0xc1,0x31,0x31,0x66,0x9c,0x94,0x61,0x92,0x6a,0x79,0xa9,0x37, + 0x88,0x8d,0x12,0x4c,0x8e,0x62,0x5b,0x18,0x98,0x6d,0x8e,0x77,0x22,0x0c,0x90,0x52,0xac,0x9e,0xa1,0x98, + 0x56,0xa2,0x1b,0x8e,0xc3,0x44,0x03,0x0f,0x2a,0xa9,0x9d,0xa4,0x5d,0xe9,0xfa,0x93,0xce,0xb2,0x43,0xed, + 0x51,0x94,0x2d,0x05,0x51,0x36,0x32,0xd1,0x46,0x2b,0xa1,0xb9,0x52,0x63,0x0b,0x91,0xbd,0xde,0xce,0x50, + 0x5f,0xf9,0x3a,0x3a,0xd9,0x26,0x31,0xc4,0x68,0x85,0x06,0x91,0xb3,0x71,0xdf,0x32,0xac,0x0e,0xcf,0x80, + 0x11,0xca,0x1d,0x13,0xd8,0x4a,0x5f,0xcd,0x82,0xb8,0xb2,0x28,0x81,0xfc,0xa7,0x88,0x04,0xff,0x5d,0x49, + 0x1f,0x6b,0x5e,0x1f,0x8d,0x62,0x1d,0x7b,0x94,0x4c,0xa5,0x95,0xef,0x8a,0x2a,0xc8,0xb4,0x06,0x52,0x18, + 0x0b,0xac,0x43,0x56,0x6b,0x44,0x2e,0xa1,0x11,0x4a,0x57,0x56,0xb2,0x24,0xfe,0x26,0xfe,0xf6,0x83,0x79, + 0x69,0xa9,0x95,0x95,0x7e,0x32,0xcd,0x52,0x41,0x12,0xd7,0x8d,0xa4,0xc6,0x44,0x0a,0x1a,0x31,0x57,0xeb, + 0x74,0x9a,0x53,0xc0,0xd6,0x91,0xe9,0x7a,0x06,0xe8,0xf0,0x3b,0xd1,0xa4,0xa4,0xc2,0x26,0x1f,0xfa,0xa5, + 0x7e,0xcb,0x61,0x64,0x6d,0xcd,0xf3,0x34,0xbd,0x4f,0x4a,0x25,0x15,0x9f,0x38,0x20,0x3f,0x25,0xce,0x0c, + 0xee,0xe0,0x12,0x0d,0x68,0x69,0x83,0x90,0x24,0xb0,0xce,0xb1,0xcc,0x2f,0xa5,0xc0,0xe3,0x31,0x41,0x95, + 0x88,0xe8,0x85,0xf4,0xc9,0x65,0x07,0xa0,0xee,0xb4,0x97,0xa2,0x01,0xbb,0x83,0x70,0xf4,0x55,0xc7,0xd1, + 0x40,0x56,0xe6,0xbb,0xb1,0x1f,0xbc,0x18,0x03,0x7e,0x65,0xcb,0xd6,0x3f,0xfd,0xa0,0xd9,0x16,0x88,0x53, + 0x06,0xc8,0x93,0x42,0xe4,0x72,0x2b,0x9d,0x7b,0xe2,0xe2,0x1c,0xae,0xf8,0x36,0x09,0x45,0x89,0x5b,0xbb, + 0x5b,0x32,0xfc,0x70,0x6d,0x93,0x47,0xfd,0xa9,0x62,0xab,0x0e,0x48,0x4a,0xaa,0x9e,0x4e,0x2f,0x60,0x20, + 0x21,0x46,0xdc,0x59,0xf8,0x62,0x4c,0x07,0x87,0xc3,0x22,0x9f,0x4e,0x1e,0xbd,0xa7,0x20,0xa7,0xcf,0x02, + 0x48,0x0d,0x53,0x11,0x12,0x29,0x1b,0x43,0xd7,0x60,0x24,0x8d,0x95,0x88,0x5a,0x91,0x7a,0x07,0xfe,0x97, + 0x2d,0x7b,0xce,0x5c,0xe4,0xa7,0x9c,0xf2,0xbd,0x0c,0xef,0x30,0x61,0x1a,0xd8,0xe5,0xb2,0x3b,0x33,0x49, + 0x7c,0x46,0x3e,0xdb,0x30,0x26,0x60,0xbc,0xd9,0x12,0xc8,0x16,0xe5,0x36,0xd0,0xf9,0xa0,0x4c,0x12,0x72, + 0x90,0x60,0x81,0xec,0x28,0x25,0xe6,0x59,0xa2,0x6a,0x81,0xc2,0x23,0xe5,0x14,0xc4,0x1c,0xf8,0x27,0xef, + 0x67,0xb3,0x70,0xe1,0x25,0x26,0xcb,0x25,0xe9,0x06,0xa3,0x62,0x70,0x54,0x5c,0x19,0xb0,0x33,0x41,0x17, + 0xe7,0xef,0x88,0x12,0xc2,0xcb,0x17,0xf8,0xbf,0xa4,0xb0,0x6b,0x55,0xc4,0x5d,0x6b,0x87,0x56,0x47,0x8a, + 0xdf,0xc1,0xbd,0xa6,0xe4,0x95,0x30,0x39,0x15,0xd9,0x7f,0xe0,0x9f,0x5c,0x36,0x6e,0x17,0x92,0xf6,0x19, + 0x2b,0x83,0x51,0x18,0x83,0x08,0x8e,0x72,0x28,0x2f,0xdc,0xa5,0xe2,0xb6,0x4f,0x10,0x94,0x5d,0x7b,0x88, + 0xf1,0xde,0xd8,0x2f,0x72,0x54,0x96,0x54,0x1e,0xa7,0x13,0x63,0xd5,0xcc,0x6d,0x59,0x4f,0x09,0x24,0x42, + 0x8c,0x26,0x2c,0x15,0x30,0x68,0xf0,0x52,0xe8,0x95,0x28,0xd0,0x4a,0x01,0x28,0xe9,0xc6,0xab,0xd0,0x8d, + 0x47,0x50,0x31,0xa8,0xce,0xc3,0x37,0x36,0x21,0x32,0x17,0xdb,0x8b,0x42,0x81,0xa9,0x99,0x3e,0xc6,0x37, + 0x30,0x5a,0x8d,0xec,0x5f,0x1a,0xc3,0x93,0xd0,0x07,0x3d,0xd4,0x07,0x68,0x35,0xc8,0x9c,0x00,0x1b,0xe4, + 0x6b,0x09,0x94,0x9c,0x27,0xe0,0x71,0xe1,0x65,0x54,0x36,0x56,0x57,0xcb,0x29,0x12,0xcf,0x37,0x58,0x35, + 0xc6,0x13,0x0b,0x44,0x46,0x38,0xa5,0x43,0xfe,0xf0,0xb5,0x92,0x23,0xc1,0xd7,0x68,0xe5,0x1d,0xc0,0x00, + 0x92,0xd9,0xc7,0x07,0x59,0xa3,0x18,0xb9,0x96,0xac,0x55,0x92,0xb8,0x83,0xfa,0x74,0xf6,0xa9,0x14,0x55, + 0xb9,0x20,0x15,0xc3,0xed,0x91,0xec,0x54,0x29,0x2f,0x00,0x84,0xe4,0x5f,0x14,0x57,0x93,0xd8,0x66,0x2e, + 0xae,0x4d,0x48,0xc4,0xd8,0xc4,0x4e,0x85,0xfe,0x54,0xdf,0x31,0x04,0xdd,0xd0,0x28,0x59,0x2a,0x0d,0x6b, + 0x5f,0x72,0x16,0x01,0x6a,0x86,0x94,0x42,0x88,0xac,0x12,0xb0,0x5f,0x21,0xe0,0x9b,0x80,0x53,0x1e,0x95, + 0x8d,0xc7,0x71,0xfc,0x50,0x7c,0x0d,0xd5,0x7a,0x5c,0x16,0x9c,0xbd,0x42,0x36,0x00,0xad,0x4d,0x42,0x53, + 0xe7,0x49,0x88,0xc5,0x98,0x58,0x66,0xb0,0x10,0xfe,0xcc,0xed,0xe4,0x4a,0xd9,0x52,0x6e,0x01,0xc9,0x25, + 0x6f,0x87,0x54,0x1b,0x99,0x08,0x2d,0x9f,0x2a,0x65,0x51,0x21,0xf6,0x97,0xfb,0xd3,0x0e,0xb4,0xf7,0x44, + 0xe3,0x3e,0x62,0x90,0x4e,0x7f,0x34,0x5d,0x01,0x24,0xb1,0x31,0x8c,0xd1,0x50,0x10,0x36,0x37,0x00,0x6b, + 0x25,0xa4,0x38,0x8e,0x92,0x62,0x5f,0x73,0x4f,0x67,0x16,0x48,0x56,0x63,0xc3,0xf1,0x04,0x9d,0xad,0x23, + 0x0d,0x6a,0xcc,0xe8,0x0f,0x43,0xac,0xc9,0x5c,0x2f,0xe0,0xd8,0x3e,0x15,0x01,0xd7,0xa2,0xcd,0x20,0x02, + 0x9c,0x4a,0xae,0xec,0xfc,0x33,0x42,0x7c,0x0e,0x57,0x80,0xed,0x8a,0xf1,0xe8,0x10,0xae,0x48,0x17,0x92, + 0xcd,0xf5,0x6a,0xca,0x32,0xc8,0x8e,0xa0,0x25,0x40,0xa4,0xb0,0x53,0x9d,0xa4,0xad,0xe2,0x16,0x08,0x84, + 0x80,0xfa,0x75,0x0a,0x70,0x02,0x5a,0x36,0x30,0x45,0xf8,0xa3,0x92,0x94,0x12,0x49,0x21,0x3f,0xfd,0xc8, + 0x84,0x56,0xd0,0xe1,0x91,0x3f,0xf5,0x18,0x48,0xd0,0x48,0xf1,0xa0,0x81,0x6c,0x9a,0x4d,0xda,0x5f,0x8c, + 0x2c,0x4e,0x44,0x59,0xeb,0xe3,0xc3,0xb7,0x07,0x7d,0xb3,0x30,0xf6,0xeb,0xca,0x0a,0x8b,0x5b,0xe8,0x61, + 0x74,0x6c,0x3f,0x86,0x21,0x61,0xe4,0x74,0x30,0x21,0xd2,0xc4,0x08,0xf4,0x72,0x12,0x85,0x6d,0xaf,0xac, + 0x68,0x29,0x5f,0x06,0xa4,0x38,0x21,0xfb,0x3d,0x5f,0x0d,0x5e,0xc6,0x98,0x1a,0xce,0x5c,0xb4,0xd7,0x08, + 0x41,0xc3,0xc9,0x40,0x30,0x42,0x27,0x9a,0x60,0x10,0xdc,0xc7,0x07,0x07,0xf7,0x2d,0x57,0xa6,0xf6,0x06, + 0x36,0xd3,0x03,0x63,0x4e,0x08,0x51,0x97,0x12,0x0c,0x9f,0x8e,0xdd,0xa0,0x75,0xdd,0x6f,0xdd,0x8d,0xb4, + 0x2e,0xb5,0x0d,0x2d,0xfb,0xcd,0x2f,0x74,0x12,0x38,0xd8,0xa7,0x42,0xdc,0x0a,0xb0,0x03,0xd3,0x58,0x15, + 0x06,0x14,0xe5,0xe1,0xca,0x8a,0xaf,0xad,0xe0,0x67,0x06,0x03,0x00,0xe3,0x9e,0xb9,0x6b,0x3b,0x23,0xcd, + 0x53,0x7b,0x5f,0xae,0x48,0x83,0x31,0xd3,0x6a,0x64,0xd0,0x73,0xb5,0x5d,0x79,0xa7,0x0f,0x1f,0xd4,0x89, + 0xec,0x28,0x46,0x88,0xa4,0xac,0x90,0x28,0x41,0xdf,0x99,0x97,0x5a,0x99,0x08,0xf0,0xc8,0xfa,0x2b,0xf4, + 0xcf,0xc7,0x07,0xea,0x92,0x3f,0xf1,0xe7,0xce,0xfb,0x82,0xc4,0x30,0x46,0x81,0x1b,0xbf,0x53,0x7e,0x59, + 0xbc,0x7f,0xea,0xa1,0x4b,0x12,0x74,0x6b,0x97,0x29,0x01,0xb4,0x4e,0x8a,0xd3,0x81,0x81,0x26,0x24,0x9e, + 0xea,0x87,0x83,0x0d,0x85,0x7d,0xec,0xc3,0x02,0x17,0x96,0xac,0x47,0x02,0x38,0xaa,0xf2,0x2c,0xc5,0xd4, + 0xc5,0xd0,0xf0,0xa4,0x1f,0x99,0x91,0xe1,0xf4,0x8c,0x23,0xc2,0xea,0xb8,0x48,0x66,0xc5,0xcc,0x4b,0x76, + 0xc1,0x4c,0x03,0xc1,0x38,0xd5,0x20,0xe5,0x16,0x8b,0x19,0x4e,0x25,0x48,0x81,0x5d,0x0f,0x92,0x5a,0xf0, + 0x0b,0x66,0x46,0x4b,0xa6,0x84,0xc2,0x24,0xe2,0x2c,0x88,0xe1,0x6d,0x03,0xb3,0x50,0xab,0xe8,0x91,0xd5, + 0x00,0x05,0x78,0x31,0x5e,0x02,0x4d,0xb4,0xdf,0xb2,0x0b,0x94,0x7e,0x12,0x80,0x22,0x97,0x21,0x2f,0x15, + 0x84,0x9e,0xfc,0xee,0xd8,0xb6,0xc7,0xd4,0x52,0xf2,0x3b,0xf3,0x1d,0x4b,0x44,0x53,0x24,0x84,0x13,0x75, + 0x9f,0xf4,0x05,0x0b,0x54,0xc2,0x65,0xd9,0x6c,0x11,0x3f,0x74,0x0d,0x5f,0x84,0x88,0x94,0x08,0xb2,0xfc, + 0xb2,0x4c,0xda,0xa2,0xa8,0x8c,0xa9,0x20,0xe5,0xf3,0x5a,0xae,0x09,0xab,0xc5,0xbb,0xc2,0x23,0xf5,0x21, + 0xb1,0xd4,0xde,0x82,0xb0,0x10,0xad,0x1c,0x5b,0x8c,0x18,0x49,0x64,0x92,0xb1,0x7e,0x4d,0x32,0x16,0xf2, + 0xba,0x18,0x92,0xf1,0xc9,0x81,0xd0,0x80,0x5b,0xb1,0x96,0xcc,0x3d,0x11,0xb8,0xf9,0x3c,0xfc,0x8f,0x91, + 0x80,0x9a,0x0c,0x84,0x3f,0x86,0xb9,0xb9,0xa5,0x7f,0x7c,0x08,0x1f,0xc8,0xd3,0x69,0x55,0xba,0x71,0x4b, + 0x1d,0xfa,0x1e,0x74,0x88,0x4e,0x40,0x12,0x46,0x4d,0xc8,0x2a,0x4b,0x64,0xeb,0xc4,0x7f,0x40,0x4c,0x3b, + 0x49,0x71,0x69,0x44,0x48,0xe9,0xaf,0x0f,0x1a,0xb5,0x2a,0x98,0x23,0x98,0x79,0x64,0xe5,0xf4,0x97,0xdf, + 0x23,0xe9,0x3b,0x42,0xdc,0xe2,0x5a,0x15,0x0b,0xfe,0x47,0xdd,0x59,0xa8,0x94,0x2d,0x36,0x0c,0x10,0x0a, + 0xec,0xb9,0xc8,0x17,0x03,0xb0,0x7e,0xeb,0x42,0x65,0xa9,0x47,0x99,0x89,0xf5,0x59,0xcb,0x4c,0x35,0x8a, + 0xc0,0x88,0xa1,0x35,0x09,0x2c,0x4b,0x4b,0x86,0x20,0x08,0x59,0x1c,0x82,0x44,0x1e,0xf1,0x44,0x13,0x86, + 0x22,0x65,0x8a,0x3d,0x21,0xb2,0x2d,0x9a,0xc7,0xab,0x95,0x77,0x1a,0xd9,0x18,0x53,0x15,0x5f,0xf3,0xd0, + 0x86,0x25,0x20,0x5e,0x10,0x94,0xc6,0x6e,0xe9,0xdd,0xd3,0x7a,0xf0,0x0f,0x6c,0x45,0x25,0xba,0xe9,0xab, + 0x5c,0x3f,0x52,0xdc,0xb1,0x66,0x29,0x0b,0x12,0x45,0x59,0x2e,0xe1,0x18,0x2f,0x13,0x13,0x1f,0xab,0x07, + 0x2e,0xa8,0x32,0x81,0x54,0x2c,0x00,0x75,0x30,0x56,0xb3,0xcb,0x12,0x1f,0x89,0x78,0xc0,0xd8,0xff,0xd3, + 0x02,0x43,0xda,0x5b,0x78,0xf7,0x27,0xee,0xe0,0xca,0xc8,0x90,0x6e,0x81,0xac,0x42,0x4d,0x01,0xaa,0x89, + 0x86,0x68,0xb4,0x5a,0x40,0x25,0x90,0x38,0x0c,0x89,0x70,0xca,0x24,0xd6,0x78,0xd2,0xfc,0xf8,0xc0,0xf0, + 0xde,0x5d,0x73,0x08,0xac,0x2f,0xee,0x1c,0x08,0x04,0x11,0x18,0x26,0xd9,0x02,0xd1,0x49,0xaf,0x42,0xff, + 0x30,0x99,0x93,0x30,0x9a,0x6f,0xbe,0xcc,0x62,0x32,0x21,0x83,0x46,0x82,0x06,0xe1,0xc2,0xca,0xd0,0x21, + 0x72,0xeb,0x1e,0x64,0x90,0xd1,0x7d,0x7c,0xc0,0x67,0x37,0x24,0x03,0x0d,0x53,0x3b,0x43,0x26,0x6b,0xfc, + 0x99,0x2d,0x89,0x3b,0xde,0x30,0xe5,0xa7,0xab,0xe3,0x8a,0x19,0x15,0x82,0xd8,0x7e,0x4b,0x4d,0x24,0xf4, + 0x2f,0x9a,0x2f,0x1c,0x37,0x50,0x9e,0x83,0x34,0xda,0x07,0x2e,0xe9,0xf8,0xc2,0x03,0x9e,0xea,0x29,0xf8, + 0x77,0x11,0x9c,0x60,0x25,0xba,0x2b,0x2b,0xa6,0xdf,0x36,0xc8,0x7a,0xe3,0x95,0x15,0x3b,0xa9,0xb4,0xba, + 0x09,0x3a,0x0e,0xb4,0x26,0x8e,0x13,0xa6,0x0b,0xea,0xac,0xa7,0x26,0x60,0x43,0x48,0x10,0x7c,0x27,0x0c, + 0x6a,0x9d,0x72,0x69,0x20,0xe8,0xbe,0x36,0x35,0x68,0x05,0x5a,0x1e,0x0a,0x67,0x94,0x94,0x1a,0x33,0xfa, + 0x18,0x06,0x8f,0xf3,0x3b,0x41,0x75,0x0c,0xe3,0x41,0x87,0xb1,0x12,0xbb,0x21,0xa0,0x3d,0xa1,0x32,0x44, + 0x4b,0x04,0x9e,0xf4,0x2d,0x83,0x49,0x69,0x66,0xbc,0x83,0x26,0x96,0x08,0x72,0x4a,0x90,0x6a,0x94,0x27, + 0x68,0x3b,0xf1,0xc8,0x5e,0x92,0xc4,0x0b,0xf3,0x3d,0x3c,0x04,0xc9,0x98,0x49,0x57,0xd5,0xd5,0x09,0x9e, + 0x21,0x05,0x7a,0x41,0x9d,0x6b,0xe4,0x35,0x22,0x91,0xae,0xac,0x0c,0x58,0x42,0x20,0x66,0xff,0xa4,0x29, + 0x78,0xea,0xc6,0x0b,0xc5,0x76,0xc9,0x20,0x17,0xdf,0x80,0xc6,0x02,0x6b,0x28,0x5b,0xae,0x24,0x0e,0x39, + 0x65,0xfc,0x34,0x61,0xc1,0xe0,0x8c,0x40,0x1b,0x27,0xee,0x48,0x68,0xdf,0x1b,0x76,0xc8,0x31,0x34,0x28, + 0x84,0xbc,0x0f,0x42,0x27,0x66,0x31,0x9d,0xa0,0x14,0xcd,0x9e,0x74,0xab,0x28,0x0a,0xee,0xc2,0x53,0x8f, + 0x69,0x1a,0x3e,0xdb,0xc0,0x34,0x35,0xe8,0x4a,0x24,0x97,0xa6,0x0b,0x4d,0xd5,0x3e,0x1d,0x94,0xb5,0xf3, + 0xed,0x1b,0x1b,0x0c,0xac,0x2d,0xa0,0x29,0xcb,0xf6,0x12,0xc6,0xab,0x09,0xe4,0x72,0x33,0x31,0x5a,0xe2, + 0x16,0x80,0x6a,0x0e,0xa4,0xf9,0xdf,0x40,0x3a,0x68,0xa0,0x8b,0x54,0x92,0x2b,0x9c,0xd8,0x1d,0x23,0xc1, + 0x1a,0xa5,0x35,0x82,0xae,0x71,0xc4,0x30,0x33,0xbc,0x09,0xcc,0x21,0x62,0x6f,0x42,0x24,0xa9,0x76,0x39, + 0xaa,0x7e,0xef,0xc0,0x6a,0x2a,0xa1,0xf2,0x00,0xa8,0x33,0xc8,0x6e,0x04,0x4b,0x1d,0xb7,0x25,0xb6,0xd4, + 0x1d,0x66,0x9c,0x52,0x6d,0x34,0x59,0xf5,0x6d,0x53,0xf7,0xd5,0x8a,0x77,0xc2,0x0f,0x0d,0xd5,0x57,0xc4, + 0x89,0xdd,0xcd,0x51,0x69,0xa9,0x92,0x8d,0x56,0x24,0x3a,0x91,0xa8,0x99,0x68,0x14,0xf4,0x04,0x7e,0x30, + 0xd0,0x43,0xf8,0x49,0x40,0x77,0xd1,0xf4,0x41,0x2a,0x21,0x1b,0x03,0xb1,0x61,0xf2,0xf1,0x31,0x44,0x59, + 0x5c,0xa7,0xbd,0x1f,0x03,0xa1,0x70,0x84,0xd3,0xd9,0x94,0x27,0xb9,0xbb,0x93,0x74,0x2a,0x63,0x8a,0xfe, + 0x54,0xc6,0xd3,0x99,0x39,0xcb,0x51,0x1f,0x75,0xb5,0xeb,0x9f,0xbc,0xbe,0x26,0x27,0xea,0x30,0x05,0xab, + 0x0e,0x18,0x65,0x50,0x98,0x95,0x35,0xa1,0x6c,0xa4,0xa4,0x40,0x20,0x63,0x99,0x52,0x89,0x4c,0x02,0x33, + 0xc6,0xf9,0x7f,0xe2,0x7f,0xe1,0xe0,0xfe,0x17,0x4e,0xd5,0x74,0xd5,0x4b,0x74,0x20,0x8d,0x1c,0x7e,0x29, + 0xd4,0x34,0x98,0x60,0x93,0xeb,0x4e,0xc6,0xe4,0xd9,0x38,0x82,0x94,0x04,0x4e,0x81,0x22,0xcc,0xe3,0xab, + 0x48,0x62,0x81,0x3b,0x04,0x48,0x17,0x16,0x3d,0xe9,0xa5,0x76,0xab,0x64,0x58,0xd7,0xfc,0xf8,0x40,0x2d, + 0x22,0xe5,0x17,0x03,0x74,0x0b,0xfa,0xf0,0x25,0xd2,0x40,0x72,0x5e,0xf1,0x52,0xfc,0x8d,0x87,0x95,0x15, + 0xaa,0x54,0x25,0xe7,0x3c,0x85,0x9b,0x3e,0x80,0x8f,0x11,0xbb,0xe2,0x65,0x86,0x10,0xdf,0x70,0x68,0x74, + 0x50,0xb8,0x63,0x6c,0x8a,0xea,0x6b,0xdc,0x8a,0x00,0xb5,0x7d,0x03,0x83,0xaa,0x7c,0xa7,0xfb,0xea,0x7b, + 0xcf,0xf0,0x44,0xb9,0x43,0x74,0xda,0x20,0x1b,0x32,0x70,0x63,0x55,0x24,0xce,0x78,0xd0,0x9e,0x04,0xda, + 0x8b,0xc2,0x0d,0xf4,0x3c,0x9f,0xb5,0x0b,0x16,0x6c,0x6e,0xae,0x40,0x2c,0x02,0x01,0x47,0x6d,0xcb,0x65, + 0x67,0x75,0x35,0xf1,0x67,0xb6,0x9c,0xb2,0x1e,0x1d,0xd1,0x32,0xe6,0x04,0xf6,0x64,0xbe,0xaf,0x32,0xf0, + 0x76,0xe6,0x27,0x27,0x15,0x5b,0x7d,0x34,0x54,0x9b,0x13,0x31,0x64,0x40,0xdf,0x98,0x6a,0xe6,0xa2,0x14, + 0xed,0x93,0x11,0xb2,0x2a,0x1c,0xef,0x97,0xc6,0xa8,0xff,0xde,0x20,0x71,0xb9,0xf3,0x61,0x3a,0x38,0x4c, + 0x3b,0x3a,0xcc,0x7c,0xd9,0x66,0xc3,0x74,0x1e,0x6d,0x71,0x98,0x76,0x3a,0x4f,0x87,0x69,0x86,0x87,0x69, + 0xc2,0x30,0xf5,0x60,0x49,0x18,0xb0,0xe1,0xb0,0x71,0x9a,0x91,0x71,0xaa,0x81,0x3f,0x88,0xf3,0x3b,0x23, + 0x35,0x7e,0x7f,0xa4,0x74,0x94,0xa1,0xbe,0x3a,0xd0,0x57,0x03,0xf2,0x1d,0x9f,0x55,0x85,0xbb,0x68,0x7d, + 0xbd,0x57,0x9d,0xbf,0x4c,0x63,0xea,0x32,0xf4,0xe7,0x96,0xa3,0x3f,0xc7,0x17,0x37,0xda,0x3d,0x39,0x2b, + 0xea,0x30,0xbc,0x5b,0x2a,0x5a,0x01,0xff,0x02,0x66,0x63,0xd6,0xdf,0xff,0xf4,0x18,0xac,0x4f,0xc6,0xb0, + 0x48,0xce,0x53,0xea,0x3c,0x43,0xde,0xd1,0x4a,0xb6,0xf1,0xa7,0xcf,0x26,0x93,0x0a,0xae,0x71,0x50,0x23, + 0x3a,0xa5,0xba,0x3a,0x19,0x77,0xd0,0xaa,0xf3,0x53,0x9d,0x58,0x24,0x65,0xb6,0xc0,0xb2,0xba,0xef,0x65, + 0x55,0xcd,0xa0,0x24,0xaf,0x56,0xb9,0xbb,0x00,0xe6,0x59,0x5d,0xb3,0x97,0xa1,0x06,0x9f,0x63,0x34,0x98, + 0x80,0xf4,0x0d,0x30,0x7a,0xa6,0xe1,0x96,0x0d,0x6a,0xfb,0x31,0x40,0x75,0xf6,0xfa,0x76,0xc7,0x25,0x86, + 0xab,0xef,0x31,0x9e,0x16,0x20,0x55,0x19,0xbe,0x45,0x8d,0x1e,0x4b,0x26,0xa9,0xfa,0x50,0xfe,0x2e,0xd8, + 0x52,0xc9,0xfd,0xaa,0xb1,0x3d,0x94,0x8f,0xc0,0xb8,0xb5,0x99,0xdb,0x1b,0xf1,0x10,0x88,0xd9,0x95,0x05, + 0xe8,0x98,0xca,0x25,0x06,0x74,0xfc,0x89,0x75,0x83,0xc3,0x73,0x2f,0x98,0x10,0x45,0x21,0x66,0xd1,0xb2, + 0x15,0x38,0x14,0x71,0x63,0xaa,0xf7,0x68,0xa5,0xd3,0xc4,0x9c,0xaa,0xbc,0xe3,0xc1,0x81,0x0d,0x8c,0x76, + 0x65,0x85,0xb9,0x03,0x51,0x4d,0x43,0x21,0x82,0x82,0x4a,0x36,0x9a,0x92,0xb3,0x48,0x51,0x80,0x74,0xcd, + 0x33,0xc8,0x3e,0x1c,0x65,0x81,0x82,0xb2,0x5d,0x4e,0x99,0xe9,0x8a,0xad,0xfa,0xc9,0xd4,0x42,0x7b,0x05, + 0x3b,0xad,0x8b,0x1e,0x5f,0x3b,0xca,0x10,0x24,0x13,0xa5,0xd4,0x0c,0x12,0x70,0x1e,0x3a,0x4a,0x49,0x99, + 0x58,0x03,0xcb,0x9e,0x59,0x4a,0x99,0x77,0x81,0x36,0x6b,0xaa,0xa4,0x2b,0xda,0x82,0xaa,0xf2,0xca,0xdf, + 0x49,0x5f,0x77,0xa0,0xcf,0x78,0x94,0x02,0xd2,0x28,0x9a,0xf3,0xa1,0xc9,0x54,0x09,0xff,0xe5,0xa6,0xdc, + 0x5f,0x8e,0x04,0xe5,0x44,0xae,0xe3,0xf9,0x68,0x45,0x7f,0xa8,0x38,0xf1,0x93,0x6c,0x00,0x59,0x35,0x6c, + 0xb3,0x35,0xfc,0xe1,0x98,0xe4,0x77,0x64,0x24,0x88,0x5b,0xfe,0x41,0x30,0xec,0x7b,0x0c,0x92,0x49,0x71, + 0xc2,0x93,0xa2,0xc1,0x80,0x9c,0x27,0x7e,0x82,0xa7,0x65,0xb0,0xeb,0xf4,0xfc,0x8e,0xf6,0xbf,0xc4,0xf6, + 0x66,0x8d,0x09,0x44,0xc2,0x01,0x1d,0xeb,0x08,0xdf,0xbc,0x1f,0x89,0xd9,0xa7,0x05,0x84,0xce,0xca,0xaa, + 0xb9,0x6c,0x4a,0x3a,0xd1,0xf3,0x7b,0x4b,0xff,0x62,0xf7,0x82,0xbd,0xff,0x91,0xd5,0x92,0x6b,0xf0,0xa1, + 0x94,0xb2,0x0b,0x27,0x9d,0x0e,0xac,0xe6,0x68,0x4b,0x04,0xfa,0xc6,0x11,0x5c,0x55,0xd6,0xfe,0x9d,0xfc, + 0xd1,0x49,0xa5,0xd7,0xd4,0x26,0xf9,0x39,0x83,0x9f,0x24,0xe7,0x14,0x85,0x91,0x53,0x10,0x0c,0x2a,0xef, + 0x33,0xb7,0x84,0x27,0x89,0x66,0x87,0x3c,0x97,0x5c,0x50,0xe1,0xb7,0xf2,0xa8,0x94,0x1e,0x8b,0x4f,0x2a, + 0x48,0x93,0xa5,0xc7,0xcd,0xa7,0x85,0x7a,0xfa,0x98,0x63,0x25,0x73,0x90,0x9b,0x81,0xdc,0x7c,0x6c,0xa9, + 0x3c,0x2b,0x95,0x97,0xe1,0x65,0xd9,0x5f,0x7a,0x89,0x9b,0x7e,0x60,0xf1,0x02,0x14,0xff,0x55,0x39,0x95, + 0xb4,0xaa,0xfa,0xed,0x92,0x5f,0xa4,0x65,0xfc,0x45,0xdb,0x86,0x5f,0x08,0xae,0x08,0xe0,0x94,0x7f,0x40, + 0xd6,0x3a,0xd6,0xfb,0x87,0xf2,0x8f,0xd2,0xe3,0x46,0x30,0x1c,0x15,0xbb,0xfc,0xa4,0x20,0xb0,0x02,0xad, + 0xb8,0xa5,0x22,0x0d,0x63,0x16,0xed,0xce,0x3a,0xaf,0x8f,0x09,0x52,0x89,0x75,0x56,0x62,0x03,0x4a,0x10, + 0xb8,0x91,0x12,0xd8,0x10,0x45,0xfa,0x33,0x60,0xfa,0x87,0xbb,0x93,0xf4,0x9c,0x89,0xf1,0xd1,0xd5,0x20, + 0xf7,0x63,0x75,0xe7,0xf1,0x47,0x27,0xf3,0x94,0xfe,0xf8,0xc7,0xe3,0xbf,0xff,0xf1,0xf4,0xc7,0x3f,0x3e, + 0x94,0xc7,0x7f,0x2b,0x4f,0x7f,0x28,0x29,0x28,0xf7,0x7d,0x2d,0xd0,0xd1,0x1a,0x4c,0x4f,0x66,0xc7,0x82, + 0x8c,0x40,0x15,0x68,0x47,0xf1,0xfd,0xa8,0xd0,0xa3,0xb4,0x0e,0x9a,0x43,0xd5,0x4b,0x66,0x53,0x9c,0x38, + 0x19,0x5d,0x26,0xb6,0x73,0x25,0xfa,0xb7,0x40,0xff,0x16,0x37,0xe8,0xdf,0x42,0x91,0xfd,0xdd,0x66,0xe9, + 0x5b,0x25,0x2e,0xc6,0xd1,0x03,0xe5,0xed,0x75,0x56,0x80,0x55,0x28,0xae,0xb3,0x02,0x0a,0x99,0x1f,0x85, + 0x1d,0x3b,0xe7,0x19,0x78,0xfa,0x27,0x97,0x65,0x7f,0x59,0x6b,0xb9,0x0d,0x96,0xb0,0xb1,0x9e,0xdf,0x64, + 0x65,0xb6,0xf2,0xbc,0x12,0xfc,0x2a,0x70,0xa0,0x33,0x57,0xe1,0x04,0x6b,0xfc,0x59,0xd9,0xde,0x04,0xfe, + 0xf0,0xcf,0x4a,0x2e,0x9f,0xff,0xf8,0x80,0xcf,0x8d,0x75,0xf2,0xb9,0x9d,0xdd,0x61,0x8d,0x97,0x20,0xb1, + 0xb8,0x4d,0x12,0xd7,0x37,0x61,0x61,0x13,0xea,0x80,0xb5,0x42,0x38,0x50,0x20,0x15,0xb7,0x42,0x9a,0x51, + 0x85,0xdb,0x40,0xf8,0xa6,0xa6,0x64,0x09,0x97,0x22,0x28,0x24,0xe8,0xfb,0xf8,0xf8,0x66,0xba,0x27,0xda, + 0x09,0x1a,0x64,0xc9,0x39,0xa4,0xad,0x3e,0x53,0x56,0xe8,0xa4,0x76,0x80,0x95,0x83,0xf6,0x64,0xa7,0x64, + 0x8c,0xa7,0xd0,0xfe,0x20,0x26,0x19,0x81,0x77,0xc3,0xc7,0x47,0xa1,0x08,0xd9,0x20,0x8c,0x17,0xb6,0xf1, + 0xef,0x8e,0x51,0x32,0x98,0xb7,0x47,0x4e,0x85,0xfc,0x92,0xf2,0x87,0x92,0xb6,0xe9,0x89,0xde,0xc5,0x92, + 0xdd,0x2a,0x7e,0xb3,0xba,0x10,0x36,0x2b,0xc2,0x4b,0xce,0x40,0x35,0x89,0xd9,0x69,0x04,0x40,0xc2,0xbe, + 0x64,0xc0,0xbe,0x64,0x2c,0xd3,0x1f,0x7d,0x07,0x2f,0x60,0xab,0x93,0xca,0x6a,0x0e,0x54,0xb8,0x2c,0x68, + 0x6f,0x68,0xc6,0x01,0x16,0x21,0x1c,0x2b,0xfa,0x6d,0x3c,0x4e,0x50,0x50,0x00,0x32,0x5d,0x07,0x36,0x35, + 0x5c,0x59,0x81,0x25,0x83,0x47,0x60,0x1f,0x1f,0x1b,0xf4,0x1b,0x16,0x88,0x70,0x4a,0x97,0x98,0xa4,0xd3, + 0xb8,0x53,0xfd,0xf8,0xa1,0xa4,0x0d,0x75,0x0c,0xac,0x06,0xa4,0xb8,0x6f,0x59,0xe2,0x60,0x3b,0x46,0xb6, + 0x22,0x8a,0x36,0xdc,0xd2,0x43,0xdc,0x67,0x29,0xf7,0xb3,0xd0,0x69,0x84,0x66,0xa4,0x16,0xa4,0x7e,0xb4, + 0x06,0x9a,0x1d,0x76,0xac,0x8a,0x53,0xb2,0xd2,0xe8,0xaf,0x3e,0x46,0x3e,0x24,0x14,0x62,0x8d,0x76,0x89, + 0x9f,0x08,0x32,0x1d,0xd9,0x15,0xac,0xfb,0x67,0x36,0xd5,0x5d,0x5d,0x85,0x81,0x17,0x59,0xff,0xa8,0xef, + 0x07,0x66,0x01,0x1e,0xbe,0xe1,0xf9,0x39,0x10,0x43,0x0b,0x85,0xff,0xe0,0xb0,0x0e,0xfb,0x9e,0x44,0x0b, + 0x0b,0xf3,0x23,0x18,0x96,0x51,0xbb,0xc5,0xc1,0xe2,0x50,0x21,0x21,0x49,0x50,0x85,0xc7,0xde,0xdf,0x00, + 0x79,0xa4,0x25,0xbb,0xd2,0x40,0x4d,0x6e,0x0b,0x01,0x9a,0x95,0x24,0x48,0x26,0x8f,0xc3,0xa7,0x14,0x48, + 0x61,0xa0,0xee,0x65,0xb0,0xcd,0x8f,0x8f,0x2d,0xde,0x04,0x22,0x78,0x58,0x31,0x91,0x35,0x27,0xb5,0xca, + 0xf8,0xd1,0x84,0xf6,0x9e,0x28,0x95,0xfa,0x83,0x86,0xdf,0x26,0xfa,0x7e,0x00,0xa1,0x39,0xb4,0x9f,0x5a, + 0x32,0x25,0x02,0xd8,0xc4,0x19,0xe1,0x13,0xa1,0x2f,0x16,0x8c,0xd0,0x65,0x32,0xa9,0xa0,0x2b,0x15,0x1a, + 0x19,0x17,0xaa,0x48,0x67,0xe8,0xb7,0x07,0x54,0x46,0x4c,0x35,0x31,0x52,0x11,0x1e,0xba,0x46,0x8f,0xdc, + 0x55,0x66,0xfc,0xf7,0x89,0x94,0x9d,0x9b,0xc2,0xe4,0x84,0xac,0x69,0x68,0xd8,0x21,0x13,0xc7,0x8f,0xca, + 0x45,0x58,0x5c,0x8a,0xb5,0x2b,0x0e,0xcb,0x56,0x61,0x37,0x56,0xa9,0x33,0xb6,0x5d,0xe6,0x2e,0xd8,0xda, + 0xa3,0xf3,0xe8,0x3e,0x11,0x5a,0xf4,0x71,0xa2,0xa7,0xde,0x35,0xea,0xfe,0x40,0xf6,0xca,0x85,0x56,0xd1, + 0x55,0x37,0xd8,0x1f,0x35,0xca,0xa4,0x8f,0x2b,0x8f,0x8a,0xeb,0xcd,0x87,0x18,0xf6,0x4e,0x9f,0x38,0x8e, + 0x61,0xe9,0x73,0xe1,0x67,0x83,0xde,0xdd,0x83,0x94,0x89,0x6b,0xec,0x39,0xf6,0x04,0xbd,0xfc,0xe1,0x6b, + 0x64,0x5a,0xe6,0x68,0x32,0x42,0xb7,0xe1,0x9e,0xe1,0x34,0xcc,0x9e,0xe9,0xb9,0x41,0xf2,0xae,0x43,0xaf, + 0xec,0x06,0xe9,0xda,0x6b,0x7c,0x3a,0x2d,0x7f,0x69,0xf6,0x2c,0x72,0x49,0xc5,0xf2,0xc2,0x55,0xe2,0xb2, + 0xa8,0x4a,0x74,0x4c,0x2d,0xe2,0xf0,0x4d,0xcf,0xc3,0xf8,0xf7,0x93,0xba,0xbb,0x84,0x21,0x94,0x83,0x73, + 0x1c,0xe2,0xbf,0xf5,0x0e,0x02,0xd7,0xb7,0x39,0xac,0xdb,0x98,0xe3,0x5a,0xea,0x1c,0xbe,0xb2,0x42,0xff, + 0x66,0x6e,0x26,0xc6,0xca,0xca,0x65,0x32,0xf8,0x4a,0xf9,0x9e,0x15,0xb4,0x37,0x1f,0x1f,0x8a,0x61,0xad, + 0x5e,0x5f,0x92,0xbb,0x18,0xa1,0x03,0xb7,0x20,0x0f,0x59,0x31,0x3f,0xe5,0x22,0x86,0x65,0x93,0x9a,0x7b, + 0x85,0xe3,0x63,0x9a,0x0e,0x93,0x9c,0xb1,0x84,0xd3,0x61,0x92,0x5a,0xa6,0xe4,0x3a,0x1d,0x51,0xe7,0x16, + 0xfa,0x25,0x9c,0x13,0x06,0x07,0x83,0x1f,0x1f,0x78,0x54,0xf6,0x9d,0x15,0x19,0x99,0xae,0x8b,0xc7,0x28, + 0xd0,0x36,0xfd,0x05,0xd9,0x01,0x00,0x7a,0x0a,0x49,0x0e,0x23,0xa5,0x74,0x3c,0xd7,0xaa,0x08,0x27,0x5f, + 0xf4,0xd0,0xeb,0xdb,0x37,0xfa,0x8b,0xb7,0xce,0x06,0x8a,0x57,0x2c,0xc4,0xc2,0x62,0x3a,0xad,0x24,0xa6, + 0xf0,0x16,0x62,0x0f,0x20,0x03,0x4f,0xe0,0xf8,0xa3,0xc7,0x95,0x15,0xd2,0x87,0xb8,0x2c,0x06,0x57,0x46, + 0x28,0xa0,0xc3,0x45,0x93,0x3e,0xcd,0x13,0x91,0x2a,0xe7,0xa0,0x91,0x8b,0x9c,0x30,0x5e,0x04,0x60,0x34, + 0xee,0x73,0xe8,0xe2,0xae,0x40,0x93,0x89,0x11,0x53,0xba,0x9d,0xe1,0x7b,0x0e,0x24,0xbf,0xe1,0x60,0x71, + 0x41,0x7f,0xd3,0x61,0x3f,0x24,0x20,0x25,0xf6,0x41,0x4a,0xa7,0x78,0x8b,0x40,0xfc,0xde,0xcd,0x71,0x32, + 0x70,0xf6,0x91,0xc9,0x06,0x58,0x19,0xa7,0x95,0x92,0xad,0x86,0xa8,0x04,0x14,0x10,0x89,0x3e,0x88,0x26, + 0xa2,0x9e,0x55,0xde,0xa7,0xa3,0xd2,0x3b,0xd5,0x19,0x27,0x0e,0x5e,0xa8,0x24,0xa7,0x37,0x3e,0x9c,0x68, + 0x56,0x18,0x6e,0xb4,0x84,0xdc,0x4e,0x34,0x9f,0x1f,0x0d,0x45,0x32,0x42,0xc3,0x89,0xe9,0x16,0x25,0xc7, + 0xb8,0xaa,0x7c,0x82,0x62,0xf2,0x62,0xa7,0x3e,0x5a,0x6e,0x51,0xde,0x15,0x98,0x38,0x43,0x76,0x0c,0x67, + 0xf0,0x55,0x6c,0x0a,0xb7,0x1c,0xfa,0x46,0x1b,0x61,0xb0,0xee,0x80,0x3c,0xe6,0xc9,0x77,0x72,0xc5,0xc9, + 0x63,0xaa,0xbb,0x58,0xd6,0x58,0xa8,0x62,0xa3,0xb1,0x67,0x8d,0xf2,0x15,0x8b,0x28,0xa5,0x71,0x73,0xa8, + 0x0c,0x6a,0xc9,0xc1,0xa5,0x04,0xec,0x5b,0x64,0x73,0xf2,0x7c,0x6f,0x4b,0xce,0xad,0xb8,0x27,0x2e,0xdb, + 0x8d,0xfe,0x04,0x69,0x8c,0x3a,0x87,0xe9,0xe8,0x7b,0x91,0x43,0xef,0xc8,0x98,0x3e,0xa9,0xe1,0xee,0x48, + 0xc7,0xeb,0x95,0x4f,0x8d,0x32,0x1c,0x79,0x99,0xef,0xa4,0x52,0x52,0xf9,0x8e,0xa0,0x15,0x55,0x74,0x4e, + 0x0f,0x7c,0xb0,0xbc,0x30,0x36,0x44,0x5f,0xbf,0x79,0xbc,0x6b,0x7b,0xb8,0xce,0xa3,0xf1,0x44,0x2e,0x47, + 0x84,0x13,0x33,0xdf,0xa1,0x1d,0xdd,0xb8,0x26,0x36,0x98,0x24,0xf1,0x31,0x49,0xa9,0xef,0x1d,0xc3,0x18, + 0x23,0xbd,0xc4,0x8d,0x90,0x39,0x54,0xc8,0x62,0xd2,0xb7,0x80,0x3f,0xc2,0x6a,0x0f,0x98,0x68,0x44,0x08, + 0x60,0xce,0x1d,0x30,0x76,0x19,0x17,0xe4,0x84,0x5e,0x40,0x08,0x5d,0x40,0x22,0x46,0x88,0xa7,0xf2,0x77, + 0xd7,0x20,0x57,0xd5,0x78,0xb6,0x81,0x36,0xfb,0xf0,0x10,0xd4,0x77,0x93,0x7b,0xfa,0xb2,0x41,0x9c,0x21, + 0x68,0x60,0x3a,0xcb,0xee,0x17,0x42,0x77,0xb0,0x10,0x67,0x09,0x4b,0x8a,0x32,0x17,0x17,0xd9,0xe8,0x48, + 0xa0,0x87,0x18,0xc6,0xaf,0xeb,0xcb,0xee,0x51,0x1c,0x8c,0xc4,0x55,0x7e,0x0d,0x44,0x74,0x95,0xe2,0x20, + 0x28,0x62,0x7e,0x31,0x56,0x7e,0xaa,0x11,0x94,0x77,0xc5,0xf2,0xfe,0x1a,0xc4,0xf9,0x20,0x08,0x67,0x5f, + 0x01,0xde,0x3d,0xd2,0x98,0xcc,0xcc,0x7e,0xd5,0xa8,0x5c,0x3a,0xa6,0xfe,0x57,0x3b,0x21,0x57,0xe3,0x9d, + 0x61,0x8c,0xf3,0xd3,0x5e,0xb0,0x32,0x62,0xf1,0xf8,0x46,0x7d,0xf1,0x80,0x74,0x93,0x33,0xde,0x4f,0x61, + 0xfb,0xa5,0xe4,0x2a,0xf1,0xf0,0x05,0x09,0x05,0x8b,0xc7,0xb2,0xef,0x4f,0x5b,0x8b,0xad,0xb1,0x1c,0x54, + 0x7c,0x2f,0x96,0x78,0x3b,0xc9,0x8b,0x5e,0x24,0xf7,0xcf,0xa6,0x97,0x2f,0x9e,0x68,0xed,0x10,0xb1,0x7f, + 0x06,0x24,0xb4,0x90,0xa2,0xb0,0x24,0x9a,0xff,0x0c,0x92,0xb4,0x96,0x42,0x70,0xd0,0x03,0xbc,0x41,0x7d, + 0x3d,0x24,0xe5,0x85,0x2a,0xbd,0x94,0xa1,0xe9,0xa8,0xd1,0x89,0xd7,0x86,0x25,0xc2,0xa0,0x4c,0xdd,0xac, + 0x48,0x89,0xdc,0x16,0x8e,0xf2,0xe2,0x23,0x82,0x03,0x60,0x4f,0x64,0x4f,0x89,0x1c,0xc3,0x9a,0xbe,0xcf, + 0x05,0xf7,0x7a,0xe2,0xea,0x78,0xa8,0xab,0xa6,0xbb,0x2b,0x8a,0x93,0x51,0x07,0x0f,0xf4,0x77,0x86,0xce, + 0x0a,0x2c,0x97,0xb9,0x47,0x49,0x72,0x68,0x18,0xea,0x12,0x9b,0x36,0xd7,0xfa,0x65,0xdb,0x76,0xc0,0xbd, + 0x35,0x75,0x52,0x09,0x24,0x43,0x59,0x8c,0xc3,0x83,0x1b,0x1c,0xab,0xac,0xc9,0x4d,0xc8,0x69,0xe5,0xc4, + 0x47,0xe5,0x84,0x9c,0xf8,0x62,0x02,0x69,0x82,0x1c,0x64,0x8a,0xad,0x08,0xc8,0xe2,0x7a,0x07,0x68,0xb8, + 0xc4,0xff,0x51,0x2c,0xb7,0xe0,0x4a,0x78,0xc4,0xd5,0x7b,0x22,0x81,0xd3,0x2a,0x13,0x5f,0xb9,0xf3,0xf7, + 0x79,0xe5,0x5f,0x25,0x25,0x45,0x2f,0x19,0x6a,0x6c,0x38,0x43,0xd3,0xa2,0xa7,0xea,0x1a,0x43,0x00,0x37, + 0x38,0x53,0x87,0x9d,0xa4,0x46,0x12,0x43,0x58,0xc4,0x4a,0x4b,0xd0,0x17,0xdc,0x22,0x06,0xbd,0xd4,0x52, + 0xf5,0x0a,0x5e,0xd4,0xc6,0x8d,0x6d,0x2d,0xf9,0xaf,0xd2,0xe3,0x8f,0xd9,0x8f,0xd5,0x9f,0x1f,0x99,0xa7, + 0x74,0x6a,0xad,0x17,0x5c,0x8f,0x99,0xe0,0x69,0xb2,0x4e,0x8e,0xc1,0x43,0x0e,0xdc,0x04,0x5d,0x58,0x64, + 0x58,0xd1,0x1f,0x27,0x4f,0x6a,0xb7,0x32,0x24,0x72,0x94,0xe7,0x24,0xf3,0x29,0x75,0x5c,0xd1,0xa4,0x19, + 0x25,0x3d,0xe9,0x42,0x4f,0x14,0x47,0x9b,0x31,0x13,0x3c,0xc3,0x12,0xc8,0xcc,0x41,0x22,0x55,0x2a,0x4a, + 0x26,0x99,0x35,0x2d,0x4c,0x6a,0xc9,0x31,0x9b,0x22,0x8d,0x91,0x95,0xd7,0x77,0xec,0x59,0x82,0x3c,0x97, + 0x80,0xa6,0x72,0xe3,0x75,0x4c,0x5e,0xb1,0x48,0x90,0x17,0xdc,0x15,0xaa,0xfb,0x75,0x2a,0xac,0x74,0x79, + 0x5c,0xe9,0x64,0x7e,0x7a,0x8c,0xb3,0x18,0xc9,0x4e,0xf8,0xa8,0xae,0xc3,0x0f,0xf1,0x3a,0x61,0x4f,0xcc, + 0x2e,0xc3,0xe1,0xc2,0xad,0x24,0xc9,0xd0,0x84,0xd5,0x0a,0x43,0xeb,0xaa,0x63,0x35,0x6c,0x2e,0x30,0x53, + 0x3b,0x66,0xe9,0xd1,0x04,0x12,0xd9,0x71,0x33,0x8e,0x41,0x7c,0x60,0x92,0x43,0x75,0x9c,0x2a,0xb9,0x7c, + 0xf6,0xc3,0x2c,0x80,0xce,0x6b,0x68,0xf6,0xfc,0x83,0x47,0x99,0x47,0x67,0x64,0xe4,0x5a,0xdc,0x66,0x18, + 0xac,0xea,0x8a,0xb1,0xe3,0xf8,0x57,0xd5,0x4b,0x4e,0xa8,0x2d,0x1f,0x0d,0xb1,0xc4,0xa2,0xb2,0x67,0x07, + 0x5c,0xee,0xaa,0x29,0x34,0x66,0xa8,0x78,0x95,0xc3,0x2f,0xc7,0x99,0x84,0x9e,0x74,0x61,0x95,0xc3,0xbf, + 0x31,0x55,0x40,0xe1,0x43,0x4f,0x6e,0x5e,0x25,0xb5,0x83,0xeb,0xa0,0x14,0x1e,0x7e,0x94,0xef,0x05,0x02, + 0x27,0x54,0x44,0xcd,0x4e,0x8b,0x9e,0x0e,0x16,0xcb,0x1a,0x3b,0x1d,0x34,0xd1,0x25,0x3f,0x38,0x1d,0xd4, + 0xd2,0x45,0xfa,0xd2,0x82,0x6f,0x96,0x56,0x98,0x2f,0xd9,0x44,0xbe,0x6a,0x64,0xa6,0xc8,0x5a,0xe0,0xf6, + 0x01,0xf4,0x09,0xa1,0x43,0x08,0x48,0x05,0x56,0x0b,0x5d,0x7b,0x61,0x0f,0x5d,0xa4,0x68,0x86,0x71,0x95, + 0x18,0x91,0xb4,0x91,0x9b,0x0a,0x38,0x73,0x88,0x7c,0x87,0x29,0x51,0x30,0xfd,0x12,0x05,0x33,0x4b,0xb0, + 0x5d,0x11,0xea,0x64,0x04,0x2f,0x00,0x4f,0x78,0x0f,0x21,0xb5,0x90,0x36,0x1c,0x91,0x46,0xa1,0xfb,0x2a, + 0x5e,0x38,0x0f,0xf3,0x0b,0x99,0x7b,0xfb,0xe2,0xbd,0xfa,0xd7,0xbc,0x16,0x58,0x67,0xa9,0x15,0x27,0x15, + 0x78,0x2b,0x18,0xb8,0xf5,0x90,0x4e,0xb1,0x05,0x16,0x23,0xb3,0xaa,0x48,0x13,0x92,0xdb,0x42,0x68,0x7b, + 0x88,0xdd,0x15,0xc5,0x1d,0x4f,0x9c,0x2e,0x63,0xf9,0x74,0x21,0xaf,0x81,0xaa,0x4b,0x27,0xc9,0xfc,0xab, + 0x93,0x24,0x6a,0x0d,0xe4,0x21,0x02,0x68,0x65,0xf9,0x8c,0x60,0x6f,0x4c,0xe8,0x0f,0x3e,0x5e,0x21,0x0f, + 0x35,0x3c,0x52,0xe1,0x26,0x4f,0x74,0x6b,0x31,0xa8,0xcb,0x54,0x80,0x5b,0xdf,0xf3,0x94,0x54,0x5e,0x86, + 0x68,0x34,0x6f,0xe0,0xcb,0x29,0xa1,0x15,0xa8,0xc7,0x22,0xd9,0x7f,0x9d,0x02,0xd6,0x1f,0x90,0x85,0x1b, + 0x25,0x8b,0xf5,0xb2,0xcb,0xc8,0x42,0x7b,0x74,0x45,0xb2,0x70,0xd3,0xeb,0x81,0x0f,0xd1,0x4e,0x60,0xf4, + 0xb4,0xf1,0xe9,0x8a,0x4a,0x2e,0xa5,0x0e,0xf1,0x02,0x71,0x88,0x5c,0x4c,0x2a,0xa9,0x40,0xeb,0x3e,0x3d, + 0x00,0xd3,0x80,0x9e,0x44,0xbb,0x1c,0xea,0xf1,0x57,0xdc,0x09,0x3e,0xf7,0x48,0x09,0xdc,0x09,0x58,0x9f, + 0xf4,0xc0,0x9b,0xe0,0x6b,0x34,0xac,0xca,0x4e,0x07,0x21,0x0c,0x87,0xf9,0xed,0xaf,0x3d,0x68,0x0a,0xcb, + 0xfb,0x5b,0xe0,0x1e,0x34,0x21,0x8e,0xe6,0xa4,0x02,0x6e,0x26,0x13,0x27,0x31,0x8a,0x25,0x2d,0xd8,0x97, + 0x22,0xa6,0x82,0x88,0x2b,0x81,0x54,0x91,0xec,0x32,0xbf,0x1a,0xbe,0x11,0x02,0x09,0xb9,0xd2,0xad,0x91, + 0x18,0x51,0xd1,0xd7,0x1d,0x05,0x69,0x1d,0x98,0x1a,0x9a,0x51,0x43,0xc0,0xdc,0xe5,0xc0,0x82,0x37,0x3f, + 0xc2,0x8a,0x99,0x0f,0x53,0xf5,0x22,0xbd,0x8b,0xde,0x6a,0xf9,0x6d,0x90,0xf3,0xcc,0xc4,0x33,0x87,0x19, + 0xfa,0xd0,0xe4,0xd2,0x81,0xd0,0xf7,0x1e,0x42,0x88,0x91,0x15,0x90,0x5f,0x60,0x26,0xa4,0x82,0x2c,0x45, + 0xd0,0x52,0xa0,0x9f,0x0c,0x27,0x04,0x7b,0x19,0xa2,0xfe,0x3b,0xa0,0x97,0x20,0x2c,0x7e,0x7c,0x51,0xbc, + 0x51,0x4f,0x48,0xf3,0xcd,0xef,0xcd,0x27,0x9b,0x02,0xc8,0xcd,0x15,0x07,0x08,0x1d,0x19,0x3d,0x48,0xf7, + 0x1a,0x08,0xfd,0xf0,0x2f,0xb2,0xdb,0x14,0x11,0xb2,0x21,0xaf,0x02,0x12,0xbc,0x2a,0x67,0x85,0xb5,0x0b, + 0x60,0x76,0x90,0x0e,0x2a,0x86,0x99,0x56,0x7e,0xfe,0x54,0xd2,0xb6,0x2f,0x1d,0x44,0xad,0xd7,0x20,0x06, + 0xf3,0xd5,0x36,0xfc,0xf8,0x48,0x7e,0x5a,0x90,0x98,0x28,0x63,0x6e,0xa5,0x01,0xf3,0x73,0x81,0xd7,0x0d, + 0x99,0xb6,0x1e,0xb1,0x2f,0xfe,0xec,0x44,0x18,0x08,0xb9,0x41,0xe8,0x77,0x7c,0x09,0x58,0x7a,0xc3,0x8b, + 0x42,0x2c,0x8b,0x12,0x65,0x18,0xa3,0xc1,0xb6,0x11,0xde,0x3c,0x97,0xda,0x89,0x98,0x92,0x15,0xbb,0x9b, + 0x3a,0xff,0x8d,0xdd,0xb4,0x43,0xde,0x56,0x32,0xfc,0xdd,0xd4,0xc1,0x57,0xa2,0x64,0xbc,0x74,0xe2,0x05, + 0x19,0xea,0xca,0x14,0x23,0xc6,0x58,0x8c,0xa7,0x2e,0xbb,0xcc,0xef,0x88,0x7b,0x2a,0xb0,0xe5,0xf0,0xfd, + 0x64,0x7e,0x8a,0xbe,0x13,0x7d,0x56,0xe1,0x31,0xfb,0xb4,0x83,0x97,0x4d,0xb3,0x4f,0xe8,0xd8,0x83,0xbe, + 0xac,0xb8,0x47,0xc3,0x5f,0x06,0x8d,0x1c,0x89,0x0a,0xdf,0xc0,0x37,0xf1,0x63,0x60,0xcc,0xc9,0xa6,0xc8, + 0x3f,0x52,0xf4,0xde,0xb2,0xf1,0xc9,0xbd,0x65,0x83,0xde,0x5b,0xa6,0x75,0x52,0x6a,0x4c,0x7e,0xee,0x89, + 0xb5,0x46,0xae,0x2b,0x33,0x7a,0x4c,0x7a,0x64,0x9d,0x44,0x58,0x92,0x68,0xc7,0xf8,0x05,0x43,0x92,0x2c, + 0x19,0x4b,0xd9,0xd1,0x12,0x80,0x9f,0x70,0x0c,0x09,0xee,0x32,0x56,0xf4,0x9f,0x83,0x5d,0xc2,0x86,0xe2, + 0x46,0xf5,0x09,0x13,0xa2,0xfd,0xf8,0x54,0xdb,0x36,0x40,0x5a,0x72,0x40,0x2f,0x61,0x4c,0xc8,0x25,0x9c, + 0xc6,0xe5,0x4c,0x88,0xe4,0x31,0x26,0x24,0x66,0x85,0x99,0xd0,0x04,0x98,0x0e,0xe6,0x90,0x0b,0x36,0xa9, + 0x49,0xc0,0x3b,0x44,0x4c,0x24,0x35,0xee,0xa0,0xa9,0xb9,0xae,0xd9,0xb3,0x92,0x78,0x3d,0x06,0xad,0x06, + 0xc1,0xc3,0x10,0xdd,0x8a,0xc6,0xb8,0x58,0x39,0xc9,0x8d,0x26,0xe1,0x83,0xb6,0xc7,0x2e,0x7a,0x00,0x7c, + 0x96,0xbd,0xb4,0xf9,0x61,0xa0,0x81,0x4c,0x96,0xf2,0x2f,0x2b,0x46,0xcb,0x13,0x39,0x58,0xd2,0xd9,0x89, + 0x87,0x6f,0x40,0xc9,0xd2,0x92,0xac,0x54,0x98,0xbb,0xd9,0x21,0xee,0xc6,0x9c,0xcd,0x7f,0xc9,0xdb,0x42, + 0xe6,0x6b,0xd2,0xbd,0xa5,0xbc,0xcd,0xfe,0x6f,0xf0,0x36,0x44,0x43,0x64,0xde,0xde,0x61,0xfd,0x97,0x2c, + 0x7e,0x62,0x67,0x2c,0x54,0x27,0x40,0xad,0x1d,0x65,0x7e,0xd6,0xff,0x00,0xf3,0x53,0xb5,0xff,0x27,0x78, + 0xa0,0xaa,0xc9,0xb7,0xc9,0x11,0x12,0x06,0x12,0x98,0xe8,0x46,0xf8,0xc6,0x3a,0xe9,0x38,0xef,0xde,0x71, + 0x86,0x85,0xab,0x75,0x41,0x95,0xdc,0x89,0xe0,0xd7,0x53,0x93,0xd0,0x3e,0xb0,0x2c,0x44,0x00,0x02,0x25, + 0xe6,0x89,0x54,0x8a,0x1c,0x16,0x12,0x17,0xa6,0xff,0x5d,0xcc,0xd7,0xa2,0xcc,0x57,0xc5,0xc7,0x8f,0xe2, + 0xfc,0xa9,0x4d,0xe8,0xb1,0x30,0xb5,0xea,0x59,0x0a,0x66,0x5a,0x9b,0x6a,0xe6,0x50,0x6b,0x9b,0x43,0x13, + 0xf3,0x2b,0xef,0xb2,0x44,0x51,0x9a,0x4a,0x47,0xbf,0xa5,0x1e,0x12,0x07,0xbb,0x3b,0x51,0xb9,0x84,0xdf, + 0xec,0x82,0x45,0x45,0xd9,0xcc,0x6c,0x65,0x72,0xd4,0x0a,0x72,0x54,0xd9,0x55,0x4f,0x2a,0x56,0x12,0x54, + 0xb0,0xeb,0x8a,0x05,0x54,0x78,0x92,0x52,0xdf,0xe2,0x0f,0x08,0x55,0x3c,0xed,0xfb,0x2e,0xbd,0x91,0x44, + 0x2e,0xe7,0xfc,0x24,0x0f,0x84,0xfd,0xd4,0x05,0x25,0xc3,0x4a,0x2a,0x1d,0x73,0xaa,0xa8,0xef,0xe4,0xe2, + 0x57,0xe9,0xdd,0xec,0x94,0x14,0xd0,0x4c,0x94,0xc5,0x42,0x7d,0xf4,0xf3,0xf0,0x9d,0x24,0x53,0xaf,0x0f, + 0x61,0x3a,0x4a,0x4a,0x6c,0x08,0x4e,0x05,0x8b,0x13,0x2f,0x25,0x4f,0x0a,0x82,0xb9,0xf3,0x6b,0x18,0x8a, + 0xaa,0x93,0xc4,0x77,0xb2,0xe2,0x4a,0x71,0x50,0xf0,0xcc,0x51,0xfc,0xce,0x98,0x2e,0x59,0xb0,0x0b,0xd5, + 0xc6,0xe3,0xe9,0xa1,0xa9,0x0f,0x02,0xf7,0xf5,0x40,0x0f,0xc2,0xbb,0x90,0x06,0xbe,0x5c,0xc4,0x35,0x78, + 0x3c,0xe6,0xeb,0x9b,0x1d,0xe3,0x44,0x80,0x85,0x4f,0xd6,0xb0,0xc1,0x92,0xfb,0x9a,0xa1,0x9e,0xf2,0x07, + 0x8f,0xa0,0x04,0xde,0x21,0xc2,0xfb,0xfc,0x6e,0x32,0xd4,0x1b,0x56,0x26,0x95,0x7a,0x82,0xff,0x4a,0x50, + 0xc2,0x48,0xa6,0xc8,0x03,0xa7,0x50,0x5e,0x49,0x28,0xf8,0x72,0x4d,0x14,0xc9,0x7a,0x80,0xba,0xa5,0xa8, + 0xa6,0x4f,0xcf,0x2b,0x34,0xdf,0x1c,0xf5,0x02,0x08,0xae,0xa3,0x97,0x14,0x72,0x58,0x6e,0x8e,0xa0,0xe9, + 0xb5,0xb1,0xd5,0xe3,0x4f,0x7f,0x9a,0x37,0xb5,0xd3,0x8b,0x59,0xf6,0x70,0xaf,0x67,0x57,0xe1,0x7f,0x27, + 0x97,0xd7,0xfd,0xe6,0x75,0x0f,0x7e,0x35,0xf0,0xb3,0x3a,0xab,0x57,0xef,0xe1,0x4f,0xed,0xae,0x3a,0x1d, + 0xed,0x63,0xc2,0xde,0xdd,0xc5,0xee,0xed,0xfe,0xc5,0x55,0x3b,0xff,0x90,0xed,0xe4,0x77,0xe7,0x0f,0xe7, + 0xb5,0xda,0xc3,0xde,0xb6,0xf9,0x70,0x59,0x3b,0x68,0xdf,0xee,0x5a,0x0f,0x37,0x07,0xc3,0xfb,0xdb,0x8b, + 0x75,0x5d,0x1f,0x0e,0xcf,0xb0,0xc2,0xfc,0x60,0x7c,0xb3,0xdb,0xcf,0xde,0x36,0x73,0xc7,0xa7,0xa3,0x93, + 0x69,0xfb,0x72,0xbd,0x4f,0xcb,0xaf,0x17,0xdb,0x77,0x55,0xfa,0xbf,0xc6,0x6c,0xcd,0xd8,0xaf,0xf5,0xef, + 0xf3,0xde,0xb0,0x53,0xaf,0x99,0x0f,0xb7,0x9d,0x71,0xfb,0x39,0x6b,0x6e,0x6e,0x4e,0xd6,0x5a,0x66,0x6d, + 0xfc,0xd0,0xc8,0x9a,0x37,0x6f,0x37,0x27,0xc7,0xcd,0xdc,0xec,0x3c,0x7f,0x63,0x6b,0xd7,0xfd,0x0d,0x7d, + 0x74,0x73,0x65,0x0c,0xd6,0xaf,0xef,0x0b,0x63,0xe7,0xfe,0x6d,0x38,0x68,0x3d,0x6f,0xa5,0x5b,0x8d,0xd7, + 0xe2,0xa9,0xd5,0xf7,0xf4,0xbd,0xdc,0xb0,0xb3,0xd7,0xec,0x19,0x7b,0x39,0xb7,0x6d,0x1d,0x6f,0x18,0x50, + 0x1f,0xfa,0x34,0xbd,0x1f,0x5d,0x6f,0xe0,0x77,0xfb,0xf6,0x26,0x7b,0x7f,0xb9,0x65,0xb6,0xf6,0x7b,0x1b, + 0x50,0x66,0xd6,0xd9,0x73,0xb7,0x5b,0x83,0xdd,0x41,0x3b,0x7f,0x30,0x6c,0xed,0xf6,0x4f,0xae,0xeb,0xb5, + 0x46,0xbb,0x00,0xbf,0x1b,0xd7,0x93,0xe3,0x79,0xee,0xf9,0xb8,0xd1,0x7c,0x6d,0x35,0xee,0xf3,0x47,0xcf, + 0xcd,0xec,0xc9,0xd5,0x7d,0xfe,0xf8,0x72,0xd6,0x3b,0x7e,0xae,0xbe,0x1e,0x9b,0x5b,0x33,0xfc,0xff,0x13, + 0x33,0xfb,0x7a,0xd2,0xb0,0x73,0x27,0xcf,0xf6,0xfc,0x64,0x5e,0xed,0xb5,0xea,0xec,0xff,0x9f,0x8b,0xbd, + 0xb3,0xfd,0x83,0xc1,0xc3,0xf3,0xf8,0xf2,0xa2,0x79,0xef,0xf7,0x47,0x1f,0x5d,0x8c,0xce,0x2e,0x0f,0xec, + 0xce,0xfe,0xc5,0xec,0xd4,0xdc,0x9a,0x76,0x0a,0x9d,0xc2,0x91,0xa5,0xbf,0x1d,0x8d,0xb6,0xe7,0x0f,0xf3, + 0xad,0xd7,0xd3,0xab,0xc1,0xfa,0xd1,0x5b,0x75,0x7e,0xf4,0xd6,0x9a,0x1f,0xdd,0x41,0x7d,0x33,0xf7,0x66, + 0xdc,0xae,0x67,0xef,0xef,0x7a,0x1e,0xd4,0x7f,0x16,0xe0,0x36,0x1f,0xee,0x4e,0x9e,0xf5,0xd1,0x10,0xc6, + 0x30,0x9c,0xb6,0xcd,0xda,0xfc,0x61,0xef,0x7e,0xe3,0xfe,0xf6,0x60,0xda,0xb9,0x3b,0xdf,0x6e,0x99,0xad, + 0x00,0x07,0x30,0x4e,0xb1,0x4d,0x48,0x9b,0x30,0x9c,0x4c,0xee,0xf3,0xdb,0xde,0x51,0xa1,0xdf,0xd7,0xeb, + 0x5b,0xaf,0x47,0xcf,0xd5,0x29,0xe0,0xbc,0xd8,0xbe,0x7d,0x9d,0xe8,0x6f,0x63,0x98,0xa3,0xda,0xc9,0xd5, + 0x55,0xd6,0xd4,0xf6,0x2f,0xb2,0x7a,0xc3,0x9e,0x1e,0xe5,0xd7,0xa1,0x9f,0x14,0x57,0x47,0x64,0x3e,0xb7, + 0x8b,0xf7,0x40,0x1d,0xc7,0x97,0xc5,0xd9,0x51,0x3e,0xe7,0x1d,0xcd,0x83,0x36,0xf5,0xc2,0xc5,0xe5,0xc3, + 0xed,0xfd,0x76,0x6b,0xd4,0xcf,0x76,0xf6,0xab,0x1b,0x47,0xf3,0xed,0x89,0x3e,0xf7,0xe7,0xff,0xb9,0x9d, + 0xcf,0x4e,0x8d,0xbd,0xdd,0xd9,0xd1,0x5b,0x73,0x72,0x5c,0xdf,0x7e,0xbb,0xd9,0x1f,0xce,0x1e,0x2e,0xb7, + 0x2f,0x61,0x4c,0xd0,0xff,0x83,0x67,0xa4,0xa5,0x07,0xf3,0x18,0xe6,0x09,0xe6,0xb4,0x31,0x6e,0xc0,0x9c, + 0xf7,0x3b,0x7b,0xdb,0xf3,0x9b,0xbd,0xed,0x69,0x1b,0xe6,0xf4,0x9c,0xf6,0xbf,0x77,0xbd,0xd7,0x9f,0x42, + 0xfa,0x9b,0xb6,0xb7,0x3d,0x6b,0x35,0x4f,0xae,0x4e,0xcc,0xaa,0x7d,0x93,0x1f,0x4e,0xa0,0x9d,0x82,0x3e, + 0x1f,0xd0,0xfa,0xcd,0xdc,0xc9,0xe9,0x60,0x38,0x81,0x3e,0xf5,0xdb,0xa3,0x93,0xe1,0xe5,0x35,0xe0,0x07, + 0x69,0xa5,0xbe,0x3e,0xd6,0x6e,0xcf,0x37,0x4e,0xb2,0xcd,0xfc,0xf1,0xd5,0x7d,0xf1,0xe4,0xed,0x60,0xef, + 0xfc,0x79,0xb7,0x76,0x7c,0xb5,0xbb,0x7b,0x7e,0xd5,0x6f,0x5e,0x5c,0x1d,0xec,0x1e,0x67,0x0f,0xf6,0x8e, + 0xdf,0x06,0x85,0xe3,0xe7,0x8b,0xc6,0x45,0xe3,0x5a,0x80,0x07,0xed,0x17,0x6e,0xbc,0x07,0x98,0x1b,0x01, + 0xde,0x40,0x86,0x77,0xf2,0x4b,0x78,0x67,0x66,0x75,0x0b,0xe7,0xe7,0xea,0x3a,0xbb,0x71,0xb1,0x77,0x33, + 0xd7,0xee,0x1e,0x86,0x0f,0xcd,0x87,0x39,0xe0,0xa7,0xc7,0x70,0xb8,0xa1,0xdd,0xae,0xbf,0x75,0xf6,0x76, + 0x61,0xae,0x6e,0x0e,0x2e,0x60,0xec,0x58,0xfe,0x68,0x34,0x84,0xb5,0x61,0x17,0xce,0xaf,0xee,0x5f,0x4f, + 0x9e,0x7b,0x85,0xe3,0xe6,0x43,0xfd,0xf8,0xba,0xf9,0x7a,0x7c,0x0d,0x8b,0xba,0x79,0xb1,0x7b,0x3c,0xb8, + 0x7e,0x3b,0x1f,0xdc,0xbf,0x9d,0x5e,0xe9,0xf3,0x93,0x26,0xfc,0x77,0xd9,0xf2,0xe1,0x01,0x6e,0x9e,0x3b, + 0xb7,0xb9,0x61,0xdb,0xba,0x10,0xe0,0x5d,0xc8,0xf0,0xae,0x7f,0x09,0x6f,0x8a,0x7d,0x3f,0x2a,0xc4,0xd0, + 0x22,0xd2,0x68,0x7d,0x9b,0xd0,0xe3,0xf5,0xe0,0x62,0x8f,0x96,0xa3,0xeb,0x8d,0xac,0xbf,0x2b,0xc8,0x6f, + 0x6c,0x17,0xf5,0xbd,0xdd,0x67,0x2d,0x7f,0x93,0x6d,0xed,0xdd,0x4c,0x70,0x9d,0xeb,0x66,0x6b,0xed,0xac, + 0xd7,0x5a,0xdb,0x40,0xb6,0x53,0xed,0x0e,0x2e,0xaf,0x2f,0x6a,0x37,0xfb,0xcf,0xda,0xdb,0xee,0xb8,0xdd, + 0xae,0x5d,0xdc,0xec,0x9d,0xad,0x5b,0x0f,0x56,0x67,0xd3,0xee,0x78,0x9e,0xb7,0x76,0x79,0xd8,0x3e,0x6f, + 0x1e,0x8d,0x5f,0xae,0xfb,0xe7,0x87,0x59,0xfb,0xa2,0x7a,0xdb,0xa8,0xd9,0xad,0xfb,0xe6,0x7c,0xed,0xc2, + 0xac,0x37,0xcd,0xeb,0x9b,0xad,0xf3,0x46,0x75,0xdb,0xec,0x76,0x6b,0xbb,0xc5,0xa2,0xdb,0xcf,0x9e,0x1b, + 0x07,0x67,0xfd,0xe1,0xf4,0xa5,0xd6,0xbc,0x6a,0xda,0x03,0xed,0xfc,0xfa,0x6e,0x76,0x65,0x3a,0xb5,0xfc, + 0xf1,0xc3,0xfc,0xf0,0xb6,0xbe,0x7b,0xf7,0xd2,0xc8,0x16,0x9c,0xc2,0xf1,0xdb,0xf4,0x79,0x7b,0xbc,0x79, + 0x92,0x3b,0x2d,0x4c,0x46,0x85,0x3b,0x77,0x6b,0xdd,0xf0,0x86,0x6f,0xcf,0x5b,0x9b,0x6b,0x85,0xee,0x69, + 0xf7,0x2d,0xdf,0xb8,0x1f,0xdb,0xa3,0x87,0xdb,0xea,0x75,0xf5,0xb2,0x50,0xbd,0x7d,0xa9,0xd6,0x5e,0xaa, + 0x7b,0x2f,0x8e,0xe1,0x6e,0x1d,0xd8,0x35,0xa3,0xd8,0x38,0x98,0x35,0xa6,0xbd,0x0b,0xad,0xaa,0xef,0x65, + 0x0b,0xf9,0xd9,0xc0,0xd4,0x6a,0xe9,0x62,0x7d,0xbf,0x77,0x9d,0xaf,0x9e,0x6d,0x0d,0x37,0x5f,0x8b,0xd5, + 0x69,0xef,0xfe,0xac,0x3a,0x2e,0xd6,0x8d,0x41,0xef,0xe1,0xb8,0xd5,0x1c,0x15,0x7b,0x9d,0x5c,0x75,0xbc, + 0x3e,0x5a,0xd7,0xcf,0x77,0xed,0x6a,0xe1,0xed,0x60,0x63,0x7c,0xea,0x6e,0xf5,0xb6,0x1f,0x1a,0x5b,0xd3, + 0xdb,0xbd,0x6a,0x2d,0xff,0xd0,0x3a,0xad,0xee,0xae,0xf5,0x66,0xb7,0xb7,0x59,0x73,0x70,0xdf,0xaf,0xd6, + 0x27,0xc7,0xb3,0xeb,0x83,0xd3,0x56,0xdb,0xb6,0x8a,0xb3,0xa6,0xd3,0x6b,0xee,0x56,0x37,0x47,0xdb,0x8d, + 0xc1,0x7a,0xfd,0xfc,0x04,0x58,0xe9,0x55,0xfe,0xa4,0x77,0x5f,0xbb,0x3f,0xa9,0xd5,0xed,0x9b,0xfa,0x6e, + 0x75,0x63,0xff,0x55,0x4f,0x8f,0xc6,0x66,0x7b,0x9e,0x9e,0x67,0xef,0xea,0x37,0xc5,0xd1,0xf1,0x76,0xed, + 0xcc,0x1c,0xad,0xed,0xde,0x1d,0x6f,0x75,0xaa,0x7d,0xe8,0xd0,0x78,0x78,0x32,0x6f,0xdc,0xed,0xf7,0xb7, + 0x67,0x8d,0xee,0xe9,0x75,0x56,0xbb,0xe8,0xed,0xdd,0xb5,0xbd,0xfc,0xf3,0xdd,0x78,0xd3,0x28,0xde,0xcd, + 0x9d,0x46,0x6f,0x6a,0x1e,0xbe,0xbc,0x8c,0xf7,0x46,0xda,0xa0,0x3a,0x68,0x56,0xed,0xa3,0x96,0x77,0x9c, + 0x3e,0xf1,0x76,0xcf,0xec,0x7c,0xed,0xe1,0xf2,0x25,0x5f,0x1c,0x7a,0x77,0xf7,0x9b,0x5a,0xfb,0xf6,0xac, + 0xb9,0x61,0xad,0xbb,0xf6,0xd6,0xb4,0x7a,0x5f,0xac,0x3f,0xcf,0x9a,0xdd,0xf1,0xe0,0xa0,0x37,0xcb,0xbf, + 0x1d,0x6e,0x6d,0xf6,0x8b,0x5b,0x97,0x07,0xb9,0x8e,0xf5,0x70,0x79,0x37,0xdc,0x30,0xce,0xf7,0x76,0xfb, + 0xf7,0x37,0xf3,0xea,0xfd,0xc1,0xc1,0xf1,0xc6,0xd1,0x96,0xb5,0x3b,0x3e,0xae,0xb7,0x07,0xed,0xe9,0xdb, + 0xec,0xf0,0xc2,0x19,0x77,0x5a,0xda,0x76,0xff,0x28,0xff,0x72,0x60,0x59,0x17,0x9b,0x6f,0xd5,0xbb,0xad, + 0x6b,0xbd,0x59,0xcd,0xbf,0x5c,0x39,0x7a,0xae,0x7a,0xb1,0x75,0xd6,0xd1,0x8d,0xad,0xad,0x97,0x8d,0xc2, + 0xed,0x46,0xdf,0xd8,0xbf,0xda,0x6d,0x16,0xfb,0x9b,0x17,0xb5,0xda,0xcd,0xa0,0xde,0xbc,0x3e,0x5a,0x2b, + 0x6a,0xd3,0xec,0xd1,0x46,0x7b,0xd3,0xb5,0xd7,0x8e,0x4f,0x3b,0xc7,0x87,0x85,0xb7,0xab,0xe7,0xee,0x6b, + 0xe3,0xe5,0xf5,0x68,0xd8,0xaa,0xb6,0xd3,0xcd,0xe2,0xa8,0xdd,0xd0,0xf7,0x6f,0x2c,0x67,0x6f,0xc3,0xbc, + 0xbf,0x99,0x66,0xaf,0xb5,0xd6,0xcb,0xf5,0xf9,0xd6,0xde,0xee,0xfe,0xda,0x74,0x64,0xcc,0x06,0xc6,0xdd, + 0xe0,0xca,0xb2,0x27,0xa7,0xa3,0x2d,0x7b,0xef,0xf6,0xa0,0x79,0xd6,0x6b,0x1e,0x1e,0x75,0xba,0xfb,0xb5, + 0x99,0x3e,0x3e,0x6b,0xe7,0x3b,0xee,0xf8,0x7c,0xdd,0x2e,0x5a,0xd7,0x2f,0x2f,0xe7,0x7b,0xe7,0x63,0x58, + 0xe8,0x93,0x93,0xe3,0xc3,0xec,0x99,0x75,0xfc,0xb6,0xbd,0xb5,0x39,0x68,0xb5,0xab,0xed,0xc9,0x30,0x7b, + 0x7b,0x3f,0x98,0x77,0xce,0xea,0xd6,0x34,0x6f,0x34,0xe6,0xd7,0x43,0x98,0xc5,0xd7,0xe7,0xd9,0x79,0xef, + 0xc1,0xe9,0x37,0x73,0xd3,0x83,0xc9,0xfe,0x7a,0xf3,0xc0,0xba,0x76,0xb6,0x8e,0xce,0xaf,0xaa,0xdd,0xcd, + 0xed,0xb3,0xae,0xdb,0x31,0x4f,0x4f,0xb2,0x1b,0xde,0xf9,0xd8,0xbe,0x7b,0xad,0x9d,0x5f,0xef,0x8f,0x3a, + 0x5b,0xf5,0xf4,0xde,0xec,0xf6,0xf0,0xf6,0x74,0x3a,0x33,0xef,0xa6,0xbd,0x66,0x61,0xed,0x68,0x7c,0x52, + 0x6c,0x76,0x1b,0xad,0xfa,0xdb,0xac,0x3e,0xec,0x4c,0x46,0x13,0xc7,0x2c,0x02,0x5b,0xce,0x0f,0x8d,0xee, + 0xd9,0xe8,0xe1,0xa6,0xbb,0xbe,0x57,0x3b,0xdc,0x6a,0xbe,0x9e,0xcf,0x2e,0xaf,0xd2,0xeb,0x73,0x7d,0x38, + 0xb5,0xd6,0xf5,0x0b,0xed,0xe8,0xe4,0x48,0xb7,0xdf,0xa6,0x1b,0xc6,0xa8,0x6f,0xbf,0x1c,0x9a,0x85,0x7a, + 0xaf,0xab,0x65,0x37,0x77,0xeb,0x83,0x9b,0x8d,0xb5,0x97,0xab,0x56,0xbf,0xd3,0x19,0x34,0x9d,0x49,0x75, + 0xba,0xdb,0xab,0xef,0x15,0x9b,0xbb,0x9d,0x17,0x6b,0xb2,0x39,0x5a,0x9f,0x4f,0x6e,0xe6,0xe3,0x8b,0xf5, + 0x97,0xec,0xc6,0xe8,0x6a,0xeb,0xb0,0x58,0x3d,0x58,0x2b,0xde,0xed,0x9e,0x0c,0x8e,0xf2,0xb7,0xd7,0xc5, + 0xe2,0x6d,0xfe,0xf8,0xa0,0x7d,0xd4,0x39,0x82,0x8e,0x17,0xb2,0xdb,0xb7,0xce,0xcd,0xec,0xba,0xd6,0x18, + 0xe7,0x37,0x9c,0x9e,0xb7,0x36,0x3f,0x19,0xf6,0xae,0x8b,0xad,0xb5,0xd1,0xf1,0xf1,0x5e,0x67,0xd2,0xf2, + 0x46,0xfa,0xe5,0xd5,0xf5,0xf9,0xa1,0xfe,0x9a,0x4e,0xdf,0x34,0x8d,0x7a,0x6b,0x56,0x1c,0xbc,0xd4,0x4d, + 0xed,0x2a,0x9b,0xdf,0x3d,0x7d,0xb8,0xbc,0x69,0xb4,0x07,0x5a,0xa1,0xfa,0x70,0xeb,0x5e,0x5f,0x4e,0x37, + 0xa7,0x56,0x3e,0x6f,0x6b,0x7b,0xb5,0xa1,0xb9,0xde,0x39,0x7d,0x39,0x76,0xef,0x77,0x4f,0x2e,0x77,0xeb, + 0xb7,0x85,0xa1,0x7d,0x35,0x3c,0xd1,0xd6,0xbb,0xcd,0xe7,0xdb,0xeb,0x6b,0xe7,0xed,0xf0,0xcc,0xc9,0x1b, + 0xf5,0xce,0xac,0x3f,0x79,0x6b,0xae,0x9d,0xad,0xaf,0xa5,0x77,0xb3,0x67,0xbb,0x3d,0xfb,0xe6,0xfc,0x7a, + 0xed,0xba,0xdb,0x32,0xf3,0xc6,0xec,0x34,0x77,0x6c,0x37,0xf6,0x87,0xfb,0xba,0x36,0x71,0x77,0xb7,0x67, + 0xcf,0x56,0xfd,0xe5,0xc6,0x1a,0xa4,0x37,0xcf,0xcd,0x91,0x5e,0xbb,0xdb,0x9c,0xe4,0x5f,0x47,0xc7,0x17, + 0xa7,0xb6,0x3b,0x5c,0xf3,0x36,0xd2,0x93,0xe7,0xad,0xee,0xfe,0xeb,0xde,0x55,0xfb,0x6c,0xee,0x54,0xbb, + 0x47,0xbb,0xe6,0xec,0xfc,0xe4,0xe5,0xf4,0x72,0x9c,0x6e,0x1f,0xde,0x9d,0xbc,0xe9,0xdb,0xfb,0x77,0x07, + 0x0f,0xee,0xc5,0xd9,0xb0,0xda,0xaf,0xaf,0x6f,0xe9,0xbd,0xdb,0xa3,0x13,0xb3,0x7e,0x7c,0x71,0xb0,0x79, + 0xaa,0x8d,0xc6,0xe3,0xf1,0xab,0xe1,0xbc,0x6c,0xbc,0x98,0x2f,0x2f,0xae,0xfd,0xfa,0x76,0xd4,0xd2,0x07, + 0xe9,0x93,0xcb,0xd3,0x8d,0xec,0xc9,0xf9,0xd9,0xcd,0x4b,0xcd,0x4c,0x03,0x61,0x6e,0x5d,0xac,0xdf,0xf5, + 0xdd,0xb7,0xad,0x6a,0xd3,0x9c,0x14,0xda,0x6f,0xc3,0x9b,0x91,0x7e,0xb7,0xf7,0x7a,0x7b,0xb6,0x6f,0x17, + 0x8f,0x37,0x0e,0x9b,0x39,0xc7,0x7d,0x19,0xb4,0x37,0x7b,0xbb,0x6f,0x83,0x5a,0xe3,0xe8,0xfc,0xa8,0xb5, + 0x57,0x3d,0x1e,0x9f,0x54,0xad,0xc9,0x78,0x90,0x2f,0xec,0xa5,0xfb,0xbb,0x77,0x23,0xfd,0x19,0x26,0xe5, + 0xb2,0x3e,0xd1,0x9e,0x6f,0x87,0x07,0xc6,0xcb,0xfd,0xdd,0xcd,0xae,0x61,0x68,0xeb,0xd5,0xfb,0x57,0xf3, + 0xa2,0x9e,0x6e,0x37,0xd2,0xdd,0xea,0xd9,0x68,0x57,0xbf,0xe9,0x0c,0xf4,0xdc,0x69,0x27,0xed,0xdc,0x1c, + 0x9a,0xbd,0x91,0xde,0x34,0xec,0x42,0xde,0xaa,0xdf,0x9d,0xd6,0x1b,0x8d,0xd9,0xf3,0xfe,0xfa,0xd4,0xec, + 0x38,0xa7,0x8d,0xbd,0xb5,0xea,0xb0,0x57,0x98,0xa5,0xcf,0xd6,0x5f,0x8c,0xde,0xf4,0xf2,0xfa,0x66,0x3b, + 0x77,0xdf,0xd5,0xb6,0xb7,0x0f,0xdc,0xf3,0x66,0xda,0xde,0x1d,0xba,0x37,0xfa,0x7a,0x4f,0xcf,0xb7,0x8e, + 0xf6,0xde,0x9e,0x9b,0xaf,0xa7,0xd7,0xcf,0xf9,0x69,0xe3,0xa5,0xb5,0xb5,0x77,0x7a,0x91,0xb6,0xf7,0x9e, + 0x37,0xef,0x5a,0x27,0x85,0xeb,0xad,0x8b,0x9c,0xd7,0xda,0xdc,0xd4,0x5f,0x5a,0x37,0x17,0xcd,0xdd,0x93, + 0xfb,0xf5,0xb9,0x73,0xbb,0xdb,0x5c,0xbb,0xdd,0x3e,0x6f,0xc0,0x42,0x39,0x39,0xba,0xed,0x5d,0xce,0x4e, + 0x5e,0xae,0x46,0x85,0xfb,0xc6,0xf0,0xc8,0xd9,0x3d,0x6b,0xb4,0x27,0x6e,0x6b,0x73,0xeb,0xa1,0x97,0xce, + 0x6d,0xe4,0x87,0x97,0x3d,0x67,0x77,0xa8,0x5d,0x8e,0x37,0xb7,0xd3,0x5b,0xc3,0x5c,0xba,0x51,0x5b,0x5f, + 0xdb,0x2f,0x1e,0x6e,0x7a,0xc3,0x86,0x35,0xb9,0x2d,0x64,0x4f,0x2f,0x73,0xfb,0x9e,0x5d,0xf0,0xec,0xad, + 0x8d,0xed,0xea,0xfa,0x8b,0xfe,0x7c,0x73,0x31,0x5a,0xd3,0x77,0x5f,0xcc,0x81,0x37,0x3e,0xea,0x76,0x1b, + 0x9d,0xd3,0x8b,0xd6,0xeb,0xcb,0xcd,0xf0,0x61,0x94,0x6d,0x3f,0x78,0x87,0x5d,0x27,0x7d,0x6b,0x4d,0x2d, + 0xfb,0xee,0x70,0xdf,0x38,0x38,0x98,0x8e,0xef,0x67,0x07,0xaf,0x5b,0xf7,0xa3,0xe7,0xab,0xeb,0x99,0x7d, + 0x7f,0xe7,0xf6,0xd6,0x75,0xfb,0x26,0xeb,0x6e,0xe8,0xad,0x87,0xe3,0xce,0x5e,0x7b,0xa3,0x67,0x9c,0xbf, + 0x34,0xf5,0xf5,0xfc,0x89,0x75,0x78,0x37,0xd1,0x1b,0x9d,0xf5,0xdd,0xd6,0xd6,0xf9,0x5b,0xb7,0x63,0x1f, + 0x36,0x8f,0xcd,0xdc,0xc9,0x5e,0xbf,0x35,0x38,0x7c,0xd0,0xf7,0x37,0x76,0xb3,0x2f,0xeb,0xd5,0x8b,0xfd, + 0xdb,0x8d,0xbb,0xc6,0xc3,0x5b,0xef,0x6a,0x6d,0x63,0x72,0x96,0x7d,0xb1,0xd2,0xfb,0xb3,0x23,0xbb,0x77, + 0x55,0xeb,0xdc,0x1f,0xd6,0xfb,0x6e,0xa1,0x30,0x78,0xde,0xd8,0xf0,0x6e,0x06,0xc3,0xf1,0xf9,0xec,0xbc, + 0x68,0x37,0x5f,0xed,0x3b,0xf7,0x70,0xaa,0xbf,0x6c,0xbd,0xb4,0x36,0xef,0xd2,0x07,0x5a,0x6b,0x5a,0x34, + 0x1a,0xe9,0xf1,0xf5,0x5d,0x7e,0xed,0x3c,0xef,0x5c,0x1f,0x0e,0x1f,0x34,0x4d,0x6b,0xb5,0x8a,0x3d,0x6b, + 0x77,0x74,0xf5,0x36,0x6c,0x9b,0xcf,0xf3,0xde,0x70,0x2f,0x7d,0xf1,0xd6,0xdd,0x6c,0xd5,0x72,0xde,0x6e, + 0xce,0x1c,0xbd,0x9e,0x16,0xda,0xa3,0xed,0x53,0xeb,0xea,0xa4,0x51,0x9d,0x1d,0xef,0xdf,0x5c,0xb7,0x9e, + 0x37,0x9b,0x6f,0x37,0xb9,0xad,0x93,0xc3,0x87,0xf9,0xb4,0x76,0xbb,0x59,0x9c,0xef,0x9f,0x75,0x8e,0x66, + 0x67,0xc5,0x7b,0x6f,0xd7,0xd0,0x6f,0x1e,0x86,0x87,0xe9,0x93,0xe7,0xf3,0xdb,0xf1,0x8b,0x36,0x7a,0x38, + 0x34,0x5f,0x46,0xf9,0xd1,0xdb,0x5b,0xfa,0xb9,0x79,0xb8,0x9f,0xdb,0x2a,0x6c,0x5f,0x5d,0xe4,0x36,0x07, + 0x17,0xd6,0xd5,0x4b,0x6b,0xef,0x70,0x63,0xd0,0xdb,0xde,0xb4,0xd3,0xf9,0xbb,0x4b,0x4f,0x1b,0xdc,0xf6, + 0x27,0x87,0xa7,0xd5,0x8d,0x89,0xf3,0x92,0xde,0xaf,0xbe,0xcc,0x37,0xe6,0x87,0xda,0xf1,0xc8,0xba,0xb7, + 0x6e,0x8f,0x6f,0x8f,0x1f,0x5e,0xce,0x5e,0xe6,0x37,0xb7,0x4e,0xe7,0xe8,0xc4,0x3d,0xdb,0xdf,0x7a,0x2b, + 0x5c,0x9c,0x9d,0xd5,0x4f,0xbb,0x6d,0x6d,0x6b,0x7a,0x30,0xdf,0xba,0x7b,0xd9,0x2a,0xb6,0x6f,0x8e,0x8b, + 0xf5,0x97,0x66,0xf7,0x7e,0xf7,0xac,0xde,0xd7,0x06,0x1d,0xf7,0xea,0xfc,0x78,0x74,0xb9,0x9b,0xed,0xce, + 0xf6,0x5f,0x8f,0x37,0xec,0x2d,0x73,0xb3,0x75,0xdf,0xce,0x5d,0x1e,0x6b,0x67,0x40,0x0a,0xf3,0xc3,0xd3, + 0xb7,0xe2,0xda,0xf5,0x64,0x9c,0x9f,0x6f,0xdc,0x75,0xcc,0xbd,0x75,0xe7,0x6c,0xd2,0x3a,0xcd,0x5e,0xce, + 0x5f,0xf5,0xc9,0x6e,0x6d,0x50,0x3c,0x98,0xe7,0x07,0x9b,0xcd,0xdd,0xfd,0x93,0xd7,0xe3,0x5b,0x90,0x14, + 0xcd,0xb5,0xf4,0x86,0x75,0x5e,0x73,0xf6,0x4e,0xf4,0xdc,0xcd,0xee,0xc3,0xad,0x39,0x7c,0xd9,0x6f,0xe4, + 0x5f,0xdf,0xf2,0x3d,0xc3,0xbe,0xdb,0x2f,0xd4,0xb7,0x4d,0x6f,0x5a,0x6d,0xed,0xde,0x3d,0xd4,0x80,0xad, + 0xd9,0x05,0x6d,0xb4,0xe6,0xdc,0xa5,0xcf,0x9f,0x5b,0x47,0x9e,0x75,0x9f,0xaf,0x9b,0x87,0xa7,0xee,0xe6, + 0xf1,0xe9,0xe5,0x5e,0xff,0xaa,0x31,0x98,0xec,0xbf,0xa5,0x37,0x6e,0x37,0xb7,0x67,0x03,0x6b,0xfc,0xd0, + 0x81,0x7d,0x7e,0xfe,0xbc,0x75,0x73,0xb3,0x35,0x30,0xd3,0x2f,0xaf,0xf7,0xee,0xf5,0x61,0xf3,0xe6,0xb4, + 0x79,0x96,0xbf,0xbc,0xec,0xd7,0x0f,0x8d,0xba,0x93,0xde,0x5b,0xd7,0x66,0x9b,0xd5,0xb5,0xb1,0x37,0xbc, + 0x1e,0xe5,0x5f,0xe7,0x9d,0x8e,0xf1,0x76,0x94,0x3d,0xdb,0x3f,0x3a,0xeb,0xce,0xf4,0xcd,0xe3,0x83,0x46, + 0x6f,0x53,0xcf,0xee,0xdd,0xed,0x5e,0x1c,0x6d,0x0d,0xce,0xf7,0xb3,0xbb,0xfd,0xe3,0xd6,0x6c,0x63,0x5a, + 0x98,0xdd,0xcd,0x8c,0xc1,0xf5,0x30,0x57,0x7d,0x59,0x3b,0xed,0x5c,0xb5,0x0f,0x2f,0x8a,0x5e,0x2d,0xbd, + 0x75,0x3b,0x77,0x9f,0x0f,0x5e,0xb4,0xdb,0xc1,0xc5,0xf8,0xaa,0xbd,0x79,0xb1,0xa7,0xdd,0x9c,0x14,0xef, + 0x4e,0xf4,0x42,0xc1,0x9e,0x4e,0xb3,0xdb,0xd9,0xc9,0x4b,0x57,0x5f,0x3f,0xd2,0x41,0x94,0xef,0x1f,0x39, + 0x5b,0x0f,0xf9,0xcb,0xfa,0x66,0x3e,0xdd,0x7d,0xbb,0xbe,0xf5,0x9c,0x97,0x79,0xa3,0x31,0x2e,0x5c,0xeb, + 0x76,0xe7,0xe0,0x76,0xbf,0xfe,0xf0,0x7c,0xe7,0x1a,0xd3,0x87,0xfb,0xc2,0x60,0x62,0xb8,0x77,0xd7,0x2f, + 0x93,0xc2,0xe9,0x60,0xb0,0x36,0x3f,0xca,0xdd,0xb6,0x7a,0x17,0x45,0xab,0x5a,0x35,0x3a,0xb7,0x4e,0xfe, + 0x66,0x63,0x5d,0x07,0xf2,0x68,0xaf,0xdd,0x9f,0xb4,0xaf,0xde,0x34,0xe7,0xb5,0x79,0xea,0xb5,0x46,0x30, + 0xa8,0xfb,0xad,0xb7,0xfe,0xe6,0x73,0xfb,0xd0,0xac,0x79,0xe9,0x9b,0xcd,0xb9,0x73,0xba,0x5d,0x9d,0xde, + 0x9d,0x1e,0x65,0xb3,0x79,0x7d,0x7e,0x5e,0xdc,0xd8,0xbf,0x19,0x6c,0x3e,0xdf,0x6f,0xb9,0x3d,0xef,0xf0, + 0x6d,0xd3,0x73,0xb4,0x5b,0x20,0xa9,0xbb,0xc1,0xde,0xc5,0xeb,0x5b,0x36,0xbb,0x39,0xeb,0x75,0xbb,0xce, + 0xee,0x9a,0x7b,0x30,0x78,0x1d,0xd5,0x2e,0xba,0xa3,0xec,0xee,0xe9,0xfe,0xeb,0xd1,0xe1,0x61,0xfa,0xf6, + 0xe8,0x52,0xf3,0xb6,0x7b,0xde,0xd5,0xc6,0xbe,0x76,0x35,0xb8,0xd1,0x0b,0x7b,0x46,0xa3,0x3b,0xeb,0x4f, + 0x8f,0x47,0x6f,0x4e,0x6e,0xde,0xc9,0x4d,0x0e,0x9c,0x51,0x2f,0x6f,0x3f,0xec,0x5d,0x34,0x2f,0x80,0x9b, + 0x83,0x52,0xdd,0xbc,0xd2,0xa6,0xda,0xe9,0xc5,0x4b,0x7b,0xb4,0x31,0x4a,0x77,0xcf,0xac,0xdb,0xcd,0xbb, + 0x13,0xe3,0xea,0x60,0xff,0x6d,0x7d,0x57,0xd3,0xef,0x74,0x33,0xbf,0x75,0x6b,0xac,0x9d,0xed,0xe9,0x17, + 0xf3,0xe3,0x03,0xbb,0x5a,0x2c,0x0e,0xdc,0xd7,0xcd,0xac,0x55,0x2d,0xb6,0x9b,0x07,0xeb,0xcd,0xfc,0xc5, + 0xa5,0xd1,0xb9,0xdb,0xd8,0xdb,0xac,0xba,0x7b,0xf3,0xf4,0x46,0x67,0x76,0xf8,0x7c,0x7b,0xf7,0x76,0xe1, + 0x9c,0x1f,0x4f,0x1f,0xa6,0x27,0x27,0x67,0xda,0xf1,0xa1,0x71,0x32,0xdc,0x78,0x59,0xdf,0x18,0xcf,0xee, + 0x27,0xf3,0x46,0xce,0xd4,0x9d,0xc6,0xe6,0x78,0x6d,0x4f,0x3f,0x73,0x5e,0x6f,0xc7,0xfb,0xce,0xd5,0xd6, + 0xc1,0xc1,0xcd,0x6b,0xe1,0xac,0x35,0x6d,0xf4,0xcf,0x1b,0x2f,0xd7,0x77,0xe6,0xdb,0xee,0xa5,0xb6,0x7d, + 0x75,0x95,0x5b,0x1b,0xd9,0x27,0xee,0x71,0x6f,0x63,0xb3,0x7b,0xd2,0x3e,0xd8,0xde,0x1e,0x1c,0xe8,0xf7, + 0xfd,0x97,0xd9,0x55,0xef,0xf6,0xac,0xe8,0x6c,0xd5,0x4e,0x66,0x07,0x5e,0x76,0x7f,0x6d,0x3e,0xad,0x56, + 0xeb,0xe7,0xad,0xe2,0xfd,0x59,0xb7,0xbe,0x5b,0x3f,0x22,0xfa,0x6a,0x73,0xb8,0x7b,0x35,0xb8,0x9c,0x9c, + 0x8f,0xea,0x75,0x05,0x2f,0xce,0x4b,0xba,0x7b,0x3f,0xa7,0xc8,0xda,0xff,0x77,0x2f,0xa9,0x78,0xa6,0x37, + 0x34,0x94,0x54,0x2a,0xa2,0xe9,0xf7,0xf3,0x31,0xa5,0xdd,0xb9,0xeb,0x19,0xa3,0x56,0x03,0x2a,0xa4,0x59, + 0x32,0x6a,0xfa,0x13,0x37,0xc3,0x73,0x3e,0x3e,0x94,0x4c,0x26,0xa3,0x44,0xe1,0xc5,0xd8,0x05,0x66,0x66, + 0xd7,0xa4,0xd5,0x95,0xa5,0xb6,0x03,0xdd,0xb6,0x2c,0x1a,0x29,0x66,0x79,0x19,0xd3,0xea,0xa0,0x0d,0xc3, + 0x76,0x14,0x95,0xd9,0x15,0x88,0x4d,0x61,0x95,0xc1,0x2e,0x79,0x19,0x6c,0xe9,0x92,0x76,0x54,0x1b,0x67, + 0x0c,0x8b,0x04,0x92,0xda,0xe1,0xc0,0xc9,0x75,0xe2,0x8e,0xe9,0x06,0x9f,0x22,0xee,0xd2,0xc2,0xf8,0x45, + 0x38,0x3a,0xbe,0xad,0x4e,0x22,0x8e,0x66,0x38,0x12,0xd3,0x42,0xf1,0xf8,0x26,0xc3,0xe9,0xe6,0xb8,0xf4, + 0x29,0x64,0x1e,0x66,0x9b,0x00,0xe7,0xa1,0xc5,0x12,0x80,0xd2,0x2f,0xa0,0xf7,0xbf,0x83,0xba,0x9e,0xe1, + 0xdd,0x9a,0xbb,0xa4,0x6f,0x00,0x89,0x76,0x11,0x6f,0xf3,0xfd,0x12,0x41,0x2e,0xad,0x31,0xb2,0x3b,0x46, + 0x2c,0x82,0xe2,0x00,0x63,0x1c,0xa0,0x64,0x74,0xa8,0x4f,0xf2,0x70,0x3d,0x1e,0xc6,0x79,0x89,0x59,0x8e, + 0xe5,0xb2,0x51,0x1f,0xd1,0xaf,0x96,0x3f,0xd2,0xd4,0x93,0x9a,0x4b,0x95,0x78,0x55,0xa0,0xf1,0xbe,0xe6, + 0x5e,0x60,0x54,0x35,0x62,0x8c,0x5b,0x02,0x93,0xc5,0x1c,0x65,0x30,0xc7,0x7c,0x6d,0x08,0x1d,0x4d,0xc8, + 0x98,0x20,0x66,0x40,0x1a,0xad,0xad,0x49,0x6d,0xf0,0xbf,0x98,0xc1,0x71,0xb8,0x49,0x21,0xd2,0x9b,0x6f, + 0xb7,0xfb,0x52,0x7b,0xb4,0x4e,0x06,0xb3,0xd9,0xea,0x14,0x92,0x3f,0xed,0x46,0xb0,0x9c,0xf1,0x3d,0xe8, + 0x2b,0x47,0xd3,0x8d,0x9d,0xdf,0x19,0x6e,0x50,0x2d,0x66,0xb8,0xcc,0xa4,0xf8,0xeb,0xe6,0xb4,0x30,0x26, + 0x68,0x24,0xb2,0x04,0xfd,0xb3,0x3a,0xa6,0x11,0xc9,0x7c,0x8a,0xed,0x3b,0x46,0xb7,0xa4,0xac,0x69,0x63, + 0x73,0x8d,0xc0,0xf1,0x10,0xce,0x1a,0x90,0x17,0x31,0x49,0x86,0x59,0x58,0xb8,0xa3,0x0d,0x7b,0x66,0x21, + 0xc1,0x50,0x1e,0x18,0xed,0xe3,0xf2,0xfe,0x28,0x82,0xd9,0x16,0x8d,0xe9,0xf8,0x7a,0xd6,0xa5,0x0f,0xf7, + 0x4b,0x6d,0x93,0x3a,0xb4,0xe5,0x25,0x6d,0xc7,0x59,0x9d,0xb5,0xa9,0xd9,0x23,0x8b,0x26,0xe1,0x69,0x6d, + 0xce,0x3b,0x1d,0x7b,0x82,0x11,0x32,0xd1,0x0d,0x77,0x59,0x77,0x19,0xbe,0x3c,0x1b,0xb0,0xa5,0xa8,0x0a, + 0x8d,0x50,0xb2,0x4a,0xcc,0xd6,0xc0,0x00,0xe9,0xa7,0xa2,0x1a,0xaf,0xf0,0xab,0xa4,0xe0,0xa5,0xfc,0x58, + 0x04,0xb2,0x29,0x83,0xa6,0xaf,0x84,0xbd,0xe3,0xf7,0x7b,0x20,0xb0,0xa7,0x65,0x7d,0x89,0x6b,0x3e,0xa8, + 0xf6,0x9f,0x77,0x81,0x6e,0x5a,0xbf,0xd5,0x3c,0xad,0x12,0x6a,0x1a,0x19,0x8a,0x3c,0x6d,0xac,0x23,0x53, + 0xd3,0x98,0x29,0x5f,0xe0,0xd4,0xf8,0x20,0x7f,0xd7,0x7c,0x55,0x16,0x31,0xa0,0x62,0xca,0xb3,0x73,0x95, + 0x28,0x57,0x90,0x96,0xa4,0x6e,0x8f,0xe7,0x24,0x6e,0x26,0x76,0x12,0x21,0xb5,0x1d,0xbf,0x2f,0xb1,0x15, + 0xba,0xa6,0x33,0x02,0x3e,0x67,0xdc,0x30,0xf0,0x91,0x4d,0x9e,0xb5,0xcb,0xf7,0x78,0xbe,0xc0,0x39,0x8b, + 0x5e,0x94,0xdf,0x32,0x3f,0x67,0xa6,0xd7,0xc7,0xe7,0x1f,0xc7,0x63,0xf2,0x7c,0x16,0x39,0xf3,0xb9,0xfd, + 0xf2,0xf9,0x0e,0x77,0x83,0x93,0x0e,0x79,0x52,0xfc,0x4c,0x43,0x18,0xad,0xd8,0x71,0xff,0xca,0x6c,0xab, + 0x03,0x5d,0xe3,0xdc,0x5f,0xde,0x6d,0xfc,0x8d,0x8e,0xf4,0x5a,0x21,0xbd,0xf5,0xaf,0xec,0xbf,0xc8,0x2e, + 0xc8,0x2a,0x7b,0x6a,0x51,0x57,0x27,0x95,0x98,0xe0,0x68,0x1e,0xec,0xe2,0xec,0x79,0xe5,0x92,0xc7,0x62, + 0xa8,0x25,0x27,0x19,0xe6,0x44,0x6d,0xa8,0x13,0xba,0xf5,0xe9,0x17,0x24,0x61,0xd7,0x42,0x9f,0xf7,0x09, + 0x8c,0xc4,0x1e,0x8d,0x4d,0xfa,0xa6,0x58,0x4a,0x75,0x48,0x95,0xe0,0x21,0x4e,0x92,0x68,0x92,0xc4,0x9f, + 0x20,0x87,0x8c,0x61,0x28,0x15,0xba,0x13,0x4f,0x57,0x95,0xb4,0x99,0x52,0xb5,0x9d,0xa4,0x2e,0x1d,0xb6, + 0x26,0x01,0x87,0x34,0xee,0x4d,0xe6,0x3b,0xa8,0x99,0x1d,0x83,0x3f,0x04,0x4b,0x3e,0x32,0xae,0xeb,0xd4, + 0xe9,0xa3,0x71,0xac,0x90,0xff,0x56,0x6b,0xf0,0x21,0x57,0x94,0xd2,0x84,0xfa,0x29,0x29,0x50,0x96,0x8f, + 0x85,0x9f,0x3f,0x6f,0xae,0x9b,0x3f,0x2f,0x2f,0x2f,0x7e,0xd6,0x4f,0x4f,0xae,0x9a,0x77,0x57,0x3f,0x7f, + 0xe2,0xc3,0x9a,0x95,0x98,0xf4,0x94,0x6a,0xaf,0xac,0xd8,0x42,0x1c,0x04,0x7c,0xc1,0x86,0x5c,0xc0,0x73, + 0x8c,0x1e,0x5e,0xbf,0x73,0x8c,0x8e,0x1f,0x47,0xce,0x5d,0x9a,0x81,0x71,0x3e,0x92,0x78,0x7c,0x89,0x38, + 0x72,0x9d,0x0b,0x56,0xa4,0xa2,0xa7,0x4a,0xe8,0xd5,0xa9,0x57,0xdc,0x1d,0x81,0xcc,0xc4,0xf6,0x24,0x54, + 0xef,0x08,0xa3,0x2d,0x51,0x67,0x4b,0xf6,0x24,0x2e,0x9b,0xd4,0x8c,0x4b,0xc2,0x82,0xe2,0x49,0x7b,0x6a, + 0x51,0xb2,0x53,0x2a,0xb9,0x86,0x20,0x82,0x48,0xbd,0x4f,0xd0,0xcf,0x1c,0x0f,0x51,0x2f,0xf1,0x6a,0xbc, + 0x5b,0xd1,0xcb,0xf4,0x46,0x02,0x27,0x83,0xb2,0x4f,0x0f,0xb1,0xae,0x8d,0x3a,0xed,0x9c,0x81,0x6e,0xa8, + 0xc4,0xd7,0x64,0x21,0xb8,0x4a,0x4c,0x32,0xe2,0x03,0xdf,0x65,0xf9,0xb3,0xd2,0xdd,0x09,0xc2,0xa9,0x75, + 0xa1,0x6b,0xa5,0x47,0xfd,0x89,0x9d,0xd0,0xbf,0xb3,0xf8,0x82,0x25,0x4f,0xe5,0xf4,0x39,0x59,0x2c,0x6e, + 0xe3,0xd7,0xe4,0x7e,0xe5,0x25,0xf9,0xce,0xde,0x7e,0xf5,0x97,0x4f,0x89,0x86,0x89,0x21,0x27,0x72,0x91, + 0xeb,0x44,0xc8,0x83,0x7a,0x46,0x29,0xab,0xfa,0x6b,0xa9,0xa4,0x7c,0x20,0x93,0xa4,0x2b,0xb8,0xb3,0xe4, + 0xe9,0x2d,0x14,0x8f,0x47,0x80,0x08,0x21,0x00,0x99,0x74,0x39,0x93,0x3d,0xcc,0x42,0x98,0x4c,0xcf,0x48, + 0xa7,0x55,0xf6,0x8b,0x3d,0xd4,0x92,0x2b,0x09,0x8b,0xb7,0x02,0x1b,0x97,0x1c,0xf7,0x43,0xca,0x5c,0x55, + 0xe4,0xd0,0x1f,0x52,0xe6,0x8f,0x1f,0x52,0x6e,0x51,0xce,0xfd,0x50,0x78,0xbb,0x95,0x2c,0x0a,0xb7,0xf9, + 0x75,0x7c,0x44,0xa3,0x43,0x1f,0x13,0x96,0xc7,0x26,0xc5,0x43,0xa3,0x0e,0x1a,0x64,0x84,0xf8,0xd2,0xee, + 0xad,0xfa,0xf8,0xa4,0x7e,0xcb,0x31,0x57,0x67,0xfe,0x4f,0xaa,0xbc,0xcf,0x39,0x46,0xe6,0xe7,0xcf,0x2e, + 0x70,0x81,0x8a,0x32,0x33,0xda,0x6b,0xae,0xa3,0xaf,0xf9,0x4f,0x7b,0xb9,0x6b,0xc3,0x90,0xa4,0x9a,0x99, + 0xc2,0x16,0x4c,0x26,0xeb,0xa6,0xb2,0xcf,0x83,0x47,0x06,0x5c,0x6b,0x2f,0xf0,0x90,0x4a,0xee,0xc5,0x31, + 0xaa,0xcb,0xf9,0xa8,0x6d,0xe3,0xb3,0x23,0x2e,0xf9,0x11,0xce,0xc8,0x98,0x30,0x04,0x6c,0x27,0x36,0x78, + 0x03,0x8f,0xef,0x51,0x8a,0xcb,0x8c,0x0d,0x1a,0xc9,0x9b,0xf3,0x90,0x3c,0x01,0x6f,0x13,0x1d,0x31,0x5b, + 0xa9,0xf8,0xe9,0xdf,0xf8,0xef,0xc0,0xcd,0x60,0x87,0xf7,0xad,0xe4,0x37,0x98,0x42,0xd7,0x1d,0x1c,0xf4, + 0x7d,0xe5,0x3d,0x40,0x4e,0xe9,0x3d,0x2c,0xc7,0x97,0x6e,0x96,0x12,0x2a,0x43,0x24,0xbe,0x6e,0x4c,0x77, + 0xae,0xd2,0x3b,0xd7,0x4f,0x09,0x85,0xab,0x6c,0x23,0xa3,0x1f,0x82,0x70,0x4c,0x13,0x02,0x01,0xad,0x84, + 0x41,0xaa,0x02,0x9d,0xa6,0xf4,0xae,0x8d,0x4b,0xef,0x4c,0x97,0x83,0x3c,0x15,0xd4,0x37,0x25,0x9b,0x21, + 0xff,0xc1,0x66,0xcc,0x34,0x1e,0xa9,0x04,0x6b,0x3f,0x2b,0x17,0xc5,0xa3,0xfa,0x91,0x3d,0xb1,0x3e,0x5b, + 0x35,0xf4,0x25,0x38,0xae,0x70,0x65,0xbc,0xbe,0x61,0x85,0x2e,0x35,0xd3,0x12,0x5c,0x89,0x5a,0x56,0x8a, + 0x21,0x03,0x23,0xd8,0x90,0x37,0x8e,0x61,0xbd,0x02,0x56,0x27,0xd8,0xf4,0xbb,0x78,0xfe,0xbf,0xec,0xe5, + 0xca,0xef,0x2e,0x20,0x9b,0x44,0x88,0xf1,0x0c,0xc9,0x61,0x00,0x06,0x0c,0x92,0x28,0xa0,0xf9,0x2b,0x15, + 0x69,0xd1,0x85,0x2a,0xe9,0x5a,0x31,0x35,0x49,0x08,0x16,0xac,0x1d,0xd5,0x5c,0x3e,0x3e,0xf2,0x9f,0x65, + 0x16,0x3e,0xcb,0x14,0x33,0x5c,0x51,0x46,0x67,0xef,0xe2,0x95,0xde,0xe3,0xd4,0x51,0xb1,0x7f,0xbe,0xbf, + 0x55,0x54,0xc5,0xe5,0xda,0x3d,0xbf,0xee,0x23,0x99,0x12,0xf8,0xc3,0x53,0xcb,0xea,0xd2,0x4e,0xf9,0xd1, + 0x8e,0x18,0x5b,0x63,0x90,0xb8,0xb0,0x0b,0xe2,0x0c,0x8f,0x7e,0xc4,0x98,0x17,0xf9,0xe3,0x3f,0x3d,0x45, + 0xbd,0xbc,0x38,0xdb,0x93,0x2b,0x63,0x1f,0xe8,0x5b,0x53,0x25,0xfe,0xa4,0x77,0x5c,0x3f,0x01,0x17,0xcb, + 0x34,0xf2,0xbf,0x86,0x06,0x46,0x04,0xe4,0xe1,0xd8,0xe5,0x96,0x81,0xc0,0xc0,0xf1,0x9b,0x88,0xfa,0x9d, + 0x46,0x30,0x74,0x22,0x34,0xc0,0x30,0xf8,0x3b,0x35,0x2d,0xfb,0xf2,0x12,0xcd,0x5d,0x65,0x69,0x5e,0xbe, + 0x56,0xd7,0xd5,0x35,0x0b,0xa5,0x17,0xd4,0xf1,0x3a,0x1c,0x44,0x41,0x02,0x11,0x33,0x4c,0x73,0xcc,0xf7, + 0xa7,0xdf,0x69,0x8b,0xcd,0xe3,0xae,0x66,0x0e,0x83,0xb6,0xd6,0xff,0x0a,0x08,0xf8,0x3c,0xb2,0x5d,0x8f, + 0xc3,0x08,0x13,0xcd,0x97,0x67,0x35,0xa0,0x2c,0xdc,0x17,0x45,0x66,0xf6,0xf9,0x13,0x9d,0xd7,0x19,0x0d, + 0x4d,0x43,0x49,0x5f,0xa1,0x47,0x3b,0x94,0x8a,0xec,0xc1,0x99,0x97,0x72,0x59,0x95,0xfc,0x00,0xc5,0x59, + 0x83,0x2f,0xa3,0xb0,0x88,0xb0,0x3c,0x0c,0x8d,0xe5,0x47,0xa9,0xda,0x4b,0xd2,0xe7,0xe3,0xe9,0xd3,0xd8, + 0x14,0x18,0x7b,0x51,0x1e,0x59,0x61,0x86,0x46,0x91,0x48,0xc6,0x38,0x5d,0xa1,0x55,0xc8,0x02,0xb2,0xa9, + 0x9e,0xb5,0x98,0x53,0x25,0x55,0xde,0x91,0x9b,0x5e,0xb2,0x4e,0x19,0x94,0x9d,0x86,0xd9,0xf0,0xe7,0xe3, + 0x43,0x47,0xd2,0x33,0xc7,0x1e,0x99,0xae,0xe8,0x48,0x48,0xfc,0xe9,0x3d,0xc6,0x25,0x77,0x84,0x00,0xb0, + 0xc9,0x28,0x9b,0x57,0xd7,0x8d,0x42,0x4a,0xc5,0x20,0x11,0x25,0x19,0x59,0xc1,0x0c,0xfe,0x77,0xf1,0x16, + 0x4c,0xf2,0x2f,0x70,0xb7,0x0c,0x69,0xe1,0x11,0x90,0xa7,0x2a,0x88,0xcb,0x5a,0x2a,0x66,0xcb,0xfa,0xda, + 0xe0,0xf9,0x66,0x16,0xb6,0xbb,0xfc,0x26,0x75,0x71,0x73,0x11,0x05,0xf3,0x9b,0x08,0x8b,0xb3,0xaf,0x55, + 0xb2,0x71,0x66,0x2d,0xba,0xfb,0xfe,0x05,0x7a,0x0b,0x1b,0x8b,0xa8,0x2d,0x91,0x93,0x9e,0x5c,0x27,0x14, + 0x49,0x41,0xdc,0x84,0x61,0x41,0x8e,0xe9,0x5b,0x22,0x64,0x07,0x9f,0xf3,0x2a,0x30,0x60,0x26,0xfc,0x97, + 0xa4,0x85,0x8d,0x8f,0x6d,0x13,0x90,0x06,0x7a,0xd7,0x87,0x9d,0x0d,0x23,0xc1,0x35,0x22,0xad,0x84,0x6b, + 0x28,0xc4,0x3b,0xf1,0xa1,0x92,0xb4,0x92,0x85,0x7c,0x4a,0x7d,0x49,0xde,0xab,0x6f,0xf1,0xa2,0x72,0xaa, + 0xfc,0xb0,0x54,0x56,0xae,0x8e,0xc7,0x81,0x4c,0x7c,0x58,0x79,0x88,0xca,0xc4,0x77,0xa1,0xcb,0x78,0x78, + 0x8b,0xdc,0x48,0x79,0xd4,0xdb,0xd6,0x0a,0x6e,0x04,0x12,0x01,0xf3,0x80,0x87,0xc5,0xb8,0x20,0xd6,0x9a, + 0x1b,0x34,0xd6,0xc4,0x07,0xc7,0x20,0xc5,0xe2,0xa3,0x63,0xb0,0x1f,0xca,0xd7,0xe3,0x59,0xf8,0x61,0x2c, + 0x6c,0x3f,0x8c,0x05,0x09,0x6f,0x81,0x2b,0xab,0x6c,0x66,0x1c,0xbf,0x33,0xa8,0xaa,0xf1,0x91,0x68,0x15, + 0x3b,0xec,0x0a,0x8b,0xb1,0x29,0xc8,0x63,0xc0,0x3a,0xe6,0x91,0x6a,0xea,0x04,0x7e,0xfe,0x0c,0x20,0xd4, + 0xf1,0xe1,0x3a,0x7c,0x93,0x3f,0x92,0x48,0xde,0x36,0xa3,0x0f,0x18,0x7e,0xcb,0x95,0x89,0x7e,0xce,0x8a, + 0xa0,0xde,0x4b,0x5f,0xc4,0x65,0xcf,0xcf,0xdb,0xcc,0x26,0xb0,0xc3,0x7f,0x90,0x9e,0x96,0xde,0x17,0xe5, + 0xb1,0xd0,0xd9,0x95,0x95,0x21,0xe8,0x6e,0xe3,0xcc,0xc0,0x30,0xc6,0xd5,0xa1,0x39,0x35,0x08,0x48,0xfa, + 0xc8,0x71,0xcb,0xa2,0x16,0x35,0x92,0x64,0xfa,0x1f,0xc9,0x2e,0x31,0x7b,0xd8,0xd8,0x02,0xc5,0xc3,0x02, + 0xef,0x19,0x08,0x40,0x1b,0xc6,0xd8,0xeb,0x57,0x86,0x6a,0x97,0xf6,0xa5,0x53,0x99,0x3c,0xba,0x4f,0x6a, + 0xbf,0xd2,0x59,0x59,0xe9,0x04,0x8f,0x22,0xf3,0x59,0xed,0xef,0x24,0x3b,0xec,0xbd,0x25,0x74,0x6a,0x76, + 0x57,0x56,0xce,0x93,0x7d,0xd5,0x54,0x3b,0x14,0xa2,0x2a,0x65,0xa6,0x54,0x8d,0x64,0xa2,0xf3,0xb5,0x96, + 0xa4,0x1a,0xc7,0xa8,0xa2,0xd3,0x97,0x09,0x8c,0xce,0xe3,0xf0,0x49,0x9d,0x56,0x46,0x2b,0x2b,0xa3,0xa0, + 0x1d,0x17,0x1a,0x27,0x17,0xbb,0x47,0x1f,0x1f,0xdf,0xa6,0xfe,0x23,0x0e,0x78,0xf1,0x94,0x3a,0xaa,0x27, + 0x53,0x65,0xf2,0x15,0xe8,0x2d,0xa5,0x29,0x06,0xba,0xe6,0xd6,0x0c,0x42,0x67,0x2d,0x16,0xd9,0xa0,0x12, + 0x47,0x27,0xa3,0x0c,0x0f,0x7c,0x40,0x1a,0x43,0xd3,0x92,0x85,0x2f,0x9d,0x41,0x83,0xf8,0x13,0x45,0x5c, + 0xe4,0xc9,0x72,0xb1,0x0a,0x5e,0x56,0x01,0xbc,0xf5,0x6d,0x7b,0x00,0x93,0x4d,0x7f,0xe0,0x04,0xa7,0xd0, + 0x73,0x98,0xac,0xc8,0x50,0x63,0xe1,0xfa,0xc1,0x18,0x79,0xef,0xb0,0xdb,0x08,0x26,0x83,0xcf,0x62,0xc9, + 0xaf,0xa5,0xd0,0x08,0x1b,0xc2,0x3c,0x7b,0xd1,0xea,0xb1,0x89,0x30,0x10,0xb9,0xe1,0xe8,0x48,0x62,0x6a, + 0xb1,0x17,0x7a,0x7b,0x50,0x77,0x4c,0x67,0x95,0xfd,0x40,0x04,0xb1,0x39,0xc0,0x20,0x3e,0x77,0x49,0x42, + 0x1c,0xef,0x64,0xae,0x4b,0xba,0x2a,0xcc,0x75,0xa9,0x07,0xc4,0x7e,0x9e,0x9c,0xc2,0x74,0xeb,0x6a,0x2f, + 0x85,0x53,0x3f,0x25,0x53,0x2f,0x86,0xfd,0x38,0x0f,0xae,0x85,0xb0,0xa8,0x7d,0xb4,0x99,0x10,0xea,0xb8, + 0x94,0xca,0x7c,0xed,0xd9,0x33,0xc7,0x81,0x81,0x8c,0xc9,0x49,0xf4,0xe5,0x61,0xb6,0xa1,0x72,0xd9,0xc9, + 0xa0,0xa9,0xbe,0xea,0xec,0xa7,0xe3,0xed,0x11,0x92,0xd5,0xb6,0xed,0xa1,0xa1,0x09,0x39,0x3b,0x1e,0xbb, + 0xdc,0x5f,0x62,0xd1,0x02,0x39,0xe3,0xc9,0x2e,0xf0,0xfd,0x62,0x7a,0x49,0xc4,0x4e,0xbd,0x07,0xdd,0xbd, + 0xc3,0x7b,0x06,0x76,0x8a,0x5d,0xd0,0x35,0x68,0x28,0x14,0xfe,0x97,0xbc,0x12,0xe8,0xf3,0x14,0x1a,0x74, + 0xd0,0xe3,0x78,0x25,0xdf,0xec,0x0b,0xe9,0x88,0x47,0x1a,0xe4,0x91,0x41,0x58,0xd4,0x41,0xb2,0xab,0x7a, + 0x95,0xb5,0xc7,0x6f,0xff,0x48,0xa6,0xfe,0x78,0xfa,0xbf,0xbb,0xfb,0xf6,0xf5,0xb6,0x8d,0x2c,0xcf,0xff, + 0xf7,0x29,0x20,0xc4,0x63,0x03,0x21,0x44,0x49,0x49,0x3a,0x3b,0x03,0x06,0xe1,0x27,0xdf,0xe2,0x74,0xec, + 0xc4,0x6d,0x3b,0xc9,0x76,0xcb,0x6a,0x2f,0x48,0x16,0x25,0x58,0x14,0xc0,0x00,0xa0,0x64,0x59,0xe2,0xbe, + 0xcf,0xbe,0xc6,0x3e,0xd9,0x9e,0xdf,0x39,0x55,0x85,0x02,0x08,0xca,0x76,0x92,0xed,0xf9,0x76,0xa6,0x27, + 0x16,0x58,0xa8,0x2a,0xd4,0xe5,0xd4,0xb9,0xd5,0xb9,0xec,0x9d,0x44,0xaa,0xcf,0x6b,0xcb,0xff,0x37,0x28, + 0x5f,0x5b,0x21,0x61,0x6d,0x56,0xd0,0xe0,0xe0,0x6b,0x24,0x22,0xa7,0x4e,0xfe,0xed,0x8b,0x07,0xd4,0x41, + 0xd9,0xeb,0xf6,0xa5,0xf2,0x29,0xb5,0xfc,0xf9,0xc5,0xf7,0x56,0x07,0x48,0x2f,0x6d,0x48,0x8b,0x9a,0xb6, + 0xc3,0xf9,0x49,0x08,0xd1,0x8f,0x88,0xcc,0x44,0x45,0x9d,0xcc,0x54,0xb7,0xa1,0xac,0x46,0xef,0x57,0x74, + 0x08,0xe1,0x9b,0x9b,0xcd,0xe4,0xa6,0xe3,0x3a,0xb6,0xd9,0x10,0x1d,0x48,0x61,0x6f,0x9f,0x26,0x0b,0x9e, + 0x51,0x59,0xdb,0x28,0xba,0x76,0x4c,0x08,0x24,0x3d,0xbe,0xf9,0xec,0xe6,0x6e,0xb8,0x17,0xf9,0x7e,0x18, + 0x8e,0x03,0x9b,0x67,0xf3,0xae,0xbf,0x25,0xe3,0x8d,0x89,0xc3,0x66,0xfb,0x78,0x3d,0xa0,0x05,0xc2,0x65, + 0x80,0x69,0x9a,0xf8,0x08,0x68,0x5e,0x20,0x8f,0x4d,0x75,0x9a,0xcd,0x71,0x61,0x0a,0x57,0x19,0x9b,0xda, + 0x67,0xcc,0xaf,0x24,0x00,0x07,0xd5,0x0d,0x63,0x71,0xe7,0x32,0x1e,0xf0,0x48,0x46,0x39,0xc6,0x3f,0x49, + 0x11,0x77,0xe2,0x82,0x53,0x61,0xc8,0xaf,0x24,0xc4,0x5c,0x11,0xc6,0x5c,0xef,0x08,0xff,0x46,0x05,0xe7, + 0xe0,0x51,0x54,0xd6,0x04,0x12,0xae,0x9c,0x95,0xa8,0xc7,0xed,0x7c,0x8c,0x84,0x49,0x97,0x6d,0x56,0x47, + 0x4f,0x0d,0x29,0x58,0xdd,0x38,0xa4,0x79,0x13,0x26,0xc3,0x46,0x74,0xb6,0x85,0x5e,0x59,0xeb,0x50,0x74, + 0xdd,0xa0,0xa8,0x26,0x3e,0x49,0x93,0x2b,0x64,0x4b,0x52,0x39,0x37,0x73,0xbc,0xe9,0xbe,0x1e,0x97,0x32, + 0x47,0xee,0x3e,0x8c,0xdd,0x5f,0x03,0x5a,0xb5,0x41,0x89,0x99,0x49,0x4e,0x28,0x13,0xcc,0x84,0xb6,0x6c, + 0xed,0x0e,0xca,0xd4,0xcb,0x99,0x8d,0xbd,0x35,0xeb,0x94,0xd9,0x1a,0x54,0xb4,0x9d,0xc5,0xae,0x5b,0x93, + 0x1a,0xfb,0x63,0x7f,0x80,0x64,0x45,0x7c,0xbe,0xa6,0x74,0x34,0x5e,0xef,0xb5,0x42,0x5e,0x83,0x1d,0x6e, + 0x23,0xa8,0xf2,0xee,0xdd,0xd2,0xf2,0x4a,0x36,0x15,0xea,0xdf,0x56,0xaa,0xbc,0x62,0x86,0xe2,0x37,0x3c, + 0x49,0x5c,0xd0,0xf2,0xea,0x3a,0x4b,0x16,0x88,0x31,0xd1,0x64,0xce,0xd3,0xa9,0x7b,0x85,0xb9,0x51,0xcc, + 0x4a,0xdc,0xdc,0xb0,0x5e,0x9e,0xb9,0x8a,0x73,0x85,0x18,0x86,0xf8,0x89,0x27,0xf6,0x48,0x94,0x94,0x37, + 0x9c,0xca,0x86,0x8e,0xcb,0x9e,0x0f,0x6d,0x0e,0x0a,0xf0,0x07,0xce,0x61,0x11,0x7f,0x31,0xce,0x4c,0x52, + 0x5a,0xa5,0x71,0x97,0xa4,0xc8,0xa2,0xd9,0x22,0x40,0x52,0x3c,0x83,0x4b,0x5d,0x11,0x46,0x9a,0xd2,0xc6, + 0xf5,0x78,0x89,0xc5,0x8e,0x8f,0x8e,0x6d,0xd2,0x6a,0x44,0x35,0x4e,0xe1,0x6e,0xc5,0xec,0x83,0x9a,0x3d, + 0x26,0x81,0x29,0xa1,0x76,0x39,0x62,0x31,0x18,0xf7,0xa5,0x79,0xa9,0xd4,0x7b,0x85,0x1b,0x01,0xbb,0x46, + 0x8b,0x5a,0xc7,0x05,0xef,0x26,0x29,0x6d,0x32,0x91,0x02,0x2a,0x17,0xb5,0xf8,0xd6,0xf5,0x25,0x34,0x76, + 0x0e,0x76,0x8b,0x8b,0xac,0xc5,0x69,0x0d,0x5f,0x40,0xfc,0xa5,0x26,0x44,0x55,0x8b,0xa5,0x9c,0xd7,0x09, + 0xed,0x13,0x73,0x03,0x92,0x20,0x88,0x56,0x69,0xed,0x24,0x6f,0xe6,0x99,0xb6,0x1c,0xe5,0x46,0xf5,0x28, + 0xe4,0xe8,0x8d,0x7c,0x94,0x71,0x33,0x62,0xb3,0xe2,0x35,0xdf,0x68,0x82,0x4b,0xd7,0x2e,0xb7,0xa0,0x13, + 0x16,0x21,0xb2,0x2b,0xaf,0x7c,0x73,0xc8,0x4b,0x76,0x00,0x23,0x16,0xc0,0x26,0x74,0xc1,0x1e,0xb5,0xf3, + 0x84,0xd9,0x68,0x18,0x84,0x9a,0xa2,0x20,0xe7,0x1d,0x0d,0x07,0x01,0x01,0x41,0x55,0x87,0x41,0x19,0x0e, + 0x0a,0x27,0x11,0x6e,0xdd,0xba,0xbf,0x40,0xfa,0xaa,0x39,0xa1,0x47,0xa0,0x93,0x78,0x07,0xac,0x49,0x20, + 0x63,0xe1,0xf4,0x05,0xf4,0x77,0x2c,0x3f,0x2d,0x16,0x9b,0xd6,0x40,0x80,0xec,0xd8,0xd6,0x53,0x0e,0x20, + 0xc3,0xf8,0xf8,0x3d,0x1e,0x88,0xc6,0x43,0xf8,0xe3,0x49,0x45,0x1a,0x90,0xc3,0x18,0xe1,0x53,0x35,0x98, + 0xee,0x08,0xbc,0x8a,0x7c,0x8a,0x27,0x6e,0x8a,0x87,0x8f,0xeb,0x4b,0x17,0x0a,0x78,0x46,0x06,0x4e,0x43, + 0x37,0xbd,0xd6,0x79,0x6d,0xa3,0x64,0xf6,0x84,0x05,0x6e,0xd0,0x29,0xc7,0x41,0xe1,0x48,0xc1,0xcc,0xa5, + 0x59,0x48,0xc3,0x3b,0x1d,0x03,0xb8,0x93,0xa8,0xb6,0xdc,0x92,0xa8,0x36,0x6f,0x12,0xd5,0x96,0xd6,0xff, + 0x2f,0xef,0x4b,0x54,0xab,0x7d,0x25,0xe1,0x3c,0x58,0xb4,0x04,0x1b,0x41,0x6f,0xa5,0xc4,0xe9,0x45,0x5c, + 0x2b,0x28,0xe0,0x8b,0x78,0x03,0xcc,0xcb,0x1e,0xd0,0x2f,0xc6,0x34,0x65,0xf8,0x67,0x1b,0xa2,0x57,0x3a, + 0x29,0x80,0x0b,0x16,0x38,0xed,0xe2,0x5c,0xd4,0x9d,0x20,0x51,0x4d,0xa8,0x78,0x8e,0x5a,0xb6,0x87,0x38, + 0x50,0xa5,0x5d,0x0b,0x2e,0x1b,0x73,0x19,0x81,0xd9,0x67,0xad,0x97,0x6a,0x50,0x8f,0x0c,0xc3,0xa5,0x29, + 0x1c,0xc1,0xe1,0x88,0x50,0x40,0x71,0x54,0x58,0xd7,0xd1,0xe3,0x9b,0x9b,0x62,0xb8,0x2c,0x96,0x41,0x13, + 0x22,0x2c,0x73,0xa9,0xe4,0x3f,0x5f,0xef,0x31,0x8d,0x75,0xba,0x88,0xd2,0x64,0x7f,0x94,0x7e,0x63,0x72, + 0xde,0x8d,0x52,0x93,0x90,0xb9,0x4a,0xc0,0xda,0x8c,0xfc,0xe1,0x10,0x03,0xa9,0xc6,0xba,0xe3,0xd8,0x1f, + 0x22,0x1a,0x79,0x05,0x29,0x85,0xa9,0x41,0x65,0xf0,0x3d,0xe7,0xd2,0x2b,0xd8,0xed,0xb2,0xb0,0x47,0x15, + 0xa7,0xa6,0xd0,0xd8,0x7c,0xcf,0xcd,0x64,0x75,0x52,0xb7,0x70,0x7f,0x43,0xc8,0xe9,0x7f,0x20,0xe5,0xa8, + 0x8c,0x61,0x5c,0xd5,0xed,0xbc,0x1c,0x37,0x37,0x3d,0x4c,0x94,0xc9,0x94,0xce,0x35,0x90,0x28,0x7d,0x6b, + 0xa6,0x75,0x9b,0x3f,0x3d,0x9a,0xd4,0xc9,0xc3,0x3a,0x3a,0xac,0x93,0xb3,0x3a,0x7a,0xd0,0x75,0x54,0xd7, + 0xe3,0x7a,0x59,0x07,0x67,0x02,0xe0,0xec,0xea,0xfe,0xa6,0xa6,0x8d,0x8e,0x2e,0xeb,0xe4,0x6d,0x1d,0xdd, + 0xaf,0x25,0xca,0xb1,0x3a,0x79,0xf4,0x6e,0x19,0x1c,0xf9,0xc1,0x6b,0xfa,0xbf,0x61,0x48,0xdc,0x55,0x70, + 0xf4,0xfa,0xf5,0xde,0x90,0x78,0x84,0x60,0x1c,0xd3,0xff,0xbf,0x7e,0x1d,0xd3,0xbb,0xcb,0x41,0xc8,0xcf, + 0x41,0xc0,0x7f,0xa8,0xea,0xcd,0xd1,0x3f,0xf1,0x17,0xde,0x83,0x83,0xf0,0xf5,0x6b,0xe2,0x7b,0x6e,0x6e, + 0x7d,0x1d,0x1c,0x0d,0x3e,0x1f,0x53,0xaf,0x37,0xd4,0xdb,0xe7,0x61,0xe8,0x1f,0xeb,0x55,0xbd,0xa1,0x15, + 0xf6,0x4f,0x7c,0x07,0x7d,0xea,0x21,0x6f,0x06,0xdb,0xd9,0x27,0x82,0xb7,0x4f,0x1b,0x4e,0x34,0xa8,0xc2, + 0x91,0x54,0xb0,0xc7,0xc9,0xce,0x33,0x0e,0x75,0x8d,0x4b,0x43,0xf1,0xc7,0x0c,0xf2,0xe4,0x7e,0x3d,0x54, + 0xef,0x14,0x52,0xcb,0x87,0x36,0x3a,0x7a,0x8e,0xd8,0xf1,0x2b,0xfa,0x73,0x70,0xcc,0x89,0x1d,0x39,0x36, + 0x1e,0x07,0x82,0x1b,0x20,0xc8,0x34,0xc7,0xbe,0xcd,0xa2,0x45,0x48,0x1f,0x59,0x0c,0x4c,0x0e,0xe9,0x68, + 0x15,0xd2,0xeb,0x15,0xb5,0x71,0xfd,0xdc,0x6b,0x44,0xb8,0x59,0x52,0x57,0x5f,0x10,0xdb,0x4c,0x7f,0xbe, + 0x84,0xb8,0x9a,0x23,0xf9,0xc7,0x39,0xfd,0xf9,0x0b,0x84,0xca,0xfc,0xe8,0xeb,0xe3,0xe8,0x84,0xfe,0xfc, + 0xf7,0xe3,0x51,0x0a,0x3c,0xad,0x93,0xa3,0x84,0x3c,0x7e,0xc1,0xd8,0x57,0x89,0x0c,0x78,0x49,0x08,0x80, + 0x1f,0xe6,0x77,0xef,0xce,0x09,0x08,0x97,0xd1,0x84,0x98,0x0e,0x80,0xed,0x05,0xcd,0xeb,0x73,0x7e,0x88, + 0x0e,0x13,0x39,0x5b,0x4e,0xd1,0x03,0x1e,0x01,0x61,0xf2,0xe8,0x4d,0x42,0xa4,0xf9,0x7c,0xa4,0x3f,0x22, + 0xc4,0x7e,0x46,0x87,0x09,0xc2,0x7a,0x49,0x32,0xcb,0xbb,0x78,0xc9,0xa4,0xdb,0xae,0x57,0xfc,0x40,0xdf, + 0x1e,0xa7,0x8b,0xf8,0x30,0x22,0xe8,0x55,0x69,0x1d,0x4f,0x40,0xd2,0xeb,0x8c,0x8a,0xae,0xa2,0x14,0xa2, + 0x6c,0x56,0x9d,0x11,0xe2,0x3f,0x01,0x4b,0x40,0xbf,0xf2,0xf8,0xcd,0xf8,0x55,0x1d,0xbc,0x09,0xe3,0x93, + 0xb1,0x3f,0xfc,0xdc,0x8f,0x91,0xb6,0x63,0x70,0xa7,0x0e,0x1e,0x10,0x97,0x74,0x3c,0x18,0x13,0x0d,0xb4, + 0xd9,0xca,0x33,0x9b,0x3d,0x06,0x44,0x9e,0x17,0x58,0xa2,0xf7,0x21,0xce,0x60,0x0a,0x96,0xc6,0x2c,0x47, + 0xe9,0x64,0x87,0xab,0xfb,0xe4,0x02,0x57,0x1c,0xd8,0x3b,0x22,0x7e,0xe9,0x33,0x48,0x23,0x3d,0x2c,0xd8, + 0x87,0x64,0x11,0xfa,0xf1,0xf3,0x72,0xa9,0xca,0x07,0x24,0x83,0x05,0x6d,0x4c,0xf7,0xb2,0x0b,0x72,0x7c, + 0x38,0x34,0x5f,0x61,0xa2,0x27,0x23,0xcd,0x8e,0x9b,0x16,0x07,0xb9,0xdf,0x37,0x59,0x0b,0xe2,0xa2,0xc1, + 0x81,0x82,0xa5,0x76,0x0e,0x98,0xff,0x4f,0x3a,0x18,0x34,0x3c,0x66,0xbb,0x65,0x35,0x07,0x7e,0x78,0xc7, + 0x8f,0x7e,0x62,0xd6,0xb4,0x49,0xdf,0xd9,0xe8,0x8a,0xdd,0xf8,0x74,0x00,0xf9,0x0c,0x39,0x25,0x38,0x28, + 0x7c,0x50,0x72,0x40,0x0c,0xc8,0xfd,0x75,0x7d,0x35,0x7e,0x57,0xc7,0x9b,0x42,0x94,0x4e,0x0e,0x60,0x07, + 0x5b,0x19,0xbc,0x38,0x25,0xe8,0x15,0x0d,0xc7,0x46,0xb4,0x2f,0x9d,0x8b,0x10,0xf1,0x20,0xb2,0xa3,0x29, + 0x13,0xda,0xe3,0x86,0x5b,0x5f,0x30,0x95,0x9c,0x0e,0x0d,0xdc,0x90,0x50,0x3c,0xd4,0xf0,0x02,0x06,0x63, + 0x90,0x4c,0x87,0x02,0x6b,0x24,0xe5,0x16,0x79,0x9d,0xe5,0x2b,0xb5,0x96,0x80,0x05,0x58,0x87,0x57,0xf4, + 0x09,0xd1,0x79,0xde,0x7b,0x64,0xc2,0x16,0xf8,0xf7,0x06,0xf2,0x95,0xc1,0x3d,0xdf,0xab,0x0b,0x6f,0xa2, + 0x3c,0x2d,0x60,0xdf,0x0b,0xa1,0x24,0xba,0x6a,0x62,0xda,0x4d,0x87,0x02,0xa3,0xe1,0xa7,0xf5,0x88,0x8c, + 0x84,0xd2,0x30,0x82,0x61,0x21,0x3d,0x4f,0x55,0x76,0x81,0x64,0x86,0xf7,0x06,0x9c,0x80,0xda,0x32,0xd4, + 0xf4,0xa5,0x81,0xff,0x3f,0x7d,0x26,0x6c,0xa0,0xf8,0x0b,0x1b,0x33,0xbb,0x3d,0x69,0x33,0xb5,0xd1,0xa7, + 0x0f,0x84,0xa6,0xa7,0xce,0x97,0xf5,0x15,0x4d,0xce,0x6c,0xec,0x9c,0x36,0x69,0xfe,0x8d,0xf9,0xd6,0x68, + 0x8e,0x4d,0x82,0x19,0x4a,0x92,0x06,0x0b,0x84,0xca,0x88,0x76,0x72,0xda,0x2c,0xc9,0xc1,0xb2,0x0a,0x3f, + 0x30,0x79,0x64,0x73,0xed,0x7e,0x97,0xd9,0x6f,0x29,0x35,0x60,0x77,0xcf,0xff,0xe0,0x5a,0xac,0xf4,0x5a, + 0xd0,0xa6,0xf2,0x62,0xcc,0xc7,0x66,0x6f,0xe3,0x69,0x83,0x73,0xc3,0xc1,0x6a,0x6d,0xa3,0x92,0xae,0x68, + 0xfb,0x0d,0xce,0x18,0x37,0x67,0x77,0xe1,0x9e,0xdd,0x3f,0xef,0xe4,0xc6,0xb4,0x3e,0x9f,0xb6,0x38,0xbf, + 0x67,0x61,0xe8,0xed,0x8a,0x4a,0xef,0xf1,0x42,0x98,0x15,0x30,0x93,0xf6,0x50,0x66,0xa3,0x66,0xac,0x1b, + 0x5c,0x72,0x67,0x0b,0x67,0x10,0x1c,0x0d,0x89,0x02,0x26,0xff,0xdc,0x89,0xef,0x5c,0xaf,0x83,0xf0,0xe8, + 0xf5,0xf1,0x0d,0x31,0x0b,0xaf,0x8f,0x43,0xb0,0x0b,0xaf,0x5f,0xdf,0x39,0x70,0xd9,0x8b,0x57,0x5b,0x3b, + 0x49,0xa8,0xfd,0xeb,0x3d,0xd0,0xd5,0xbe,0x76,0x8f,0xda,0x2c,0xbc,0x70,0x9f,0x89,0x8a,0xea,0xa6,0xca, + 0x4f,0xad,0xae,0xc1,0x49,0x57,0x2a,0xaf,0x32,0x68,0x6b,0xc7,0x3e,0x21,0xf5,0xcc,0xc9,0x21,0xf4,0xd6, + 0x72,0x80,0x57,0x35,0xa7,0xe1,0x24,0xda,0x4a,0x58,0x28,0x8f,0x20,0xd4,0x34,0x4c,0x5a,0x09,0x9a,0x9b, + 0x0b,0x52,0x02,0x14,0x11,0xc3,0x5f,0x24,0x3b,0x07,0xc8,0x5c,0x33,0x54,0xf9,0x2c,0x42,0x42,0x36,0xcd, + 0xa8,0xd5,0x3d,0x8c,0x5a,0xad,0x43,0xd8,0x6c,0x04,0xb9,0xa8,0x90,0xaf,0x8d,0xd6,0xb3,0x72,0xa2,0xcc, + 0x4c,0xb9,0xc0,0xa0,0x1a,0x18,0xef,0x31,0x66,0xad,0x1c,0xb4,0x6a,0xb3,0xb4,0x55,0x61,0x54,0x69,0xc4, + 0x01,0xab,0xbb,0x81,0xae,0x3b,0xa5,0x6d,0xf5,0xc3,0xcf,0x89,0xf1,0xa0,0xee,0x57,0x49,0x65,0x4f,0xf7, + 0xb8,0x32,0x18,0x6d,0x3c,0x1d,0xf8,0x81,0xcf,0xf5,0xc6,0xb4,0x26,0xba,0x99,0x29,0x42,0x59,0xf3,0xcb, + 0x17,0x6d,0xd9,0x02,0x03,0xcb,0x3b,0x2c,0x49,0x18,0xcd,0x93,0x4c,0x33,0x17,0xbb,0x16,0xa7,0x00,0xbf, + 0xd8,0x1c,0x8f,0x50,0xc2,0x25,0xc1,0x7c,0x6c,0xaa,0xed,0x47,0x4d,0xc5,0x38,0xa3,0x93,0xc8,0x1f,0x5f, + 0xe0,0x6f,0x72,0x07,0x9f,0xe6,0x61,0x17,0x63,0xff,0x8e,0x1f,0x13,0x87,0x3f,0xe7,0x4d,0xa3,0x77,0x5c, + 0xe7,0xe6,0x0e,0xb1,0x70,0x04,0x04,0x2d,0xd2,0xe3,0x0f,0x32,0xd0,0x99,0x9c,0x35,0x3b,0xcd,0xe6,0x3e, + 0xb4,0x9b,0xab,0x87,0xd2,0xb7,0xc7,0x91,0xde,0xd8,0xa8,0x76,0x33,0xbc,0x4b,0xd7,0xe3,0x36,0xd3,0x69, + 0xc4,0xd5,0xaa,0x58,0x95,0x53,0x65,0xa2,0xff,0x12,0x4f,0x38,0xde,0x79,0x3d,0xe6,0xb8,0xbf,0xa0,0x25, + 0x61,0x03,0x34,0xa0,0xa6,0xb9,0x4b,0x4d,0x95,0xcb,0xbf,0x94,0x86,0x75,0x61,0x41,0xbb,0xe1,0x5c,0xf8, + 0xa7,0x65,0x5e,0x76,0x0e,0x0c,0xf7,0x42,0x4f,0x86,0x7d,0xa1,0xc7,0x86,0x7f,0x39,0xb0,0xec,0x0b,0xdb, + 0xbd,0x59,0x52,0xab,0x8f,0xca,0x9a,0xff,0x8d,0xaf,0x70,0x2a,0x5a,0x13,0xea,0x89,0x9e,0xb8,0x3f,0x2a, + 0x1a,0x00,0x26,0xe6,0x2a,0xd4,0x6c,0x0c,0x56,0x12,0x71,0xdc,0xd0,0x46,0x4f,0xdf,0xfd,0x8c,0xbb,0x19, + 0xbc,0x99,0x65,0xc3,0xfb,0x02,0x7e,0x9c,0xcd,0xd1,0x1f,0x8e,0xbb,0x03,0xd1,0x9d,0xbd,0xd5,0x0c,0x7d, + 0x1e,0x4a,0xae,0x6a,0x93,0xb3,0x7a,0x52,0x4b,0x8a,0xa1,0xe4,0xb0,0x26,0xc1,0x60,0xa8,0xad,0x50,0x93, + 0x07,0xfc,0xab,0x2e,0xce,0xe8,0x80,0xbf,0x2a,0x1e,0xeb,0x3e,0x93,0x37,0xad,0x62,0x19,0x59,0x72,0x29, + 0x02,0xda,0xf7,0x75,0x5f,0xca,0xad,0x86,0x39,0x7f,0x61,0x81,0x46,0x09,0x3f,0xc2,0x6a,0x27,0x59,0xa3, + 0xef,0x6b,0x8e,0x6a,0x15,0xf0,0xdf,0xa4,0x19,0x07,0xb3,0xe1,0xdd,0x00,0xc2,0x46,0xb7,0xce,0xaa,0x02, + 0xce,0xda,0xa3,0x63,0xf8,0x24,0x4e,0x11,0xf1,0x5c,0xc4,0x09,0x5d,0x0b,0xa3,0x23,0x99,0x0d,0xac,0x66, + 0xcb,0x48,0x6d,0x6b,0xe2,0x18,0x88,0xf4,0x5d,0x5d,0x6b,0x05,0x36,0xfa,0x70,0xd0,0xf1,0xb3,0x0d,0x8d, + 0x5a,0x4f,0x86,0x68,0x51,0xe3,0xd4,0x6b,0x31,0xf5,0x2d,0x86,0x6f,0x72,0x04,0xbb,0x41,0x68,0x27,0x6b, + 0xe8,0x52,0xc8,0x1b,0x56,0x48,0xe8,0x18,0x80,0x41,0x21,0x7a,0xf8,0x1a,0x77,0x30,0xac,0x5b,0xb0,0x49, + 0x66,0x7b,0x24,0x6f,0x18,0xfe,0x16,0xba,0x9e,0xb4,0x03,0x2f,0x5c,0x80,0xd1,0xd9,0x29,0xb4,0x5e,0xc5, + 0xbc,0x27,0xd9,0x26,0xbc,0x36,0xdd,0x17,0xd4,0xbd,0x33,0x20,0x63,0xdb,0x99,0xd2,0x5b,0x7e,0x6f,0x15, + 0x1b,0x51,0xe1,0xc6,0x08,0xd6,0xca,0x13,0x19,0xb2,0xd6,0x9b,0xd8,0x1a,0x49,0x2a,0x59,0x9b,0xb9,0x9e, + 0xd6,0xd1,0xb5,0xb2,0x84,0xe0,0x32,0xc1,0xdc,0x92,0x75,0x6b,0x90,0xa0,0xce,0xe3,0x1d,0xc9,0xb0,0x13, + 0x82,0x89,0x2a,0x4a,0x23,0xd9,0xb7,0xb0,0x13,0xde,0xbd,0x10,0x55,0x67,0x4f,0xca,0x15,0xa2,0x09,0x39, + 0xfe,0x29,0x9d,0x84,0x24,0xfe,0x67,0x08,0x63,0x25,0x91,0xca,0x95,0x15,0xcb,0x4a,0x51,0x98,0x19,0xfc, + 0x58,0x86,0x8d,0xc6,0xcb,0x36,0x1c,0x37,0xf1,0xaf,0x0a,0x69,0x9f,0xdb,0x26,0xc5,0xe0,0xa0,0xdd,0x03, + 0x14,0x8c,0x7a,0xcf,0xb5,0x3a,0x33,0xd7,0x6a,0xce,0xf5,0x3a,0x28,0x8c,0xee,0xd3,0x07,0x79,0x51,0x46, + 0xdb,0x25,0xca,0xd0,0x45,0x32,0x15,0xdd,0xd7,0x45,0x1d,0x4c,0x75,0xbe,0xef,0x28,0x87,0xde,0x22,0x25, + 0x0e,0x25,0x9f,0x85,0xf1,0x8a,0x50,0xfe,0x46,0x90,0xed,0x0d,0x45,0x92,0x44,0xc2,0x82,0x4a,0xff,0xe6, + 0x26,0xad,0xf9,0x10,0x95,0x49,0x11,0xd4,0xfc,0x59,0x07,0xc8,0xa9,0xae,0xe5,0x16,0x33,0xb9,0xe8,0x36, + 0xc1,0xdf,0x10,0x7d,0x12,0x21,0x28,0x3b,0x89,0x3f,0xd3,0x70,0x9c,0xb2,0x02,0x34,0xab,0x89,0x7e,0x20, + 0xb8,0xad,0x55,0x68,0xaf,0x69,0xc8,0xa2,0x22,0x2b,0xf4,0xdf,0x96,0x76,0x99,0x51,0x08,0x6b,0x96,0x11, + 0x62,0xbd,0xd0,0x1a,0xdf,0x69,0x4b,0xab,0x48,0xb2,0x2a,0xed,0x11,0x84,0xd4,0x46,0x19,0x44,0x73,0x5a, + 0x26,0x54,0x3a,0x58,0xd2,0xaa,0x3a,0x90,0xca,0x77,0xeb,0x58,0xe4,0x85,0x5e,0xe4,0xb9,0x2c,0xf2,0x52, + 0x08,0xe6,0xe3,0x3a,0x7a,0xde,0x4a,0xf7,0xb0,0x8e,0x9e,0xd6,0xed,0xdb,0xfa,0xa7,0xec,0xe3,0xa1,0xef, + 0xe7,0xeb,0x42,0xdf,0xce,0x1f,0xe9,0xeb,0x79,0x41,0x54,0xc7,0x91,0x49,0x51,0xce,0x79,0x81,0xea,0xf4, + 0x64,0xcb,0x25,0x7e,0xea,0xaf,0xb5,0xdf,0xcb,0x7d,0xb9,0x80,0x8b,0x64,0xcb,0xec,0x4f,0xcd,0x65,0x35, + 0xaf,0xf9,0x0a,0x5b,0xdc,0x31,0x74,0x67,0xdc,0xfe,0x70,0xb3,0x3c,0x2d,0xb3,0xf4,0x01,0x67,0x4b,0xab, + 0x39,0x37,0xc0,0x96,0x21,0x2c,0x25,0x3c,0x13,0x07,0x7a,0xea,0x4c,0x46,0x74,0x3f,0x4d,0x55,0x76,0x39, + 0xea,0x35,0x38,0x70,0x93,0x99,0x45,0x3a,0xfb,0xae,0x58,0x06,0x94,0x26,0xdf,0x9c,0x36,0x14,0xc0,0x85, + 0x51,0xa9,0xaa,0x62,0x71,0xa1,0xb4,0x09,0x73,0x11,0x95,0x12,0x2a,0x4c,0x43,0x2b,0xb1,0x66,0x92,0xe7, + 0x1b,0x5d,0x47,0xb0,0x3f,0x90,0x96,0x15,0xb6,0x9f,0xc8,0x6f,0x34,0x45,0x6a,0xac,0x15,0xf5,0x63,0x80, + 0x04,0x6e,0x37,0xce,0x02,0xb0,0x2a,0xc5,0x7d,0xf7,0xa8,0xb3,0x42,0x74,0x1a,0x44,0x7e,0x5c,0x8d,0x5d, + 0xcf,0x9d,0x5d,0xed,0x7e,0x43,0xc7,0x65,0xa9,0x2b,0x2c,0xda,0x15,0x78,0xa9,0x6d,0xb5,0x05,0x14,0x2d, + 0x72,0x89,0xc7,0xc3,0x6f,0x3e,0x30,0x9e,0xc7,0xdd,0x22,0x68,0x63,0x9a,0xba,0xdd,0x3d,0x1b,0x2f,0xe3, + 0xde,0xf2,0xe8,0x3c,0xe9,0x5e,0x47,0x8c,0x8d,0x9e,0xff,0x59,0xbd,0x71,0x55,0x61,0x43,0x5d,0xc7,0xe9, + 0x68,0x7a,0x74,0x7a,0x9c,0x9c,0x42,0xb1,0x4a,0xc5,0xd3,0xa3,0xd9,0xb1,0xf3,0xe5,0x31,0x5e,0xc6,0xbd, + 0xfa,0x39,0xc9,0x92,0xb6,0xa1,0x2b,0x27,0xb6,0xb1,0xc9,0xd0,0xd4,0xfb,0x1a,0x47,0x6e,0xc7,0x5c,0xc9, + 0x74,0x54,0xe1,0xf4,0x6e,0x4b,0xd0,0x6a,0x41,0x1f,0xa0,0x37,0x81,0xbe,0xed,0x68,0xf2,0x37,0xea,0x87, + 0xfd,0xf5,0x86,0x16,0x7d,0xcd,0xb3,0x62,0x7c,0x75,0x91,0x60,0x2e,0xe2,0x5b,0xb1,0x01,0xf1,0xbc,0x1a, + 0xed,0x54,0x54,0x3f,0x82,0xa9,0x02,0xc6,0x33,0xe3,0x1f,0xe7,0x76,0x26,0x19,0x1d,0xfe,0xd0,0xa4,0x04, + 0xe6,0x1f,0xe1,0x3a,0xba,0x4a,0xb4,0xab,0xdd,0x8f,0xf5,0x7a,0xd4,0xb9,0xde,0xe1,0x05,0xc5,0xc1,0x09, + 0xc7,0xcd,0x73,0xff,0x65,0xe0,0x15,0xf8,0x8f,0x13,0xc8,0x89,0xf4,0x64,0xeb,0x52,0x11,0xcf,0x62,0x82, + 0x8f,0xe0,0xec,0x4e,0xd7,0xd1,0x61,0xb2,0xa3,0x6d,0x9b,0xe0,0x8f,0x33,0x7b,0xb9,0x28,0x6a,0xfa,0x41, + 0xcb,0xf8,0x23,0x63,0x31,0xe3,0x6e,0xe3,0xbe,0xd5,0x27,0xf4,0x96,0x57,0x81,0x78,0x2b,0x56,0x91,0x58, + 0x29,0xa4,0x91,0x76,0xe6,0x53,0xf1,0x49,0x44,0xd3,0x61,0x88,0x8b,0x01,0x25,0xf4,0xcb,0x39,0x2e,0x31, + 0x16,0x77,0x2d,0xd7,0xa0,0xac,0x06,0x80,0x99,0xf4,0x61,0x27,0x1f,0xe4,0x21,0x71,0x37,0x5c,0xc3,0x5c, + 0x37,0x1e,0xdc,0xdc,0xec,0x74,0x2b,0xed,0x3b,0x0d,0xc7,0x75,0x10,0xc6,0xb5,0x0d,0x18,0x47,0x53,0x66, + 0xdd,0x0a,0x61,0x43,0x63,0x4a,0x4d,0x18,0x33,0x9c,0x0c,0x89,0x2f,0xbc,0x8a,0x26,0xda,0x90,0xc0,0x4c, + 0xc0,0xc7,0x2e,0xef,0x4a,0x1a,0xc8,0xda,0x8f,0x2f,0xd6,0x8d,0x1c,0xf6,0x20,0xf9,0x59,0x87,0x40,0xbd, + 0x53,0xb9,0x93,0xe7,0xf1,0x3f,0x08,0xaf,0x1f,0xd0,0xce,0xb1,0x91,0xf1,0x14,0xb6,0x47,0x68,0xf1,0x26, + 0x79,0xc0,0x56,0x25,0xc2,0xd5,0xc8,0x73,0x23,0x43,0x5e,0x02,0x22,0xdf,0x60,0x18,0xf8,0x87,0x45,0x0e, + 0x3c,0x08,0xb2,0xbb,0xcf,0x85,0x47,0x97,0xc7,0x23,0xae,0x86,0x30,0x8e,0xba,0xa0,0x43,0xfc,0xee,0x87, + 0xe3,0xfb,0xf1,0xd1,0xfd,0xe3,0x46,0xc5,0x72,0xc6,0x0d,0xc2,0x33,0xd3,0xfd,0x98,0x1b,0x9e,0xe9,0xdb, + 0xef,0x2b,0x7a,0x0a,0x63,0x5d,0xa4,0xe1,0xe3,0x9d,0x1e,0xa7,0x5e,0x0b,0x67,0xb4,0x52,0x12,0x8e,0xde, + 0x31,0x6e,0x4c,0xaa,0xe8,0xdd,0x51,0x7b,0x85,0x8e,0x93,0x0b,0x61,0x7f,0x64,0x3d,0xed,0xb5,0x61,0x60, + 0x16,0x3a,0x9a,0x44,0x7d,0x6b,0xe6,0x9a,0xa8,0xfc,0x68,0xae,0x37,0x77,0x02,0xb9,0x95,0xfd,0x41,0x5d, + 0xe1,0x90,0xa7,0x8b,0x5a,0x3f,0x4d,0xeb,0x72,0xa1,0x1f,0xf9,0x96,0x42,0x3f,0xeb,0xce,0x9e,0x4b,0x1c, + 0x41,0x35,0xbb,0xb9,0x71,0x92,0x28,0x8a,0x67,0xe4,0xdd,0xbb,0xee,0xaf,0x50,0x67,0x87,0xd3,0xa3,0x7f, + 0x95,0x96,0x27,0x8a,0x15,0x02,0xad,0x02,0x98,0x52,0x1e,0xd2,0xbc,0x33,0x6a,0xa4,0x2c,0xed,0xb9,0xa5, + 0x4e,0xe0,0xd7,0x5c,0x28,0xca,0xb4,0xbd,0xd7,0x93,0x37,0x93,0x45,0x9a,0x9f,0xbd,0x9e,0xec,0x65,0xa2, + 0xac,0xb1,0x09,0x70,0xec,0xfa,0x74,0x82,0x1f,0x62,0x0c,0x1b,0xe1,0x10,0x91,0xcc,0xcf,0x2e,0xd2,0xcf, + 0x66,0x91,0xea,0xd0,0x4d,0x2b,0xb1,0xef,0xe6,0x92,0xcf,0xb5,0x36,0x4d,0x40,0x9d,0xf3,0xcf,0xe6,0xc7, + 0x21,0x83,0xbb,0x35,0xd5,0x61,0xfe,0xd7,0xd8,0xea,0x31,0x6f,0xf6,0x73,0xed,0x94,0xd8,0xec,0xb1,0x9e, + 0x12,0x9e,0xe5,0x7d,0x9d,0x6c,0xcf,0x13,0xda,0xec,0xe1,0xaf,0x1b,0x42,0x07,0x67,0x94,0x25,0x6a,0x4b, + 0x90,0xdd,0x23,0x5f,0x21,0x98,0x78,0xef,0x8b,0xd1,0x16,0x0c,0xf7,0x5b,0x1d,0x88,0x17,0x63,0x0d,0x75, + 0x98,0x3d,0x44,0x55,0xb2,0xcf,0x86,0x82,0x46,0xe9,0xfb,0xcd,0x94,0x15,0xbf,0x72,0x61,0x50,0x88,0x31, + 0x96,0xbe,0xf7,0x2a,0x4c,0xbe,0xbf,0x2a,0x3a,0x08,0x39,0xc6,0xe8,0x74,0x77,0x37,0xaa,0x76,0x77,0x0d, + 0x1b,0xcd,0xfc,0x31,0x12,0xe7,0xc5,0x45,0x24,0x02,0xd9,0x12,0xe9,0x26,0x89,0x3b,0xc3,0x53,0xea,0x6c, + 0xc6,0x6f,0x76,0xb6,0x6e,0x70,0xe2,0x52,0xb8,0xe3,0x8a,0x1e,0xd0,0x68,0x24,0x62,0x80,0x94,0xb2,0xd4, + 0xa9,0xde,0x2d,0x7f,0x12,0xc6,0x81,0x4f,0xfb,0x6a,0x83,0x6b,0xce,0xd9,0xd7,0xb0,0x75,0xb9,0x76,0x47, + 0x6c,0x6c,0x9a,0xeb,0xc7,0x1a,0x43,0x77,0x6f,0x20,0x85,0xf0,0x37,0x37,0xb4,0xd6,0x7a,0xac,0xd6,0xb4, + 0x74,0x40,0x0d,0x07,0xb4,0x6c,0x9c,0xe1,0x68,0xaa,0xf5,0x55,0xe1,0xc8,0x5a,0x65,0x35,0xd7,0xa7,0x43, + 0x58,0x6b,0xbd,0x34,0xca,0x31,0xce,0xc1,0x6c,0x55,0x65,0x49,0xe7,0x6d,0xa8,0x7d,0x03,0x45,0xaa,0x58, + 0x11,0xd7,0x46,0xf3,0x8b,0x9f,0xd4,0xc1,0x2a,0x9a,0x86,0x91,0xe3,0xe2,0x54,0x3a,0xa6,0x86,0x34,0x6f, + 0x6b,0x78,0xdf,0x14,0x93,0x60,0x68,0xac,0xe5,0x62,0x5a,0x17,0xe6,0x87,0xab,0x48,0xfb,0x32,0x16,0x62, + 0x51,0x71,0x88,0xd4,0x9f,0x86,0x1f,0x89,0x4b,0xcb,0x9a,0x44,0xe2,0x46,0xf8,0x08,0x8e,0x6b,0x54,0xec, + 0xfc,0x12,0x53,0x8f,0xd2,0xb1,0xf3,0x60,0xae,0x5a,0xdf,0x25,0x8b,0x3d,0xd8,0xf8,0x7a,0xdd,0x1a,0xdf, + 0x58,0x97,0xc7,0xce,0x30,0xb9,0x80,0xf0,0x15,0x2d,0x75,0xe9,0x9c,0x9c,0xe6,0xb9,0x07,0x60,0xed,0x29, + 0xc8,0xc6,0xb4,0x0d,0x19,0xef,0x80,0x00,0x42,0x68,0x2c,0xde,0x1c,0x18,0x5a,0x44,0x7c,0x0f,0x1d,0xa9, + 0xa3,0x05,0xd7,0x81,0x4a,0xa1,0x16,0xa0,0x95,0x02,0xe7,0x55,0xb2,0x30,0xb7,0xf4,0x3b,0x98,0x05,0xc9, + 0x1d,0x69,0x15,0x36,0xda,0xf5,0x36,0x71,0x30,0xef,0xc7,0xfa,0x21,0x3e,0xd2,0x0f,0xb8,0xcc,0xdb,0x1f, + 0x2d,0xbf,0x99,0x9b,0x83,0x33,0x20,0x51,0xe6,0x7a,0x5f,0x27,0x78,0x92,0x2d,0x9d,0x1f,0x2d,0x8f,0x23, + 0x33,0xc7,0xb8,0x99,0xee,0xba,0x19,0xfa,0x8c,0x00,0x6a,0xd1,0xc8,0x8a,0xe1,0xba,0xe2,0x9b,0xa0,0x0a, + 0x13,0xc0,0x9f,0x64,0xe1,0xde,0x39,0x3d,0x69,0xab,0x6a,0x27,0xf8,0x49,0x28,0xc2,0xd5,0xd0,0xfd,0xd2, + 0x32,0x04,0xf9,0xb5,0x16,0xbb,0x82,0x7c,0x68,0x4e,0x26,0x33,0xf8,0xfa,0x6c,0x02,0xb7,0x0c,0xf5,0xe9, + 0x74,0xac,0xd8,0x38,0xb6,0xbd,0xcd,0xb7,0xc4,0xca,0x90,0x1c,0x06,0xd9,0x0a,0xb2,0x6d,0x25,0x27,0x13, + 0xea,0x7b,0x93,0x6d,0x2b,0x43,0x9a,0x01,0x10,0x9f,0x26,0x4f,0xb6,0x70,0xc0,0x95,0x40,0x38,0x12,0x71, + 0x31,0x6c,0xb3,0x66,0xf9,0x16,0x83,0xa8,0x9d,0xda,0xaa,0x55,0x61,0x10,0xd5,0xb6,0x13,0x73,0x75,0xdb, + 0x18,0xc2,0x5a,0x1f,0x69,0xad,0x33,0xb1,0x78,0xb5,0xb2,0xfa,0x90,0xc0,0x3c,0xb2,0x15,0x46,0xde,0xa3, + 0x5f,0xc9,0x8d,0xf2,0xc3,0x6c,0xff,0x12,0x24,0xdf,0x96,0xee,0x04,0xfc,0xdb,0xa6,0x51,0x22,0x2e,0xd9, + 0x32,0xd9,0xcb,0xf0,0xdb,0xdd,0x03,0xe7,0x1b,0xb4,0xd5,0x49,0xde,0x3c,0x5b,0xc5,0x42,0x65,0xf5,0x1d, + 0x0b,0x8d,0xdc,0xac,0xea,0x65,0x1a,0xd0,0x12,0x21,0xee,0x32,0x4d,0x43,0xaa,0x85,0xd7,0xce,0x90,0x2d, + 0x86,0x9e,0x11,0xa0,0xcd,0xbe,0x31,0x96,0x1f,0xa3,0x99,0xd1,0x82,0x9f,0x26,0x25,0x18,0xc2,0x73,0xc2, + 0xd2,0xa7,0xbc,0x01,0xdf,0xd5,0xc1,0xb9,0xac,0x74,0x54,0x75,0x3e,0xd6,0xec,0xcc,0xb9,0x7c,0x73,0xdd, + 0xdd,0x2a,0xc7,0x78,0xcf,0x09,0x5f,0xcd,0xa8,0x54,0xe3,0x89,0xa2,0xcf,0x97,0xb4,0x1c,0x97,0xc1,0x4a, + 0x40,0x44,0x72,0xcd,0xc0,0x68,0xae,0x57,0x33,0x2f,0x36,0x45,0x72,0x32,0x0a,0x98,0xc5,0x14,0x8d,0x69, + 0xa5,0xdd,0xbd,0xa2,0x03,0x42,0x79,0xa8,0x93,0x5e,0x14,0x16,0xf6,0x10,0x7a,0x5e,0x66,0x47,0x62,0xa2, + 0x16,0x3c,0x48,0x1e,0x64,0x41,0x06,0x12,0x9f,0xd1,0xab,0x71,0xf2,0xf9,0xaa,0x9b,0x24,0xce,0xe7,0x06, + 0x3e,0x72,0xa0,0x19,0x05,0xc3,0xb2,0xa7,0x16,0x3a,0xe3,0x4a,0xa2,0x7d,0xa0,0x7e,0x37,0xeb,0xc8,0x77, + 0xb8,0x96,0xb6,0x6b,0x9b,0x45,0x74,0x28,0x32,0x27,0xeb,0x46,0x1a,0x74,0x95,0x1b,0x8c,0x9a,0x57,0x1d, + 0xe5,0x86,0xb1,0x8b,0x9b,0xad,0x35,0x66,0x82,0x82,0x16,0xd9,0xeb,0xcd,0x46,0xf7,0x8a,0x82,0x62,0x6b, + 0xa3,0x6d,0xc2,0xc6,0xe6,0x61,0x68,0xcc,0xcb,0x88,0xfb,0x21,0x8a,0xb5,0x20,0x72,0xbf,0x7d,0x34,0x5c, + 0x97,0x60,0x93,0x16,0x2e,0xec,0x2a,0x5c,0x9c,0xa1,0x74,0xf7,0xa4,0x81,0x95,0x29,0xef,0x7c,0xd9,0xbe, + 0x1c,0x32,0x10,0x33,0x06,0x24,0xc1,0xe6,0x28,0xd4,0xf6,0x82,0x42,0x86,0x36,0x54,0xe6,0x02,0x69,0xdb, + 0x47,0x97,0x37,0xfa,0x4a,0x91,0x75,0x1a,0x4b,0x47,0xa3,0x66,0x84,0x52,0xc2,0xb5,0x0a,0xb2,0x26,0x72, + 0xe6,0x3c,0x95,0xc6,0xa6,0x6b,0x4a,0x92,0xa3,0xea,0x4e,0x09,0x6a,0x74,0x9a,0x69,0x64,0xc7,0x18,0xc6, + 0x1a,0xa8,0xcb,0xa6,0xf2,0x35,0xbf,0x23,0xd9,0x2c,0x9d,0xcd,0x58,0xd7,0x54,0xb5,0x34,0x2c,0xcc,0xc0, + 0xe9,0xac,0x7c,0x0e,0xa7,0xf3,0x5d,0xc7,0x22,0xca,0xdc,0x72,0x88,0xd4,0xb3,0x53,0x36,0xf2,0xb4,0x9b, + 0x74,0xc0,0xf1,0xf0,0x28,0x92,0x03,0x9a,0x9d,0x3d,0xfe,0xc5,0x37,0x19,0xd1,0x9a,0xc2,0x66,0x4f,0x64, + 0xa4,0x7a,0x54,0xd0,0x9c,0x89,0x6f,0xda,0x38,0x74,0xc8,0xd0,0x34,0xde,0x34,0x7b,0x0e,0x50,0x4e,0x07, + 0x15,0x29,0x1c,0x52,0xa6,0x38,0xa9,0x36,0xa0,0xf3,0xad,0x22,0x9d,0x24,0x13,0x6b,0xe8,0x44,0x8c,0x34, + 0x7b,0x5e,0xd7,0xc9,0xfb,0xda,0xa6,0xb6,0xa7,0x63,0xc0,0x39,0x0e,0xd8,0xac,0x7f,0xb3,0x6c,0x98,0x17, + 0x97,0xe3,0xcd,0xe2,0x18,0xd9,0x5a,0x1a,0x6a,0xf3,0x8f,0xba,0xf1,0xf1,0xfd,0x3b,0x02,0x8f,0x5f,0xc2, + 0x5b,0xb9,0x78,0x9c,0xbd,0x53,0xb3,0xe0,0x4b,0x31,0x88,0xfa,0xa1,0x4e,0x50,0xcd,0xf1,0xe6,0x71,0x1a, + 0xfd,0xe0,0xdc,0x53,0xfe,0xd5,0xbd,0xa7,0xa4,0x56,0x62,0x7b,0xf9,0xb7,0x0f,0xdc,0x4f,0x20,0x1f,0xf2, + 0xb5,0x5f,0x4d,0xcb,0x62,0xb1,0x78,0xa1,0xe0,0xb1,0x24,0xae,0x49,0x84,0xfa,0xf5,0xf0,0x49,0xfc,0xa2, + 0x52,0x88,0x90,0xed,0x82,0xe1,0x46,0xa3,0xc4,0xa7,0x49,0xae,0xd2,0x85,0x36,0xd7,0xa9,0x13,0xdd,0xc0, + 0xe8,0xcb,0xc4,0x3e,0x6b,0x5a,0x2c,0x88,0xa1,0x21,0x8e,0xa6,0xfb,0xf6,0xb4,0x20,0x0a,0xad,0x36,0x1a, + 0x41,0x74,0x6c,0xec,0xdb,0xc1,0xce,0x92,0xe0,0xc2,0x42,0x66,0x77,0x3c,0xf0,0xa9,0x76,0xec,0x06,0x09, + 0x36,0x12,0x2c,0x56,0xb7,0x9e,0xee,0x0b,0xc2,0x36,0x92,0xd3,0xf9,0xec,0x78,0xa7,0xeb,0x10,0x74,0x3f, + 0x82,0x18,0x65,0x12,0x60,0x13,0xa2,0x23,0xf6,0x0d,0x35,0x7d,0x62,0x1f,0xc3,0xc8,0xd1,0xbe,0xea,0x16, + 0xa5,0x3a,0x2f,0x2e,0xd4,0x6d,0x8d,0x9c,0xf3,0xa0,0x54,0x2b,0xcd,0x06,0xa7,0x58,0x33,0xc7,0xb9,0x6e, + 0xac,0x96,0x79,0x61,0xef,0xab,0xd3,0xf4,0x22,0x2b,0x4a,0xf8,0x21,0x71,0xc5,0xe1,0x9d,0xde,0x3c,0xde, + 0x72,0xb7,0xb2,0xe1,0xe0,0x87,0x99,0xb3,0x3d,0xaf,0x21,0x2a,0x7f,0xc3,0x2d,0xd3,0x3a,0x08,0x59,0x6b, + 0x29,0x66,0x71,0x32,0x94,0x71,0x16,0x0b,0x50,0xe0,0x30,0xf4,0x50,0xb9,0x94,0x9d,0xfc,0xc6,0x69,0xd7, + 0xd7,0x8f,0xa0,0x8d,0x77,0x24,0xeb,0xf5,0x7c,0xa4,0xb7,0xb0,0xec,0x8e,0xa9,0x4a,0x8a,0x9b,0x1b,0xd8, + 0x0f,0x35,0x0b,0x91,0xab,0xf6,0x40,0x71,0xdf,0xcc,0x03,0x4c,0xae,0xdf,0xc5,0xe6,0xdc,0xa4,0x27,0xea, + 0x7f,0xfc,0x34,0x9f,0x57,0xaa,0x8e,0xae,0xdc,0xc2,0xbf,0x4b,0xe1,0xda,0x41,0xc5,0x25,0x2e,0xcd,0xae, + 0x73,0x89,0x14,0xc5,0x4b,0xcf,0x17,0xf5,0xec,0x65,0xcf,0x69,0x2c,0x70,0x3a,0x9a,0xdf,0x4e,0xcb,0x42, + 0x39,0xc7,0x26,0xa5,0x1f,0xc3,0x77,0xe1,0xcd,0x0d,0x3f,0xb8,0xd5,0x32,0xa7,0x1a,0x0d,0x51,0x57,0x1c, + 0xd3,0x3f,0xfd,0xc3,0xd5,0x1d,0x50,0x85,0xde,0xa1,0x37,0x1d,0xa7,0x4e,0xc7,0xbe,0x64,0x8e,0x70,0x6e, + 0xda,0xf8,0x0c,0x57,0x2a,0xd9,0xfb,0xe7,0x67,0xaf,0x67,0x8e,0xdd,0x3b,0x2f,0xbc,0xe1,0x74,0x89,0xc7, + 0xdd,0xb4,0xab,0x62,0x52,0x81,0x30,0x17,0xdd,0xcb,0x3b,0x92,0xc9,0x16,0x0a,0x51,0x28,0x0c,0xe0,0x55, + 0x4a,0xd4,0x0c,0xce,0x9b,0xf1,0xac,0x98,0x72,0x1a,0x12,0x28,0x2a,0xb4,0x6b,0xdd,0xfd,0xab,0xef,0x67, + 0x4e,0x1d,0x7d,0x37,0x74,0x40,0x5b,0x6c,0x2b,0x33,0x11,0x7d,0xa9,0x2b,0xb8,0xfd,0x69,0x7f,0x1c,0x63, + 0xa0,0x5a,0xf0,0x22,0xf4,0x19,0x9a,0xeb,0x57,0x63,0xf3,0x00,0x87,0xba,0x7e,0xa7,0x30,0xfb,0x51,0xf3, + 0xa0,0x87,0x89,0x11,0xdf,0x2f,0x56,0x39,0xc2,0x3b,0x3c,0x58,0x64,0x54,0xf2,0x82,0x3e,0x11,0x84,0x7c, + 0x6d,0xb6,0xe5,0xdd,0xc8,0xee,0x2b,0x28,0xcd,0xbc,0xde,0xcd,0xe5,0x8f,0x1a,0xbe,0xa3,0xad,0x2c,0x09, + 0x25,0x2f,0xa9,0x08,0xff,0xaa,0xe1,0x15,0x6e,0xbc,0x88,0x26,0x09,0x10,0x04,0x79,0x92,0x85,0x00,0x84, + 0x9c,0x00,0x61,0x5f,0xf6,0x3d,0xc7,0xbe,0xd3,0x3f,0x31,0xae,0x5f,0xc5,0xf4,0x45,0x69,0xbd,0x6e,0xc2, + 0x60,0xa4,0x4b,0x69,0x77,0xba,0x2f,0x46,0x0d,0x31,0x11,0x24,0xf0,0xaa,0x08,0x30,0x08,0x05,0x58,0x64, + 0x5b,0x33,0xe2,0x00,0x15,0xd3,0xa1,0x20,0xd8,0x85,0xbe,0x33,0x58,0x59,0x8c,0xa9,0xb5,0xa6,0x70,0x2d, + 0xae,0x54,0x79,0x78,0x02,0xd5,0x6f,0x73,0xdf,0x77,0x98,0xcf,0x4a,0xf0,0x34,0x5f,0x0c,0x61,0x5a,0xce, + 0x6d,0x57,0x6a,0xf3,0xf5,0x57,0xc3,0x7d,0x9f,0xe0,0x7f,0xe3,0xfd,0xb3,0x62,0x92,0x2d,0x94,0xf7,0x32, + 0x9d,0xa7,0x65,0x26,0x35,0x76,0xda,0x35,0x1e,0x9c,0x96,0xc5,0xb9,0xea,0x7d,0xf5,0x2b,0x0f,0xb0,0xf2, + 0x9e,0x9f,0x12,0x01,0x66,0x6d,0x7c,0x97,0xb6,0xf4,0xa0,0x9d,0x0e,0xd6,0x86,0x3c,0xfb,0x52,0x30,0xbc, + 0x3d,0x05,0x73,0x7d,0x0a,0x70,0xee,0xb5,0x55,0x79,0xbb,0x95,0xf8,0x78,0xcc,0x8d,0x9f,0x4d,0x29,0x74, + 0x23,0xb7,0xa4,0xa2,0xa1,0x11,0x79,0x9b,0x2c,0x94,0x20,0x0b,0xb5,0xde,0xa8,0xbc,0xf9,0x78,0xc0,0xb9, + 0x80,0x08,0x99,0x80,0x26,0x87,0x6b,0x5d,0x4b,0x70,0x5f,0x6e,0x69,0x82,0xa1,0x5d,0x47,0x6a,0xec,0xeb, + 0x6e,0x11,0x40,0x8d,0x13,0xde,0xf8,0xc7,0x30,0x47,0x6e,0xce,0xff,0x92,0xcf,0x3f,0xcf,0x04,0x3c,0x6b, + 0xe3,0xd4,0xa0,0xda,0xac,0x93,0x3d,0x03,0xf0,0x6b,0xfb,0x36,0x31,0x5a,0xbb,0x71,0x0e,0x75,0x35,0x18, + 0x1d,0x25,0x36,0x15,0x2e,0x69,0x28,0xf9,0x26,0x17,0x58,0x58,0x3f,0x8d,0xca,0x60,0x5f,0x00,0x09,0xce, + 0xae,0xcd,0xfd,0x4c,0xfc,0x45,0x94,0x4e,0x8a,0x12,0x4f,0x5f,0x45,0x53,0x70,0x2a,0x0b,0x84,0x6a,0xf9, + 0xf7,0x68,0xb6,0x82,0xd2,0x8b,0x03,0x19,0x1d,0x7c,0xed,0x28,0x5d,0xcf,0x55,0x8b,0x1b,0x3f,0x91,0xc1, + 0x9e,0x2a,0xe7,0xce,0x27,0xba,0xf7,0xc2,0x3e,0x7b,0x97,0x44,0x3a,0xbc,0x93,0x82,0xce,0x9d,0x37,0x27, + 0x30,0x81,0xa9,0x58,0x3d,0x34,0xce,0x2f,0xda,0xc4,0x8c,0xca,0x5c,0xea,0xd1,0x27,0x46,0xd5,0x6d,0xe3, + 0x79,0xb0,0x6b,0x3e,0x5f,0xcc,0x34,0x8a,0x51,0xdc,0xb3,0x77,0xbc,0xd0,0xbc,0x2b,0xd5,0xa3,0x64,0x81, + 0xc2,0x8c,0x6f,0x75,0xd8,0x8e,0x22,0x3f,0x16,0x75,0x27,0x14,0x29,0x1d,0xeb,0x3e,0x25,0xc2,0xdd,0x17, + 0xc4,0x26,0xab,0x10,0x63,0xbd,0xc8,0x52,0x2f,0xf5,0x9c,0x88,0x83,0x27,0xab,0xb4,0x9c,0x0d,0xef,0xb9, + 0xae,0x00,0xdb,0xd6,0xc7,0x2e,0x6e,0x74,0xef,0xc7,0xa6,0x03,0x5b,0x7a,0xeb,0xea,0xa8,0x56,0x19,0xe2, + 0x57,0x61,0x18,0xea,0xd2,0x19,0x4a,0x6b,0x10,0x27,0x0e,0xb7,0x21,0xa8,0x1e,0x95,0xc5,0xd2,0xaf,0x6c, + 0x6e,0xff,0x91,0x49,0x4b,0xae,0x8f,0x13,0x92,0x3b,0x8a,0x21,0x86,0x90,0x90,0xc4,0x4b,0x08,0x2f,0x81, + 0x05,0x04,0xd6,0x3e,0xc9,0x23,0x31,0x4c,0xb8,0x52,0xc9,0x91,0x11,0xfe,0x22,0x2d,0x4f,0x46,0x22,0x31, + 0x1e,0x37,0xe0,0x31,0x71,0x89,0xea,0x07,0x8d,0xf3,0x1b,0x44,0xa1,0x83,0x82,0x7e,0xbb,0x7b,0xd0,0xcc, + 0xe2,0xb0,0xbd,0x94,0x13,0x41,0x99,0x75,0x33,0x6a,0xeb,0xc0,0x06,0x4f,0x2d,0x19,0x2d,0x14,0x9a,0x4d, + 0x0f,0x0f,0xdc,0xd1,0xb8,0xd1,0x25,0x9a,0x85,0x41,0xd8,0x22,0xb6,0x95,0x67,0xf7,0xb3,0x37,0xf8,0xa4, + 0x9b,0xd0,0x0a,0x75,0x2b,0x01,0xc9,0x4d,0x44,0x45,0x00,0xd4,0xf8,0xc2,0x0c,0xa7,0xd9,0x0c,0x8e,0xa7, + 0xb4,0x92,0xd9,0x60,0x20,0x4a,0x5c,0x92,0xde,0xcf,0xd4,0xa6,0xd7,0x5f,0x31,0x0a,0x90,0xaf,0x2a,0x1c, + 0xbe,0x79,0xa3,0xaa,0x67,0xc5,0x6c,0x85,0x0c,0xb1,0xf7,0x89,0x02,0xf8,0xf2,0x43,0x74,0xd0,0x3a,0x38, + 0x94,0x59,0xb3,0x57,0xe9,0x89,0x64,0xef,0x82,0x6f,0xbc,0xbe,0x0d,0x89,0x6a,0x73,0x6b,0x3d,0xeb,0xd3, + 0x52,0xa8,0xb1,0x8a,0x1f,0xd7,0x26,0xbd,0x1e,0x82,0x4c,0xb4,0xbd,0xb7,0x69,0x93,0x77,0x77,0xb3,0x6f, + 0x60,0x03,0x52,0xb2,0xb5,0x68,0xb4,0x68,0x8f,0xb7,0xb1,0x40,0x91,0x50,0x2a,0x00,0x47,0xfd,0x41,0x2f, + 0xad,0xae,0xf2,0xa9,0x67,0xfb,0xf3,0xfc,0x41,0x35,0xf0,0x63,0x84,0x18,0x1c,0xa5,0x37,0x37,0x41,0x9a, + 0xf0,0x7e,0x8d,0xeb,0xb8,0x01,0x3d,0x05,0x2b,0xa5,0x94,0x39,0x42,0xc6,0xcf,0xd3,0x04,0x5a,0xdf,0x85, + 0x63,0xc5,0xc1,0x1e,0x1b,0xb0,0x23,0x0e,0xfb,0x57,0x7c,0xca,0xac,0x68,0x28,0x7f,0xb8,0xad,0xeb,0x6d, + 0x30,0x75,0x9c,0xe0,0xe7,0xbd,0xa4,0x65,0xce,0x0d,0xa1,0xd1,0xb2,0x1d,0x90,0xd4,0x0a,0xeb,0xa2,0x9b, + 0x1b,0x2c,0x41,0x03,0x3a,0x6f,0xda,0xc0,0x77,0x09,0xae,0x6e,0x9b,0x6a,0xae,0xe5,0xd0,0xe4,0x2c,0x71, + 0x57,0x99,0xd7,0x98,0xa7,0xa9,0x56,0x3d,0x38,0x2e,0xd5,0x8e,0xe7,0x37,0x7e,0x46,0xb9,0x8e,0xe9,0xe1, + 0x80,0xf3,0xa5,0x0b,0xce,0xa2,0xb1,0x6d,0xce,0x96,0x04,0xc1,0xd3,0x09,0x88,0x8f,0x38,0xaf,0x30,0x5f, + 0x08,0xaa,0xdf,0x13,0x0b,0xcd,0x01,0x3a,0xc7,0xdd,0x44,0x35,0x00,0x61,0x2f,0xc2,0x3d,0x87,0xea,0x34, + 0x4e,0x01,0xbd,0x59,0xcb,0x91,0xb3,0x7c,0x33,0x61,0xb9,0x28,0x51,0xed,0x35,0x84,0xc2,0x01,0x32,0xd3, + 0x10,0xc3,0x0d,0xed,0x64,0xfd,0xae,0x37,0x2f,0xb0,0x18,0x42,0x24,0x3a,0x29,0x32,0xb2,0x65,0x25,0x1d, + 0x5a,0xb2,0x53,0x03,0x98,0xde,0xdb,0xa1,0x6f,0x61,0x5a,0x7d,0xb4,0x25,0x01,0xb6,0x4e,0x82,0x5a,0x6c, + 0x99,0xda,0x57,0x75,0x90,0x46,0xc1,0xe3,0xb0,0xd1,0x41,0xe3,0x68,0x75,0x5a,0xd7,0xcb,0x6a,0x1c,0xc3, + 0x9b,0xe9,0xe8,0x9f,0xaf,0xf7,0x8e,0x07,0x7c,0xef,0x22,0xec,0x43,0xcd,0x01,0xfa,0xe8,0x3f,0xbe,0x4a, + 0x74,0xad,0x80,0xf8,0xcd,0xa0,0xd1,0x51,0xf5,0x5c,0xdd,0x80,0xe6,0xc8,0xa4,0xf4,0x05,0x62,0x32,0xd7, + 0x93,0x84,0x3d,0x0a,0x42,0x98,0x31,0x71,0x92,0x45,0x50,0xe9,0xec,0x0a,0xa8,0xac,0xf9,0xf5,0x60,0x52, + 0x61,0x17,0x9a,0x02,0x3e,0x82,0x6e,0xa9,0xea,0x16,0x2c,0xb4,0x14,0x8b,0x12,0x87,0xe2,0xbf,0xdc,0x20, + 0x26,0x1b,0x58,0xb2,0x75,0x9d,0xd5,0xde,0xa4,0x06,0xf8,0x76,0x1c,0xb4,0x49,0x0b,0xd0,0x20,0xa6,0xc6, + 0xe8,0xd1,0xb3,0xa2,0xf0,0x91,0x3a,0x16,0x7b,0x53,0xf6,0x3b,0x0a,0x5b,0x30,0xbf,0x61,0xbf,0xd5,0x77, + 0x26,0x9b,0x61,0x81,0x0b,0xca,0x49,0x14,0xb5,0xbf,0x46,0xcd,0x99,0x2e,0xc7,0xc5,0x10,0xd7,0xa7,0x25, + 0xcc,0xe5,0xe3,0xc2,0x39,0x6b,0x77,0x94,0xf5,0x77,0xb4,0xb0,0xe9,0x32,0x58,0x66,0xbc,0x02,0xa8,0x2a, + 0xb2,0x10,0xed,0x22,0x91,0x57,0xce,0xd2,0x81,0xd3,0xb8,0x7b,0x77,0x07,0x7f,0x40,0xc1,0xee,0x2b,0xda, + 0xc2,0x87,0x26,0xa0,0xe2,0xb8,0x66,0x4e,0x04,0xec,0x1a,0x81,0x87,0x13,0xf2,0xc7,0x65,0xea,0x9c,0xde, + 0xd6,0x61,0x84,0x98,0x01,0xef,0x94,0x83,0x00,0x64,0xfb,0xda,0xc1,0x29,0x18,0x7c,0x26,0x49,0xbd,0x8e, + 0x5a,0x55,0x8b,0xfc,0x05,0x43,0x4c,0xdf,0x79,0xc2,0x0b,0x36,0x85,0x08,0x5a,0xc0,0x24,0xd7,0x4a,0x08, + 0x84,0xa3,0xed,0x39,0x5a,0x40,0x25,0x6f,0x39,0x45,0x6b,0xe7,0x43,0x5c,0x63,0x73,0x50,0xaa,0xd5,0xb0, + 0xee,0xb6,0xab,0xcb,0x94,0xaf,0x0b,0x8b,0xfc,0x55,0xb1,0x69,0x23,0xa8,0x0d,0x02,0x25,0x32,0x20,0xdb, + 0x03,0x3a,0xa8,0xc0,0x28,0x1a,0x5b,0x67,0xc7,0x21,0x31,0xe2,0xfd,0xd0,0x1e,0xc4,0x26,0x8f,0x48,0xcb, + 0x01,0x6c,0x07,0xd2,0x50,0xaf,0xa5,0x27,0x04,0xd0,0x28,0xcf,0x5f,0xd9,0x91,0x91,0xa8,0xd0,0xd5,0xc6, + 0xd4,0x50,0xb0,0xc8,0x17,0x47,0x85,0x0e,0xd6,0xc4,0xac,0x0a,0x0c,0x33,0x81,0x53,0xf0,0xb7,0x18,0xaa, + 0xbc,0x5a,0x95,0xea,0xe7,0x17,0x4f,0x03,0xfc,0xd2,0xc3,0x4e,0xe7,0xf4,0xef,0x93,0xa2,0x38,0xdb,0x36, + 0x1c,0x6e,0x2e,0xd7,0xd8,0x68,0x85,0xe5,0xe7,0x58,0x36,0xfa,0xf0,0xef,0x9b,0xc2,0xfe,0x09,0x61,0xe6, + 0x41,0x29,0x04,0x25,0x6c,0xbb,0x96,0x10,0x3d,0xcc,0x03,0x09,0x42,0xbb,0xa3,0xfb,0xe0,0xdb,0x6f,0xdb, + 0x31,0x33,0x62,0x2d,0x16,0x3f,0x1c,0x7f,0xe4,0xc7,0xe2,0xa2,0x03,0x28,0xb7,0x2d,0xb5,0x44,0x71,0x6a, + 0x01,0xc2,0xc6,0xaa,0x6f,0x83,0x06,0xe2,0xe2,0x98,0x5a,0xa4,0x89,0xbb,0xef,0x51,0xd5,0x02,0xbd,0x9d, + 0x43,0xe1,0x21,0x35,0x2b,0x19,0x64,0x0d,0x08,0x68,0xa1,0x2a,0xfb,0x38,0xa0,0x88,0x11,0xd3,0xb3,0x58, + 0x28,0xa9,0x0d,0x0c,0x16,0xe9,0x55,0x5c,0x47,0xc4,0xd5,0x6c,0x98,0x01,0x13,0x23,0x98,0x6e,0x14,0x02, + 0xb5,0xb1,0x27,0x39,0x02,0x8b,0x4d,0x21,0x76,0xdb,0xeb,0x02,0x35,0x3b,0x9a,0x1e,0x53,0x89,0x6d,0x74, + 0xb4,0x3a,0x6e,0x05,0x12,0x74,0x41,0xa8,0x0a,0xc0,0x4e,0x12,0xcf,0x4f,0x24,0x37,0xe2,0x8d,0x6a,0x84, + 0xb7,0xe8,0xde,0x21,0x58,0x54,0x62,0xdd,0x90,0xad,0x35,0x9f,0xa5,0xc4,0xa9,0xb9,0x11,0xd3,0x0b,0x4f, + 0xaf,0x94,0x67,0x44,0xd7,0x18,0x02,0x47,0xe9,0x0a,0x1c,0x24,0x5a,0x84,0x62,0x1b,0xed,0x37,0x92,0xcb, + 0x43,0xfb,0x09,0x1f,0x46,0xc2,0xfa,0x52,0xbf,0x47,0x5f,0x43,0x8c,0xc0,0x33,0x18,0xe6,0x9d,0xa7,0xef, + 0xac,0x87,0x60,0x64,0x12,0xba,0x8a,0x41,0x86,0x98,0xa3,0x10,0x3b,0xcf,0x91,0xa9,0x12,0x71,0xe1,0x86, + 0x51,0x8a,0x51,0xcf,0xc8,0x49,0x9a,0xc5,0xca,0xda,0x25,0xe7,0xa1,0x18,0x9d,0xb6,0x8a,0xa9,0x70,0xa6, + 0x9a,0xe2,0xda,0x16,0xaf,0xd7,0x81,0x0b,0x15,0xf6,0xfa,0xc4,0x3e,0xc1,0xfb,0x64,0xa1,0x0f,0xec,0x2c, + 0x5a,0xd2,0xb3,0xd3,0x51,0x34,0xa3,0xdf,0xcd,0xaf,0xd3,0xc4,0x09,0x39,0xbc,0x49,0x78,0x98,0x5c,0xfa, + 0x62,0x4f,0xc0,0x67,0xff,0xa9,0x4a,0x11,0x48,0xfe,0x8e,0x92,0xab,0xa9,0xa5,0xa6,0xea,0xfa,0xd8,0x4b, + 0x45,0x3e,0xf7,0xd1,0xc7,0xf4,0xf6,0x33,0x8f,0x11,0xdd,0x51,0x5f,0x73,0x9a,0xf0,0x2d,0x17,0xc6,0x8e, + 0x51,0x03,0x90,0x06,0x49,0x43,0x33,0x70,0xde,0x2e,0x0f,0x21,0xbe,0x0c,0xe7,0xcd,0xc6,0x99,0x54,0xf6, + 0x99,0xa9,0x02,0xde,0xc5,0x80,0x5e,0x15,0x5c,0x40,0xa9,0x5b,0x6b,0xfe,0x1d,0x63,0x4b,0xa3,0xd6,0xf9, + 0xd8,0xe1,0x84,0xc4,0x63,0x9c,0x2c,0x0b,0xa1,0x88,0x6a,0x55,0x05,0x6d,0xd0,0xd8,0x10,0x8f,0xb5,0x16, + 0xa2,0x25,0x1c,0xeb,0xb2,0x4f,0x10,0x8d,0xb7,0x0b,0xe8,0x32,0xec,0x30,0xa6,0xa3,0xaf,0xc2,0xbe,0xf1, + 0xe1,0x0a,0x77,0xd3,0xe9,0xa2,0x27,0x0e,0x8e,0xea,0xcd,0x42,0x6c,0xac,0x19,0x36,0x5f,0xb0,0x73,0xc1, + 0x38,0xa8,0x82,0x73,0xbd,0x76,0x51,0x5f,0x97,0x8d,0xe5,0x67,0x66,0x79,0x41,0x15,0xc6,0x99,0xa5,0xac, + 0xb1,0x8e,0x10,0xd8,0x50,0xb2,0x8a,0xf5,0x49,0xa3,0x99,0x0a,0x4e,0xa3,0xf3,0x0d,0x5a,0x04,0x26,0x1c, + 0xef,0xb6,0x38,0xc8,0x6c,0x00,0x16,0x83,0x89,0xdf,0xc7,0xd6,0x75,0xb9,0x1f,0x6b,0xc2,0xb4,0xf9,0x4a, + 0x87,0x8b,0xb7,0xd6,0x7c,0x59,0x0b,0x3e,0x6a,0x97,0x1d,0x74,0xa5,0x68,0xed,0x1d,0xb4,0xc9,0xec,0x34, + 0x42,0x51,0x94,0x6b,0x63,0x97,0x4a,0x30,0x30,0x8e,0x34,0xc7,0xa7,0x57,0x5a,0x52,0x0a,0x66,0x54,0x25, + 0xd8,0x64,0xd1,0x32,0xcb,0x3f,0xd3,0x17,0xf9,0xbe,0x42,0x8e,0xae,0x09,0xac,0x66,0x24,0x68,0x3e,0x82, + 0x61,0x67,0x21,0x3f,0xe2,0x20,0x64,0x6d,0x7e,0x1c,0x04,0x22,0xb2,0x7d,0x13,0x77,0x78,0xf7,0xae,0xfb, + 0x6b,0xcb,0x55,0xce,0x96,0x58,0x3d,0xb5,0x0d,0xec,0xd8,0x47,0x1b,0x1d,0xfe,0xa2,0x87,0xeb,0xd3,0x93, + 0x36,0x7c,0xd0,0x44,0xb3,0x6d,0xd3,0xc9,0x26,0xb7,0x45,0xfc,0xe6,0x6a,0xf9,0xd4,0x72,0xff,0x2d,0x47, + 0x83,0x36,0x5b,0xa6,0xe8,0x34,0x15,0x97,0x79,0x6f,0xdd,0xb6,0x0c,0x71,0xdb,0x84,0xfa,0xc4,0x0d,0x80, + 0xec,0xa3,0xf6,0x3c,0x9a,0xcb,0x33,0x13,0x10,0xb4,0x89,0x61,0x8f,0x02,0x9d,0xca,0x9b,0x00,0xa4,0xac, + 0x9f,0x6a,0xea,0x95,0xfc,0xa4,0x0d,0xf8,0x21,0xcd,0xd9,0xfb,0x6e,0xd6,0xf4,0x0d,0xdf,0xbc,0xe1,0x99, + 0xbc,0x79,0x93,0x80,0x8d,0x6d,0xa6,0xd5,0xb9,0x27,0xd5,0x46,0x95,0xfa,0x65,0xab,0x66,0x2b,0x94,0xb7, + 0x8a,0x3e,0x6e,0x0d,0x85,0x31,0x64,0x66,0x55,0x6c,0x55,0xdb,0xeb,0x64,0x82,0x21,0x85,0xae,0xb7,0x82, + 0x86,0x98,0x08,0xa1,0x12,0xfb,0x2f,0x07,0x89,0xac,0x22,0x7d,0x7b,0x3e,0x2a,0xf5,0xc6,0x36,0x3d,0x0a, + 0x4b,0x8d,0x88,0xa8,0xda,0xf9,0x67,0x03,0x33,0x58,0xa3,0x54,0xe2,0xa2,0xb1,0x60,0xb2,0x5a,0xa3,0xda, + 0x39,0x2a,0x73,0x5a,0x86,0x82,0xf5,0x5a,0xed,0x05,0x66,0x4d,0x9b,0xc3,0x9d,0x07,0x45,0xc7,0x4f,0x99, + 0x50,0x19,0xf6,0x8b,0xad,0xa7,0xf6,0x19,0x6a,0x47,0x1f,0x71,0xc5,0x5a,0x74,0x81,0x62,0x13,0x23,0x7c, + 0xdc,0xb5,0xab,0x44,0x66,0x59,0xb7,0xf6,0xe6,0xa4,0x68,0xc1,0x55,0xe7,0x7e,0xe1,0xa4,0xe0,0x13,0xe1, + 0x36,0xc0,0xb7,0xfb,0x19,0x4d,0x61,0x32,0x8b,0x16,0x93,0x29,0x14,0xb5,0xb5,0x28,0x75,0x7b,0x51,0xe6, + 0x2a,0x38,0x21,0x86,0x98,0x97,0xd9,0xa1,0x62,0x30,0xdd,0x23,0xae,0xcd,0x6c,0x36,0xf0,0xd9,0xce,0x81, + 0x16,0x14,0x80,0xe4,0x80,0xd9,0x5a,0xe3,0xd2,0x84,0xe1,0xcf,0x1c,0xda,0xf2,0x4f,0x1a,0x9a,0x25,0xa7, + 0x5d,0xf5,0x4b,0xeb,0x40,0xee,0x24,0xad,0xe1,0x35,0x9f,0xd3,0xb0,0x7f,0x52,0x37,0x95,0x07,0xfd,0x35, + 0x47,0xf5,0x78,0xce,0xa4,0x71,0xa9,0x38,0xcb,0x7b,0x7b,0xa7,0x55,0xad,0x5d,0x2d,0x2c,0x42,0xd8,0xa4, + 0x08,0x6d,0x14,0x11,0xa9,0x75,0xf0,0xce,0xbd,0x5b,0xfa,0xc9,0x51,0x73,0x59,0x1b,0x92,0xa0,0x6b,0x9c, + 0x00,0x72,0xcf,0x94,0x7d,0xd4,0xe0,0x18,0xf6,0x5b,0x1b,0xd6,0xc5,0xd3,0xe2,0xd2,0xb8,0xe0,0x5b,0x0d, + 0x77,0xdd,0x2e,0x37,0x9a,0x5c,0xe1,0x50,0x6d,0xe4,0x0c,0x92,0xcc,0x94,0x8e,0x3c,0xd5,0xfd,0x60,0x45, + 0xb8,0x77,0x7a,0xba,0x69,0x3b,0x91,0x56,0xa7,0xac,0x1e,0x7b,0x7b,0x1b,0xf2,0x84,0x02,0x62,0x03,0x7d, + 0x96,0xae,0xff,0x8b,0x99,0x31,0xcf,0x9e,0x11,0x15,0x82,0x08,0x7d,0xb6,0xd7,0x31,0x44,0xf7,0xba,0xdf, + 0x37,0xbc,0x0a,0x76,0x6e,0xe0,0xef,0x7d,0xe6,0x0f,0xa8,0x6e,0xc4,0xee,0x31,0x76,0x8d,0x6f,0x6e,0x1e, + 0x22,0x1a,0xc1,0xff,0xe7,0xc8,0x78,0x1b,0x22,0xce,0x19,0x11,0x2b,0x84,0x68,0xba,0x1d,0x11,0x97,0xdd, + 0x81,0x38,0xde,0x01,0x23,0xac,0x10,0xe6,0xda,0x3a,0xab,0xdf,0xc3,0xac,0xa1,0x65,0x1d,0x9c,0x33,0x7a, + 0xad,0xcd,0xb9,0x2c,0x23,0x96,0x2a,0x22,0x5c,0x20,0x3c,0xc6,0x79,0xb5,0xc7,0x84,0xd9,0x85,0x82,0x86, + 0x36,0x6e,0x90,0x63,0xcc,0xd7,0x35,0xd3,0xd3,0x34,0x3f,0x51,0xfe,0x56,0xac,0x5c,0x44,0xe5,0x1f,0x42, + 0xc6,0x05,0xeb,0xa7,0xba,0x27,0xf3,0xcf,0x46,0xa9,0xcf,0xb0,0x0a,0x76,0xb6,0xff,0xf9,0x78,0xf4,0xf1, + 0x1f,0x19,0xcf,0x27,0x13,0xa8,0x7e,0x6c,0xeb,0x80,0x6c,0x17,0x6d,0x8e,0x00,0x4a,0x3b,0xe2,0x56,0x5b, + 0x8f,0x9f,0x31,0x02,0x7d,0xac,0x44,0x63,0xf7,0xc9,0x08,0x14,0x7d,0x6d,0xe2,0xcd,0x87,0x8d,0x65,0x0f, + 0x2a,0x18,0x3f,0x76,0x71,0x3e,0x68,0xb4,0xdf,0x37,0x37,0x01,0x7d,0x58,0xd4,0xdf,0x58,0x96,0x46,0x5b, + 0xfa,0x7d,0xd3,0x41,0x9f,0x29,0x18,0xe7,0xc7,0x6a,0xb9,0x3f,0x43,0x37,0xfb,0xcd,0x7e,0x13,0x2f,0x53, + 0x98,0x9b,0xa0,0xf1,0x5f,0x56,0x83,0x83,0x30,0x6c,0x7b,0x3e,0xc3,0xf1,0x81,0xda,0x58,0x3b,0xdf,0x56, + 0x87,0x75,0x52,0x7e,0xbb,0x7b,0xd0,0x58,0x0e,0x06,0x2d,0x57,0xea,0x41,0xe3,0x65,0x1d,0x3b,0x55,0xac, + 0xb2,0xbf,0xaf,0x59,0xee,0x34,0xcb,0x1b,0x5a,0xd1,0x4c,0xfa,0x85,0x43,0x6d,0x7a,0x67,0x0d,0x16,0xb0, + 0xed,0xf4,0xcd,0x7d,0x04,0xf9,0xb7,0xc9,0xfe,0xd8,0x55,0x88,0xc4,0x88,0xc1,0x49,0xf8,0xd7,0xe9,0xfc, + 0x19,0x77,0x4e,0x38,0x80,0x28,0x26,0x7f,0x28,0x8c,0xfb,0xe8,0x47,0xe2,0x34,0x79,0x6c,0x9a,0x2c,0xb7, + 0x36,0x31,0x28,0x5f,0x5e,0x33,0xf1,0x79,0xfe,0x7b,0x38,0x77,0x0e,0xe6,0x6e,0x6f,0x1f,0x78,0x8e,0xc9, + 0xee,0xc1,0xbf,0x90,0x4c,0x7c,0x00,0x27,0x7d,0xf8,0xd0,0xeb,0x80,0xf4,0x89,0xfe,0xdb,0x00,0x8b,0xcc, + 0x86,0xa0,0xcf,0x48,0x9b,0xf0,0x47,0xd0,0x85,0x83,0x3f,0x84,0x98,0xfe,0xf0,0xa0,0xdc,0x21,0x7d,0x34, + 0x46,0xda,0xf4,0xa3,0x96,0xb9,0xd4,0x42,0x45,0xe9,0x44,0xdd,0xdc,0x10,0x40,0x36,0xdb,0x6a,0x19,0x1a, + 0x67,0xe8,0xf2,0x06,0xba,0xbd,0x8f,0x52,0xa8,0x6b,0xb0,0x4f,0x60,0x07,0xdd,0x56,0xa5,0x77,0x15,0xd8, + 0x46,0x3f,0xdd,0xa8,0x3d,0xc5,0x97,0x56,0xb7,0xef,0x93,0x08,0x6e,0x45,0x73,0x0d,0x93,0xa0,0x87,0xbc, + 0x31,0x2f,0xc7,0xd6,0x1a,0x26,0x6b,0x36,0x98,0x2b,0xe2,0x9b,0x7e,0x08,0x51,0x43,0xaa,0x16,0xdc,0x19, + 0x3d,0x6d,0x1f,0x9b,0x9e,0xc0,0x9a,0xc6,0x05,0xdd,0xb9,0xec,0xa3,0x5f,0xcd,0x9d,0x9d,0xe6,0x49,0xec, + 0xfd,0x67,0xa3,0x4d,0x74,0x6e,0xff,0x1a,0xfd,0x86,0x2d,0x6c,0x6e,0x1b,0x6c,0x91,0xa8,0x42,0xcb,0x04, + 0xbe,0x34,0x42,0xba,0x2a,0x76,0xc5,0xc3,0xcb,0x70,0x64,0xf8,0x15,0x24,0x34,0x21,0x0e,0x95,0xed,0x3e, + 0x5a,0x39,0x6a,0xe6,0x74,0xc2,0x27,0x80,0x3b,0x5f,0xd3,0x2d,0x5f,0xa2,0x38,0xec,0x80,0x3b,0xe2,0x10, + 0x47,0xb5,0xad,0x13,0xb5,0x5a,0x30,0x2b,0xac,0x7d,0x0f,0xa2,0xf7,0x35,0x11,0x08,0xfa,0x99,0x22,0x08, + 0x5e,0x3a,0xad,0x7d,0xbd,0x06,0xf8,0x2e,0x8e,0xaf,0x8e,0x30,0x6e,0xbe,0x21,0x0e,0xea,0xfa,0x97,0x58, + 0xb9,0x28,0x9d,0x55,0x4f,0x0b,0xb5,0x4d,0x92,0x33,0xf9,0xc4,0x66,0x8b,0xb7,0xad,0x16,0xed,0xb1,0xb5, + 0xda,0xdb,0x31,0x6d,0xf6,0xf1,0xbc,0xf7,0xab,0x4e,0x74,0xf2,0xe8,0x47,0x95,0x5c,0x6b,0xaa,0xcc,0x70, + 0x1c,0x5f,0x4b,0x48,0xf6,0x55,0x89,0x8c,0x3f,0x88,0xc8,0xe0,0xdc,0xb9,0xfe,0xdc,0xb6,0x3e,0xa8,0x8d, + 0x16,0x30,0xea,0x40,0x69,0xee,0x50,0x30,0xfa,0x6a,0xce,0xde,0x39,0xb5,0x71,0x58,0xcc,0x23,0x22,0xaf, + 0xeb,0xa7,0x2e,0x3c,0x9e,0x6f,0x84,0xbf,0x77,0x74,0x82,0x2e,0x18,0xd8,0x6b,0x34,0xd6,0xaf,0xd1,0xe8, + 0x87,0xee,0xe0,0x71,0x80,0x7a,0x18,0x03,0x77,0x59,0x34,0x37,0x6c,0x98,0x18,0xdd,0x7a,0x1d,0xb5,0x86, + 0xb3,0x11,0x4e,0xbf,0x41,0x34,0x6c,0xc2,0x6c,0xe0,0xdd,0xde,0x3e,0x22,0x2f,0x61,0x3e,0xc5,0x75,0x3c, + 0xc1,0x6e,0x6c,0x13,0xd2,0xf9,0x3d,0xea,0x4f,0x25,0x2d,0xad,0x00,0x66,0x96,0x47,0x97,0x3b,0x6b,0x14, + 0x71,0x91,0x3e,0x77,0xf2,0x2c,0x95,0x8e,0xf6,0x8f,0x25,0x76,0xac,0xae,0x72,0x73,0xa3,0xec,0x84,0x36, + 0x74,0x61,0xa2,0xda,0xda,0x31,0x63,0xd6,0x0a,0x31,0x74,0x56,0x6b,0xce,0xc4,0x5d,0x10,0x66,0x44,0xdc, + 0x48,0x51,0x8f,0x10,0x4a,0xca,0x2d,0x78,0x6b,0x6d,0x17,0x5b,0x97,0x75,0x1d,0xe1,0x26,0x08,0xa3,0xee, + 0xfa,0xc1,0xf1,0xad,0xd1,0xef,0x6c,0x53,0x20,0x8d,0x70,0x2e,0x0b,0xb6,0x92,0x11,0xe4,0xe5,0x8b,0x49, + 0x9c,0xd6,0xde,0x94,0xcc,0x9b,0x81,0x38,0x8c,0xf2,0x36,0xb9,0xc9,0x7b,0xb0,0x27,0xac,0x6c,0xc1,0xf6, + 0xe7,0x5a,0x66,0x68,0x6b,0xfd,0xf4,0x8a,0xf7,0x5f,0xa8,0xe9,0x44,0x1b,0xac,0x9b,0x15,0x44,0xdd,0x82, + 0x10,0x7d,0x87,0x91,0xb6,0xa0,0xd6,0x02,0xdc,0xcf,0x46,0x94,0x77,0x6e,0x51,0xc0,0x2b,0xf7,0x74,0xf1, + 0x42,0xd0,0xe0,0x6d,0xbd,0xb8,0x98,0x72,0xb3,0x1b,0x46,0x99,0x1f,0x1a,0x48,0x83,0x57,0x37,0x3b,0xb8, + 0xe5,0xd6,0xdd,0x00,0x95,0xae,0x22,0xf1,0xb6,0xba,0xad,0xb7,0x5c,0xa5,0x37,0x6d,0x1f,0xe9,0xcb,0xc8, + 0x4e,0xcb,0x0f,0xb1,0x39,0x6c,0x7f,0x43,0x38,0x1a,0xbe,0x82,0x3d,0x2e,0xdb,0x3a,0x3d,0x93,0x51,0x00, + 0xdc,0x92,0xb1,0xa9,0x6c,0xd9,0xec,0x1a,0xdc,0x61,0xae,0x9c,0xfa,0xde,0xb5,0x07,0xfa,0x11,0xdc,0xcf, + 0xff,0x83,0xb1,0x36,0x1e,0x26,0xbd,0xc3,0xed,0xbc,0x6e,0x8f,0xb8,0xc3,0x26,0xb5,0x1a,0x6a,0xb1,0xad, + 0x0d,0x8a,0x20,0x90,0x5d,0x9d,0x39,0x55,0xdc,0x3d,0xe8,0xd6,0x24,0x90,0xbd,0x24,0x04,0xd3,0x57,0x79, + 0xa3,0x2e,0x9d,0xc7,0x67,0x72,0x8f,0xd9,0xa4,0x87,0xed,0xc3,0xaa,0x63,0x7b,0xdf,0x39,0x96,0x5c,0xaf, + 0x4d,0xcc,0x9b,0x50,0x28,0x7e,0xec,0x0a,0x8f,0x8c,0xe9,0x9b,0x88,0xfc,0xf6,0xd6,0xb3,0xb1,0x31,0x6b, + 0xe2,0x5d,0xfd,0x51,0xd3,0x38,0x97,0xd6,0x39,0x86,0x71,0xea,0x58,0x1b,0xc1,0x21,0x1c,0x7e,0x17,0x58, + 0xba,0xe7,0xd9,0x05,0x16,0x09,0x66,0xc6,0x86,0xa1,0x3d,0x54,0x08,0x3e,0x6f,0xe0,0x6a,0x8c,0x94,0x2f, + 0xb4,0x0e,0x4e,0x6f,0x1c,0xe6,0xa7,0x1d,0xbe,0x06,0x21,0xab,0xac,0x18,0xad,0x2f,0xa4,0xed,0x65,0x79, + 0xa9,0x43,0x97,0x14,0x11,0x07,0x02,0xe9,0x1f,0x8c,0x30,0x1e,0x48,0xe3,0x30,0x86,0x80,0xa6,0x62,0xd5, + 0x30,0x8f,0x5a,0x6f,0xe6,0x0f,0x48,0xa8,0x2c,0xb5,0xd2,0xcc,0x8c,0x96,0xd9,0x91,0xac,0xe1,0x7f,0x88, + 0x4d,0xb7,0x9e,0x82,0xaf,0x0a,0x7c,0x5b,0x1b,0x7f,0xc6,0x45,0x17,0x6d,0x5a,0x67,0xbd,0x4d,0xf8,0x34, + 0x04,0xde,0x56,0x61,0xba,0xda,0xb3,0x4a,0x3b,0x72,0x0b,0xd0,0x7a,0xd5,0x16,0x3c,0x5a,0xe0,0xde,0x43, + 0x14,0x08,0x50,0x35,0x00,0xc8,0x49,0xd5,0x5e,0xa4,0x19,0x7d,0xd3,0x1d,0x2d,0x71,0x17,0xe0,0x85,0xe5, + 0xb2,0x6f,0xd1,0x58,0x11,0x78,0x50,0x3c,0x8a,0x09,0x9f,0x79,0x87,0x60,0x1d,0x8f,0x31,0x32,0xce,0x37, + 0x66,0x0b,0x61,0xa5,0xf2,0xb8,0xb6,0x11,0xe6,0x7b,0x00,0xb1,0x89,0xf0,0xb1,0x8e,0xba,0x69,0x88,0x8d, + 0x2e,0xc0,0xa6,0x3c,0x7e,0x23,0x4e,0xa5,0xbf,0x20,0xbd,0xd3,0x08,0x7a,0x37,0xd8,0x76,0x94,0x24,0x51, + 0xe9,0x2c,0x70,0xf2,0xa3,0x37,0x8f,0x51,0x08,0x5b,0x5a,0x46,0xdf,0x23,0x3a,0x1d,0xd9,0xbb,0x2c,0x0f, + 0xae,0xdd,0x8c,0xc5,0x6e,0xb2,0xb0,0x5c,0x87,0x85,0x31,0x9f,0x15,0x7d,0x11,0xf2,0xa2,0xf0,0xc5,0x56, + 0x93,0x80,0x4a,0x24,0x2f,0xb7,0x34,0xe9,0x6b,0xd9,0xaa,0xc1,0xbc,0x55,0x20,0x60,0x4e,0x02,0x54,0x9d, + 0x2d,0xf4,0x26,0xbc,0x10,0xcb,0x06,0xcd,0xb0,0xfa,0x52,0xdd,0x6f,0xb7,0xed,0x40,0x02,0x9d,0xbf,0xde, + 0x21,0x99,0x44,0x55,0x26,0xc4,0x8f,0xf6,0xc5,0x75,0xaa,0xc9,0xf9,0x8b,0xca,0xc0,0xce,0x60,0x5b,0x1e, + 0x61,0xa9,0x12,0x22,0xdb,0x70,0x1f,0xcc,0x5c,0x05,0x2e,0xc0,0xf8,0x3a,0x8c,0x97,0x1f,0x21,0x53,0xe9, + 0xb6,0x94,0xab,0xce,0x38,0xcc,0xf3,0x27,0x75,0xff,0xa9,0xbd,0xa3,0x73,0x27,0x79,0x54,0xd0,0xca,0xa4, + 0xf6,0xd7,0xde,0x77,0x12,0xb7,0xed,0x69,0x1d,0xda,0xa0,0xff,0x22,0x15,0x68,0xa6,0xed,0x99,0x2a,0x4f, + 0xd4,0x4b,0x3a,0x74,0x35,0xc1,0x9a,0xaa,0x46,0xc5,0xb0,0x7b,0x63,0x9f,0xb4,0x8a,0xd8,0xd6,0xa4,0x5d, + 0x24,0x06,0x23,0x30,0x4c,0x93,0xbc,0xd4,0x82,0x29,0x74,0xca,0xdf,0xc4,0xff,0x72,0xf8,0xd5,0xf0,0x4b, + 0x9f,0x4f,0x5f,0xd5,0x98,0x5e,0xc0,0xdc,0x9b,0xe4,0xd6,0xe4,0x50,0xe1,0xcd,0x46,0x39,0xe2,0x06,0x27, + 0xa7,0x2a,0x72,0xdc,0x62,0x7f,0x59,0x29,0xf7,0x19,0x9e,0x48,0x74,0xc6,0x65,0x5a,0xef,0x55,0xf2,0x54, + 0x45,0xbf,0xaa,0x7e,0x19,0xbb,0x27,0xef,0x3d,0x94,0x0c,0x6e,0xca,0x7b,0xeb,0xda,0x19,0xf8,0xb3,0xec, + 0xc2,0x8f,0x8e,0xe8,0xe1,0x94,0x46,0x7d,0x44,0xb5,0x2e,0x02,0x9d,0xd3,0xfe,0x0e,0x62,0x37,0x49,0xa6, + 0xc1,0x3a,0xab,0x91,0xe2,0x34,0x0c,0x8f,0x21,0x31,0x50,0x15,0x24,0x0c,0x8a,0x4c,0xb2,0x1b,0x9d,0x90, + 0x7e,0x6c,0x7a,0xbb,0x96,0xdf,0x12,0xa6,0xce,0xd7,0x09,0x82,0x49,0x8e,0xc7,0x57,0xba,0x69,0x96,0xfd, + 0xf0,0x98,0x04,0x86,0xd8,0x1d,0x48,0x4f,0x1f,0xd5,0x22,0x9b,0xa9,0x12,0x11,0xb0,0x53,0x02,0xb1,0x52, + 0xf7,0x95,0xe5,0xcb,0x55,0x4d,0x55,0x85,0xb8,0xd0,0x09,0xac,0xe2,0x23,0x1d,0xc4,0x0f,0xd8,0x7d,0xe1, + 0x47,0x65,0x7a,0xf9,0x23,0xff,0xbe,0xd8,0xe5,0x92,0xa1,0x76,0x0b,0x8c,0x2e,0x38,0x70,0x98,0x19,0xf9, + 0x90,0x28,0xd5,0xbb,0x25,0x21,0x7f,0xce,0xda,0xec,0x9b,0x42,0x3f,0xa2,0x46,0xd9,0x3c,0xa3,0xad,0x8d, + 0xaf,0xa5,0x25,0x8b,0x95,0xc7,0x51,0xcf,0xe0,0x60,0x0f,0xe6,0x47,0x1c,0xa6,0x49,0xc7,0xd7,0xf3,0x4b, + 0xbe,0x17,0x88,0xce,0x33,0xea,0x73,0x9f,0xfe,0xa6,0xef,0x62,0xff,0x8b,0xbf,0xfc,0x85,0x46,0x3f,0x2b, + 0xce,0x25,0x73,0xd8,0x75,0x77,0x20,0xeb,0x08,0x19,0x9e,0xdf,0xbc,0x71,0xc2,0xee,0x31,0x66,0xbe,0x43, + 0x52,0x4a,0x60,0xaa,0x45,0x7e,0x89,0x7c,0xe2,0x6f,0xe8,0xdd,0x50,0x22,0x1e,0x0d,0xb9,0x1f,0xd0,0x87, + 0x09,0xc1,0x53,0xdc,0xcb,0x06,0xdc,0x21,0x10,0x9e,0x6a,0xf0,0x0d,0xd8,0x4c,0xbf,0xbd,0x9b,0xff,0x29, + 0x2b,0x7f,0xd2,0xb7,0xf2,0x27,0x9f,0xb6,0xf2,0x27,0xa5,0x52,0xf9,0x1f,0x5f,0xfb,0x93,0x8f,0x5c,0xfb, + 0x93,0xff,0x2a,0x6b,0x3f,0xe9,0x5b,0xfb,0xc9,0xa7,0xad,0x3d,0x4d,0x59,0xfd,0xf1,0xa5,0x9f,0x7c,0xe4, + 0xd2,0x4f,0xfe,0xab,0x2c,0xfd,0x65,0xdf,0xd2,0x5f,0x7e,0xda,0xd2,0x5f,0x9e,0x66,0xf5,0x9f,0xb0,0xf6, + 0x97,0x1f,0xb9,0xf6,0x97,0xff,0xaa,0xb5,0x97,0x10,0x71,0x95,0x5e,0xf3,0xb4,0xff,0xb5,0x27,0x7f,0x76, + 0x2b,0x45,0x9b,0x34,0x4b,0xe1,0x3b,0x87,0x59,0x48,0x0c,0xc7,0x9e,0xb1,0xa8,0xcd,0xb0,0x6e,0x66,0x6a, + 0x3f,0xcd,0xe7,0x6c,0xf8,0xb0,0xde,0x4a,0xfe,0x6c,0x3d,0x21,0x81,0xf2,0xbf,0xf5,0xe8,0x57,0x35,0x7c, + 0x03,0xdf,0x41,0xb8,0xf6,0x2c,0x97,0x4d,0x7c,0xe4,0xdf,0x54,0xf2,0x5b,0x70,0xed,0x44,0xde,0xba,0xee, + 0x52,0xbd,0xf8,0x17,0xda,0x10,0x64,0x39,0xdd,0x60,0x85,0xf4,0x5c,0x25,0x62,0xf8,0x9a,0xe0,0x61,0x85, + 0x80,0x7a,0x5b,0xb2,0x0e,0xd7,0x26,0xbf,0xf9,0x4b,0x55,0xdb,0x88,0x87,0x98,0x97,0xf9,0x09,0xaf,0x87, + 0x52,0x97,0xc9,0xfb,0xeb,0x32,0xde,0x8f,0x4e,0xe8,0xbf,0x09,0xfd,0x77,0x19,0x23,0x6c,0xed,0xf0,0xce, + 0xa5,0x64,0xd5,0x95,0x2a,0x6d,0xd5,0x9f,0x69,0xf8,0x80,0x2f,0xb9,0x67,0xd0,0xc9,0x11,0xfc,0x2b,0xb5, + 0x94,0x98,0xd8,0x4d,0x82,0x7b,0xbb,0x46,0x1b,0xd9,0x7b,0xb7,0x7d,0x79,0x1d,0xb5,0xba,0xde,0x32,0x47, + 0x63,0x18,0xbe,0x28,0x4e,0x82,0xee,0xcc,0x70,0xdf,0x29,0x0c,0x48,0xab,0x58,0xb2,0x71,0xb7,0xd7,0x60, + 0x8b,0x0b,0x88,0x53,0x8f,0xa7,0xf6,0xc5,0xfe,0x3e,0x20,0xda,0x16,0x6e,0x5d,0x78,0xaa,0x51,0xd3,0x8e, + 0x4a,0xad,0xf1,0x1f,0xf9,0x5c,0x1c,0x74,0x7a,0x13,0x87,0xad,0xcd,0x3d,0xec,0x24,0x97,0x56,0xf5,0x9e, + 0xd9,0xb0,0x6b,0x1d,0xf8,0xc7,0x59,0xee,0xcd,0x84,0xd2,0x48,0xc9,0xf7,0xfb,0x72,0x44,0x93,0x20,0x5a, + 0x2c,0x6c,0x5a,0xe8,0xcd,0x8c,0xda,0x1b,0xe3,0x3f,0x60,0xdf,0x83,0x7f,0x51,0xfa,0x68,0x82,0xa3,0x5f, + 0x55,0x7f,0xb2,0xe7,0xd1,0x6f,0x6a,0x6b,0xb2,0xe7,0x0b,0x12,0x22,0xaa,0x3d,0x9d,0x5c,0xde,0x66,0x7d, + 0x7e,0x42,0x47,0x57,0xd9,0xbc,0xcf,0x24,0xd3,0x33,0xdf,0xfd,0x5e,0xf3,0xdd,0xbf,0x28,0xbe,0x9b,0x78, + 0xaf,0x02,0x49,0x03,0x0b,0xf4,0x6f,0xe3,0x24,0x09,0x1d,0x30,0x19,0xc8,0x9b,0x14,0xbd,0x4f,0xd4,0xfa, + 0x98,0xb6,0xfa,0x3b,0x6a,0x1b,0xfc,0x25,0xb4,0x7d,0x7e,0xa7,0x86,0xa9,0xf4,0xfa,0x77,0xe9,0x15,0x05, + 0xc3,0x97,0x58,0x8f,0x80,0x0f,0x93,0x22,0x12,0xe0,0x26,0xc5,0x96,0x69,0x39,0x25,0x1a,0xc0,0xe4,0x85, + 0xa4,0x76,0x47,0xce,0x81,0x26,0x4d,0x7b,0x7c,0x8d,0x40,0x30,0x3c,0x2e,0x49,0x20,0x3c,0x9d,0xd2,0x6a, + 0x2e,0x8b,0x8c,0x46,0x45,0x30,0xc6,0x80,0x42,0xb5,0xa8,0x0d,0xd1,0xa1,0x99,0xd4,0x59,0x12,0x8e,0xbd, + 0x2c,0x4a,0xfd,0x6b,0x76,0x3a,0xc5,0x41,0x8f,0xb2,0xa5,0xfe,0xca,0x6a,0x92,0xab,0xfa,0x3c,0xad,0xce, + 0x74,0xd0,0x5d,0x1a,0xe6,0x65,0x7a,0x25,0xd8,0x2a,0xaa,0xae,0x48,0x7a,0x3f,0x8f,0xaf,0x97,0x59,0x4e, + 0x08,0x61,0xa1,0x66,0x87,0xcf,0xa5,0x1a,0x3d,0xbe,0x7c,0x75,0xa8,0x07,0xb1,0xbc,0xcf,0x98,0x5b,0xb7, + 0x59,0x40,0xc7,0x46,0x38,0xce,0x22,0xbc,0x95,0x8c,0x8a,0x3a,0x20,0x79,0xa5,0xee,0x4f,0x0b,0x2e,0x00, + 0x34,0x74,0x17,0x03,0x61,0xe6,0x9d,0x9f,0x51,0xfb,0xad,0x5e,0xaa,0x4e,0x25,0x5d,0x4a,0x5f,0x4d,0xa7, + 0xfa,0x9b,0xd5,0x69,0x71,0x79,0xcb,0x37,0x25,0x59,0x56,0x62,0xe2,0x9f,0xf4,0x74,0x76,0xf7,0xee,0x74, + 0xa1,0xd2,0xb2,0xc9,0x30,0xbf,0xb5,0xa6,0x89,0xb3,0xb0,0x15,0x55,0xdc,0x9a,0xee,0x3c,0xe4,0x4c,0xf5, + 0x23,0x56,0xee,0x9d,0x23,0x23,0x5d,0x77,0xb5,0xe8,0xec,0xb4,0xc0,0x47,0xf5,0xc3,0xce,0xed,0xf9,0xd7, + 0xeb,0x3f,0x79,0xca,0xd1,0xc7,0x8f,0xf7,0x56,0x70,0xc7,0xa8,0xdb,0xa8,0xa2,0xb3,0x51,0x2e,0xd5,0xd0, + 0x4e,0x45,0x66,0xbd,0x7d,0x7f,0x04,0x68,0x11,0xdc,0x46,0x2c,0x18,0x1d,0xd3,0x4a,0x8d,0xfd,0x27,0xaf, + 0x5e,0x3d,0xf7,0xcc,0x4f,0x0f,0x86,0x27,0x9e,0x3f,0xe8,0x56,0x1b,0x0a,0x43,0x10,0x37,0xe5,0xbf,0xad, + 0x54,0x55,0x8f,0xfd,0x1f,0x0b,0xdb,0xd6,0xb7,0x6f,0x35,0xee,0x8a,0xdc,0xad,0xec,0x02,0x98,0x83,0xe2, + 0x94,0x69,0x30,0xf0,0x5f,0xe7,0xaf,0x73,0x7f,0x90,0x23,0x4a,0x33,0x4f,0x8e,0x69,0x2d,0xb4,0x21,0xff, + 0x50,0xc9,0xb5,0xa2,0x83,0xcd,0x02,0x79,0xec,0xbf,0xf8,0xee,0xfe,0xaf,0xd4,0x95,0xaf,0x8f,0xde,0xf7, + 0x0f,0x09,0x01,0xf1,0x93,0x47,0x8f,0x9e,0x1f,0xc1,0x1e,0xe0,0x32,0x2d,0xd5,0x2f,0xa2,0x9d,0x88,0xfd, + 0xc7,0xba,0xc0,0xd3,0xfa,0x0a,0x54,0x9a,0x16,0xcb,0xab,0x32,0x3b,0x39,0xad,0x63,0xff,0x81,0x79,0xf4, + 0xfe,0xcf,0xff,0xf6,0xbe,0xd8,0xff,0x62,0xdf,0x7b,0x96,0x96,0x67,0xde,0x45,0x0a,0xbb,0x9a,0x9c,0x10, + 0xc3,0x6a,0x46,0xdc,0xa5,0x96,0xe8,0x63,0xff,0x39,0xed,0x3b,0x2d,0xd6,0x65,0x9a,0xd5,0x91,0xa7,0x4b, + 0x87,0xc3,0x21,0x62,0x35,0x4d,0x8a,0xa2,0x7e,0x2e,0x76,0xfc,0xb1,0xff,0xea,0x54,0x79,0x32,0x42,0xef, + 0x32,0x5b,0x2c,0x90,0x8f,0x4a,0x6a,0xa8,0x59,0xe4,0x2d,0xa5,0x93,0x52,0xcd,0x69,0x05,0x4f,0x59,0x15, + 0xe4,0x21,0xc0,0x8f,0xc7,0x57,0x3f,0xd0,0xd9,0x13,0x3a,0x65,0x0d,0xb9,0x46,0x1c,0xfe,0x21,0x7e,0xb4, + 0xca,0x5e,0x0a,0xf6,0xf3,0xe5,0x2f,0x0f,0x61,0xa6,0x2e,0xb2,0xa9,0x02,0xd0,0xd0,0xf7,0xf1,0x2f,0xcd, + 0xf4,0x92,0xd6,0x4a,0x10,0x74,0x7c,0xed,0x22,0x43,0xb3,0x9c,0x84,0xaf,0xa8,0x96,0xe6,0xa9,0x66,0xb1, + 0xff,0x50,0x3f,0xf9,0x6b,0x83,0x2c,0xc1,0xd4,0xdb,0xea,0xbf,0x66,0x8f,0xb3,0x2d,0x0d,0xa2,0x6c,0x86, + 0x1a,0xdf,0xd3,0xbf,0x44,0x19,0x8a,0x97,0x2f,0x79,0x6b,0xe8,0x5f,0xce,0xc7,0x35,0x47,0xe4,0x1c,0xda, + 0xb4,0x69,0x9a,0xe3,0x82,0x01,0xc9,0x43,0xa8,0xf1,0x4b,0xfa,0xc9,0xfe,0xff,0xfc,0xdb,0x37,0x88,0x5c, + 0x22,0x05,0xc4,0x4e,0xc4,0x00,0xfd,0xc2,0x77,0x50,0xfd,0x53,0x42,0xf4,0xd8,0x3e,0xf3,0x9b,0x76,0xa3, + 0xaa,0x79,0x64,0xba,0x8e,0x1e,0x9d,0xfd,0xe5,0x6b,0xf6,0x0b,0x4b,0x51,0xa7,0x93,0x57,0x32,0x23,0x43, + 0xbd,0xf4,0x04,0xb5,0xfe,0xd9,0xab,0x74,0x71,0xc3,0xe3,0xf9,0x60,0x86,0xd7,0x2d,0x5a,0xd3,0xf4,0xd2, + 0x0c,0xa3,0xe9,0xa9,0x19,0x19,0xf3,0x2a,0x34,0xc3,0x12,0xdb,0xea,0x6c,0x82,0xff,0x28,0xc7,0xda,0x79, + 0x52,0xe6,0x71,0x61,0xab,0xc6,0x13,0xae,0x75,0xb8,0x58,0x20,0x00,0x0e,0x09,0x16,0x5e,0xea,0x89,0x20, + 0xe6,0x35,0xc3,0x10,0xd7,0xa6,0xab,0x62,0x55,0x7a,0x02,0x00,0x58,0x2f,0x06,0x29,0x7d,0x54,0xbc,0x73, + 0x8e,0x08,0xc1,0xed,0xad,0xbd,0x80,0x8c,0x6b,0x55,0x2e,0x8b,0x4a,0x55,0x43,0x0f,0xe0,0x6a,0xaa,0xb7, + 0xeb,0x50,0x3f,0xe9,0x05,0xed,0x03,0x0f,0x94,0xf3,0xd6,0xd6,0xcb,0x78,0x6f,0xef,0xe0,0x3f,0xbe,0x18, + 0x1e,0x7c,0xfd,0xef,0xc3,0x83,0xe1,0x57,0x7b,0x12,0xa0,0x85,0x46,0xe0,0xe1,0x98,0xd9,0xf5,0xc6,0x38, + 0xb2,0x9a,0xfa,0x66,0x17,0x9a,0xda,0x2b,0xe6,0x73,0x2f,0xad,0xbc,0xaa,0x80,0x5b,0x56,0xe5,0x69,0xf0, + 0xc2,0xe8,0x14,0xbe,0x62,0x3e,0x8b,0x03,0x42,0xaf,0xa9,0x01,0x15,0x02,0x74,0x48,0xde,0x41,0x29,0xc2, + 0xad,0xa4,0xf9,0x15,0x1d,0xbd,0xab,0xa1,0xf7,0x77,0xfa,0x18,0x60,0x27,0x5d,0xd0,0xcf,0xca,0xb3,0x1a, + 0x55,0x4f,0x78,0x1f,0x0f,0x97,0x64,0x18,0xed,0xe4,0xca,0xc3,0x5d,0x21,0x42,0xc7,0x10,0x0f,0xd7,0x5a, + 0x68,0x2d,0x4e,0x79,0x44,0x89,0xb3,0x05,0xbf,0x7d,0xfa,0xe8,0xa1,0xb7,0x00,0x2a,0xa8,0xbc,0xd5,0x72, + 0xe8,0xb7,0x0e,0x80,0xd9,0x2a,0x77,0xd4,0xad,0x1a,0xb2,0x55,0x7a,0xd3,0x7b,0xd7,0x9f,0x96,0x83,0x77, + 0xa9,0xb8,0xcc,0x3d,0x9c,0x23,0x4f,0x2b,0xca,0x3d,0x8d,0x53,0x10,0x47,0xbc,0xe4,0x81,0xe0,0xd4,0x10, + 0x96,0xd0,0x7c,0x09,0xcd,0x7a,0xe6,0xcd,0x57,0x25,0xbd,0xe9,0x6e,0xe0,0x44,0x11,0x64,0x60,0xa4,0x60, + 0x66,0xf8,0xb0,0xf9,0x0d,0x3b,0xe3,0x3f,0xd7,0x4f,0xbe,0x30,0x35,0xfe,0xcf,0xf4,0x91,0x87,0x4f,0x1e, + 0x3c,0x97,0xdf,0x1a,0xb6,0x56,0x75,0x71,0x0e,0x10,0x47,0x56,0x1f,0x4f,0xa2,0x0c,0xd1,0x8e,0xe7,0xde, + 0xf7,0xcf,0xbd,0x74,0x36,0x83,0xbc,0xbe,0x05,0x9e,0x64,0x13,0x96,0x65,0x31,0xa1,0x85,0xc1,0xb6,0xd0, + 0x92,0x52,0xcd,0x33,0x12,0x94,0xf4,0x56,0x60,0x6d,0x17,0xe8,0x00,0xa0,0x71,0x96,0x17,0x97,0x04,0x28, + 0x69,0x8d,0x5f,0xf7,0x08,0x4e,0x66,0x08,0xe8,0x43,0x63,0xcf,0x96,0xfa,0x3b,0x84,0x3b,0xec,0x37,0x7d, + 0x97,0xef,0xf2,0x5f,0xf2,0xb3,0x87,0x1f,0xbe,0x65,0xc0,0xfc,0xef,0xe4,0xc1,0x8f,0x2c,0xcb,0xe7,0x3f, + 0xd1,0x4f,0x4d,0x99,0xcc,0xf2,0xfb,0xb9,0x57,0x2d,0xd5,0x14,0x7a,0x06,0x82,0x2e,0x1e,0x9d,0xde,0x94, + 0x16,0x78,0xd3,0xe0,0xbe,0x31,0x0d,0xbf,0x65,0x63,0xc5,0x85,0x97,0xcd,0x5b,0x67,0xab,0x5a,0x2d,0x99, + 0x51,0xf6,0xce,0x1f,0xfe,0xf8,0xd2,0x0b,0xd2,0x9a,0x37,0xac,0x26,0x6c,0xeb,0x21,0xec,0x54,0x99,0x41, + 0x28,0x88,0x3c,0x13,0x11,0x6b,0x56,0x28,0x06,0xe2,0x70,0xd8,0x0c,0xe9,0x39,0xee,0x82,0x4f,0x8b,0x05, + 0x12,0x8d,0xf8,0x5a,0x36,0x8f,0x69,0x72,0x53,0x3b,0xf9,0x86,0xaf,0x74,0xf0,0x14,0x97,0xd0,0xf6,0x12, + 0xa7,0xa9,0x8b,0x9e,0x10,0xa1,0x60,0xca,0x46,0x65,0x05,0xb4,0x34,0x60,0x3a,0x21,0x98,0xeb,0xf7,0x80, + 0x67,0xf8,0x12,0x2e,0x1b,0xaa,0xa8,0xdf,0x58,0x9a,0xb8,0xd2,0xae,0xa0,0xd4,0x03,0xd5,0x26,0x62,0xe0, + 0x1f,0xca,0x11,0x79,0xce,0x47,0x44,0xb0,0x20,0x1f,0x0c,0xaa,0xe1,0x05,0x83,0x2f,0x87,0x5f,0x5e,0x84, + 0xa6,0x3a,0x18,0x5c,0xc6,0x9f,0x00,0xc5,0x67,0x38,0xc6,0xb7,0xd4,0x3f,0x7c,0x6e,0x68,0x99,0x3e,0x49, + 0xad,0x0f,0xe9,0xb3,0xc8,0x8d,0xe4,0x6a,0x89,0xd0,0xf9,0x65,0xe8,0x37,0xcc,0xb2,0xff,0x23,0x2b,0x87, + 0xb0,0xca,0xd4,0x3d,0x43,0x97,0xcc,0x6d,0xad,0x05,0xa3,0x6b,0x50,0x63,0x4d,0xea,0xe8,0x1c,0xae,0x16, + 0x33,0xc6,0x1e,0x28,0x35,0x94,0xd8,0x20,0x75,0x94,0x35,0xe8,0x79,0xa3,0xb6,0x83,0x5b,0xb5,0x94,0xa7, + 0xdb,0xc8,0x1e,0x6c,0xed,0xdd,0xd6,0x65,0x32,0xdd,0xff,0x01,0x12,0x5a,0x54,0xff,0x07,0xb8,0xd1,0xe6, + 0x17,0xb8,0xc1,0xc6,0x17,0x64,0xdf,0x80,0x45,0x36,0x67,0x4c,0xb2,0x6d,0x99,0x29,0x6a,0xc5,0x48,0xc6, + 0xcc,0x79,0xb5,0xc4,0x58,0xcd,0xc6,0xc7,0x12,0x2d,0x09,0x0a,0xb5,0x05,0xa0,0x40,0x73,0x32,0x9e,0x81, + 0x13,0x3f,0x32,0x22,0x70,0x6b,0x2c,0x0a,0x84,0x87,0xe5,0x62,0x82,0x53,0x55,0x0b,0xa7,0xe6,0xf2,0x3a, + 0xa5,0x92,0xd3,0x51,0xe3,0xa0,0x13,0x0a,0x3f,0x25,0x4c,0x3e,0x51,0x0a,0x31,0x16,0xd1,0x78,0x95,0x2b, + 0x9d,0x23,0x72,0x71,0x25,0x44,0x67,0x91,0x56,0x35,0xe1,0xe3,0x4b,0xda,0xd9,0xd5,0xd2,0xc0,0x4f,0x46, + 0xf3,0x91,0x2f,0xbc,0x20,0xcc,0x08,0x4a,0xbb,0x4f,0xfb,0xcf,0xf7,0xd6,0x1e,0x7b,0x92,0xad,0x08,0xa4, + 0x0f,0x08,0xa1,0xe5,0x9a,0x03,0x25,0x78,0x89,0xf4,0x27,0x08,0xe3,0x9f,0x9a,0x73,0xc1,0x4a,0x9e,0x59, + 0x71,0xe2,0x47,0x5f,0xa0,0xb2,0x08,0xe7,0x33,0x4f,0xbd,0x9b,0xaa,0xa5,0xd0,0xea,0x2f,0xb7,0x76,0x52, + 0x15,0xf3,0xba,0xd3,0xc9,0x57,0x96,0xd5,0xa4,0x5a,0x18,0x86,0xa7,0x99,0x61,0xb0,0x2e,0x7f,0x21,0xe6, + 0x28,0x3d,0xc3,0x5a,0x0a,0x41,0x86,0xc2,0xc8,0xab,0x16,0xf4,0xaf,0x1f,0x7d,0xed,0x36,0x54,0xb5,0xf0, + 0x56,0xd3,0xb3,0x57,0x25,0x12,0x20,0xf9,0x87,0x1e,0xff,0xf2,0x60,0x17,0xd8,0x46,0x48,0x96,0x34,0x54, + 0xc4,0x56,0x62,0x39,0x0d,0x09,0xc9,0x49,0xf8,0xa0,0xef,0x02,0x29,0x11,0x05,0x58,0xd2,0xe2,0xd1,0xd4, + 0xf6,0x0a,0x60,0x29,0x4e,0xcb,0x46,0x55,0x79,0x10,0x5b,0xc8,0x90,0xb8,0x5c,0x68,0x3c,0x28,0x0c,0xb8, + 0x90,0x3b,0x3d,0xa6,0x87,0x44,0xa2,0x00,0x11,0x84,0x9e,0xf4,0x53,0xeb,0x2d,0x7f,0x83,0xd0,0x4f,0xa6, + 0x49,0x60,0xab,0x5c,0xc3,0x84,0x0b,0x8e,0xfc,0x31,0x67,0x8e,0x60,0xc4,0xf2,0xc5,0x07,0x39,0xfa,0x8f, + 0x65,0xe9,0xd5,0x1f,0xe3,0xe8,0x1f,0x11,0x74,0x16,0x27,0x2a,0x9f,0x2c,0xb2,0x33,0xef,0x44,0xd1,0x1a, + 0x11,0x89,0x98,0xa8,0xf7,0xd9,0x09,0xad,0x0d,0x9d,0xf0,0x74,0xa6,0xf2,0x3e,0x0e,0xff,0x09,0xbd,0xac, + 0xf4,0x38,0x41,0x65,0x89,0xc1,0x59,0xe6,0x99,0x5a,0x5d,0xd2,0xdf,0x13,0x81,0x8f,0x08,0x03,0xe4,0xc8, + 0x30,0xb4,0x31,0xef,0x15,0x78,0xfc,0x2c,0x87,0x6f,0xf9,0x2c,0xe3,0xdb,0x1b,0x97,0xc3,0xff,0x69,0x59, + 0x2d,0xd2,0x34,0xef,0xe5,0xf1,0xef,0xdb,0xd1,0x14,0x52,0xab,0x87,0xdd,0x7f,0x3b,0xfb,0x3d,0xec,0xfe, + 0xcf,0x59,0x4d,0x63,0x9d,0x9e,0x12,0xe4,0x2e,0x3e,0x9e,0xe7,0x6f,0xb7,0xd2,0x8c,0xff,0x4b,0x1a,0x18, + 0x9c,0x84,0xc0,0xe6,0xb7,0xd9,0xff,0x8c,0x06,0x7e,0xa2,0x2e,0x8a,0x7c,0x86,0x59,0xf7,0x89,0x00,0xe9, + 0xfc,0x44,0x95,0x45,0xbe,0x29,0x01,0xfc,0x90,0xc2,0xc1,0x5f,0x21,0x26,0x5e,0x39,0xc9,0x78,0xe5,0x89, + 0x52,0x9e,0xa1,0x9f,0xae,0x24,0xf0,0x4b,0x53,0x83,0x2a,0x13,0x92,0x42,0xa5,0xb6,0x34,0xf0,0x23,0x46, + 0x82,0x9e,0x64,0x28,0x1f,0x23,0x0f,0x3c,0x59,0x65,0xb3,0xec,0x44,0xf5,0xc9,0x03,0xb4,0x0a,0x5b,0xe5, + 0x81,0x66,0x30,0xb6,0x27,0x67,0x7c,0x0e,0x13,0xa7,0x3a,0x12,0xc1,0xa1,0xcb,0xa1,0x12,0xa9,0x97,0x45, + 0x66,0x68,0xe9,0x8a,0x05,0xcf,0xd2,0xf4,0x8c,0x30,0x2c,0x18,0x23,0x82,0xdf,0x45,0xf6,0x96,0x38,0xde, + 0x73,0x0f,0x8b,0xa5,0x4d,0x8f,0x2c,0x9d,0x51,0x00,0xfe,0x74,0xce,0xef,0x08,0xbc,0x48,0x1a,0x49,0x11, + 0xc2,0x03,0x11,0xf2,0x01,0x96,0x5d,0x04,0xa1,0x64,0x89,0x3d,0xc6,0x62,0x4e,0xa9,0xe5,0xd0,0x91,0x78, + 0xc2,0x7b,0xb8,0xd1,0x90,0xb0,0x09,0xd5,0x9a,0x28,0x82,0x6f,0x54,0xe1,0x48,0x0a,0x7d,0xe2,0x02,0xbd, + 0xa7,0xef,0xbf,0x75,0xc7,0x77,0xaa,0x26,0x80,0x91,0x73,0x4c,0x69,0xe8,0xbd,0x94,0x59,0xcb,0xe8,0xc0, + 0xd1,0x13,0x5a,0xcd,0x30,0x62,0x9e,0xad,0x3b,0x0c,0x12,0x15,0xa0,0x49,0x7f,0x9f,0x61,0xd6,0xa8,0xcd, + 0xc0,0x36,0x21,0xb4,0x98,0x11,0x27,0x4f,0x38,0x93,0x64,0x9b,0xbf,0x2a,0xef,0x8c,0x38,0x08,0xb7,0xb7, + 0xa2,0x38,0x73,0x17,0x97,0xd8,0x34,0xc2,0x9d,0xc5,0x12,0xd3,0x6d,0x6d,0x00,0x31,0xad,0x4b,0xcc,0x69, + 0x56,0xae,0xce,0xb0,0x22,0x75,0x51,0x63,0xe8,0x33,0x91,0x15,0x52,0x00,0x27,0x2d,0x65,0x57,0x54,0x70, + 0x76,0x1a,0x67,0x96,0xc9,0xb0,0x06,0xda,0x0d,0x81,0x41,0xd7,0xed,0xdd,0x08,0xf4,0x4f,0xab,0xa4,0x08, + 0xfe,0x3a,0x12,0xc3,0x2f,0xab,0x85,0x77,0x9a,0xf1,0x91,0x51,0x25,0x2f,0x0a,0x9f,0x34,0xaa,0x76,0x99, + 0x4e,0x4f,0xeb,0xcb,0x02,0x62,0x43,0x46,0xab,0xa3,0xf2,0x66,0xb9,0xa8,0x26,0x5f,0x07,0xad,0x78,0x65, + 0x3d,0x42,0xca,0x25,0x20,0x9b,0x57,0xa4,0xda,0x2a,0x44,0xfc,0x6a,0x3b,0x34,0x62,0xc4,0x77,0x6a,0x52, + 0xae,0x08,0x57,0x6e,0x13,0x25,0x68,0x59,0x19,0xd2,0x98,0x9b,0x27,0x32,0x45,0xab,0xa6,0x2e,0xb3,0xb7, + 0xef,0x01,0x7c,0x69,0xde,0x37,0xd3,0xa1,0xf7,0x2b,0x01,0x23,0xb5,0xcb,0xde,0xe6,0x0c,0xc7,0x97,0x24, + 0x91,0xbd,0x55,0xee,0x8e,0xa1,0xe5,0x82,0x58,0x1e,0x9a,0x13,0xfd,0xf3,0x3e,0x7b,0x8b,0xf7,0x97,0x8a, + 0x66,0x7e,0x99,0xb2,0xe7,0x2a,0x2d,0xb5,0xd2,0x68,0x7b,0x02,0x03,0xa2,0x4d,0xc1,0x82,0x1e,0xb7,0x8a, + 0x15,0xb8,0xaf,0xfc,0xb0,0x60,0x91,0x9e,0x6f,0x08,0x16,0x39,0x50,0x39,0x2d,0x35,0xe1,0x37,0x10,0x3c, + 0x3a,0x02,0x3c,0xe8,0xe6,0xd0,0x10,0xcf,0xaa,0x32,0x3e,0x4d,0x4b,0x23,0x5c,0xa4,0xe7,0x46,0xb8,0x48, + 0x17,0x15,0x86,0x6e,0xcf,0x24,0x0b,0x15,0xbc,0xa9,0x44,0x57,0x56,0x04,0x16,0x22,0x65,0x50,0x53,0x39, + 0xe6,0x30,0x6c,0x61,0x42,0x46,0x6b,0x55,0x66,0x6f,0x2f,0xd0,0xad,0x53,0xdb,0x4a,0x1d,0x38,0x2c,0x74, + 0x10,0xb6,0x4a,0x1d,0x2f,0x81,0xa6,0x69,0xdd,0x66,0x46,0xee,0xc0,0xda,0x6c,0x95,0x3a,0xb6,0x89,0x1d, + 0xb4,0x27,0xd5,0x62,0xc5,0x12,0x0f,0x60,0xfb,0xd3,0xa5,0x8f,0x49,0xf6,0x96,0x18,0x3f,0x3e,0x18,0xbf, + 0x5f,0x00,0x71,0xb8,0xdc,0x0f,0x08,0x1e,0xad,0x9e,0xdd,0xe3,0xcf,0xc7,0xdc,0xca,0x1e,0x6a,0x4e,0x90, + 0x96,0x9e,0xb4,0x84,0x8f,0x43,0x92,0x6e,0x69,0xbf,0x44,0xf2,0x58,0xde,0x26,0x79,0x80,0x62,0x69,0xb6, + 0x40,0x0f,0x8a,0x51,0x52,0xb1,0x3c,0x4d,0x19,0x8d,0x77,0x65,0x0f,0xd4,0x77,0x88,0x1b,0xcc,0x11,0xd5, + 0x62,0xc1,0x4b,0xda,0xd3,0xd2,0xc8,0x07,0xce,0x57,0x6e,0x6b,0xb2,0x21,0x88,0x7c,0xc4,0xd7,0x5c,0x36, + 0xe4,0x63,0x3f,0xa7,0xdb,0x6c,0x4a,0x25,0x68,0xe8,0x6e,0x50,0x7b,0x78,0x5d,0x99,0xe4,0x31,0xa1,0x37, + 0x92,0xa5,0xdf,0x12,0x71,0xae,0x1a,0xe0,0x60,0x80,0xef,0x13,0x4c,0xd0,0xf9,0xd9,0x42,0x81,0x1f,0x46, + 0xb7,0xef,0x49,0x3a,0x42,0xaf,0xae,0x68,0xe2,0x32,0x69,0xac,0x92,0xb8,0x80,0x7e,0x75,0x0a,0x15,0xcf, + 0x29,0x8e,0x0d,0x31,0x69,0x4c,0xc9,0x68,0xfc,0x35,0xd5,0xfa,0xb0,0x00,0x42,0x40,0x60,0xd9,0x3b,0x96, + 0x41,0xa8,0x02,0x31,0x28,0xa5,0x1c,0xb8,0xc8,0xf6,0x2a,0x24,0xa5,0x5f,0x12,0xf9,0x29,0x07,0xbf,0x03, + 0x69,0x84,0xd8,0x27,0xe8,0xe5,0x20,0xbb,0x7f,0xf9,0x81,0xae,0xfa,0xe5,0x91,0x27,0xa6,0x0e,0xcd,0xeb, + 0x7d,0xa1,0xce,0x74,0x5d,0x73,0x6a,0x45,0x28,0x39,0x83,0xc1,0x90,0x02,0x3a,0xa7,0xc5,0x04,0x21,0x25, + 0x9c,0xb5,0xa4,0xb9,0x82,0x61,0x6b,0x84,0x13,0x5a,0x21,0x62,0xc2,0x7a,0xe4,0x13,0x30,0xc8,0x1d,0x09, + 0x65,0x02,0xee,0x2f,0x3b,0x9b,0x10,0x0a,0x21,0x6a,0x5d,0xaf,0x56,0x42,0x84,0x34,0x4b,0x41,0xfd,0x63, + 0x85,0x69,0x03,0x09,0x4f,0xe7,0x20,0x35,0x79,0x7d,0x99,0xd1,0x30,0x16,0x78,0xaf,0xf2,0x3d,0x92,0xe1, + 0xb1,0x0f,0xd8,0x68,0x69,0x78,0xd1,0x4f,0x17,0x98,0x03,0xc9,0x40,0xcf,0x4b,0xf4,0x08,0x74,0x0a,0xe0, + 0x85,0x41,0x63,0xfe,0x01,0x81,0x45,0x13,0xdb,0x8e,0xc8,0xf2,0x8b,0x69,0xbd,0x55,0x6e,0x61,0x48,0x77, + 0x26,0x9b,0x6b,0x96,0x51,0x06,0xcb,0x4c,0xe3,0x7a,0x84,0x6b,0xe9,0x0c,0xda,0x3a,0xc8,0x91,0x45,0x59, + 0x35,0x97,0x25,0xb8,0xe6,0xd4,0xd9,0x5f,0x7a,0x42,0xe0,0xd6,0xda,0x32,0xd3,0x1a,0xc4,0x4b,0xcc,0xa6, + 0xba,0xbc,0x1a,0xb3,0x9f,0x2a,0x3f,0x32,0xc6,0x49,0xda,0x3f,0x6f,0x6e,0xf6,0xa3,0x76,0xc9,0xb7,0x89, + 0x69,0xa9,0x9d,0x13,0xe8,0x17,0x4c,0x52,0xe9,0x63,0x71,0xa7,0xaf,0x41,0x72,0x10,0xf5,0x7b,0x31,0x20, + 0x00,0xd4,0x96,0xab,0x38,0xbe,0xab,0xd7,0x9f,0xa0,0x05,0x4a,0xaf,0x6e,0x6e,0x0e,0xfa,0xaf,0xc2,0x8d, + 0xf7,0x4a,0x10,0x4a,0x70,0xa9,0x30,0x8c,0x37,0x86,0x04,0xaf,0x26,0x73,0x0b,0xfc,0x54,0x6e,0xa5,0x7e, + 0x90,0x2b,0xe0,0xa7,0x01,0x1b,0xc2,0x13,0x59,0x68,0x22,0xd0,0x2f,0x88,0xa5,0x5b,0x41,0x26,0x85,0x7f, + 0x55,0x1d,0xf8,0xbb,0x3e,0x72,0xe6,0x45,0xc6,0x9f,0xee,0xa9,0xd4,0xf7,0xb1,0x8b,0x5a,0x7a,0xad,0xe2, + 0x7f,0xa8,0xb5,0x5c,0x34,0x6b,0xdb,0xd7,0x65,0x49,0x10,0x34,0x95,0x4b,0xb4,0x25,0x4c,0x09,0xf0,0x31, + 0x7a,0xaf,0xaf,0xb1,0xcb,0xf8,0x17,0x15,0xf1,0x4d,0x7c,0xfc,0x77,0x15,0xe1,0x8e,0x3d,0xfe,0x41,0x45, + 0x6a,0x11,0xfb,0x9f,0x11,0xe2,0xf3,0xfb,0xf2,0x00,0xdb,0x80,0x54,0x3f,0xc0,0xc0,0x78,0x1d,0xb9,0xb7, + 0x6f,0xb0,0xd3,0xf7,0x57,0x10,0xd4,0x39,0xc1,0x9d,0xdf,0x78,0xe1,0x95,0x9d,0xb4,0xb0,0x12,0xd6,0x16, + 0x89,0xc6,0x39,0xc1,0xbd,0x72,0x13,0xdc,0xeb,0x14,0x07,0x0a,0x91,0xd8,0xd3,0x24,0xc3,0x9c,0xab,0xe4, + 0x9a,0x98,0xb2,0x7a,0xe0,0xc7,0xfe,0xa0,0x88,0xa6,0xc4,0xcb,0x64,0x47,0x07,0xc7,0x34,0xed,0x59,0x96, + 0xd2,0xe3,0x17,0x54,0xa3,0x58,0x11,0x18,0x72,0xbe,0xc0,0xa3,0x2f,0x8f,0xd7,0xa3,0xf2,0x28,0x3d,0x1e, + 0xe3,0x1f,0xa4,0xed,0xa9,0xb5,0xd7,0x5b,0x65,0x93,0xbf,0xe2,0x0d,0xf7,0x99,0x46,0xfc,0x3e,0x3e,0xaa, + 0x8e,0xd7,0x36,0xae,0x46,0xbe,0xce,0x87,0xa5,0x44,0x79,0x9e,0x05,0x2a,0xf2,0xb5,0xf3,0xa1,0xdf,0x17, + 0x14,0xeb,0x74,0x6d,0x83,0x03,0xf5,0xb9,0xd1,0x98,0x10,0xb9,0x1c,0x6b,0xbd,0xe7,0xfd,0xc3,0x47,0xf7, + 0x7f,0xfe,0xee,0xee,0x5d,0xfd,0x67,0xa7,0x08,0x25,0xa8,0x66,0x13,0xe9,0xd9,0xbf,0x58,0xa9,0xdd,0xaa, + 0xbe,0x5a,0xa8,0x5d,0x3e,0xd0,0x25,0x14,0xfe,0x50,0x28,0x4c,0x48,0x1a,0xa8,0xf4,0x7d,0x80,0x97,0x17, + 0xf9,0xee,0x84,0x1a,0x56,0xe0,0x6e,0xf3,0x8b,0x8c,0x58,0x62,0x0e,0xcc,0xeb,0x41,0xd9,0x7d,0xed,0x89, + 0xdd,0x56,0xec,0xdd,0x83,0x19,0xfe,0x3d,0x6f,0xcd,0xf9,0x49,0xa1,0x41,0xf9,0x55,0x4d,0x96,0x38,0xe5, + 0x02,0x2e,0x7c,0x55,0x21,0x96,0x4a,0xc4,0xd6,0x78,0x15,0x4b,0xed,0xbb,0x02,0x04,0xa0,0x93,0x6e,0xcf, + 0x3a,0x41,0x4d,0x86,0x4d,0x4c,0x13,0xe4,0xe6,0xb2,0xd1,0x80,0x4f,0x55,0x3a,0xbb,0xb9,0xe9,0x49,0x7f, + 0x51,0xdd,0xbf,0x7a,0x95,0x9e,0xc0,0x4c,0x2e,0xf0,0x51,0xc9,0x97,0x24,0x90,0x95,0xb8,0xe4,0x4e,0x93, + 0xfd,0x68,0x05,0x18,0x5d,0xb4,0x3d,0x7c,0x25,0x99,0x73,0xb4,0x4c,0x7c,0x18,0x4e,0xed,0xf2,0x7a,0x54, + 0xe5,0x6e,0x06,0x4e,0xbc,0x77,0xcd,0xed,0x11,0xba,0x7b,0x77,0xef,0xbc,0x22,0xae,0xf9,0xe8,0xeb,0xdd, + 0xff,0x38,0x7e,0x3d,0xd1,0x11,0x58,0x7a,0x72,0x3c,0x74,0x22,0xca,0x34,0x70,0xab,0xdd,0xab,0x10,0xa0, + 0x6d,0x95,0xe4,0x34,0x94,0x02,0x79,0x0c,0x47,0x3a,0xdb,0xa4,0x84,0xd5,0xd5,0x80,0x70,0x1e,0xa4,0x8e, + 0x03,0x61,0x17,0xd8,0x05,0xce,0xd3,0x0d,0x38,0xaf,0x92,0x14,0x39,0x94,0x82,0x29,0x01,0x7a,0x35,0xcc, + 0x66,0xc7,0x88,0x88,0x3c,0xaf,0x76,0x77,0x23,0x0d,0xa9,0xd3,0x70,0xad,0xc6,0xd4,0xb7,0xfe,0x5a,0x18, + 0xa7,0x88,0x46,0x87,0xbe,0xa5,0xcb,0x7c,0xa3,0xcb,0x29,0x60,0x0d,0xbe,0xcf,0xd4,0x69,0x8e,0x34,0x4d, + 0xdc,0x63,0x33,0x9e,0x15,0xb5,0x5b,0x7d,0x33,0xd5,0x07,0x43,0xb7,0x5e,0x51,0x6b,0x5d,0x74,0xb4,0x3a, + 0x0e,0xc2,0x91,0x51,0xa1,0x1d,0x4d,0x31,0xaa,0xb5,0x9b,0x91,0xea,0x9c,0x03,0x13,0x98,0x14,0xa8,0xd4, + 0x9b,0x6a,0x12,0xa0,0x2a,0x33,0x8a,0x3c,0xa9,0x8f,0x14,0x0e,0x79,0x76,0x94,0xa3,0x07,0x9d,0x76,0xab, + 0xe4,0xc1,0x0c,0x06,0x4e,0x76,0x2a,0xcc,0xa2,0x6c,0x8f,0x06,0x73,0xd1,0x45,0x34,0x81,0x20,0xb7,0x8f, + 0x12,0xe5,0x92,0xa7,0xbd,0xad,0x81,0x2c,0xdb,0x89,0xdb,0x08,0x28,0xd1,0xad,0xfe,0x6d,0xbb,0x35,0xc1, + 0x6e,0xfb,0x7d,0xd2,0x7e,0x2f,0x61,0x29,0x74,0x4c,0xe6,0xce,0xe2,0x6f,0x8c,0x22,0xed,0xfd,0xbe,0x5e, + 0x04,0x46,0x39,0x78,0x8a,0xb0,0x0a,0xf1,0x81,0x46,0x3e,0x69,0x6b,0x79,0x2f,0xac,0xc5,0x99,0x3d,0x42, + 0x2d,0x93,0x7e,0x98,0xeb,0x5d,0xc1,0x28,0xbf,0x09,0xf5,0xcc,0x71,0x1c,0xfc,0x5a,0xbd,0xab,0xf7,0xa6, + 0xb8,0x35,0x4a,0x75,0xae,0xf5,0x07,0x48,0x18,0xc9,0x4e,0x49,0x4e,0x46,0x03,0x4b,0x88,0x11,0xcc,0x68, + 0x6b,0x0c,0x6f,0xfe,0xc6,0x91,0x3f,0x58,0x0e,0xee,0xfd,0xaf,0x84,0x23,0x46,0x66,0xb3,0xc1,0x3d,0xff, + 0xf8,0x9e,0x49,0xa0,0xc6,0x19,0x1c,0xf5,0x08,0x16,0xb2,0xc0,0xd4,0xcd,0x8f,0x84,0x60,0x74,0x2c,0x1b, + 0xf9,0x78,0xc9,0x51,0xe8,0x67,0x26,0xe0,0xf5,0x94,0xb6,0xbe,0x4c,0xaa,0x9b,0x9b,0xa0,0x4a,0x68,0xa2, + 0x44,0x5c,0x93,0xc3,0x21,0xf8,0x70,0xc9,0xa3,0x56,0xea,0x00,0x2f,0xf9,0x66,0xe9,0xbe,0x49,0xf9,0x82, + 0x76,0xd4,0xec,0x81,0x5b,0x01,0x2d,0x5c,0xdc,0x7c,0xcb,0x68,0x2c,0xd7,0x81,0x75,0x71,0x03,0x02,0xd9, + 0x69,0x95,0x43,0x5a,0x44,0x09,0xb5,0x52,0x55,0x08,0xa9,0xc8,0x74,0x86,0x0b,0xf8,0x09,0x45,0x96,0xde, + 0x88,0x15,0xa2,0xf9,0xa5,0x17,0x64,0x44,0x9d,0x27,0xa5,0x49,0x7d,0x12,0xe8,0xb0,0xeb,0x57,0xd1,0x24, + 0x09,0xae,0x80,0x0d,0xda,0x26,0x2b,0x26,0xc3,0x06,0x52,0x37,0xa9,0xe8,0xca,0x24,0xb8,0xbc,0x2f,0xc9, + 0x61,0xc3,0xe1,0x5b,0x92,0xd4,0x02,0xff,0x35,0x1b,0xff,0x34,0xa8,0xe9,0x70,0x23,0x31,0xc5,0xd8,0xf7, + 0x63,0x1e,0x3b,0x3b,0x7c,0x0f,0x79,0x07,0x5f,0x9e,0x2a,0x12,0x80,0xdd,0x1f,0xa8,0xf0,0x8a,0x20,0x25, + 0x99,0x10,0x69,0x2b,0x9c,0xa8,0xff,0x59,0x17,0xde,0x50,0x0b,0x2b,0x18,0x14,0x48,0x78,0x55,0x4b,0xfa, + 0x51,0x14,0x54,0xa3,0x94,0xce,0xb6,0x64,0xea,0x6b,0xd6,0x16,0x65,0x54,0xd1,0xe6,0x00,0x87,0x4f,0x19, + 0xb1,0xf1,0xf7,0xd9,0x81,0x06,0xf1,0x2b,0xf1,0x3e,0xae,0x5b,0xa0,0x99,0xb9,0x31,0xbe,0x1f,0xb8,0xb9, + 0x89,0x14,0xc6,0x19,0x71,0xba,0x3b,0xac,0x39,0xbb,0x5f,0xdb,0x65,0xd6,0x89,0x99,0xd8,0xfc,0xd0,0x09, + 0x2c,0xcf,0x35,0x7d,0x40,0xc3,0x7c,0x48,0x24,0xe2,0xfb,0xd9,0x46,0x95,0x25,0x02,0x61,0xce,0xc2,0x08, + 0xf4,0x2a,0x1f,0x24,0xb4,0xa8,0x7b,0x9f,0x7f,0xe6,0x49,0xbf,0x08,0x2d,0x41,0xec,0x85,0xfe,0x0a,0x3c, + 0xd6,0x07,0xbe,0xf7,0x39,0xec,0xfb,0x3a,0x15,0x69,0x00,0x24,0x25,0x9f,0xa0,0x3e,0x9b,0xf2,0x42,0x46, + 0xd4,0x46,0x3d,0x7b,0x6f,0x49,0x4c,0x1a,0xc1,0xdb,0xf0,0xeb,0xaf,0x22,0x7f,0x30,0xa9,0x8b,0x34,0x58, + 0xe5,0x24,0x26,0xa4,0x88,0xb1,0x96,0x6f,0xa4,0xd1,0xeb,0xa4,0x49,0x29,0xc0,0x37,0xca,0x57,0xc5,0x4a, + 0xf9,0xf6,0x1d,0xcc,0x65,0xf3,0x18,0x25,0xd6,0x04,0x36,0x24,0x04,0xf1,0xb2,0x8e,0xc2,0xf6,0xce,0xb8, + 0xef,0x60,0x39,0xe6,0xee,0xc0,0xb6,0x3d,0xcf,0xe1,0x40,0xbe,0x26,0x84,0xfb,0xdf,0xf6,0xf6,0x7a,0x26, + 0x3e,0x59,0xe1,0x12,0x69,0xf8,0x16,0x4e,0x90,0xcb,0xff,0x0b,0x45,0x56,0x50,0xed,0x4c,0xea,0x02,0x00}; #endif diff --git a/src/server/static.cpp b/src/server/static.cpp index 159d975..c0cc131 100644 --- a/src/server/static.cpp +++ b/src/server/static.cpp @@ -8,7 +8,6 @@ #include "../debug.h" #include "../assets/html.h" #include "../assets/js.h" -#include "../assets/css.h" void handleGzipped(AsyncWebServerRequest *request, const String& contentType, const uint8_t * content, size_t len) @@ -25,5 +24,4 @@ void registerStaticRoutes(AsyncWebServer* server) server->on("/", HTTP_GET, [](AsyncWebServerRequest *request) { handleGzipped(request, "text/html", EmbeddedIndex, sizeof(EmbeddedIndex)); }); server->on("/bundle.js", HTTP_GET, [](AsyncWebServerRequest *request) { handleGzipped(request, "text/javascript", EmbeddedBundleJS, sizeof(EmbeddedBundleJS)); }); - server->on("/bundle.css", HTTP_GET, [](AsyncWebServerRequest *request) { handleGzipped(request, "text/css", EmbeddedBundleCSS, sizeof(EmbeddedBundleCSS)); }); } \ No newline at end of file diff --git a/web/app.js b/web/app.js deleted file mode 100644 index 3db7b47..0000000 --- a/web/app.js +++ /dev/null @@ -1,615 +0,0 @@ -function startApp() -{ - // Source: https://github.com/axios/axios/issues/164 - axios.interceptors.response.use(undefined, function axiosRetryInterceptor(err) { - var config = err.config; - // If config does not exist or the retry option is not set, reject - if(!config || !config.retry) return Promise.reject(err); - - // Set the variable for keeping track of the retry count - config.__retryCount = config.__retryCount || 0; - - // Check if we've maxed out the total number of retries - if(config.__retryCount >= config.retry) { - // Reject with the error - return Promise.reject(err); - } - - // Increase the retry count - config.__retryCount += 1; - - // Create new promise to handle exponential backoff - var backoff = new Promise(function(resolve) { - setTimeout(function() { - resolve(); - }, config.retryDelay || 1); - }); - - // Return the promise in which recalls axios to retry the request - return backoff.then(function() { - return axios(config); - }); - }); - - Vue.component('check', { - template: '
{{ title }}
', - props: { - title: String, - value: { - type: Boolean, - default: false - }, - disabled: { - type: Boolean, - default: false - } - }, - - methods: { - handleClick: function() - { - if (this.disabled) return; - this.value = !this.value; - this.$emit('input', this.value); - }, - - handleKeyDown: function(event) - { - if (event.keyCode == 32) - { - this.handleClick(); - event.preventDefault(); - } - } - } - }); - - - Vue.component('radio', { - template: '
{{ title }}
', - props: { - title: String, - value: null, - id: null, - disabled: { - type: Boolean, - default: false - } - }, - - methods: { - handleClick: function() - { - if (this.disabled) return; - this.value = this.id; - this.$emit('input', this.value); - }, - - handleKeyDown: function(event) - { - if (event.keyCode == 32) - { - this.handleClick(); - event.preventDefault(); - } - } - } - }); - - - Vue.component('range', { - template: '
' + - '
' + - '{{ value.start }}' + - '
' + - '' + - '
' + - '
' + - - '
' + - '{{ value.end }}' + - '
' + - '' + - '
' + - '
' + - '
', - props: ['value'], - - mounted: function() - { - this.oldValue = { start: this.value.start, end: this.value.end }; - }, - - watch: { - value: { - handler: function(newValue) - { - if (newValue.start != this.oldValue.start) - { - if (newValue.start > newValue.end) - { - newValue.end = newValue.start + 1; - this.$emit('input', newValue); - } - } - else if (newValue.end != this.oldValue.end) - { - if (newValue.end < newValue.start) - { - newValue.start = newValue.end - 1; - this.$emit('input', newValue); - } - } - - this.oldValue.start = newValue.start; - this.oldValue.end = newValue.end; - }, - deep: true - } - } - }); - - var i18n = new VueI18n({ - locale: navigator.language.split('-')[0], - fallbackLocale: 'en', - messages: messages - }); - - var app = new Vue({ - el: '#app', - - i18n: i18n, - - data: { - notification: null, - - loading: true, - saving: false, - settingStatic: false, - loadingIndicator: '|', - uploadProgress: false, - - activeTab: 'status', - - status: { - systemID: 'loading...', - version: 'loading...', - resetReason: null, - stackTrace: false - }, - - wifiStatus: { - ap: { - enabled: false, - ip: '0.0.0.0' - }, - station: { - enabled: false, - status: 0, - ip: '0.0.0.0' - } - }, - - connection: { - hostname: null, - accesspoint: true, - station: false, - ssid: null, - password: null, - dhcp: true, - ip: null, - subnetmask: null, - gateway: null - }, - - system: { - pins: { - ledAP: null, - ledSTA: null, - apButton: null, - }, - ledCount: null - }, - - static: { - r: 0, - g: 0, - b: 0, - w: 0 - } - }, - - created: function() - { - var self = this; - - self.notificationTimer = null; - self.disableSetStatic = false; - self.setStaticTimer = false; - - document.title = i18n.t('title'); - var hash = window.location.hash.substr(1); - if (hash) - self.activeTab = hash; - - self.startLoadingIndicator(); - self.updateWiFiStatus(); - - - // Sequential loading of all the settings makes sure - // we don't overload the ESP8266 with requests, as that - // can cause it to run out of memory easily. - // This is a horrible way to implement it, but I don't feel like - // including a big library or working out a clean short solution - // at the moment, and it works :) - self.loadStatus().then(function() - { - self.loadConnection().then(function() - { - self.loadSystem().then(function() - { - self.stopLoadingIndicator(); - self.loading = false; - }); - }); - }); - }, - - methods: { - showNotification: function(message, error) - { - var self = this; - self.notification = { - message: message, - error: error - }; - - if (self.notificationTimer != null) - clearTimeout(self.notificationTimer); - - self.notificationTimer = setTimeout(function() - { - self.notification = null; - self.notificationTimer = null; - }, 5000); - }, - - hideNotification: function() - { - var self = this; - self.notification = null; - - if (self.notificationTimer != null) - { - clearTimeout(self.notificationTimer); - self.notificationTimer = null; - } - }, - - handleAPIError: function(messageId, error) - { - var self = this; - - console.log(error); - var errorMessage = ''; - - if (error.response) - { - errorMessage = 'HTTP response code ' + error.response.status; - } - else if (error.request) - { - errorMessage = 'No response'; - } - else - { - errorMessage = error.message; - } - - self.showNotification(i18n.t(messageId) + '\n\n' + errorMessage, true); - }, - - loadStatus: function() - { - var self = this; - return axios.get('/api/status', { retry: 10, retryDelay: 1000 }) - .then(function(response) - { - if (typeof response.data == 'object') - self.status = response.data; - }) - .catch(self.handleAPIError.bind(self, 'error.loadStatus')); - }, - - loadConnection: function() - { - var self = this; - return axios.get('/api/connection', { retry: 10, retryDelay: 1000 }) - .then(function(response) - { - if (typeof response.data == 'object') - self.connection = response.data; - }) - .catch(self.handleAPIError.bind(self, 'error.loadConnection')); - }, - - loadSystem: function() - { - var self = this; - return axios.get('/api/system', { retry: 10, retryDelay: 1000 }) - .then(function(response) - { - if (typeof response.data == 'object') - self.system = response.data; - }) - .catch(self.handleAPIError.bind(self, 'error.loadSystem')); - }, - - - applyConnection: function() - { - var self = this; - if (self.saving) return; - - self.saving = true; - - axios.post('/api/connection', { - hostname: self.connection.hostname, - accesspoint: self.connection.accesspoint, - station: self.connection.station, - ssid: self.connection.ssid, - password: self.connection.password, - dhcp: self.connection.dhcp, - ip: self.connection.ip, - subnetmask: self.connection.subnetmask, - gateway: self.connection.gateway, - }, { retry: 10, retryDelay: 1000, headers: { 'Content-Type': 'application/json' } }) - .then(function(response) - { - }) - .catch(self.handleAPIError.bind(self, 'error.applyConnection')) - .then(function() - { - self.saving = false; - }); - }, - - applySystem: function() - { - var self = this; - if (self.saving) return; - - self.saving = true; - - axios.post('/api/system', self.system, { retry: 10, retryDelay: 1000, headers: { 'Content-Type': 'application/json' } }) - .then(function(response) - { - self.showNotification(i18n.t('rebootPending')); - }) - .catch(self.handleAPIError.bind(self, 'error.applySystem')) - .then(function() - { - self.saving = false; - }); - }, - - startLoadingIndicator: function() - { - var self = this; - - self.loadingStage = 0; - self.loadingTimer = setInterval(function() - { - self.loadingStage++; - switch (self.loadingStage) - { - case 1: self.loadingIndicator = '/'; break; - case 2: self.loadingIndicator = '-'; break; - case 3: self.loadingIndicator = '\\'; break; - case 4: self.loadingIndicator = '|'; self.loadingStage = 0; break; - } - }, 250); - }, - - stopLoadingIndicator: function() - { - clearInterval(this.loadingTimer); - }, - - getWiFiStationStatus: function() - { - if (!this.wifiStatus.station.enabled) - return 'disconnected'; - - switch (this.wifiStatus.station.status) - { - case 0: // WL_IDLE_STATUS - case 2: // WL_SCAN_COMPLETED - return 'connecting'; - - case 1: // WL_NO_SSID_AVAIL - case 4: // WL_CONNECT_FAILED - case 5: // WL_CONNECTION_LOST - return 'error'; - - case 3: // WL_CONNECTED - return 'connected'; - - case 6: // WL_DISCONNECTED - default: - return 'disconnected'; - } - }, - - getWiFiStationStatusText: function() - { - if (!this.wifiStatus.station.enabled) - return i18n.t('wifiStatus.stationmode.disabled'); - - switch (this.wifiStatus.station.status) - { - case 0: // WL_IDLE_STATUS - return i18n.t('wifiStatus.stationmode.idle'); - - case 1: // WL_NO_SSID_AVAIL - return i18n.t('wifiStatus.stationmode.noSSID'); - - case 2: // WL_SCAN_COMPLETED - return i18n.t('wifiStatus.stationmode.scanCompleted'); - - case 3: // WL_CONNECTED - return this.wifiStatus.station.ip; - - case 4: // WL_CONNECT_FAILED - return i18n.t('wifiStatus.stationmode.connectFailed'); - - case 5: // WL_CONNECTION_LOST - return i18n.t('wifiStatus.stationmode.connectionLost'); - - case 6: // WL_DISCONNECTED - default: - return i18n.t('wifiStatus.stationmode.disconnected'); - } - }, - - updateWiFiStatus: function() - { - var self = this; - if (!self.saving) - { - axios.get('/api/connection/status', { retry: 10, retryDelay: 1000 }) - .then(function(response) - { - if (typeof response.data == 'object') - self.wifiStatus = response.data; - }) - .catch(self.handleAPIError.bind(self, 'error.updateWiFiStatus')) - .then(function() - { - setTimeout(self.updateWiFiStatus, 5000); - }); - } - else - setTimeout(self.updateWiFiStatus, 5000); - }, - - uploadFirmware: function() - { - var self = this; - if (self.saving) return; - - self.saving = true; - self.uploadProgress = 0; - - - var data = new FormData(); - data.append('file', document.getElementById('firmwareFile').files[0]); - - var config = { - timeout: 360000, - onUploadProgress: function(progressEvent) - { - self.uploadProgress = Math.round((progressEvent.loaded * 100) / progressEvent.total); - } - }; - - axios.post('/api/firmware', data, config) - .then(function(response) - { - self.showNotification(i18n.t('rebootPending')); - }) - .catch(self.handleAPIError.bind(self, 'error.uploadFirmware')) - .then(function() - { - self.uploadProgress = false; - self.saving = false; - - document.getElementById('firmware').reset(); - }); - }, - - deleteStackTrace: function() - { - var self = this; - - return axios.get('/api/stacktrace/delete', { retry: 10, retryDelay: 1000 }) - .then(function(response) - { - self.status.resetReason = 0; - self.status.stackTrace = false; - }) - .catch(self.handleAPIError.bind(self, 'error.stackTraceDeleteError')); - }, - - staticOff: function() - { - this.static = { - r: 0, - g: 0, - b: 0, - w: 0 - }; - }, - - - staticChanged: function() - { - var self = this; - if (self.loading || self.disableStaticChanged) return; - - if (self.setStaticTimer === false) - self.setStaticTimer = setTimeout(function() { self.setStatic(); }, 200); - }, - - setStatic: function() - { - var self = this; - - if (self.settingStatic) - self.setStaticTimer = setTimeout(function() { self.setStatic(); }, 200); - - self.settingStatic = true; - self.setStaticTimer = false; - - - axios.get('/api/set/static', { params: this.static }) - .then(function(response) - { - }) - .catch(self.handleAPIError.bind(self, 'error.setColor')) - .then(function() - { - self.settingStatic = false; - }); - }, - }, - - computed: { - hasResetError: function() - { - var self = this; - - /* - REASON_DEFAULT_RST = 0 normal startup by power on - REASON_WDT_RST = 1 hardware watch dog reset - REASON_EXCEPTION_RST = 2 exception reset, GPIO status won’t change - REASON_SOFT_WDT_RST = 3 software watch dog reset, GPIO status won’t change - REASON_SOFT_RESTART = 4 software restart ,system_restart , GPIO status won’t change - REASON_DEEP_SLEEP_AWAKE = 5 wake up from deep-sleep - REASON_EXT_SYS_RST = 6 system reset - */ - return (self.status.resetReason === 1 || - self.status.resetReason === 2 || - self.status.resetReason === 3 || - self.status.stackTrace); - } - }, - - watch: { - static: { - handler: function(newValue) { this.staticChanged(); }, - deep: true - } - } - }); -} \ No newline at end of file diff --git a/web/dist/bundle.css b/web/dist/bundle.css deleted file mode 100644 index 375d0d7..0000000 --- a/web/dist/bundle.css +++ /dev/null @@ -1 +0,0 @@ -html{overscroll-behavior-x:contain;box-sizing:border-box;font-size:62.5%}*,:after,:before{box-sizing:inherit}body{overscroll-behavior-x:contain;background-color:#141414;color:#fff;font-family:Verdana,Arial,sans-serif;font-size:1.3em;font-weight:300;letter-spacing:.01em;line-height:1.3;padding-bottom:3rem}@media screen and (min-width:768px){body{padding-top:3rem}}a{text-decoration:none}[v-cloak]{display:none}#container{background:#202020;margin-top:2rem;padding:1rem;box-shadow:0 0 50px #fcf6cf;border:solid 1px #000}@media screen and (min-width:768px){#container{width:768px;margin-left:auto;margin-right:auto}}.header{position:relative}.header img{float:left;margin-right:1rem}@media screen and (max-width:767px){.header .wifistatus{clear:both;margin-top:3rem}}@media screen and (min-width:768px){.header .wifistatus{position:absolute;right:0;top:0}}.header .wifistatus .indicator{display:inline-block;width:1rem;height:1rem;border-radius:50%;margin-right:.5rem}.header .wifistatus .indicator[data-status=connected]{background-color:#396}.header .wifistatus .indicator[data-status=disconnected]{border:solid 1px grey}.header .wifistatus .indicator[data-status=connecting]{background-color:#f93}.header .wifistatus .indicator[data-status=error]{background-color:#c00}.button,.check .control,.notification,.panel .panel-body,.panel .panel-header,.radio .control,.warning,button,h3,input[type=submit],select{border:1px solid #111;border-radius:3px;box-shadow:inset 0 1px rgba(255,255,255,.1),inset 0 -1px 3px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.08),0 1px 2px rgba(0,0,0,.15)}.button.active,.button:active,button.active,button:active,input.active[type=submit],input[type=number],input[type=password],input[type=submit]:active,input[type=text],textarea{border:1px solid #111;border-color:#000 #111 #111;box-shadow:inset 0 1px 2px rgba(0,0,0,.25),0 1px rgba(255,255,255,.08)}button,input{font-family:Verdana,Arial,sans-serif}input{-webkit-appearance:none;-moz-appearance:none;appearance:none}.button,button,input[type=submit]{display:inline-block;padding:0 12px;color:#ddd;background:#404040;cursor:pointer;line-height:3rem}.button.focus,.button:focus,.button:hover,button.focus,button:focus,button:hover,input[type=submit].focus,input[type=submit]:focus,input[type=submit]:hover{color:#ddd;background:#505050;outline:0}.button.active,.button:active,button.active,button:active,input[type=submit].active,input[type=submit]:active{color:#ccc;background:#282828}.button-primary,input[type=submit]{background:#2265a1}.button-primary.focus,.button-primary:focus,.button-primary:hover,input[type=submit].focus,input[type=submit]:focus,input[type=submit]:hover{background:#2672b6}a.button{text-decoration:none}.navigation{clear:both;margin-top:3rem}.tabs>.button{margin-left:-1px;border-radius:0}.tabs>.button:first-child{margin-left:0;border-radius:3px 0 0 3px}.tabs>.button:last-child{border-radius:0 3px 3px 0}.tabs>.button:focus{position:relative;z-index:1}.version{color:grey;font-size:8pt;text-align:center;margin-top:2rem}.notificationContainer{position:fixed;top:2rem;z-index:666}@media screen and (min-width:768px){.notificationContainer{width:512px;left:50%}}.notification{background:#297ab8;box-shadow:0 0 10px #000;color:#fff;cursor:pointer;padding:.5em;margin-bottom:2rem;position:relative}@media screen and (min-width:768px){.notification{left:-50%}}.notification .message{white-space:pre}.notification.error{background:#973a38}.check,.radio{display:inline-block;cursor:pointer;user-select:none;white-space:nowrap;margin-top:.5em;margin-bottom:.5em}.check .control,.radio .control{background:#404040;display:inline-block;width:16px;height:16px;position:relative}.check .label,.radio .label{display:inline-block;margin-left:.5em;vertical-align:top}.check.checked .control,.radio.checked .control{background:#606060}.check.disabled,.radio.disabled{cursor:not-allowed}.check.disabled .label,.radio.disabled .label{color:grey}.radio .control,.radio .control .inner{border-radius:50%}.radio .control .inner{color:#000;position:absolute;top:4px;left:4px;width:6px;height:6px}.radio.checked .control .inner{background:#ccc;box-shadow:0 1px rgba(0,0,0,.5)}.check .control .inner{position:absolute;top:5px;left:4px;width:6px;height:3px}.check.checked .control .inner{border:solid rgba(255,255,255,.8);border-width:0 0 2px 2px;transform:rotate(-45deg);box-shadow:-1px 0 rgba(0,0,0,.2),0 1px rgba(0,0,0,.5)}.form-control{margin-top:1em}input[type=number],input[type=password],input[type=text],textarea{background:#404040;color:#fff;padding:.5em;width:100%}select{background:#404040;color:#fff;font-family:Verdana,Arial,sans-serif;padding:.5em}input[type=range]{margin-top:1rem;margin-bottom:1rem}h1{font-size:2rem;margin:0}h2{color:silver;font-size:1.2rem;margin:0}h3{color:grey;background:#282828;font-size:1.2rem;padding:.5rem}h4{font-size:1.4rem}input[disabled]{cursor:not-allowed;color:grey;background:#262626}label{display:block;margin-top:.5em;margin-bottom:.5em}.label-inline{margin-right:2rem}@media screen and (min-width:768px){.horizontal{clear:both}.horizontal label{display:inline-block}.horizontal input[type=number],.horizontal input[type=password],.horizontal input[type=text],.horizontal textarea{display:inline-block;float:right;width:50%}.horizontal:after{clear:both}}.hint{display:block;font-size:8pt;color:grey;margin-bottom:1.5rem}.loading{margin-top:3rem;text-align:center}.suboptions{margin-left:5rem}.buttons{clear:both;text-align:center;margin-top:1rem}.sliders{margin-top:2rem}.slidercontainer{margin-top:1rem}.slider{-webkit-appearance:none;width:100%;height:.5rem;border-radius:.25rem;background:#404040;outline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider::-moz-range-thumb{width:2rem;height:2rem;border-radius:50%;background:#fcf6cf;cursor:pointer}.slider.red::-webkit-slider-thumb{background:#ce3636}.slider.red::-moz-range-thumb{background:#ce3636}.slider.green::-webkit-slider-thumb{background:#32b732}.slider.green::-moz-range-thumb{background:#32b732}.slider.blue::-webkit-slider-thumb{background:#4646cc}.slider.blue::-moz-range-thumb{background:#4646cc}.warning{background:#973a38;padding:.5em;margin-bottom:2rem;margin-top:1rem}.nodata{color:grey;text-align:center}.clear{clear:both}.panel{margin-bottom:2rem;padding:0}.panel .panel-header{border-radius:3px 3px 0 0;border-bottom-width:0;padding:.5em;background:#404040;color:#fff}.panel .panel-header label{font-size:1em}.panel .panel-header .actions{float:right}.panel .panel-header .label,.panel .panel-header a{color:#fff}.panel .panel-body{border-radius:0 0 3px 3px;background:#303030;padding:2rem}.panel.active .panel-header{background:#3b4a58;color:#fff}.inline{display:inline-block;width:auto}.fade-enter-active,.fade-leave-active{transition:opacity .5s}.fade-enter,.fade-leave-to{opacity:0}.range{clear:both}.range .start{position:relative;display:inline-block;width:49%}.range .start .slidercontainer{margin-right:4em}.range .start .value{position:absolute;right:0;top:1.5rem;color:grey}.range .end{position:relative;display:inline-block;float:right;width:50%}.range .end .slidercontainer{margin-left:4em}.range .end .value{position:absolute;left:0;top:1.5rem;color:grey}.range:after{clear:both}.resetReason{margin-left:2em} \ No newline at end of file diff --git a/web/dist/bundle.js b/web/dist/bundle.js deleted file mode 100644 index bfe2a96..0000000 --- a/web/dist/bundle.js +++ /dev/null @@ -1 +0,0 @@ -!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.axios=t():e.axios=t()}(this,function(){return function(n){function r(e){if(i[e])return i[e].exports;var t=i[e]={exports:{},id:e,loaded:!1};return n[e].call(t.exports,t,t.exports,r),t.loaded=!0,t.exports}var i={};return r.m=n,r.c=i,r.p="",r(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";function r(e){var t=new a(e),n=o(a.prototype.request,t);return i.extend(n,a.prototype,t),i.extend(n,t),n}var i=n(2),o=n(3),a=n(4),s=n(22),c=r(n(10));c.Axios=a,c.create=function(e){return r(s(c.defaults,e))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(9),c.all=function(e){return Promise.all(e)},c.spread=n(25),e.exports=c,e.exports.default=c},function(e,t,n){"use strict";function o(e){return"[object Array]"===l.call(e)}function r(e){return void 0===e}function i(e){return null!==e&&"object"==typeof e}function a(e){if("[object Object]"!==l.call(e))return!1;var t=Object.getPrototypeOf(e);return null===t||t===Object.prototype}function s(e){return"[object Function]"===l.call(e)}function c(e,t){if(null!=e)if("object"!=typeof e&&(e=[e]),o(e))for(var n=0,r=e.length;ndocument.createEvent("Event").timeStamp&&(sn=function(){return cn.now()})}function un(){var e,t;for(an=sn(),rn=!0,Qt.sort(function(e,t){return e.id-t.id}),on=0;one.id;)n--;Qt.splice(n+1,0,e)}else Qt.push(e);nn||(nn=!0,Ye(un))}}(this)},fn.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||I(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){Me(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},fn.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},fn.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},fn.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||_(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var dn={enumerable:!0,configurable:!0,get:k,set:k};function pn(e,t,n){dn.get=function(){return this[t][n]},dn.set=function(e){this[t][n]=e},Object.defineProperty(e,n,dn)}var hn={lazy:!0};function vn(e,t,n){var r=!te();"function"==typeof n?(dn.get=r?mn(t):gn(n),dn.set=k):(dn.get=n.get?r&&!1!==n.cache?mn(t):gn(n.get):k,dn.set=n.set||k),Object.defineProperty(e,t,dn)}function mn(t){return function(){var e=this._computedWatchers&&this._computedWatchers[t];if(e)return e.dirty&&e.evaluate(),ce.target&&e.depend(),e.value}}function gn(e){return function(){return e.call(this,this)}}function yn(e,t,n,r){return c(n)&&(n=(r=n).handler),"string"==typeof n&&(n=e[n]),e.$watch(t,n,r)}var _n,bn,wn,kn,$n,xn=0;function Sn(e){var t=e.options;if(e.super){var n=Sn(e.super);if(n!==e.superOptions){e.superOptions=n;var r=function(e){var t,n=e.options,r=e.sealedOptions;for(var i in n)n[i]!==r[i]&&(t||(t={}),t[i]=n[i]);return t}(e);r&&v(e.extendOptions,r),(t=e.options=Fe(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function Cn(e){this._init(e)}function An(e){return e&&(e.Ctor.options.name||e.tag)}function Tn(e,t){return Array.isArray(e)?-1parseInt(this.max)&&Dn(a,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};En=Cn,Fn={get:function(){return j}},Object.defineProperty(En,"config",Fn),En.util={warn:ae,extend:v,mergeOptions:Fe,defineReactive:xe},En.set=Se,En.delete=Ce,En.nextTick=Ye,En.observable=function(e){return $e(e),e},En.options=Object.create(null),C.forEach(function(e){En.options[e+"s"]=Object.create(null)}),v((En.options._base=En).options.components,Ln),En.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(-1=i||e.timeStamp<=0||e.target.ownerDocument!==document)return o.apply(this,arguments)}}Xr.addEventListener(e,t,Q?{capture:n,passive:r}:n)}function ti(e,t,n,r){(r||Xr).removeEventListener(e,t._wrapper||t,n)}function ni(e,t){if(!L(e.data.on)||!L(t.data.on)){var n=t.data.on||{},r=e.data.on||{};Xr=t.elm,function(e){if(P(e.__r)){var t=K?"change":"input";e[t]=[].concat(e.__r,e[t]||[]),delete e.__r}P(e.__c)&&(e.change=[].concat(e.__c,e.change||[]),delete e.__c)}(n),rt(n,r,ei,ti,Yr,t.context),Xr=void 0}}var ri,ii={create:ni,update:ni};function oi(e,t){if(!L(e.data.domProps)||!L(t.data.domProps)){var n,r,i=t.elm,o=e.data.domProps||{},a=t.data.domProps||{};for(n in P(a.__ob__)&&(a=t.data.domProps=v({},a)),o)n in a||(i[n]="");for(n in a){if(r=a[n],"textContent"===n||"innerHTML"===n){if(t.children&&(t.children.length=0),r===o[n])continue;1===i.childNodes.length&&i.removeChild(i.childNodes[0])}if("value"===n&&"PROGRESS"!==i.tagName){var s=L(i._value=r)?"":String(r);l=s,!(u=i).composing&&("OPTION"===u.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(u,l)||function(e,t){var n=e.value,r=e._vModifiers;if(P(r)){if(r.number)return R(n)!==R(t);if(r.trim)return n.trim()!==t.trim()}return n!==t}(u,l))&&(i.value=s)}else if("innerHTML"===n&&Yn(i.tagName)&&L(i.innerHTML)){(ri=ri||document.createElement("div")).innerHTML=""+r+"";for(var c=ri.firstChild;i.firstChild;)i.removeChild(i.firstChild);for(;c.firstChild;)i.appendChild(c.firstChild)}else if(r!==o[n])try{i[n]=r}catch(e){}}}var u,l}var ai={create:oi,update:oi},si=e(function(e){var n={},r=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var t=e.split(r);1=a&&u()};setTimeout(function(){c\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,xo=/^\s*((?:v-[\w-]+:|@|:|#)\[[^=]+\][^\s"'<>\/=]*)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,So="[a-zA-Z_][\\-\\.0-9_a-zA-Z"+F.source+"]*",Co="((?:"+So+"\\:)?"+So+")",Ao=new RegExp("^<"+Co),To=/^\s*(\/?)>/,Oo=new RegExp("^<\\/"+Co+"[^>]*>"),Do=/^]+>/i,Eo=/^",""":'"',"&":"&"," ":"\n"," ":"\t","'":"'"},Po=/&(?:lt|gt|quot|amp|#39);/g,Io=/&(?:lt|gt|quot|amp|#39|#10|#9);/g,Ro=a("pre,textarea",!0),Mo=function(e,t){return e&&Ro(e)&&"\n"===t[0]};var Bo,Uo,Ho,Wo,Vo,zo,qo,Ko,Jo=/^@|^v-on:/,Go=/^v-|^@|^:|^#/,Xo=/([\s\S]*?)\s+(?:in|of)\s+([\s\S]*)/,Zo=/,([^,\}\]]*)(?:,([^,\}\]]*))?$/,Yo=/^\(|\)$/g,Qo=/^\[.*\]$/,ea=/:(.*)$/,ta=/^:|^\.|^v-bind:/,na=/\.[^.\]]+(?=[^\]]*$)/g,ra=/^v-slot(:|$)|^#/,ia=/[\r\n]/,oa=/\s+/g,aa=e(function(e){return(ho=ho||document.createElement("div")).innerHTML=e,ho.textContent}),sa="_empty_";function ca(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n-1"+("true"===f?":("+c+")":":_q("+c+","+f+")")),Rr(s,"change","var $$a="+c+",$$el=$event.target,$$c=$$el.checked?("+f+"):("+d+");if(Array.isArray($$a)){var $$v="+(u?"_n("+l+")":l)+",$$i=_i($$a,$$v);if($$el.checked){$$i<0&&("+Vr(c,"$$a.concat([$$v])")+")}else{$$i>-1&&("+Vr(c,"$$a.slice(0,$$i).concat($$a.slice($$i+1))")+")}}else{"+Vr(c,"$$c")+"}",null,!0);else if("input"===y&&"radio"===_)r=e,i=m,o=g&&g.number,a=Mr(r,"value")||"null",Nr(r,"checked","_q("+i+","+(a=o?"_n("+a+")":a)+")"),Rr(r,"change",Vr(i,a),null,!0);else if("input"===y||"textarea"===y)!function(e,t,n){var r=e.attrsMap.type,i=n||{},o=i.lazy,a=i.number,s=i.trim,c=!o&&"range"!==r,u=o?"change":"range"===r?Zr:"input",l="$event.target.value";s&&(l="$event.target.value.trim()"),a&&(l="_n("+l+")");var f=Vr(t,l);c&&(f="if($event.target.composing)return;"+f),Nr(e,"value","("+t+")"),Rr(e,u,f,null,!0),(s||a)&&Rr(e,"blur","$forceUpdate()")}(e,m,g);else if(!j.isReservedTag(y))return Wr(e,m,g),!1;return!0},text:function(e,t){t.value&&Nr(e,"textContent","_s("+t.value+")",t)},html:function(e,t){t.value&&Nr(e,"innerHTML","_s("+t.value+")",t)}},isPreTag:function(e){return"pre"===e},isUnaryTag:bo,mustUseProp:Rn,canBeLeftOpenTag:wo,isReservedTag:Qn,getTagNamespace:er,staticKeys:_a.reduce(function(e,t){return e.concat(t.staticKeys||[])},[]).join(",")},wa=e(function(e){return a("type,tag,attrsList,attrsMap,plain,parent,children,attrs,start,end,rawAttrsMap"+(e?","+e:""))});var ka=/^([\w$_]+|\([^)]*?\))\s*=>|^function(?:\s+[\w$]+)?\s*\(/,$a=/\([^)]*?\);*$/,xa=/^[A-Za-z_$][\w$]*(?:\.[A-Za-z_$][\w$]*|\['[^']*?']|\["[^"]*?"]|\[\d+]|\[[A-Za-z_$][\w$]*])*$/,Sa={esc:27,tab:9,enter:13,space:32,up:38,left:37,right:39,down:40,delete:[8,46]},Ca={esc:["Esc","Escape"],tab:"Tab",enter:"Enter",space:[" ","Spacebar"],up:["Up","ArrowUp"],left:["Left","ArrowLeft"],right:["Right","ArrowRight"],down:["Down","ArrowDown"],delete:["Backspace","Delete","Del"]},Aa=function(e){return"if("+e+")return null;"},Ta={stop:"$event.stopPropagation();",prevent:"$event.preventDefault();",self:Aa("$event.target !== $event.currentTarget"),ctrl:Aa("!$event.ctrlKey"),shift:Aa("!$event.shiftKey"),alt:Aa("!$event.altKey"),meta:Aa("!$event.metaKey"),left:Aa("'button' in $event && $event.button !== 0"),middle:Aa("'button' in $event && $event.button !== 1"),right:Aa("'button' in $event && $event.button !== 2")};function Oa(e,t){var n=t?"nativeOn:":"on:",r="",i="";for(var o in e){var a=Da(e[o]);e[o]&&e[o].dynamic?i+=o+","+a+",":r+='"'+o+'":'+a+","}return r="{"+r.slice(0,-1)+"}",i?n+"_d("+r+",["+i.slice(0,-1)+"])":n+r}function Da(e){if(!e)return"function(){}";if(Array.isArray(e))return"["+e.map(function(e){return Da(e)}).join(",")+"]";var t=xa.test(e.value),n=ka.test(e.value),r=xa.test(e.value.replace($a,""));if(e.modifiers){var i="",o="",a=[];for(var s in e.modifiers)if(Ta[s])o+=Ta[s],Sa[s]&&a.push(s);else if("exact"===s){var c=e.modifiers;o+=Aa(["ctrl","shift","alt","meta"].filter(function(e){return!c[e]}).map(function(e){return"$event."+e+"Key"}).join("||"))}else a.push(s);return a.length&&(i+="if(!$event.type.indexOf('key')&&"+a.map(Ea).join("&&")+")return null;"),o&&(i+=o),"function($event){"+i+(t?"return "+e.value+"($event)":n?"return ("+e.value+")($event)":r?"return "+e.value:e.value)+"}"}return t||n?e.value:"function($event){"+(r?"return "+e.value:e.value)+"}"}function Ea(e){var t=parseInt(e,10);if(t)return"$event.keyCode!=="+t;var n=Sa[e],r=Ca[e];return"_k($event.keyCode,"+JSON.stringify(e)+","+JSON.stringify(n)+",$event.key,"+JSON.stringify(r)+")"}var ja={on:function(e,t){e.wrapListeners=function(e){return"_g("+e+","+t.value+")"}},bind:function(t,n){t.wrapData=function(e){return"_b("+e+",'"+t.tag+"',"+n.value+","+(n.modifiers&&n.modifiers.prop?"true":"false")+(n.modifiers&&n.modifiers.sync?",true":"")+")"}},cloak:k},Fa=function(e){this.options=e,this.warn=e.warn||jr,this.transforms=Fr(e.modules,"transformCode"),this.dataGenFns=Fr(e.modules,"genData"),this.directives=v(v({},ja),e.directives);var t=e.isReservedTag||O;this.maybeComponent=function(e){return!!e.component||!t(e.tag)},this.onceId=0,this.staticRenderFns=[],this.pre=!1};function Na(e,t){var n=new Fa(t);return{render:"with(this){return "+(e?La(e,n):'_c("div")')+"}",staticRenderFns:n.staticRenderFns}}function La(e,t){if(e.parent&&(e.pre=e.pre||e.parent.pre),e.staticRoot&&!e.staticProcessed)return Pa(e,t);if(e.once&&!e.onceProcessed)return Ia(e,t);if(e.for&&!e.forProcessed)return Ma(e,t);if(e.if&&!e.ifProcessed)return Ra(e,t);if("template"!==e.tag||e.slotTarget||t.pre){if("slot"===e.tag)return f=t,d=(l=e).slotName||'"default"',p=Wa(l,f),h="_t("+d+(p?","+p:""),v=l.attrs||l.dynamicAttrs?qa((l.attrs||[]).concat(l.dynamicAttrs||[]).map(function(e){return{name:b(e.name),value:e.value,dynamic:e.dynamic}})):null,m=l.attrsMap["v-bind"],!v&&!m||p||(h+=",null"),v&&(h+=","+v),m&&(h+=(v?"":",null")+","+m),h+")";var n;if(e.component)a=e.component,c=t,u=(s=e).inlineTemplate?null:Wa(s,c,!0),n="_c("+a+","+Ba(s,c)+(u?","+u:"")+")";else{var r;(!e.plain||e.pre&&t.maybeComponent(e))&&(r=Ba(e,t));var i=e.inlineTemplate?null:Wa(e,t,!0);n="_c('"+e.tag+"'"+(r?","+r:"")+(i?","+i:"")+")"}for(var o=0;o>>0}(a):"")+")"}(i,i.scopedSlots,e)+","),i.model&&(t+="model:{value:"+i.model.value+",callback:"+i.model.callback+",expression:"+i.model.expression+"},"),i.inlineTemplate){var o=function(e,t){var n=i.children[0];if(n&&1===n.type){var r=Na(n,t.options);return"inlineTemplate:{render:function(){"+r.render+"},staticRenderFns:["+r.staticRenderFns.map(function(e){return"function(){"+e+"}"}).join(",")+"]}"}}(0,e);o&&(t+=o+",")}return t=t.replace(/,$/,"")+"}",i.dynamicAttrs&&(t="_b("+t+',"'+i.tag+'",'+qa(i.dynamicAttrs)+")"),i.wrapData&&(t=i.wrapData(t)),i.wrapListeners&&(t=i.wrapListeners(t)),t}function Ua(e){return 1===e.type&&("slot"===e.tag||e.children.some(Ua))}function Ha(e,t){var n=e.attrsMap["slot-scope"];if(e.if&&!e.ifProcessed&&!n)return Ra(e,t,Ha,"null");if(e.for&&!e.forProcessed)return Ma(e,t,Ha);var r=e.slotScope===sa?"":String(e.slotScope),i="function("+r+"){return "+("template"===e.tag?e.if&&n?"("+e.if+")?"+(Wa(e,t)||"undefined")+":undefined":Wa(e,t)||"undefined":La(e,t))+"}",o=r?"":",proxy:true";return"{key:"+(e.slotTarget||'"default"')+",fn:"+i+o+"}"}function Wa(e,t,n,r,i){var o=e.children;if(o.length){var a=o[0];if(1===o.length&&a.for&&"template"!==a.tag&&"slot"!==a.tag){var s=n?t.maybeComponent(a)?",1":",0":"";return""+(r||La)(a,t)+s}var c=n?function(e,t){for(var n=0,r=0;r]*>)","i")),n=i.replace(t,function(e,t,n){return r=n.length,Fo(o)||"noscript"===o||(t=t.replace(//g,"$1").replace(//g,"$1")),Mo(o,t)&&(t=t.slice(1)),p.chars&&p.chars(t),""});a+=i.length-n.length,i=n,C(o,a-r,a)}else{var s=i.indexOf("<");if(0===s){if(Eo.test(i)){var c=i.indexOf("--\x3e");if(0<=c){p.shouldKeepComment&&p.comment(i.substring(4,c),a,a+c+3),$(c+3);continue}}if(jo.test(i)){var u=i.indexOf("]>");if(0<=u){$(u+2);continue}}var l=i.match(Do);if(l){$(l[0].length);continue}var f=i.match(Oo);if(f){var d=a;$(f[0].length),C(f[1],d,a);continue}var _=x();if(_){S(_),Mo(_.tagName,i)&&$(1);continue}}var b=void 0,w=void 0,k=void 0;if(0<=s){for(w=i.slice(s);!(Oo.test(w)||Ao.test(w)||Eo.test(w)||jo.test(w)||(k=w.indexOf("<",1))<0);)s+=k,w=i.slice(s);b=i.substring(0,s)}s<0&&(b=i),b&&$(b.length),p.chars&&b&&p.chars(b,a-b.length,a)}if(i===e){p.chars&&p.chars(i);break}}function $(e){a+=e,i=i.substring(e)}function x(){var e=i.match(Ao);if(e){var t,n,r={tagName:e[1],attrs:[],start:a};for($(e[0].length);!(t=i.match(To))&&(n=i.match(xo)||i.match($o));)n.start=a,$(n[0].length),n.end=a,r.attrs.push(n);if(t)return r.unarySlash=t[1],$(t[0].length),r.end=a,r}}function S(e){var t,n,r,i=e.tagName,o=e.unarySlash;m&&("p"===h&&ko(i)&&C(h),y(i)&&h===i&&C(i));for(var a=g(i)||!!o,s=e.attrs.length,c=new Array(s),u=0;uc&&(s.push(o=e.slice(c,i)),a.push(JSON.stringify(o)));var u=Dr(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c':'
',0.local if your device supports mDNS (at the time of writing, Android does not).",hostnamePlaceholder:"Default: mac address"},system:{tabTitle:"System",pinsTitle:"Hardware pinout",ledStripTitle:"LED strip",firmwareTitle:"Firmware update",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"Station Mode status LED pin (+3.3v)",pinAPButton:"Enable Access Point button pin (active low)",ledCount:"Number of LEDs on strip"},error:{loadStatus:"Could not load system status",loadConnection:"Could not load connection settings",loadSystem:"Could not load system settings",applyConnection:"Could not save connection settings",applySystem:"Could not save system settings",updateWiFiStatus:"Could not retrieve WiFi status",uploadFirmware:"Error while uploading firmware",setColor:"Could not set color",resetError:"The system reports that it has been reset unexpectedly. The last power up status is:",resetReason:{0:"Normal startup",1:"Unresponsive, reset by hardware watchdog",2:"Unhandled exception",3:"Unresponsive, reset by software watchdog",4:"System restart requested",5:"Wake up from deep sleep",6:"System reset"},stackTrace:"A stack trace is available. Please send it to your nearest developer and/or delete it from this RGBWifi module to remove this message.",stackTraceDownload:"Download",stackTraceDelete:"Hide",stackTraceDeleteError:"Could not remove stack trace"}},nl:{title:"RGBWifi",systemID:"Systeem ID",firmwareVersion:"Firmware versie: ",copyright:"Copyright © 2020 Mark van Renswoude",loading:"Een ogenblik geduld, bezig met laden van configuratie...",rebootPending:"Het systeem wordt opnieuw opgestart, ververse deze pagina nadien",applyButton:"Opslaan",applyButtonSaving:"Bezig met opslaan...",deviceTime:"Tijd: ",wifiStatus:{accesspoint:{title:"AP: ",disabled:"Uitgeschakeld"},stationmode:{title:"WiFi: ",disabled:"Uitgeschakeld",idle:"Slaapstand",noSSID:"SSID niet gevonden",scanCompleted:"Scan afgerond",connectFailed:"Kan geen verbinding maken",connectionLost:"Verbinding verloren",disconnected:"Niet verbonden"}},status:{tabTitle:"Status",title:"Huidige status",staticOff:"Uit"},connection:{tabTitle:"Verbinding",title:"Verbinding configuratie",accesspoint:"Access point inschakelen",accesspointHint:"Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze RGBWifi module te maken om de module te configureren. De RGBWifi module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.",stationmode:"Verbinding met WiFi maken",stationmodeHint:"Verbind deze RGBWifi module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.",ssid:"SSID",password:"Wachtwoord",dhcp:"Gebruik DHCP",dhcpHint:"Automatisch een IP adres toewijzen aan deze RGBWifi module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.",ipaddress:"IP adres",subnetmask:"Subnet masker",gateway:"Gateway",hostname:"Hostnaam",hostnameHint:"Indien ingevuld is deze module te bereiken op .local als je apparaat mDNS ondersteund mDNS (op het moment van schrijven ondersteund Android dit niet).",hostnamePlaceholder:"Standaard: mac adres"},system:{tabTitle:"Systeem",pinsTitle:"Hardware aansluitingen",ledStripTitle:"LED strip",firmwareTitle:"Firmware bijwerken",pinLEDAP:"Access Point status LED pin (+3.3v)",pinLEDSTA:"WiFi status LED pin (+3.3v)",pinAPButton:"Access Point inschakelen knop pin (actief laag)",ledCount:"Aantal LEDs op strip"},error:{loadStatus:"Kan systeemstatus niet ophalen",loadConnection:"Kan verbinding instellingen niet ophalen",loadSystem:"Kan systeem instellingen niet ophalen",applyConnection:"Kan verbinding instellingen niet opslaan",applySystem:"Kan systeem instellingen niet opslaan",updateWiFiStatus:"Kan WiFi status niet ophalen",uploadFirmware:"Fout tijdens bijwerken van firmware",setColor:"Kan kleur niet zetten",resetError:"Het systeem is onverwachts herstart. De laatste status is:",resetReason:{0:"Normaal opgestart",1:"Reageert niet, herstart door hardware watchdog",2:"Onafgehandelde fout",3:"Reageert niet, herstart door software watchdog",4:"Herstart verzoek door systeem",5:"Wakker geworden uit diepe slaap",6:"Systeem gereset"},stackTrace:"Een stack trace is beschikbaar. Stuur het naar de dichtsbijzijnde ontwikkelaar en/of verwijder het van deze RGBWifi module om dit bericht te verbergen.",stackTraceDownload:"Downloaden",stackTraceDelete:"Verbergen",stackTraceDeleteError:"Kan stack trace niet verwijderen"}}};function startApp(){axios.interceptors.response.use(void 0,function(e){var t=e.config;return t&&t.retry?(t.__retryCount=t.__retryCount||0,t.__retryCount>=t.retry?Promise.reject(e):(t.__retryCount+=1,new Promise(function(e){setTimeout(function(){e()},t.retryDelay||1)}).then(function(){return axios(t)}))):Promise.reject(e)}),Vue.component("check",{template:'
{{ title }}
',props:{title:String,value:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=!this.value,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}}),Vue.component("radio",{template:'
{{ title }}
',props:{title:String,value:null,id:null,disabled:{type:Boolean,default:!1}},methods:{handleClick:function(){this.disabled||(this.value=this.id,this.$emit("input",this.value))},handleKeyDown:function(e){32==e.keyCode&&(this.handleClick(),e.preventDefault())}}}),Vue.component("range",{template:'
{{ value.start }}
{{ value.end }}
',props:["value"],mounted:function(){this.oldValue={start:this.value.start,end:this.value.end}},watch:{value:{handler:function(e){e.start!=this.oldValue.start?e.start>e.end&&(e.end=e.start+1,this.$emit("input",e)):e.end!=this.oldValue.end&&e.end - - - -RGBWifi - - - - - - -
-
-
-
- {{ notification.message }} -
-
- -
-
- -

{{ $t('title') }}

-

{{ status.systemID !== null ? $t('systemID') + ': ' + status.systemID : '' }}

- -
-
-
{{ $t('wifiStatus.accesspoint.title') }} {{ wifiStatus.ap.enabled ? wifiStatus.ap.ip : $t('wifiStatus.accesspoint.disabled') }} -
-
-
{{ $t('wifiStatus.stationmode.title') }} {{ getWiFiStationStatusText() }} -
-
-
- -
- {{ $t('loading') }} {{ loadingIndicator }} -
- -
-
-

- {{ $t('error.resetError') }} -

- -

- {{ $t('error.resetReason.' + status.resetReason) }} -

- -

- {{ $t('error.stackTrace') }} -

- - {{ $t('error.stackTraceDownload') }} - {{ $t('error.stackTraceDelete') }} -
- - - - -
- -

{{ $t('status.title') }}

- -
- -
-
- -
-
- -
-
- -
- - -
- -
- -
-

{{ $t('connection.title') }}

- - - {{ $t('connection.accesspointHint') }} - - - {{ $t('connection.stationmodeHint') }} - - - - - - - - - {{ $t('connection.dhcpHint') }} - - -
- - - - - - - - -
- - - - - {{ $t('connection.hostnameHint') }} - -
- -
-
-
- -
- -
-

{{ $t('system.firmwareTitle') }}

- - - -
- -
- -
- {{ uploadProgress }}% -
-
- -
-

{{ $t('system.pinsTitle') }}

- -
- - -
- -
- - -
- -
- - -
- -

{{ $t('system.ledStripTitle') }}

- -
- - -
- -
- -
-
-
-
- -
-
-
- {{ $t('copyright') }}
- {{ status.version !== null ? $t('firmwareVersion') + status.version : '' }} -
-
-
- - - - \ No newline at end of file diff --git a/web/lang.js b/web/lang.js deleted file mode 100644 index 2586e28..0000000 --- a/web/lang.js +++ /dev/null @@ -1,207 +0,0 @@ -var messages = { - en: { - title: 'RGBWifi', - systemID: 'System ID', - firmwareVersion: 'Firmware version: ', - copyright: 'Copyright © 2020 Mark van Renswoude', - loading: 'Please wait, loading configuration...', - rebootPending: 'The system will be rebooted, please refresh this page afterwards', - - applyButton: 'Apply', - applyButtonSaving: 'Saving...', - deviceTime: 'Time: ', - - wifiStatus: { - accesspoint: { - title: 'AP: ', - disabled: 'Disabled' - }, - - stationmode: { - title: 'WiFi: ', - disabled: 'Disabled', - idle: 'Idle', - noSSID: 'SSID not found', - scanCompleted: 'Scan completed', - connectFailed: 'Failed to connect', - connectionLost: 'Connection lost', - disconnected: 'Disconnected' - } - }, - - status: { - tabTitle: 'Status', - title: 'Current status', - - staticOff: 'Off' - }, - - connection: { - tabTitle: 'Connection', - title: 'Connection parameters', - - accesspoint: 'Enable access point', - accesspointHint: 'Allows for a direct connection from your device to this RGBWifi module for configuration purposes. The RGBWifi configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.', - - stationmode: 'Enable station mode', - stationmodeHint: 'Connect this RGBWifi module to your own WiFi router. Please enter the SSID, password and further configuration below.', - - ssid: 'SSID', - password: 'Password', - - dhcp: 'Use DHCP', - dhcpHint: 'Automatically assigns an IP address to this RGBWifi module. You probably want to keep this on unless you know what you\'re doing.', - - ipaddress: 'IP address', - subnetmask: 'Subnet mask', - gateway: 'Gateway', - hostname: 'Hostname', - hostnameHint: 'If specified, this module is available at .local if your device supports mDNS (at the time of writing, Android does not).', - hostnamePlaceholder: 'Default: mac address' - }, - - system: { - tabTitle: 'System', - pinsTitle: 'Hardware pinout', - ledStripTitle: 'LED strip', - firmwareTitle: 'Firmware update', - - pinLEDAP: 'Access Point status LED pin (+3.3v)', - pinLEDSTA: 'Station Mode status LED pin (+3.3v)', - pinAPButton: 'Enable Access Point button pin (active low)', - - ledCount: 'Number of LEDs on strip' - }, - - error: { - loadStatus: 'Could not load system status', - loadConnection: 'Could not load connection settings', - loadSystem: 'Could not load system settings', - applyConnection: 'Could not save connection settings', - applySystem: 'Could not save system settings', - updateWiFiStatus: 'Could not retrieve WiFi status', - uploadFirmware: 'Error while uploading firmware', - - setColor: 'Could not set color', - - resetError: 'The system reports that it has been reset unexpectedly. The last power up status is:', - resetReason: { - 0: 'Normal startup', - 1: 'Unresponsive, reset by hardware watchdog', - 2: 'Unhandled exception', - 3: 'Unresponsive, reset by software watchdog', - 4: 'System restart requested', - 5: 'Wake up from deep sleep', - 6: 'System reset' - }, - stackTrace: 'A stack trace is available. Please send it to your nearest developer and/or delete it from this RGBWifi module to remove this message.', - stackTraceDownload: 'Download', - stackTraceDelete: 'Hide', - - stackTraceDeleteError: 'Could not remove stack trace' - } - }, - - nl: { - title: 'RGBWifi', - systemID: 'Systeem ID', - firmwareVersion: 'Firmware versie: ', - copyright: 'Copyright © 2020 Mark van Renswoude', - loading: 'Een ogenblik geduld, bezig met laden van configuratie...', - rebootPending: 'Het systeem wordt opnieuw opgestart, ververse deze pagina nadien', - - applyButton: 'Opslaan', - applyButtonSaving: 'Bezig met opslaan...', - deviceTime: 'Tijd: ', - - wifiStatus: { - accesspoint: { - title: 'AP: ', - disabled: 'Uitgeschakeld' - }, - - stationmode: { - title: 'WiFi: ', - disabled: 'Uitgeschakeld', - idle: 'Slaapstand', - noSSID: 'SSID niet gevonden', - scanCompleted: 'Scan afgerond', - connectFailed: 'Kan geen verbinding maken', - connectionLost: 'Verbinding verloren', - disconnected: 'Niet verbonden' - } - }, - - status: { - tabTitle: 'Status', - title: 'Huidige status', - - staticOff: 'Uit' - }, - - connection: { - tabTitle: 'Verbinding', - title: 'Verbinding configuratie', - - accesspoint: 'Access point inschakelen', - accesspointHint: 'Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze RGBWifi module te maken om de module te configureren. De RGBWifi module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.', - - stationmode: 'Verbinding met WiFi maken', - stationmodeHint: 'Verbind deze RGBWifi module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.', - - ssid: 'SSID', - password: 'Wachtwoord', - - dhcp: 'Gebruik DHCP', - dhcpHint: 'Automatisch een IP adres toewijzen aan deze RGBWifi module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.', - - ipaddress: 'IP adres', - subnetmask: 'Subnet masker', - gateway: 'Gateway', - hostname: 'Hostnaam', - hostnameHint: 'Indien ingevuld is deze module te bereiken op .local als je apparaat mDNS ondersteund mDNS (op het moment van schrijven ondersteund Android dit niet).', - hostnamePlaceholder: 'Standaard: mac adres' - }, - - system: { - tabTitle: 'Systeem', - pinsTitle: 'Hardware aansluitingen', - ledStripTitle: 'LED strip', - firmwareTitle: 'Firmware bijwerken', - - pinLEDAP: 'Access Point status LED pin (+3.3v)', - pinLEDSTA: 'WiFi status LED pin (+3.3v)', - pinAPButton: 'Access Point inschakelen knop pin (actief laag)', - - ledCount: 'Aantal LEDs op strip' - }, - - error: { - loadStatus: 'Kan systeemstatus niet ophalen', - loadConnection: 'Kan verbinding instellingen niet ophalen', - loadSystem: 'Kan systeem instellingen niet ophalen', - applyConnection: 'Kan verbinding instellingen niet opslaan', - applySystem: 'Kan systeem instellingen niet opslaan', - updateWiFiStatus: 'Kan WiFi status niet ophalen', - uploadFirmware: 'Fout tijdens bijwerken van firmware', - - setColor: 'Kan kleur niet zetten', - - resetError: 'Het systeem is onverwachts herstart. De laatste status is:', - resetReason: { - 0: 'Normaal opgestart', - 1: 'Reageert niet, herstart door hardware watchdog', - 2: 'Onafgehandelde fout', - 3: 'Reageert niet, herstart door software watchdog', - 4: 'Herstart verzoek door systeem', - 5: 'Wakker geworden uit diepe slaap', - 6: 'Systeem gereset' - }, - stackTrace: 'Een stack trace is beschikbaar. Stuur het naar de dichtsbijzijnde ontwikkelaar en/of verwijder het van deze RGBWifi module om dit bericht te verbergen.', - stackTraceDownload: 'Downloaden', - stackTraceDelete: 'Verbergen', - - stackTraceDeleteError: 'Kan stack trace niet verwijderen' - } - } -} \ No newline at end of file diff --git a/web/public/index.html b/web/public/index.html new file mode 100644 index 0000000..b6322c5 --- /dev/null +++ b/web/public/index.html @@ -0,0 +1,17 @@ + + + + + + + + <%= htmlWebpackPlugin.options.title %> + + + +
+ + + diff --git a/web/site.scss b/web/site.scss deleted file mode 100644 index 3d8103c..0000000 --- a/web/site.scss +++ /dev/null @@ -1,723 +0,0 @@ -@import "variables.scss"; - - -html -{ - overscroll-behavior-x: contain; - box-sizing: border-box; - font-size: 62.5%; -} - -*, *:before, *:after -{ - box-sizing: inherit; -} - -body -{ - overscroll-behavior-x: contain; - background-color: rgb(20, 20, 20); - color: white; - font-family: 'Verdana', 'Arial', sans-serif; - font-size: 1.3em; - font-weight: 300; - letter-spacing: .01em; - line-height: 1.3; - - padding-bottom: 3rem; - - @media #{$mediumScreen} - { - padding-top: 3rem; - } -} - -a -{ - text-decoration: none; -} - - -/* - Hide VueJS container until the template has been processed -*/ -[v-cloak] -{ - display: none; -} - - - -#container -{ - background: $containerBackground; - margin-top: 2rem; - padding: 1rem; - - box-shadow: 0 0 50px $containerShadowColor; - border: solid 1px black; - - @media #{$mediumScreen} - { - width: 768px; - margin-left: auto; - margin-right: auto; - } -} - - -.header -{ - position: relative; - - img - { - float: left; - margin-right: 1rem; - } - - .wifistatus - { - @media #{$smallScreen} - { - clear: both; - margin-top: 3rem; - } - - @media #{$mediumScreen} - { - position: absolute; - right: 0; - top: 0; - } - - .indicator - { - display: inline-block; - width: 1rem; - height: 1rem; - border-radius: 50%; - margin-right: 0.5rem; - - &[data-status=connected] { background-color: #339966; } - &[data-status=disconnected] { border: solid 1px #808080; } - &[data-status=connecting] { background-color: #ff9933; } - &[data-status=error] { background-color: #cc0000; } - } - } -} - - -%outset -{ - border: 1px solid #111111; - border-radius: 3px; - box-shadow: inset 0 1px rgba(255,255,255,0.1), inset 0 -1px 3px rgba(0,0,0,0.3), inset 0 0 0 1px rgba(255,255,255,0.08), 0 1px 2px rgba(0,0,0,0.15); -} - - -%inset -{ - border: 1px solid #111111; - border-color: black #111111 #111111; - box-shadow: inset 0 1px 2px rgba(0,0,0,0.25),0 1px rgba(255,255,255,0.08); -} - - -button, input -{ - font-family: 'Verdana', 'Arial', sans-serif; -} - - -@mixin removeSafariStyling -{ - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; -} - -input -{ - @include removeSafariStyling; -} - -button, .button, input[type=submit] -{ - @extend %outset; - - display: inline-block; - padding: 0 12px; - color: $buttonTextColor; - background: $buttonBackground; - cursor: pointer; - line-height: 3rem; - - &:hover, &:focus, &.focus - { - color: $buttonHoverTextColor; - background: $buttonHoverBackground; - outline: none - } - - &:active, &.active - { - @extend %inset; - - color: $buttonActiveTextColor; - background: $buttonActiveBackground; - } -} - -input[type=submit], .button-primary -{ - background: $buttonPrimaryBackground; - - &:hover, &:focus, &.focus - { - background: $buttonPrimaryHoverBackground; - } -} - -a.button -{ - text-decoration: none -} - - -.navigation -{ - clear: both; - margin-top: 3rem; -} - -.tabs -{ - &>.button - { - margin-left: -1px; - border-radius: 0; - - &:first-child - { - margin-left: 0; - border-radius: 3px 0 0 3px - } - - &:last-child - { - border-radius: 0 3px 3px 0 - } - - &:focus - { - position: relative; - z-index: 1 - } - } -} - - -.version -{ - color: $versionTextColor; - font-size: 8pt; - text-align: center; - margin-top: 2rem; -} - - -.notificationContainer -{ - position: fixed; - top: 2rem; - z-index: 666; - - @media #{$mediumScreen} - { - width: 512px; - left: 50%; - } -} - - -.notification -{ - @extend %outset; - - background: $notificationBackground; -/* border: solid 1px $notificationBorderColor;*/ - box-shadow: 0 0 10px black; - color: white; - cursor: pointer; - padding: .5em; - margin-bottom: 2rem; - - position: relative; - - @media #{$mediumScreen} - { - left: -50%; - } - - .message - { - white-space: pre; - } - - - &.error - { - background: $notificationErrorBackground; - } -} - - -.check, .radio -{ - display: inline-block; - cursor: pointer; - user-select: none; - white-space: nowrap; - margin-top: .5em; - margin-bottom: .5em; - - .control - { - @extend %outset; - background: $checkRadioBackground; - display: inline-block; - width: 16px; - height: 16px; - position: relative; - } - - .label - { - display: inline-block; - margin-left: .5em; - vertical-align: top; - } - - &.checked - { - .control - { - background: $checkRadioSelectedBackground; - - .inner - { - } - } - } - - &.disabled - { - cursor: not-allowed; - - .label - { - color: $inputDisabledTextColor; - } - } -} - - -.radio -{ - .control, .control .inner - { - border-radius: 50%; - } - - .control .inner - { - color: black; - position: absolute; - top: 4px; - left: 4px; - width: 6px; - height: 6px; - } - - &.checked .control .inner - { - background: #cccccc; - box-shadow: 0 1px rgba(0,0,0,0.5); - } -} - - -.check -{ - .control .inner - { - position: absolute; - top: 5px; - left: 4px; - width: 6px; - height: 3px; - } - - &.checked .control .inner - { - border: solid rgba(255,255,255,0.8); - border-width: 0 0 2px 2px; - transform: rotate(-45deg); - box-shadow: -1px 0 rgba(0,0,0,0.2), 0 1px rgba(0,0,0,0.5) - } -} - - -.form-control -{ - margin-top: 1em; -} - - -input[type=text], input[type=number], input[type=password], textarea -{ - @extend %inset; - background: $inputBackground; - color: $inputTextColor; - padding: .5em; - width: 100%; -} - -select -{ - @extend %outset; - background: $selectBackground; - color: $inputTextColor; - font-family: 'Verdana', 'Arial', sans-serif; - padding: .5em; -} - -input[type=range] -{ - margin-top: 1rem; - margin-bottom: 1rem; -} - -h1 -{ - font-size: 2rem; - margin: 0; -} - -h2 -{ - color: #c0c0c0; - font-size: 1.2rem; - margin: 0; -} - -h3 -{ - @extend %outset; - color: $sectionHeaderTextColor; - background: $sectionHeaderBackground; - font-size: 1.2rem; - padding: .5rem; -} - -h4 -{ - font-size: 1.4rem; -} - - -input[disabled] -{ - cursor: not-allowed; - color: $inputDisabledTextColor; - background: $inputDisabledBackground; -} - -label -{ - display: block; - margin-top: .5em; - margin-bottom: .5em; -} - - - -.label-inline -{ - margin-right: 2rem; -} - - - -@media #{$mediumScreen} -{ - .horizontal - { - clear: both; - - label - { - display: inline-block; - } - - input[type=text], input[type=number], input[type=password], textarea - { - display: inline-block; - float: right; - width: 50%; - } - - &:after - { - clear: both; - } - } -} - -.hint -{ - display: block; - font-size: 8pt; - color: #808080; - margin-bottom: 1.5rem; -} - - -.loading -{ - margin-top: 3rem; - text-align: center; -} - - -.suboptions -{ - margin-left: 5rem; -} - - -.buttons -{ - clear: both; - text-align: center; - margin-top: 1rem; -} - - -.sliders -{ - margin-top: 2rem; -} - - -.slidercontainer -{ - margin-top: 1rem; -} - - - -$sliderRedThumbColor: #ce3636; -$sliderGreenThumbColor: #32b732; -$sliderBlueThumbColor: #4646cc; -$sliderWhiteThumbColor: #fcf6cf; - - -.slider -{ - -webkit-appearance: none; - width: 100%; - height: $sliderBarSize; - border-radius: $sliderBarSize / 2; - background: $sliderBarColor; - outline: none; - - &::-webkit-slider-thumb - { - -webkit-appearance: none; - appearance: none; - width: $sliderThumbSize; - height: $sliderThumbSize; - border-radius: 50%; - background: $sliderThumbColor; - cursor: pointer; - } - - &::-moz-range-thumb - { - width: $sliderThumbSize; - height: $sliderThumbSize; - border-radius: 50%; - background: $sliderThumbColor; - cursor: pointer; - } - - - &.red - { - &::-webkit-slider-thumb { background: $sliderRedThumbColor; } - &::-moz-range-thumb { background: $sliderRedThumbColor; } - } - - &.green - { - &::-webkit-slider-thumb { background: $sliderGreenThumbColor; } - &::-moz-range-thumb { background: $sliderGreenThumbColor; } - } - - &.blue - { - &::-webkit-slider-thumb { background: $sliderBlueThumbColor; } - &::-moz-range-thumb { background: $sliderBlueThumbColor; } - } -} - - -.warning -{ - @extend %outset; - background: #973a38; - padding: .5em; - margin-bottom: 2rem; - margin-top: 1rem; -} - - -.nodata -{ - color: #808080; - text-align: center; -} - - -.clear -{ - clear: both; -} - - -.panel -{ - margin-bottom: 2rem; - padding: 0; - - .panel-header - { - @extend %outset; - border-radius: 3px 3px 0 0; - border-bottom-width: 0; - padding: .5em; - - label { - font-size: 1em; - } - - background: $panelHeaderBackground; - color: $panelHeaderTextColor; - - .actions - { - float: right; - } - - a, .label - { - color: $panelHeaderLinkColor; - } - } - - .panel-body - { - @extend %outset; - border-radius: 0 0 3px 3px; - - background: $panelBodyBackground; - padding: 2rem; - } - - - &.active - { - .panel-header - { - background: $panelActiveHeaderBackground; - color: $panelActiveHeaderTextColor; - } - } -} - - -.inline -{ - display: inline-block; - width: auto; -} - -.fade-enter-active, .fade-leave-active -{ - transition: opacity .5s; -} - -.fade-enter, .fade-leave-to -{ - opacity: 0; -} - - -.range -{ - clear: both; - - .start - { - position: relative; - display: inline-block; - width: 49%; - - .slidercontainer - { - margin-right: 4em; - } - - .value - { - position: absolute; - right: 0; - top: 1.5rem; - color: $sliderValueColor; - } - } - - .end - { - position: relative; - display: inline-block; - float: right; - width: 50%; - - .slidercontainer - { - margin-left: 4em; - } - - .value - { - position: absolute; - left: 0; - top: 1.5rem; - color: $sliderValueColor; - } - } - - &:after - { - clear: both; - } -} - - -.resetReason -{ - margin-left: 2em; -} \ No newline at end of file diff --git a/web/src/App.vue b/web/src/App.vue new file mode 100644 index 0000000..3731921 --- /dev/null +++ b/web/src/App.vue @@ -0,0 +1,990 @@ + + + + + diff --git a/web/src/app.js b/web/src/app.js new file mode 100644 index 0000000..8e3b094 --- /dev/null +++ b/web/src/app.js @@ -0,0 +1,147 @@ +function startApp() +{ + var app = new Vue({ + el: '#app', + + data: { + }, + + created: function() + { + var self = this; + + self.notificationTimer = null; + + // Sequential loading of all the settings makes sure + // we don't overload the ESP8266 with requests, as that + // can cause it to run out of memory easily. + // This is a horrible way to implement it, but I don't feel like + // including a big library or working out a clean short solution + // at the moment, and it works :) + self.loadStatus().then(function() + { + self.loadConnection().then(function() + { + self.loadSystem().then(function() + { + self.stopLoadingIndicator(); + self.loading = false; + }); + }); + }); + }, + + methods: { + + + + loadConnection: function() + { + var self = this; + return axios.get('/api/connection', { retry: 10, retryDelay: 1000 }) + .then(function(response) + { + if (typeof response.data == 'object') + self.connection = response.data; + }) + .catch(self.handleAPIError.bind(self, 'error.loadConnection')); + }, + + loadSystem: function() + { + var self = this; + return axios.get('/api/system', { retry: 10, retryDelay: 1000 }) + .then(function(response) + { + if (typeof response.data == 'object') + self.system = response.data; + }) + .catch(self.handleAPIError.bind(self, 'error.loadSystem')); + }, + + + applyConnection: function() + { + var self = this; + if (self.saving) return; + + self.saving = true; + + axios.post('/api/connection', { + hostname: self.connection.hostname, + accesspoint: self.connection.accesspoint, + station: self.connection.station, + ssid: self.connection.ssid, + password: self.connection.password, + dhcp: self.connection.dhcp, + ip: self.connection.ip, + subnetmask: self.connection.subnetmask, + gateway: self.connection.gateway, + }, { retry: 10, retryDelay: 1000, headers: { 'Content-Type': 'application/json' } }) + .then(function(response) + { + }) + .catch(self.handleAPIError.bind(self, 'error.applyConnection')) + .then(function() + { + self.saving = false; + }); + }, + + applySystem: function() + { + var self = this; + if (self.saving) return; + + self.saving = true; + + axios.post('/api/system', self.system, { retry: 10, retryDelay: 1000, headers: { 'Content-Type': 'application/json' } }) + .then(function(response) + { + self.showNotification(i18n.t('rebootPending')); + }) + .catch(self.handleAPIError.bind(self, 'error.applySystem')) + .then(function() + { + self.saving = false; + }); + }, + + + uploadFirmware: function() + { + var self = this; + if (self.saving) return; + + self.saving = true; + self.uploadProgress = 0; + + + var data = new FormData(); + data.append('file', document.getElementById('firmwareFile').files[0]); + + var config = { + timeout: 360000, + onUploadProgress: function(progressEvent) + { + self.uploadProgress = Math.round((progressEvent.loaded * 100) / progressEvent.total); + } + }; + + axios.post('/api/firmware', data, config) + .then(function(response) + { + self.showNotification(i18n.t('rebootPending')); + }) + .catch(self.handleAPIError.bind(self, 'error.uploadFirmware')) + .then(function() + { + self.uploadProgress = false; + self.saving = false; + + document.getElementById('firmware').reset(); + }); + }, + } + }); +} \ No newline at end of file diff --git a/web/src/assets/logo.png b/web/src/assets/logo.png new file mode 100644 index 0000000..f3d2503 Binary files /dev/null and b/web/src/assets/logo.png differ diff --git a/web/src/components/check.vue b/web/src/components/check.vue new file mode 100644 index 0000000..96f6c4a --- /dev/null +++ b/web/src/components/check.vue @@ -0,0 +1,44 @@ + + + \ No newline at end of file diff --git a/web/src/components/loadingIndicator.vue b/web/src/components/loadingIndicator.vue new file mode 100644 index 0000000..29e0b2d --- /dev/null +++ b/web/src/components/loadingIndicator.vue @@ -0,0 +1,43 @@ + + + \ No newline at end of file diff --git a/web/src/components/radio.vue b/web/src/components/radio.vue new file mode 100644 index 0000000..7f9137a --- /dev/null +++ b/web/src/components/radio.vue @@ -0,0 +1,42 @@ + + + \ No newline at end of file diff --git a/web/src/components/range.vue b/web/src/components/range.vue new file mode 100644 index 0000000..ed2bcc4 --- /dev/null +++ b/web/src/components/range.vue @@ -0,0 +1,56 @@ + + + \ No newline at end of file diff --git a/web/src/i18n/en.js b/web/src/i18n/en.js new file mode 100644 index 0000000..0dc48f8 --- /dev/null +++ b/web/src/i18n/en.js @@ -0,0 +1,102 @@ +export default { + title: 'RGBWifi', + systemID: 'System ID: ', + firmwareVersion: 'Firmware version: ', + copyright: 'Copyright © 2020 Mark van Renswoude', + loading: 'Please wait, loading...', + rebootPending: 'The system will be rebooted, please refresh this page afterwards', + + applyButton: 'Apply', + applyButtonSaving: 'Saving...', + deviceTime: 'Time: ', + + wifiStatus: { + accesspoint: { + title: 'AP: ', + disabled: 'Disabled' + }, + + stationmode: { + title: 'WiFi: ', + disabled: 'Disabled', + idle: 'Idle', + noSSID: 'SSID not found', + scanCompleted: 'Scan completed', + connectFailed: 'Failed to connect', + connectionLost: 'Connection lost', + disconnected: 'Disconnected' + } + }, + + status: { + tabTitle: 'Status', + title: 'Current status', + + staticOff: 'Off' + }, + + connection: { + tabTitle: 'Connection', + title: 'Connection parameters', + + accesspoint: 'Enable access point', + accesspointHint: 'Allows for a direct connection from your device to this RGBWifi module for configuration purposes. The RGBWifi configuration is available on http://192.168.1.4/ when you are connected to it. Turn it off as soon as station mode is configured, as it is not secured in any way. You can always turn this option back on by pushing the access point button until the LED lights up.', + + stationmode: 'Enable station mode', + stationmodeHint: 'Connect this RGBWifi module to your own WiFi router. Please enter the SSID, password and further configuration below.', + + ssid: 'SSID', + password: 'Password', + + dhcp: 'Use DHCP', + dhcpHint: 'Automatically assigns an IP address to this RGBWifi module. You probably want to keep this on unless you know what you\'re doing.', + + ipaddress: 'IP address', + subnetmask: 'Subnet mask', + gateway: 'Gateway', + hostname: 'Hostname', + hostnameHint: 'If specified, this module is available at .local if your device supports mDNS (at the time of writing, Android does not).', + hostnamePlaceholder: 'Default: mac address' + }, + + system: { + tabTitle: 'System', + pinsTitle: 'Hardware pinout', + ledStripTitle: 'LED strip', + firmwareTitle: 'Firmware update', + + pinLEDAP: 'Access Point status LED pin (+3.3v)', + pinLEDSTA: 'Station Mode status LED pin (+3.3v)', + pinAPButton: 'Enable Access Point button pin (active low)', + + ledCount: 'Number of LEDs on strip' + }, + + error: { + loadStatus: 'Could not load system status', + loadConnection: 'Could not load connection settings', + loadSystem: 'Could not load system settings', + applyConnection: 'Could not save connection settings', + applySystem: 'Could not save system settings', + updateWiFiStatus: 'Could not retrieve WiFi status', + uploadFirmware: 'Error while uploading firmware', + + setColor: 'Could not set color', + + resetError: 'The system reports that it has been reset unexpectedly. The last power up status is:', + resetReason: { + 0: 'Normal startup', + 1: 'Unresponsive, reset by hardware watchdog', + 2: 'Unhandled exception', + 3: 'Unresponsive, reset by software watchdog', + 4: 'System restart requested', + 5: 'Wake up from deep sleep', + 6: 'System reset' + }, + stackTrace: 'A stack trace is available. Please send it to your nearest developer and/or delete it from this RGBWifi module to remove this message.', + stackTraceDownload: 'Download', + stackTraceDelete: 'Hide', + + stackTraceDeleteError: 'Could not remove stack trace' + } +} \ No newline at end of file diff --git a/web/src/i18n/index.js b/web/src/i18n/index.js new file mode 100644 index 0000000..eb76c18 --- /dev/null +++ b/web/src/i18n/index.js @@ -0,0 +1,7 @@ +import en from './en' +import nl from './nl' + +export default { + en, + nl +} \ No newline at end of file diff --git a/web/src/i18n/nl.js b/web/src/i18n/nl.js new file mode 100644 index 0000000..213eedc --- /dev/null +++ b/web/src/i18n/nl.js @@ -0,0 +1,102 @@ +export default { + title: 'RGBWifi', + systemID: 'Systeem ID: ', + firmwareVersion: 'Firmware versie: ', + copyright: 'Copyright © 2020 Mark van Renswoude', + loading: 'Een ogenblik geduld, bezig met laden...', + rebootPending: 'Het systeem wordt opnieuw opgestart, ververse deze pagina nadien', + + applyButton: 'Opslaan', + applyButtonSaving: 'Bezig met opslaan...', + deviceTime: 'Tijd: ', + + wifiStatus: { + accesspoint: { + title: 'AP: ', + disabled: 'Uitgeschakeld' + }, + + stationmode: { + title: 'WiFi: ', + disabled: 'Uitgeschakeld', + idle: 'Slaapstand', + noSSID: 'SSID niet gevonden', + scanCompleted: 'Scan afgerond', + connectFailed: 'Kan geen verbinding maken', + connectionLost: 'Verbinding verloren', + disconnected: 'Niet verbonden' + } + }, + + status: { + tabTitle: 'Status', + title: 'Huidige status', + + staticOff: 'Uit' + }, + + connection: { + tabTitle: 'Verbinding', + title: 'Verbinding configuratie', + + accesspoint: 'Access point inschakelen', + accesspointHint: 'Maakt het mogelijk om een directe connectie vanaf een apparaat naar deze RGBWifi module te maken om de module te configureren. De RGBWifi module is te benaderen via http://192.168.1.4/ nadat je connectie hebt gemaakt. Schakel deze optie uit na het configureren, aangezien deze niet beveiligd is. Je kunt deze optie ook inschakelen door op de Access point knop te drukken totdat de LED aan gaat.', + + stationmode: 'Verbinding met WiFi maken', + stationmodeHint: 'Verbind deze RGBWifi module aan je eigen WiFi router. Vul hieronder het SSID en wachtwoord in, en configureer eventuel de overige opties.', + + ssid: 'SSID', + password: 'Wachtwoord', + + dhcp: 'Gebruik DHCP', + dhcpHint: 'Automatisch een IP adres toewijzen aan deze RGBWifi module. Waarschijnlijk wil je deze optie aan laten, tenzij je weet waar je mee bezig bent.', + + ipaddress: 'IP adres', + subnetmask: 'Subnet masker', + gateway: 'Gateway', + hostname: 'Hostnaam', + hostnameHint: 'Indien ingevuld is deze module te bereiken op .local als je apparaat mDNS ondersteund mDNS (op het moment van schrijven ondersteund Android dit niet).', + hostnamePlaceholder: 'Standaard: mac adres' + }, + + system: { + tabTitle: 'Systeem', + pinsTitle: 'Hardware aansluitingen', + ledStripTitle: 'LED strip', + firmwareTitle: 'Firmware bijwerken', + + pinLEDAP: 'Access Point status LED pin (+3.3v)', + pinLEDSTA: 'WiFi status LED pin (+3.3v)', + pinAPButton: 'Access Point inschakelen knop pin (actief laag)', + + ledCount: 'Aantal LEDs op strip' + }, + + error: { + loadStatus: 'Kan systeemstatus niet ophalen', + loadConnection: 'Kan verbinding instellingen niet ophalen', + loadSystem: 'Kan systeem instellingen niet ophalen', + applyConnection: 'Kan verbinding instellingen niet opslaan', + applySystem: 'Kan systeem instellingen niet opslaan', + updateWiFiStatus: 'Kan WiFi status niet ophalen', + uploadFirmware: 'Fout tijdens bijwerken van firmware', + + setColor: 'Kan kleur niet zetten', + + resetError: 'Het systeem is onverwachts herstart. De laatste status is:', + resetReason: { + 0: 'Normaal opgestart', + 1: 'Reageert niet, herstart door hardware watchdog', + 2: 'Onafgehandelde fout', + 3: 'Reageert niet, herstart door software watchdog', + 4: 'Herstart verzoek door systeem', + 5: 'Wakker geworden uit diepe slaap', + 6: 'Systeem gereset' + }, + stackTrace: 'Een stack trace is beschikbaar. Stuur het naar de dichtsbijzijnde ontwikkelaar en/of verwijder het van deze RGBWifi module om dit bericht te verbergen.', + stackTraceDownload: 'Downloaden', + stackTraceDelete: 'Verbergen', + + stackTraceDeleteError: 'Kan stack trace niet verwijderen' + } +} \ No newline at end of file diff --git a/web/src/index.html b/web/src/index.html new file mode 100644 index 0000000..137f48d --- /dev/null +++ b/web/src/index.html @@ -0,0 +1,127 @@ + + + + +RGBWifi + + + + + + +
+
+ + +
+ +
+ +
+ +
+

{{ $t('connection.title') }}

+ + + {{ $t('connection.accesspointHint') }} + + + {{ $t('connection.stationmodeHint') }} + + + + + + + + + {{ $t('connection.dhcpHint') }} + + +
+ + + + + + + + +
+ + + + + {{ $t('connection.hostnameHint') }} + +
+ +
+
+
+ +
+ +
+

{{ $t('system.firmwareTitle') }}

+ + + +
+ +
+ +
+ {{ uploadProgress }}% +
+
+ +
+

{{ $t('system.pinsTitle') }}

+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +

{{ $t('system.ledStripTitle') }}

+ +
+ + +
+ +
+ +
+
+
+ + + + + \ No newline at end of file diff --git a/web/logo.ai b/web/src/logo.ai similarity index 100% rename from web/logo.ai rename to web/src/logo.ai diff --git a/web/logo.png b/web/src/logo.png similarity index 100% rename from web/logo.png rename to web/src/logo.png diff --git a/web/src/main.js b/web/src/main.js new file mode 100644 index 0000000..5e84198 --- /dev/null +++ b/web/src/main.js @@ -0,0 +1,63 @@ +import Vue from 'vue' +import VueI18n from 'vue-i18n' +import axios from 'axios' + +import App from './App.vue' +import router from './router' +import store from './store' + +import messages from './i18n' + + + +// Source: https://github.com/axios/axios/issues/164 +axios.interceptors.response.use(undefined, function axiosRetryInterceptor(err) { + const config = err.config; + // If config does not exist or the retry option is not set, reject + if(!config || !config.retry) return Promise.reject(err); + + // Set the variable for keeping track of the retry count + config.__retryCount = config.__retryCount || 0; + + // Check if we've maxed out the total number of retries + if(config.__retryCount >= config.retry) { + // Reject with the error + return Promise.reject(err); + } + + // Increase the retry count + config.__retryCount += 1; + + // Create new promise to handle exponential backoff + const backoff = new Promise(function(resolve) { + setTimeout(function() { + resolve(); + }, config.retryDelay || 1); + }); + + // Return the promise in which recalls axios to retry the request + return backoff.then(function() { + return axios(config); + }); +}); + + +Vue.use(VueI18n); + +const i18n = new VueI18n({ + locale: navigator.language.split('-')[0], + fallbackLocale: 'en', + messages: messages +}); + + + +Vue.config.productionTip = false; + +new Vue({ + router, + store, + i18n, + el: '#app', + render: h => h(App) +}); \ No newline at end of file diff --git a/web/src/router/index.js b/web/src/router/index.js new file mode 100644 index 0000000..4de2fc3 --- /dev/null +++ b/web/src/router/index.js @@ -0,0 +1,23 @@ +import Vue from 'vue' +import VueRouter from 'vue-router' +import Status from '../views/Status.vue' +//import Connection from '../views/Connection.vue' +//import System from '../views/System.vue' + +Vue.use(VueRouter) + + +const routes = [ + { + path: '/', + name: 'Status', + component: Status + } +] + +const router = new VueRouter({ + routes +}) + + +export default router; \ No newline at end of file diff --git a/web/src/store/index.js b/web/src/store/index.js new file mode 100644 index 0000000..f392bf8 --- /dev/null +++ b/web/src/store/index.js @@ -0,0 +1,109 @@ +import Vue from 'vue' +import Vuex from 'vuex' + +Vue.use(Vuex); + +export default new Vuex.Store({ + state: { + notification: null, + notificationTimeout: null, + saving: false, + + + connection: { + hostname: null, + accesspoint: true, + station: false, + ssid: null, + password: null, + dhcp: true, + ip: null, + subnetmask: null, + gateway: null + }, + + + system: { + pins: { + ledAP: null, + ledSTA: null, + apButton: null, + }, + ledCount: null + } + + /* + settingStatic: false, + loadingIndicator: '|', + uploadProgress: false, + + static: { + r: 0, + g: 0, + b: 0, + w: 0 + } + */ + }, + + mutations: { + _setNotification(state, payload) + { + state.notification = payload.notification; + state.notificationTimeout = payload.notificationTimeout; + } + }, + + actions: { + showNotification(context, payload) + { + const self = this; + if (context.state.notificationTimeout !== null) + clearTimeout(context.state.notificationTimeout); + + const notificationTimeout = setTimeout(() => + { + context.dispatch('hideNotification'); + }, 5000); + + context.commit('_setNotification', { + notification: payload, + notificationTimeout + }); + }, + + + hideNotification(context) + { + if (context.state.notificationTimeout !== null) + clearTimeout(context.state.notificationTimeout); + + context.commit('_setNotification', { + notification: null, + notificationTimeout: null + }); + }, + + + notifyAPIError(context, payload) + { + console.log(payload.error); + let errorMessage = ''; + + if (payload.error.response) + { + errorMessage = 'HTTP response code ' + payload.error.response.status; + } + else if (payload.error.request) + { + errorMessage = 'No response'; + } + else + { + errorMessage = payload.error.message; + } + + context.dispatch('showNotification', { message: payload.message + '\n\n' + errorMessage, isError: true }); + } + }, +}) diff --git a/web/variables.scss b/web/src/variables.scss similarity index 100% rename from web/variables.scss rename to web/src/variables.scss diff --git a/web/src/views/Status.vue b/web/src/views/Status.vue new file mode 100644 index 0000000..41e6cff --- /dev/null +++ b/web/src/views/Status.vue @@ -0,0 +1,130 @@ + + + diff --git a/webpack.build.js b/webpack.build.js new file mode 100644 index 0000000..44cda93 --- /dev/null +++ b/webpack.build.js @@ -0,0 +1,19 @@ +const { merge } = require('webpack-merge'); +const config = require('./webpack.config.js'); +const webpack = require('webpack'); +const TerserPlugin = require('terser-webpack-plugin'); + + +module.exports = merge(config, { + mode: "production", + devtool: "#source-map", + + output: { + filename: 'bundle.js' + }, + + optimization: { + minimize: true, + minimizer: [new TerserPlugin()], + } +}); diff --git a/webpack.config.js b/webpack.config.js new file mode 100644 index 0000000..33bfc49 --- /dev/null +++ b/webpack.config.js @@ -0,0 +1,68 @@ +'use strict' + +const webpack = require('webpack'); +const path = require('path'); +const { VueLoaderPlugin } = require('vue-loader'); +const HtmlWebpackPlugin = require('html-webpack-plugin'); + +module.exports = { + mode: 'development', + entry: [ + './web/src/main.js' + ], + output: { + path: path.resolve(__dirname, './web/dist'), + filename: 'bundle.js' + }, + + resolve: { + alias: { + '@': path.resolve(__dirname, './web/src'), + vue$: 'vue/dist/vue.runtime.esm.js' + }, + }, + + module: { + rules: [ + { + test: /\.vue$/, + use: 'vue-loader' + }, + { + test: /\.scss$/, + use: [ + 'vue-style-loader', + { + loader: 'css-loader', + options: { + esModule: false + } + }, + 'sass-loader' + ] + }, + { + test: /\.js$/, + loader: 'babel-loader', + exclude: file => ( + /node_modules/.test(file) && + !/\.vue\.js/.test(file) + ) + }, + { + test: /\.(png)?$/, + use: [{ + loader: 'file-loader' + }] + } + ] + }, + + plugins: [ + new VueLoaderPlugin(), + new HtmlWebpackPlugin({ + title: 'RGBWifi', + template: 'web/public/index.html' + }) + ] +} diff --git a/webpack.dev.js b/webpack.dev.js new file mode 100644 index 0000000..3eff1f3 --- /dev/null +++ b/webpack.dev.js @@ -0,0 +1,18 @@ +const { merge } = require('webpack-merge'); +const config = require("./webpack.config.js"); +const webpack = require("webpack"); + +module.exports = merge(config, { + mode: 'development', + devServer: { + historyApiFallback: true, + proxy:{ + '/api': { + target: 'http://localhost:3000' + } + }, + }, + plugins: [ + new webpack.NoEmitOnErrorsPlugin(), + ] +});